/* =========================
   OFFER BANNER
========================= */

.offer-banner{
  background:linear-gradient(90deg,#0b0b0b,#17110d,#0b0b0b);
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:center;
  padding:12px 20px;
  font-size:12px;
  letter-spacing:.18em;
  color:var(--champagne);
}

/* =========================
   ABOUT
========================= */

.about-section{
  padding:140px 8%;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}

.about-container{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:64px;
  align-items:center;
}

.about-image img{
  width:100%;
  max-height:460px;
  object-fit:cover;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 70px rgba(0,0,0,.35);
  transition:transform .6s ease;
}

.about-image:hover img{
  transform:scale(1.04);
}

.about-content p{
  margin-top:20px;
}

/* =========================
   HERO
========================= */

.luxury-hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  background:
    radial-gradient(circle at center, rgba(198,168,74,.12) 0%, transparent 32%),
    linear-gradient(180deg,#17110d 0%,#050505 78%);
}

.luxury-hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center,rgba(0,0,0,.24),rgba(0,0,0,.88)),
    url('assets/images/hero.png') center/cover no-repeat;
  z-index:0;
}

.luxury-hero-content{
  position:relative;
  z-index:2;
  max-width:850px;
  padding:0 20px;
  animation:fadeLuxury 1.2s ease;
}

.luxury-tag{
  font-size:11px;
  letter-spacing:.4em;
  text-transform:uppercase;
  color:var(--gold);
}

.luxury-hero h1{
  margin:25px 0;
}

.luxury-hero p{
  font-size:18px;
  color:#d0c7b5;
  margin-bottom:24px;
}

.luxury-hero-actions{
  display:flex;
  gap:24px;
  justify-content:center;
  flex-wrap:wrap;
}

.luxury-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 44px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.25em;
  text-transform:uppercase;
  transition:.35s ease;
}

.luxury-btn.primary{
  background:linear-gradient(135deg,#e6cf8d,#b58d31);
  color:#090909;
  box-shadow:0 18px 40px rgba(181,141,49,.28);
}

.luxury-btn.outline{
  border:1px solid var(--gold);
  color:var(--gold);
}

.luxury-btn.disabled{
  opacity:.45;
  pointer-events:none;
}

.luxury-btn:hover{
  transform:translateY(-4px);
}

.hero-note{
  margin-top:22px;
}

.hero-stat-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  max-width:760px;
  margin:34px auto 0;
}

.hero-stat{
  padding:18px 16px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(10px);
}

.hero-stat strong{
  display:block;
  margin-bottom:6px;
  font-size:1.4rem;
  color:#fff0ce;
}

.hero-stat span{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#bfae88;
}

/* =========================
   COLLECTION
========================= */

.Styles{
  padding:120px 8%;
  background:#0f0f0f;
}

.section-title{
  font-size:clamp(2rem,4vw,2.8rem);
  margin-bottom:70px;
  text-align:center;
  letter-spacing:1px;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:35px;
}

.category-card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:22px;
  text-align:center;
  transition:.3s ease;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.category-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:16px;
  margin-bottom:18px;
}

.category-card h3{
  font-size:16px;
  margin-bottom:8px;
}

.category-card p{
  font-size:13px;
  color:#ada18b;
}

.category-card:hover{
  border-color:var(--gold);
  transform:translateY(-8px);
  box-shadow:0 24px 60px rgba(0,0,0,.3);
}

/* =========================
   EDITORIAL
========================= */

.editorial-band{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:28px;
  padding:120px 8%;
  align-items:start;
}

.editorial-kicker{
  display:inline-block;
  margin-bottom:14px;
  font-size:11px;
  letter-spacing:.35em;
  text-transform:uppercase;
  color:var(--gold);
}

.editorial-copy h2{
  margin-bottom:16px;
}

.editorial-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.editorial-cards article{
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:0 18px 40px rgba(0,0,0,.2);
}

.editorial-cards strong{
  display:block;
  margin-bottom:10px;
  color:#f4ead6;
}

.editorial-cards p{
  font-size:14px;
  line-height:1.8;
}

/* =========================
   LUXURY BANNERS
========================= */

.luxury-collections{
  background:#000;
}

.luxury-banner{
  position:relative;
  height:80vh;
  display:flex;
  align-items:center;
  padding:0 10%;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.06);
  background-size:110%;
  transition:background-size .8s ease;
}

.luxury-banner:nth-child(1){
  background:url('assets/images/categories/sandalwood.png') center/cover no-repeat;
}

.luxury-banner:nth-child(2){
  background:url('assets/images/categories/leather.jpg') center/cover no-repeat;
}

.luxury-banner:nth-child(3){
  background:url('assets/images/categories/accessories.jpg') center/cover no-repeat;
}

.luxury-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to right,rgba(0,0,0,.84),rgba(0,0,0,.26));
}

.luxury-banner.alt{
  justify-content:flex-end;
}

.luxury-banner.alt::after{
  background:linear-gradient(to left,rgba(0,0,0,.85),rgba(0,0,0,.4));
}

.luxury-banner:hover{
  background-size:120%;
}

.luxury-overlay{
  position:relative;
  z-index:2;
  max-width:550px;
}

.luxury-overlay h2{
  font-size:clamp(2rem,4vw,3rem);
  margin-bottom:18px;
}

.luxury-overlay p{
  font-size:17px;
  color:#cfcfcf;
  margin-bottom:0;
}

/* =========================
   TRUST STRIP
========================= */

.trust-strip{
  padding:40px 8%;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.02);
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  text-align:center;
  font-size:12px;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:#888;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeLuxury{
  from{opacity:0;transform:translateY(40px);}
  to{opacity:1;transform:none;}
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1024px){
  .about-container{
    gap:40px;
  }

  .luxury-banner{
    height:70vh;
  }

  .category-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px){
  .luxury-hero{
    min-height:85vh;
  }

  .hero-stat-row{
    grid-template-columns:1fr;
    margin-top:24px;
  }

  .about-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .about-image img{
    max-height:340px;
  }

  .Styles{
    padding:100px 6%;
  }

  .editorial-band{
    grid-template-columns:1fr;
    padding:90px 6%;
  }

  .editorial-cards{
    grid-template-columns:1fr;
  }

  .luxury-banner{
    height:65vh;
    padding:0 6%;
  }

  .luxury-overlay{
    max-width:100%;
  }
}

@media (max-width:480px){
  .luxury-hero h1{
    font-size:32px;
  }

  .luxury-hero p{
    font-size:15px;
  }

  .luxury-btn{
    padding:12px 28px;
  }

  .category-grid{
    grid-template-columns:1fr;
  }

  .category-card img{
    height:180px;
  }

  .about-image img{
    max-height:280px;
  }
}


.product-types, .gallery, .apply-form {
  padding: 80px 20px;
  text-align: center;
}

.types-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

.type-card {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
}

.apply-form form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.apply-form input, .apply-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
}

.apply-form button {
  padding: 12px;
  background: black;
  color: white;
  cursor: pointer;
}

.about-content p {
  margin-bottom: 10px;
  font-size: 15px;
}

.luxury-mindset {
  padding: 100px 20px;
  text-align: center;
  background: #0c0c0c;
  color: #fff;
}

.luxury-mindset-content {
  max-width: 800px;
  margin: auto;
}

.luxury-mindset h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.highlight-line {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.closing-line {
  margin-top: 20px;
  font-style: italic;
  opacity: 0.8;
}
.gallery {
  padding: 80px 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.about-content {
  text-align: left;
}

.about-content p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 250px;
  }
}

.trending-section {
  padding: 80px 0;
  background: #0f0f0f;
  color: #fff;
}

.trending-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.trending-content h2 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #c5a47e;
  margin-bottom: 10px;
}

.trending-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.trending-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #ccc;
}

.trending-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .trending-container {
    grid-template-columns: 1fr;
  }

  .trending-image img {
    height: 260px;
  }
}

/* IMAGE HOVER ZOOM */
.trending-image {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.trending-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.6s ease;
}

.trending-image:hover img {
  transform: scale(1.08);
}

/* SHINE EFFECT */
.trending-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
}

.trending-image:hover::after {
  animation: shine 1.2s ease forwards;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* BUTTON HOVER PREMIUM */
.luxury-btn.primary {
  background: linear-gradient(135deg, #c5a47e, #e6c9a8);
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.luxury-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 164, 126, 0.4);
}