 /* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NAVBAR */
.premium-navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* LOGO LEFT */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    width: 75px;
    height: auto;
}

.nav-logo h1 {
    font-size: 22px;
    font-weight: bold;
    color: #C69618;
}

/* NAV LINKS (DESKTOP) */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    color: #333;
    transition: 0.3s ease;
}

/* GOLD BUTTONS */
.gold-btn {
    background: #C69618;
    color: #fff !important;
}

.gold-btn:hover {
    background: #a57a12;
}

/* ENQUIRY BUTTON */
.premium-btn {
    background: #C69618;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    border-radius: 6px;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
}

/* MOBILE VIEW */
@media (max-width: 900px) {

    

    /* HIDE DESKTOP LINKS */
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        gap: 15px;
        display: none;
        box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    }

    /* OPEN MENU */
    .nav-links.active {
        display: flex;
    }

    .desktop-btn {
        display: none;
    }

    .mobile-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}
/* ================= MOBILE NAV ================= */

@media (max-width: 900px) {

  .hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
  }

  .hamburger span {
      width: 25px;
      height: 3px;
      background: #000;
      display: block;
  }

  .nav-links {
      position: absolute;
      top: 90px;
      right: 0;
      width: 100%;
      background: #ffffff;
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
      display: none;
  }

  .nav-links.active {
      display: flex;
  }

  .nav-links li {
      margin: 12px 0;
  }

}
/* HEADER IS FIXED */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.top-marquee {
    position: fixed;
    top: 70px;                 /* header height */
    width: 100%;
    height: 45px;
    background: #3a0000;
    z-index: 999;
    display: flex;
    align-items: center;
}

.top-marquee marquee {
    color: #fff;
    font-size: 15px;
}

/* ================= RUNNING TEXT ================= */
/*
.running-text-wrapper {
    background: linear-gradient(90deg, #d4a73d, #e8c45c);
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    margin-top: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.running-text {
    display: inline-block;
    padding-left: 100%;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Playfair Display';
    color: #4d3505;
    animation: slide 16s linear infinite;
}

@keyframes slide {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* =================CAROUSEL ================= */
/* Reset (light) */
/* { box-sizing: border-box; margin: 0; padding: 0; }

*/
html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background: #fff;
}

/* Carousel Container */
.carousel {
  position: relative;
  width: 100%;
  max-height: 450px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 115px;  /* 90px header + 45px marquee */
 
}


/* Slides */
.track {
  display: flex;
  width: 400%; /* 4 slides */
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 100%;
}

.slide img {
  width: 100%;
  height: 400px;     
  object-fit: cover;  
  display: block;
}

/* Controls */
.control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
}

.control.prev { left: 15px; }
.control.next { right: 15px; }

/* Indicators */
.indicators {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.7);
  border: none;
}

.indicator[aria-selected="true"] {
  width: 18px;
  background: #fff;
}/* ================= CAROUSEL ================= */

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 115px;
  aspect-ratio: 1440 / 350;   /* exact banner ratio */
}

/* Slides */
.track {
  display: flex;
  width: 400%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 100%;
}

/* Image */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Controls */
.control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
}

.control.prev { left: 15px; }
.control.next { right: 15px; }

/* Indicators */
.indicators {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.7);
  border: none;
}

.indicator[aria-selected="true"] {
  width: 18px;
  background: #fff;
}

/* ================= MOBILE FIX ================= */

@media(max-width:700px){

  .carousel{
    aspect-ratio: 16 / 5;  /* slightly taller for mobile readability */
  }

  .control{
    width:36px;
    height:36px;
    font-size:14px;
  }

  .indicator{
    width:8px;
    height:8px;
  }

  .indicator[aria-selected="true"]{
    width:14px;
  }

}


/* ================= PRODUCT SECTION ================= */
.product-section {
    padding: 60px 7%;
    text-align: center;
    background: #fffdf5;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #4d3505;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4a73d, #e8c45c);
    display: block;
    margin: 12px auto 0;
    border-radius: 5px;
}

/* Product container */
.product-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    flex-wrap: wrap;
}

/* Product card */
.product-card {
    width: 250px;
    background: #ffffff;
    padding: 10px;
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: 0.4s ease;
    border: 1px solid #f5e1a3;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

/* Product image */
.product-img {
    width: 100%;
  height: 200px;    
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img img {
    max-height: 300px;   
    width: 100%;
    object-fit: cover;
    
}

/* Product title */
.product-card h3 {
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    color: #4d3505;
    margin: 5px 0 8px;
}

/* Product description */
.product-card p {
    font-size: 14px;
    color: #6b5a2b;
    margin-bottom: 5px;
}

/* Button */
.product-btn {
    text-decoration: none;
    background: linear-gradient(135deg, #d4a73d, #e8c45c);
    color: #4d3505;
    padding: 10px;
    border-radius: 25px;
    font-weight: 400;
    display: inline-block;
    transition: 0.3s;
}

.product-btn:hover {
    background: linear-gradient(135deg, #b68b2f, #d8b346);
    color: #fff;
}
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card {
  cursor: pointer;
}


/* Mobile View */
@media (max-width: 850px) {
    .section-title {
        font-size: 32px;
    }

    .product-card {
        width: 90%;
    }
}


/* ================= WHY CHOOSE US ================= */
.why-section {
    padding: 70px 7%;
    background: #fffdf5;
    text-align: center;
}

/* Container */
.why-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Card */
.why-card {
    width: 260px;
    background: #ffffff;
    padding: 40px 25px; /* more vertical space */
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border: 1px solid #f5e1a3;
    transition: 0.35s ease;
    cursor: default;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

/* Icon (INCREASED SIZE) */
.why-icon img {
    width: 170px;           
    height: 170px;
    object-fit: contain;
    margin-bottom: 22px;
    filter: drop-shadow(0px 6px 10px rgba(0,0,0,0.18));
}

/* Title */
.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;          /* ⬅ slightly bigger */
    color: #4d3505;
    margin: 0;
}

/* Mobile */
@media (max-width: 850px) {
    .why-card {
        width: 90%;
    }
}


/* =================== DISHES SECTION =================== */
.dishes-section {
    padding: 70px 0;
    background: #fffdf5;
}

.dish-wrapper {
    width: 92%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 55px;
}

/* Single Dish Block */
.dish-item {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: fadeUp 0.9s ease forwards;
    opacity: 0;
}

.dish-item.reverse {
    flex-direction: row-reverse;
}

/* Image */
.dish-img {
    width: 55%;
    height: 340px;
    background-size: cover;
    background-position: center;
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.22);
}

/* Text */
.dish-text {
    width: 45%;
}

.dish-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #4d3505;
    margin-bottom: 10px;
}

.dish-text p {
    font-size: 16px;
    color: #6b5a2b;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Gold label */
.oil-tag {
    background: linear-gradient(135deg, #d4a73d, #e8c45c);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    color: #4d3505;
    display: inline-block;
}

/* Fade-up animation */
@keyframes fadeUp {
    0% { transform: translateY(40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 850px) {
    .dish-item,
    .dish-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .dish-img {
        width: 100%;
        height: 260px;
    }

    .dish-text {
        width: 100%;
    }

    .dish-text h3 {
        font-size: 26px;
    }
}


/* =================== QUALITY SECTION =================== */
.quality-section {
    padding: 80px 7%;
    background: #fffcf2;
}

.quality-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* Left Side */
.quality-left {
    width: 55%;
}

.quality-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #4d3505;
    margin-bottom: 15px;
}

.quality-left p {
    font-size: 16px;
    color: #6b5a2b;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* List with golden bullets */
.quality-list {
    list-style: none;
}

.quality-list li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4d3505;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quality-list li span {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #d4a73d, #e8c45c);
    border-radius: 50%;
    display: inline-block;
}

/* Right Side - Badges */
.quality-right {
    width: 40%;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cert-badge {
    width: 160px;
    background: white;
    padding: 25px 20px;
    border-radius: 18px;
    border: 1px solid #f5e1a3;
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
    text-align: center;
    transition: 0.35s ease;
}

.cert-badge:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.cert-badge img {
    width: 70px;
    margin-bottom: 10px;
}

.cert-badge h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #4d3505;
}

/* Mobile Responsive */
@media (max-width: 850px) {
    .quality-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .quality-left,
    .quality-right {
        width: 100%;
    }

    .quality-right {
        justify-content: center;
    }
}


/* =================== PREMIUM BENEFITS NEW UI =================== */

.benefits-premium {
    padding: 80px 8%;
    background: #fff7ec;
    text-align: center;
}

.benefits-tagline {
    color: #8b6a3c;
    margin-top: -10px;
    margin-bottom: 50px;
    font-style: italic;
    font-size: 16px;
}

.benefits-wrapper {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Benefit Row */
.benefit-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    background: #fff3d9;
}

/* Golden Left Accent Line */
.benefit-line {
    width: 6px;
    height: 60%;
    background: linear-gradient(180deg, #d3a661, #b78b42);
    border-radius: 10px;
    margin-right: 25px;
}

/* Text Content */
.benefit-content {
    text-align: left;
    flex: 1;
}

.benefit-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #4d3505;
    margin-bottom: 5px;
}

.benefit-content p {
    color: #6b5a3a;
    font-size: 15px;
    line-height: 1.6;
}

/* Icons */
.benefit-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Mobile Friendly */
@media (max-width: 850px) {
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .benefit-line {
        height: 4px;
        width: 60%;
        margin: 0 auto 15px auto;
    }

    .benefit-content {
        text-align: center;
        margin-bottom: 15px;
    }
}





/* ===================== TESTIMONIAL SECTION ===================== */
/* ===================== NEW TESTIMONIAL UI ===================== */

.testimonial-section{
  padding:120px 20px;
  background:linear-gradient(135deg,#fff7ec,#ffe8c8);
  text-align:center;
  position:relative;
}

.testi-title{
  font-size:45px;
  font-weight:900;
  color:#7a0000;
  margin-bottom:10px;
}

.testi-sub{
  font-size:18px;
  font-weight:600;
  color:#444;
  margin-bottom:50px;
}

/* CAROUSEL WRAPPER */
.testimonial-carousel{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:25px;
  overflow:hidden;
  flex-wrap:nowrap;
}

/* CARD STYLE */
.testi-card{
  min-width:350px;
  max-width:350px;
  background:rgba(255,255,255,0.45);
  backdrop-filter:blur(20px);
  padding:35px;
  border-radius:22px;
  border:1px solid rgba(122,0,0,0.35);
  box-shadow:0 12px 40px rgba(0,0,0,0.15);
  opacity:.35;
  transform:scale(.85);
  transition:.6s ease;
}

.testi-card.active{
  opacity:1;
  transform:scale(1.05);
  border:2px solid #7a0000;
  box-shadow:0 20px 45px rgba(122,0,0,0.25);
}

.testi-card p{
  font-size:18px;
  font-style:italic;
  line-height:1.7;
  color:#333;
  margin-bottom:20px;
}

.testi-card h3{
  font-size:20px;
  font-weight:800;
  color:#7a0000;
}

/* DOTS NAV */
.nav-dots{
  margin-top:35px;
}

.nav-dots span{
  height:14px;width:14px;
  background:#bcbcbc;
  display:inline-block;
  border-radius:50%;
  margin:0 6px;
  cursor:pointer;
  transition:.3s;
}
.nav-dots .active-dot{
  background:#7a0000;
  transform:scale(1.4);
}

/* ================= MOBILE FIX ================= */

@media(max-width:900px){

  .testimonial-carousel{
    overflow-x:auto;
    scroll-behavior:smooth;
    padding-bottom:10px;
  }

  .testimonial-carousel::-webkit-scrollbar{
    display:none;
  }

  .testi-card{
    min-width:280px;
    max-width:280px;
  }

  .testi-card.active{
    transform:scale(1); /* remove zoom on mobile */
  }

}

@media(max-width:600px){

  .testimonial-section{
    padding:80px 15px;
  }

  .testimonial-carousel{
    gap:15px;
    justify-content:flex-start;
  }

  .testi-title{
    font-size:30px;
  }

  .testi-sub{
    font-size:16px;
    margin-bottom:30px;
  }

  .testi-card{
    min-width:260px;
    max-width:260px;
    padding:25px;
  }

  .testi-card p{
    font-size:15px;
  }

}



/* ================= MANAGEMENT SECTION ================= */

.management-section {
    text-align: center;
    padding: 80px 20px;
    background: #fff7ea;
}

.sec-title {
    font-size: 42px;
    font-weight: 700;
    color: #d4a017; /* premium gold */
    margin-bottom: 10px;
}

.sec-subtitle {
    color: #5a4b3d;
    font-size: 18px;
    margin-bottom: 50px;
}

.management-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.manager-card {
    width: 310px;
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.manager-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.16);
}

.mgr-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #d4a017; /* gold */
}

.mgr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manager-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #3b2f1e;
}

.position {
    font-size: 15px;
    font-weight: 600;
    color: #d4a017;
    margin-bottom: 15px;
}

.mgr-desc {
    font-size: 14px;
    color: #5a4b3d;
    line-height: 1.5;
}

/* MOBILE */
@media(max-width: 768px) {
    .sec-title { font-size: 32px; }
    .manager-card { width: 90%; }
}


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

.footer {
    background: #3b2f1e; /* premium brown-gold tone */
    color: #fff;
    padding: 70px 20px 30px;
    margin-top: 70px;
    position: relative;
    border-top: 3px solid #d4a017;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: auto;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: #d4a017; /* gold */
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.footer-about {
    color: #e8dfd0;
    line-height: 1.7;
    font-size: 15px;
}

.footer-social a {
    color: #d4a017;
    font-size: 20px;
    margin-right: 15px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
}

/* Column Titles */
.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    color: #d4a017;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

/* Links */
.footer-col ul {
    padding: 0;
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #e8dfd0;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #d4a017;
}

/* Contact */
.footer-col p i {
    margin-right: 10px;
    color: #d4a017;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 6px 0 0 6px;
    outline: none;
    flex: 1;
}

.newsletter-form button {
    padding: 12px 18px;
    background: #d4a017;
    border: none;
    color: #3b2f1e;
    font-weight: 700;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #b78d0f;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #594a34;
    margin-top: 40px;
    padding-top: 15px;
}

.footer-bottom p {
    color: #e8dfd0;
    font-size: 14px;
}

/* Credit Line */
.footer-bottom .credit {
    margin-top: 5px;
    font-size: 14px;
    color: #e8dfd0;
    letter-spacing: 0.5px;
}

.footer-bottom .credit span {
    color: #d4a017; /* premium gold */
    font-weight: 600;
}

/* Mobile */
@media(max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input {
        border-radius: 6px;
        margin-bottom: 10px;
    }
    .newsletter-form button {
        border-radius: 6px;
    }
}


/* ================= POPUP ================= */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 14, 8, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-box {
    background: #3b2f1e;
    padding: 40px 30px;
    width: 90%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    border: 2px solid #d4a017;
    position: relative;
    color: #fff;
    animation: popIn 0.4s ease-out;
}

@keyframes popIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-popup {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 26px;
    cursor: pointer;
    color: #d4a017;
    transition: 0.3s;
}

.close-popup:hover { color: #fff; }

.popup-title {
    font-size: 26px;
    font-weight: 700;
    color: #d4a017;
    margin-bottom: 5px;
    text-align: center;
}

.popup-subtitle {
    text-align: center;
    color: #e8dfd0;
    margin-bottom: 20px;
}

.popup-form input,
.popup-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
    outline: none;
    background: #e8dfd0;
    color: #3b2f1e;
    font-size: 15px;
}

.popup-btn {
    width: 100%;
    padding: 12px;
    background: #d4a017;
    border: none;
    color: #3b2f1e;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.popup-btn:hover { background: #b78d0f; }
