/* =========================
   LUXORA PREMIUM CSS
   BLACK + GOLD THEME
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#050505;
  color:white;
  overflow-x:hidden;
}

/* =========================
   GLOBAL STYLES
========================= */

img{
  width:100%;
  display:block;
}

button{
  cursor:pointer;
  border:none;
  transition:0.4s ease;
}

.section-title{
  text-align:center;
  font-size:3rem;
  margin-top:120px;
  color:#722F37;
  font-family:'Playfair Display', serif;
}

.section-subtitle{
  text-align:center;
  max-width:700px;
  margin:20px auto 70px;
  color:#cfcfcf;
  line-height:1.8;
  font-size:1rem;
}

/* =========================
   ANNOUNCEMENT BAR
========================= */

.announcement-bar{
  background:linear-gradient(to right,#722F37,#722F37,#722F37);
  color:black;
  text-align:center;
  padding:12px;
  font-weight:600;
  letter-spacing:1px;
  font-size:14px;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 8%;
  background:#111;
  color:#722F37;
  font-size:14px;
  border-bottom:1px solid rgba(114,47,55,0.2);
}

/* =========================
   NAVBAR
========================= */

.navbar{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  padding:25px 8%;
  position:sticky;
  top:0;
  z-index:1000;
  background:#722F37;
  border-bottom:1px solid rgba(0,0,0,0.12);
}

.logo{
  font-size:2rem;
  font-weight:700;
  letter-spacing:5px;
  color:#FFF8F0;
  font-family:'Playfair Display', serif;
  text-decoration:none;
  white-space:nowrap;
  transition:0.3s ease;
}

.logo:hover{
  color:#F5E6D3;
}

.nav-links{
  display:flex;
  gap:40px;
  list-style:none;
}

.hamburger{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(0,0,0,0.25);
  border-radius:8px;
  background:transparent;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
}

.hamburger span{
  width:24px;
  height:2px;
  background:black;
  transition:0.3s ease;
}

.hamburger:hover span{
  background:red;
}

.hamburger.is-open span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2){
  opacity:0;
}

.hamburger.is-open span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

.nav-links a{
  text-decoration:none;
  color:white;
  font-size:15px;
  position:relative;
  transition:0.4s;
  white-space:nowrap;
}


.nav-links a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:red;
  transition:0.4s;
}

.nav-links a:hover::after{
  width:100%;
}

.nav-links a:hover{
  color:red;
}

.icons{
  display:flex;
  gap:14px;
  color:#FFF8F0;
}

.icons span{
  display:none;
}

.icons button{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.2);
  color:#FFF8F0;
  cursor:pointer;
  transition:0.3s;
  box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

.icons button:hover{
  color:#FFF8F0;
  background:rgba(255,255,255,0.25);
  transform:translateY(-3px);
  box-shadow:0 6px 20px rgba(0,0,0,0.15);
}

.icons svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
  pointer-events:none;
}

.search-panel{
  display:none;
  width:100%;
  align-items:center;
  gap:12px;
  margin-top:18px;
  padding:14px;
  background:rgba(0,0,0,0.1);
  border:1px solid rgba(0,0,0,0.14);
  border-radius:8px;
}

.search-panel.is-open{
  display:flex;
}

.search-panel input{
  flex:1;
  min-width:0;
  padding:13px 16px;
  border:1px solid rgba(0,0,0,0.18);
  border-radius:8px;
  outline:none;
  font:inherit;
  color:black;
}

.search-panel input:focus{
  border-color:red;
}

.search-panel button{
  padding:13px 22px;
  border-radius:8px;
  background:black;
  color:white;
  font-weight:700;
}

.search-panel button:hover{
  background:red;
}

.search-feedback{
  min-width:130px;
  color:black;
  font-size:14px;
  font-weight:600;
}

.is-search-hidden{
  display:none !important;
}

.is-search-match{
  outline:2px solid red;
  outline-offset:4px;
}

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

.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  padding:80px 8%;
  gap:60px;
  position:relative;
}

.hero-text span{
  color:#722F37;
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:14px;
}

.hero-text h1{
  font-size:5rem;
  line-height:1.1;
  margin:25px 0;
  font-family:'Playfair Display', serif;
}

.hero-text p{
  color:#c9c9c9;
  line-height:1.9;
  max-width:600px;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.hero-buttons button{
  padding:16px 38px;
  border-radius:50px;
  font-size:15px;
  font-weight:600;
}

.hero-buttons button:first-child{
  background:#722F37;
  color:black;
}

.hero-buttons button:first-child:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(114,47,55,0.4);
}

.secondary-btn{
  background:transparent;
  border:1px solid #722F37;
  color:#722F37;
}

.secondary-btn:hover{
  background:#722F37;
  color:black;
}

.hero-image{
  position:relative;
  height:700px;
  border-radius:30px;
  box-shadow:0 20px 60px rgba(114,47,55,0.2);
  overflow:hidden;
  transition:transform 0.4s ease;
}

.hero-image img{
  position:absolute;
  inset:0;
  border-radius:30px;
  width:100%;
  height:700px;
  object-fit:cover;
  opacity:0;
  transition:opacity 0.8s ease;
}

.hero-image img.is-active{
  opacity:1;
}

.scroll-down-arrow{
  position:absolute;
  left:50%;
  bottom:30px;
  transform:translateX(-50%);
  width:52px;
  height:52px;
  border-radius:50%;
  background:#722F37;
  color:black;
  font-size:26px;
  font-weight:700;
  box-shadow:0 12px 30px rgba(114,47,55,0.35);
  animation:arrowBounce 1.6s ease-in-out infinite;
  z-index:5;
}

.scroll-down-arrow:hover{
  background:red;
  color:white;
}

@keyframes arrowBounce{
  0%,100%{
    transform:translate(-50%,0);
  }

  50%{
    transform:translate(-50%,8px);
  }
}

/* =========================
   BRANDS
========================= */

.brands{
  display:flex;
  justify-content:space-around;
  align-items:center;
  padding:70px 8%;
  border-top:1px solid rgba(255,255,255,0.08);
  border-bottom:1px solid rgba(255,255,255,0.08);
  margin-top:80px;
}

.brand{
  color:#777;
  font-size:2rem;
  font-weight:600;
  transition:0.4s;
}

.brand:hover{
  color:#722F37;
  transform:scale(1.1);
}

/* =========================
   FEATURES
========================= */

.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  padding:120px 8%;
}

.feature-box{
  background:#0d0d0d;
  padding:40px;
  border-radius:25px;
  text-align:center;
  border:1px solid rgba(114,47,55,0.15);
  transition:0.4s;
}

.feature-box:hover{
  transform:translateY(-10px);
  border-color:#722F37;
  box-shadow:0 20px 50px rgba(114,47,55,0.15);
}

.feature-box h3{
  color:#722F37;
  margin-bottom:15px;
  font-size:1.3rem;
}

.feature-box p{
  color:#aaa;
  line-height:1.8;
}

/* =========================
   PRODUCTS
========================= */

.products{
  padding:40px 8% 120px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.product-card{
  background:#0d0d0d;
  border-radius:30px;
  overflow:hidden;
  transition:0.5s;
  border:1px solid rgba(114,47,55,0.1);
}

.diamond-product{
  scroll-margin-top:140px;
}

.product-card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 60px rgba(114,47,55,0.15);
}

.product-card img{
  height:350px;
  object-fit:cover;
}

.product-info{
  padding:30px;
}

.product-info h3{
  font-size:1.5rem;
  margin-bottom:10px;
}

.price{
  color:#722F37;
  font-size:1.2rem;
  margin-bottom:20px;
}

.product-info button{
  width:100%;
  padding:15px;
  border-radius:50px;
  background:#2563eb;
  color:black;
  font-weight:600;
}

.product-info button:hover{
  background:#3b82f6;
}

/* =========================
   LUXURY BANNER
========================= */

.luxury-banner{
  margin:100px 8%;
  padding:120px 60px;
  border-radius:40px;
  background:
    linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?q=80&w=1400&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  text-align:center;
}

.banner-content h2{
  font-size:4rem;
  color:#722F37;
  font-family:'Playfair Display', serif;
}

.banner-content p{
  max-width:700px;
  margin:25px auto;
  color:#ddd;
  line-height:1.9;
}

.banner-content button{
  padding:16px 40px;
  border-radius:50px;
  background:#722F37;
  color:black;
  font-weight:600;
  margin-top:20px;
}

.banner-content button:hover{
  transform:scale(1.05);
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials{
  padding:120px 8%;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:60px;
}

.testimonial-card{
  background:#0d0d0d;
  padding:40px;
  border-radius:30px;
  border:1px solid rgba(114,47,55,0.12);
  transition:0.4s;
}

.testimonial-card:hover{
  transform:translateY(-8px);
}

.testimonial-card p{
  color:#ddd;
  line-height:1.9;
  margin-bottom:20px;
}

.testimonial-card h4{
  color:#722F37;
}

/* =========================
   NEWSLETTER
========================= */

.newsletter{
  padding:120px 8%;
  text-align:center;
  background:#0b0b0b;
}

.newsletter h2{
  font-size:3rem;
  color:#722F37;
  margin-bottom:20px;
  font-family:'Playfair Display', serif;
}

.newsletter p{
  color:#bbb;
  margin-bottom:40px;
}

.newsletter form{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.newsletter input{
  width:400px;
  padding:18px 20px;
  border-radius:50px;
  border:none;
  outline:none;
  background:#151515;
  color:white;
}

.newsletter button{
  padding:18px 35px;
  border-radius:50px;
  background:#722F37;
  color:black;
  font-weight:600;
}

.newsletter button:hover{
  transform:translateY(-3px);
}

/* =========================
   FOOTER
========================= */

footer{
  text-align:center;
  padding:35px;
  border-top:1px solid rgba(255,255,255,0.08);
  color:#888;
  background:black;
}

/* =========================
   COLLECTIONS / ABOUT / CONTACT (NEW)
========================= */

.collections{
  padding:120px 8% 40px;
}

.collections-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:35px;
  margin-top:60px;
}

.collection-card{
  background:#0d0d0d;
  border:1px solid rgba(114,47,55,0.12);
  border-radius:30px;
  overflow:hidden;
  transition:0.5s;
  box-shadow:0 0 0 rgba(114,47,55,0);
}

.collection-card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 60px rgba(114,47,55,0.15);
  border-color:#722F37;
}

.collection-card img{
  height:320px;
  object-fit:cover;
}

.collection-info{
  padding:28px;
}

.collection-info h3{
  font-size:1.6rem;
  color:#fff;
  margin-bottom:12px;
}

.collection-info p{
  color:#aaa;
  line-height:1.8;
  margin-bottom:18px;
}

.collection-info button{
  width:100%;
  padding:14px 16px;
  border-radius:50px;
  background:#722F37;
  color:#000;
  font-weight:700;
}

.collection-info button:hover{
  background:#722F37;
}

.pinterest-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  margin-top:12px;
  padding:13px 16px;
  border:1px solid rgba(114,47,55,0.34);
  border-radius:50px;
  color:#722F37;
  font-weight:700;
  text-decoration:none;
  transition:0.3s ease;
}

.pinterest-link:hover{
  border-color:#722F37;
  background:rgba(114,47,55,0.1);
  transform:translateY(-2px);
}

/* ABOUT */
.about{
  padding:120px 8%;
}

.about-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  margin-top:50px;
}

.about-text{
  background:#0d0d0d;
  border:1px solid rgba(114,47,55,0.12);
  border-radius:30px;
  padding:38px;
}

.about-image{
  position:relative;
}

.about-image img{
  height:520px;
  border-radius:30px;
  object-fit:cover;
  border:1px solid rgba(114,47,55,0.12);
  box-shadow:0 25px 60px rgba(114,47,55,0.12);
}

.about-mini-gallery{
  position:absolute;
  left:20px;
  bottom:20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  width:calc(100% - 40px);
}

.about-mini-item{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(114,47,55,0.12);
  background:#0d0d0d;
  box-shadow:0 15px 40px rgba(0,0,0,0.5);
}

.about-mini-item img{
  width:100%;
  height:120px;
  object-fit:cover;
}

.about-features{

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:28px;
}

.about-feature{
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(114,47,55,0.12);
  background:rgba(0,0,0,0.25);
}

.about-feature h3{
  color:#722F37;
  font-size:1.05rem;
  margin-bottom:10px;
}

.about-feature p{
  color:#aaa;
  line-height:1.7;
  font-size:0.95rem;
}

/* CONTACT */
.contact{
  padding:120px 8% 80px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
  margin-top:60px;
  align-items:start;
}

.contact-card{
  background:#0d0d0d;
  border:1px solid rgba(114,47,55,0.12);
  border-radius:30px;
  padding:34px;
}

.contact-card h3{
  color:#722F37;
  margin-bottom:18px;
  font-size:1.5rem;
}

.contact-item{
  color:#cfcfcf;
  margin:12px 0;
  line-height:1.6;
}

.contact-item a{
  color:#722F37;
  text-decoration:none;
}

.contact-item a:hover{
  text-decoration:underline;
}

.contact-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.contact-badge{
  padding:10px 14px;
  border-radius:20px;
  background:rgba(114,47,55,0.12);
  color:#722F37;
  border:1px solid rgba(114,47,55,0.20);
  font-weight:600;
}

.contact-form-card form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-form-card label{
  display:flex;
  flex-direction:column;
  gap:8px;
  color:#cfcfcf;
  font-weight:600;
}

.contact-form-card input,
.contact-form-card textarea{
  background:#151515;
  border:1px solid rgba(114,47,55,0.18);
  color:#fff;
  border-radius:18px;
  padding:14px 16px;
  outline:none;
}

.contact-form-card textarea{
  resize:none;
}

.contact-form-card button{
  margin-top:10px;
  padding:16px 20px;
  border-radius:50px;
  background:#722F37;
  color:#000;
  font-weight:800;
}

.contact-form-card button:hover{
  background:#722F37;
}

.contact-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:35px;
}

.contact-gallery-item{
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(114,47,55,0.12);
}

.contact-gallery-item img{
  height:220px;
  object-fit:cover;
  width:100%;
}

/* CONTACT IMAGE MODAL */
.contact-image-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.72);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
}

.contact-image-modal-inner{
  width:min(980px,92vw);
  background:#0d0d0d;
  border:1px solid rgba(114,47,55,0.22);
  border-radius:26px;
  padding:18px;
  position:relative;
  box-shadow:0 25px 80px rgba(0,0,0,0.8);
  display:flex;
  flex-direction:column;
  align-items:center;
}

.contact-image-modal-close{
  position:absolute;
  top:12px;
  right:14px;
  width:44px;
  height:44px;
  border-radius:50%;
  background:#722F37;
  color:#000;
  font-size:26px;
  line-height:44px;
  font-weight:900;
}

.contact-image-modal-img{
  width:100%;
  height:auto;
  max-height:70vh;
  object-fit:contain;
  border-radius:18px;
  border:1px solid rgba(114,47,55,0.18);
}

.contact-image-modal-caption{
  margin-top:12px;
  color:#cfcfcf;
  font-weight:600;
}

.contact-image-modal-controls{
  margin-top:14px;
  display:flex;
  justify-content:space-between;
  width:100%;
}

.contact-image-nav{
  width:56px;
  height:56px;
  border-radius:50%;
  background:rgba(114,47,55,0.12);
  border:1px solid rgba(114,47,55,0.28);
  color:#722F37;
  font-size:30px;
  font-weight:900;
}

/* PAYMENT */
.payment{
  padding:90px 8% 40px;
}

.payment-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.payment-card{
  background:#0d0d0d;
  border:1px solid rgba(114,47,55,0.16);
  border-radius:24px;
  padding:28px;
  text-align:center;
  transition:0.4s ease;
}

.payment-card:hover{
  transform:translateY(-8px);
  border-color:rgba(114,47,55,0.45);
  box-shadow:0 18px 45px rgba(114,47,55,0.12);
}

.payment-icon{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
  border-radius:50%;
  background:#722F37;
  color:#000;
  font-size:0;
}

.payment-icon::before{
  content:"";
  width:30px;
  height:30px;
  background:currentColor;
  -webkit-mask:var(--payment-symbol) center / contain no-repeat;
  mask:var(--payment-symbol) center / contain no-repeat;
}

.payment-card:nth-child(1) .payment-icon{
  --payment-symbol:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='7' y='2' width='10' height='20' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M11 18h2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.payment-card:nth-child(2) .payment-icon{
  --payment-symbol:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='5' width='20' height='14' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M2 10h20M6 15h4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.payment-card:nth-child(3) .payment-icon{
  --payment-symbol:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 3 9 5H3l9-5ZM3 10h18M5 10v9M9 10v9M15 10v9M19 10v9M3 19h18' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.payment-card:nth-child(4) .payment-icon{
  --payment-symbol:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 18V6H3v12h11ZM14 9h4l3 4v5h-7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='7' cy='18' r='2' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='17' cy='18' r='2' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.payment-card h3{
  color:#722F37;
  margin-bottom:12px;
}

.payment-card p{
  color:#bdbdbd;
  line-height:1.7;
}

/* ACCOUNT MODAL */
.account-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(0,0,0,0.72);
  z-index:99999;
}

.account-modal.is-open{
  display:flex;
}

.account-modal-inner{
  position:relative;
  width:min(440px,100%);
  background:#0d0d0d;
  border:1px solid rgba(114,47,55,0.28);
  border-radius:24px;
  padding:32px;
  box-shadow:0 28px 80px rgba(0,0,0,0.75);
}

.account-close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border-radius:50%;
  background:#722F37;
  color:#000;
  font-size:26px;
  font-weight:900;
}

.account-modal h2{
  color:#722F37;
  margin-bottom:10px;
  font-family:'Playfair Display', serif;
}

.account-modal p{
  color:#cfcfcf;
  line-height:1.7;
  margin-bottom:24px;
}

.account-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.account-form label{
  display:flex;
  flex-direction:column;
  gap:8px;
  color:#722F37;
  font-weight:600;
}

.account-form input{
  padding:14px 16px;
  border-radius:8px;
  border:1px solid rgba(114,47,55,0.18);
  background:#050505;
  color:white;
  outline:none;
}

.account-form input:focus{
  border-color:#722F37;
}

.account-form button{
  padding:14px 18px;
  border-radius:50px;
  background:#722F37;
  color:#000;
  font-weight:800;
}

.account-actions{
  display:flex;
  gap:12px;
  margin-top:18px;
}

.account-actions button{
  flex:1;
  padding:12px;
  border-radius:8px;
  background:rgba(114,47,55,0.12);
  color:#722F37;
  border:1px solid rgba(114,47,55,0.2);
  font-weight:700;
}

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


@media(max-width:1100px){

  .about-wrap{
    grid-template-columns:1fr;
    gap:30px;
  }

  .about-features{
    grid-template-columns:1fr;
  }

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

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

  .contact-gallery{
    grid-template-columns:1fr;
  }

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

  .hero{

    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-text p{
    margin:auto auto 40px;
  }

  .hero-buttons{
    justify-content:center;
  }

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

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

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

@media(max-width:768px){

  .navbar{
    display:grid;
    grid-template-columns:1fr auto auto;
    align-items:center;
    gap:16px;
    padding:18px 6%;
  }

  .hamburger{
    display:flex;
    grid-column:3;
    grid-row:1;
    position:static;
    transform:none;
  }

  .logo{
    grid-column:1;
    grid-row:1;
    font-size:1.65rem;
    letter-spacing:3px;
  }

  .nav-links{
    grid-column:1 / -1;
    grid-row:2;
    display:none;
    width:100%;
    flex-wrap:wrap;
    justify-content:flex-start;
    gap:18px;
    padding-top:18px;
  }

  .nav-links.is-open{
    display:flex;
  }

  .icons{
    grid-column:2;
    grid-row:1;
    margin-top:0;
    gap:14px;
    font-size:20px;
  }

  .search-panel{
    grid-column:1 / -1;
    grid-row:3;
    flex-direction:column;
    align-items:stretch;
  }

  .search-feedback{
    min-width:0;
  }

  .hero-text h1{
    font-size:3rem;
    overflow-wrap:anywhere;
  }

  .section-title{
    font-size:2.4rem;
    overflow-wrap:anywhere;
  }

  .brands{
    flex-wrap:wrap;
    gap:30px;
  }

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

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

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

  .account-actions{
    flex-direction:column;
  }

  .newsletter input{
    width:100%;
  }

  .banner-content h2{
    font-size:2.5rem;
    overflow-wrap:anywhere;
  }
}

@media(max-width:430px){

  .navbar{
    grid-template-columns:1fr auto;
    gap:14px;
  }

  .logo{
    font-size:1.45rem;
    letter-spacing:2px;
  }

  .icons{
    grid-column:1 / -1;
    grid-row:2;
    justify-content:flex-start;
  }

  .hamburger{
    grid-column:2;
    grid-row:1;
  }

  .nav-links{
    grid-row:4;
    gap:14px;
  }

  .search-panel{
    grid-row:3;
  }

  .hero{
    padding-left:6%;
    padding-right:6%;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-text h1{
    font-size:2.55rem;
  }
}

/* =========================
   SOFT PREMIUM THEME
========================= */

body{
  background:linear-gradient(135deg,#f7f4ee 0%,#edf3ee 48%,#f5edf1 100%);
  color:#241b16;
}

.section-title,
.hero-text span,
.feature-box h3,
.price,
.testimonial-card h4,
.newsletter h2,
.collection-info h3,
.about-feature h3,
.contact-card h3,
.contact-item strong,
.payment-card h3,
.account-modal-inner h2{
  color:#722F37;
}

.section-subtitle,
.hero-text p,
.feature-box p,
.collection-info p,
.about-feature p,
.testimonial-card p,
.newsletter p,
.contact-card p,
.contact-item,
.payment-card p,
.account-modal-inner p{
  color:#51453d;
}

.feature-box,
.product-card,
.testimonial-card,
.collection-card,
.about-text,
.about-mini-item,
.contact-card,
.payment-card,
.account-modal-inner{
  background:#fffaf3;
  border-color:rgba(92,37,43,0.2);
  box-shadow:0 18px 45px rgba(87,65,45,0.08);
}

.feature-box:hover,
.product-card:hover,
.collection-card:hover,
.payment-card:hover,
.payment-card.is-selected{
  border-color:#5C252B;
  box-shadow:0 24px 55px rgba(92,37,43,0.18);
}

.brands{
  border-top:1px solid rgba(92,37,43,0.14);
  border-bottom:1px solid rgba(92,37,43,0.14);
}

.brand{
  color:#77685d;
}

.brand:hover{
  color:#722F37;
}

.hero-buttons button:first-child,
.collection-info button,
.banner-content button,
.newsletter button,
.contact-form-card button,
.payment-option,
#checkoutButton,
.scroll-down-arrow{
  background:#5C252B;
  color:#fffaf3;
}

.hero-buttons button:first-child:hover,
.collection-info button:hover,
.banner-content button:hover,
.newsletter button:hover,
.contact-form-card button:hover,
.payment-option:hover,
.payment-option.is-selected,
#checkoutButton:hover{
  background:#4A1E24;
  color:#fffaf3;
}

.secondary-btn,
.pinterest-link{
  border-color:#5C252B;
  color:#4A1E24;
}

.secondary-btn:hover,
.pinterest-link:hover{
  background:rgba(114,47,55,0.12);
  color:#3D1820;
}

.hero-image,
.about-image img{
  box-shadow:0 24px 60px rgba(87,65,45,0.14);
}

.luxury-banner{
  background:
    linear-gradient(rgba(50,38,30,0.58),rgba(50,38,30,0.58)),
    url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?q=80&w=1400&auto=format&fit=crop');
}

.banner-content p{
  color:#f7f0e6;
}

.newsletter,
footer{
  background:#46372f;
  color:#f7f0e6;
}

.newsletter p,
footer{
  color:#f7f0e6;
}

.newsletter input,
.contact-form-card input,
.contact-form-card textarea,
.account-form input{
  background:#fffaf3;
  border:1px solid rgba(92,37,43,0.24);
  color:#241b16;
}

.newsletter input::placeholder,
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder,
.account-form input::placeholder{
  color:#8a7a6f;
}

.contact-badge{
  background:rgba(114,47,55,0.12);
  color:#4A1E24;
  border-color:rgba(114,47,55,0.24);
}

.payment-option,
#checkoutButton{
  width:100%;
  margin-top:18px;
  padding:14px 16px;
  border-radius:50px;
  font-weight:700;
}

.payment-card.is-selected{
  transform:translateY(-8px);
}

.payment-checkout{
  max-width:760px;
  margin:40px auto 0;
  padding:30px;
  border-radius:24px;
  background:#fffaf3;
  border:1px solid rgba(92,37,43,0.22);
  box-shadow:0 18px 45px rgba(87,65,45,0.08);
  text-align:center;
}

.payment-checkout h3{
  color:#722F37;
  margin-bottom:12px;
}

.payment-checkout p{
  color:#51453d;
  line-height:1.7;
  margin-bottom:10px;
}

.payment-icon{
  background:#5C252B;
  color:#fffaf3;
}

.account-modal,
.contact-image-modal{
  background:rgba(36,27,22,0.58);
}

.search-panel button{
  background:#4A1E24;
  color:#fffaf3;
}

.search-panel button:hover{
  background:#3D1820;
}

.search-panel input:focus{
  border-color:#5C252B;
}
