@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

:root {
    /* Premium Organic Forest Greens */
    --color-green-deep: #0D3E26;      /* Luxurious, deep forest green */
    --color-green-rich: #165233;      /* Mid-tone organic green */
    --color-green-light: #226E43;     /* Brighter green for secondary highlights */
    --color-green-soft: #F2F8F4;      /* Soft sage background tint */
    
    /* Warm Sweet Honey Tones */
    --color-honey-dark: #8F590A;      /* Rich dark caramel/honey for text contrast */
    --color-honey-deep: #D98A16;      /* Deep sweet honey golden amber */
    --color-honey-primary: #F2A922;   /* Glowing warm organic honey */
    --color-honey-light: #F9BE4B;     /* Golden honey highlight */
    --color-honey-soft: #FDF6E7;      /* Gentle warm honey cream for backgrounds */
    --color-honey-cream: #FFFBF2;     /* Warm off-white */
    
    /* Neutrals & Text */
    --color-text-dark: #1E2D24;       /* Deep charcoal-green for readability */
    --color-text-muted: #4B6154;      /* Muted green-grey for descriptions */
    --color-border-light: #E5EDE8;    /* Clean soft border */
    --color-border-honey: #F5E3BD;    /* Soft honey gold border */
    
    --color-primary: var(--color-green-deep);
}

body {
    font-family: "Hind Siliguri", sans-serif;
    color: var(--color-text-dark);
    background-color: var(--color-honey-cream);
}

.btn-not-scale:hover {
    transform: scale(1) !important;
}

.container {
    max-width: 1100px;
}

.hero-section {
    background: linear-gradient(135deg, var(--color-honey-soft), var(--color-honey-cream));
    padding: 80px 10px;
    border-bottom: 1px solid var(--color-border-honey);
}

.logo {
    max-width: 130px;
}

.hero-title {
    font-size: 45px;
    font-weight: 700;
    color: var(--color-green-deep);
    margin-bottom: 20px;
    margin-top: 8px;
    line-height: 58px;
}

.hero-text {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.order-btn {
    font-size: 28px;
    font-weight: 700;
    padding: 12px 35px;
    color: white !important;
    background: linear-gradient(135deg, var(--color-honey-primary) 0%, var(--color-honey-deep) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(217, 138, 22, 0.35);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.order-btn:hover {
    background: linear-gradient(135deg, var(--color-honey-light) 0%, var(--color-honey-primary) 100%) !important;
    box-shadow: 0 15px 30px rgba(217, 138, 22, 0.55);
    transform: translateY(-4px) scale(1.05);
    color: white !important;
}

.product-img {
    width: 100%;
    border-radius: 12px;
    border: 4px solid var(--color-honey-primary);
    box-shadow: 0 15px 35px rgba(13, 62, 38, 0.12);
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 10px;
    }
    .hero-title {
        font-size: 30px;
        line-height: 45px;
    }
    .hero-text {
        font-size: 16px;
    }
    .product-img {
        width: 100%;
    }
    .order-btn {
        font-size: 22px;
        padding: 10px 25px;
        width: 100%;
        text-align: center;
    }
}

.ghee-info-section {
    padding: 50px 20px;
    background: var(--color-green-deep);
}

.info-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

.info-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--color-honey-primary);
    display: block;
    margin: 10px auto 0;
    border-radius: 10px;
}

.info-text {
    font-size: 22px;
    line-height: 1.9;
    color: white;
    margin-bottom: 0px;
}

/* Mobile Info overrides */
@media (max-width: 768px) {
    .info-title {
        font-size: 32px;
        line-height: 50px;
    }
    .info-text {
        font-size: 20px;
    }
}

.benefits-section {
    --color-primary: var(--color-green-deep);
    padding: 80px 0;
    background: var(--color-green-soft);
}

/* Section title */
.benefits-section .section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-green-deep);
    position: relative;
}

.benefits-section .section-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: var(--color-honey-deep);
    display: block;
    margin-top: 12px;
    border-radius: 10px;
}

/* Benefit card */
.benefits-section .benefit-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border-left: 5px solid var(--color-honey-primary);
    box-shadow: 0 10px 25px rgba(13, 62, 38, 0.05);
}

/* Benefit list */
.benefits-section .benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-section .benefit-list li {
    padding: 12px 0 12px 34px;
    position: relative;
    font-size: 18px;
    border-bottom: 1px solid var(--color-border-light);
}

.benefits-section .benefit-list li:last-child {
    border-bottom: none;
}

.benefits-section .benefit-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 11px;
    color: var(--color-honey-deep);
    font-weight: bold;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    font-size: 20px;
    background-color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Swiper styling */
.benefits-section .gheeSwiper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(13, 62, 38, 0.15);
}

.benefits-section .gheeSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid var(--color-green-deep);
    border-radius: 12px;
}

/* Swiper navigation */
.benefits-section .swiper-button-next,
.benefits-section .swiper-button-prev {
    color: var(--color-honey-deep);
}

.benefits-section .swiper-pagination-bullet-active {
    background: var(--color-honey-deep);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .benefits-section .section-title {
        font-size: 30px;
    }

    .benefits-section .gheeSwiper img {
        height: 260px;
    }
}

.buy-now-section {
    padding: 65px 0;
    background: var(--color-honey-soft);
    text-align: center;
}

/* Header Button */
.buy-now-section .btn-primary-sm {
    background: var(--color-green-deep);
    border-bottom: 4px solid var(--color-honey-primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 26px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(13, 62, 38, 0.15);
}

/* Features List */
.buy-now-section .buy-now-features {
    list-style: none;
    padding: 25px;
    margin: 20px 0 0 0;
    display: inline-block;
    text-align: left;
    width: 100%;
    border: 2px dashed var(--color-green-rich);
    border-radius: 12px;
    background: white;
    box-shadow: 0 10px 30px rgba(13, 62, 38, 0.04);
}

.buy-now-section .buy-now-features li {
    position: relative;
    padding-left: 30px;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.buy-now-section .buy-now-features li:not(:last-child) {
    border-bottom: 1px solid var(--color-border-light);
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.buy-now-section .buy-now-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-honey-deep);
    font-weight: bold;
}

/* ---------- Products Section ---------- */
#mydesign-products {
    background-color: var(--color-green-deep);
    padding: 60px 15px;
}

/* ---------- Buttons ---------- */
#mydesign-products .mydesign-btn {
   background: linear-gradient(135deg, var(--color-honey-primary) 0%, var(--color-honey-deep) 100%);
   color: white !important;
   display: block;
   border-radius: 25px;
   text-decoration: none;
   padding: 10px 15px;
   font-size: 16px;
   font-weight: 600;
   box-shadow: 0 4px 10px rgba(217, 138, 22, 0.3);
   transition: all 0.3s ease;
}

#mydesign-products .mydesign-btn:hover {
    background: linear-gradient(135deg, var(--color-honey-light) 0%, var(--color-honey-primary) 100%) !important;
    box-shadow: 0 6px 15px rgba(217, 138, 22, 0.5);
    transform: translateY(-2px);
}

#mydesign-products .mydesign-title {
    background: var(--color-green-rich);
    border-bottom: 3px solid var(--color-honey-primary);
    color: white;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0 auto 20px;
    display: flex;
    text-align: center;
}

/* ---------- Product Card ---------- */
#mydesign-products .mydesign-product-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    text-align: center;
    padding: 15px;
    border: 1px solid var(--color-border-light);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#mydesign-products .mydesign-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

#mydesign-products .mydesign-product-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid var(--color-border-light);
}

#mydesign-products .mydesign-product-card h5 {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-dark);
}

/* ---------- Benefits List (if needed inside this section) ---------- */
#mydesign-products .mydesign-benefits-list {
    list-style: none;
    padding-left: 0;
}

#mydesign-products .mydesign-benefits-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

#mydesign-products .mydesign-benefits-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--color-honey-deep);
}

.contact-section {
    background: linear-gradient(135deg, var(--color-green-soft) 0%, var(--color-honey-soft) 100%);
    margin: 40px auto;
    padding: 40px 20px;
    box-shadow: 0 15px 35px rgba(13, 62, 38, 0.08);
    border-radius: 16px;
    border: 1px solid var(--color-border-honey);
}

.contact-title {
    color: var(--color-green-deep);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-size: 42px;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-honey-deep);
    border-radius: 2px;
}

.contact-description {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.contact-btn {
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: white;
}

.whatsapp-btn {
     background: #09B736 !important;
}

.messenger-btn {
     background: linear-gradient(135deg, #4666f6, #b038d9, #f5507a);
}

.phone-btn {
     background: #0a94f7 !important;
}

.contact-btn:hover {
    transform: translateY(-3px);
    color: white;
}

.contact-btn svg {
    transition: all 0.3s ease;
}

.contact-btn:hover svg {
    fill: white;
}

.phone-highlight {
    background-color: var(--color-honey-light);
    padding: 5px 15px;
    border-radius: 30px;
    display: inline-block;
    margin: 5px 0;
    font-weight: 600;
    color: var(--color-green-deep);
}

.contact-icon {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .contact-title {
        padding-bottom: 10px;
        font-size: 32px;
    }
    .contact-section {
        border-radius: 15px;
        margin: 20px 15px;
    }
    .contact-btn {
        min-width: 100%;
    }
}

#checkout-green {
    background: var(--color-green-deep);
    padding: 60px 0;
}

/* White main card */
#checkout-green .checkout-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
    border: 1px solid var(--color-border-light);
}

/* Section titles */
#checkout-green .section-title {
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--color-green-deep);
}

/* Inputs */
#checkout-green .form-control {
    border-radius: 8px;
    padding: 11px 14px;
    border: 1px solid #dcdcdc;
}

#checkout-green .form-control:focus {
    border-color: var(--color-honey-primary);
    box-shadow: 0 0 0 3px rgba(242, 169, 34, .2);
    outline: none;
}

/* Shipping cards */
#checkout-green .ship-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    background: #fafafa;
    transition: all 0.2s ease;
}

#checkout-green .ship-card.active {
    border-color: var(--color-honey-primary);
    background: var(--color-honey-soft);
}

.ship-card input {
    margin-right: 8px;
    cursor: pointer;
}

/* Order table */
#checkout-green .order-table th {
    font-weight: 600;
    color: var(--color-green-deep);
}

#checkout-green .order-table td,
#checkout-green .order-table th {
    padding: 12px 10px;
}

/* Total highlight */
#checkout-green .total-row {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-green-deep);
}

/* Payment box */
#checkout-green .payment-box {
    background: var(--color-honey-soft);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--color-border-honey);
}

#checkout-green .payment-note {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 8px;
}

/* Order button */
#checkout-green .place-order-btn {
    background: linear-gradient(135deg, var(--color-honey-primary) 0%, var(--color-honey-deep) 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 14px;
    border-radius: 10px;
    border: none;
    transition: .25s;
    box-shadow: 0 4px 10px rgba(217, 138, 22, 0.3);
}

#checkout-green .place-order-btn:hover {
    background: linear-gradient(135deg, var(--color-honey-light) 0%, var(--color-honey-primary) 100%) !important;
    box-shadow: 0 6px 15px rgba(217, 138, 22, 0.5);
}

.footer {
    width: 100%;
    background-color: var(--color-green-deep);
    border-top: 4px solid var(--color-honey-primary);
    padding: 25px 0;
}

.footer-link {
    color: var(--color-honey-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--color-honey-light);
    text-decoration: underline;
}

.price-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--color-honey-soft) 0%, #FFF2D6 100%);
    text-align: center;
    margin: 25px auto;
    border-radius: 12px;
    border: 2px dashed var(--color-honey-deep);
    box-shadow: 0 10px 30px rgba(217, 138, 22, 0.05);
}

@media (max-width:1200px) {
    .price-section {
        margin: 25px 10px;
    }
}

/* Headline */
.price-section h3 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 5px;
    color: var(--color-green-deep);
}

/* Original Price */
.price-original {
    font-size: 42px;
    font-weight: 700;
    color: #888888;
    text-decoration: line-through;
    display: inline-block;
    margin-right: 15px;
}

/* Offer Price with Gradient */
.price-offer {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-green-deep);
    position: relative;
    display: inline-block;
}

/* Animated underline (optional) */
.price-offer svg {
    position: absolute;
    bottom: -0px;
    left: 0;
    width: 100%;
    height: 15px;
    stroke: var(--color-honey-deep);
    stroke-width: 3;
    fill: transparent;
    animation: draw 2s infinite alternate;
}

@keyframes draw {
    0% {
        stroke-dasharray: 0, 500;
    }
    100% {
        stroke-dasharray: 500, 0;
    }
}

/* Text wrapper */
.price-text {
    display: block;
    font-size: 20px;
    color: var(--color-text-muted);
    margin-top: 5px;
}

/* Buy button */
.btn-buy {
    margin-top: 20px;
    background: linear-gradient(135deg, var(--color-honey-primary) 0%, var(--color-honey-deep) 100%);
    color: #ffffff;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 10px rgba(217, 138, 22, 0.3);
    transition: all 0.3s;
}

.btn-buy:hover {
    background: linear-gradient(135deg, var(--color-honey-light) 0%, var(--color-honey-primary) 100%) !important;
    box-shadow: 0 6px 15px rgba(217, 138, 22, 0.5);
    transform: translateY(-2px);
}

/* Modern Quantity Selector */
.quantity-selector-container {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--color-border-honey);
    border-radius: 30px;
    background-color: var(--color-honey-soft);
    overflow: hidden;
    padding: 3px;
    margin-top: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.qty-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #ffffff;
    color: var(--color-text-dark);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background-color: var(--color-honey-primary);
    color: #ffffff;
}

.qty-input {
    width: 42px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--color-text-dark);
    outline: none;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Video Section */
.video-section {
    padding: 60px 0;
    background: var(--color-honey-cream);
}

.video-section .video-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--color-green-deep);
    margin-bottom: 25px;
    position: relative;
    text-align: center;
}

.video-section .video-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--color-honey-primary);
    display: block;
    margin: 10px auto 0;
    border-radius: 10px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(13, 62, 38, 0.15);
    border: 4px solid var(--color-honey-primary);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .video-section .video-title {
        font-size: 30px;
    }
}

/* Countdown Timer Section */
.timer-card {
  background: linear-gradient(135deg, var(--color-green-deep) 0%, var(--color-green-rich) 100%);
  border: 2px solid var(--color-honey-primary);
  color: white;
  border-radius: 16px;
  padding: 20px;
  max-width: 440px;
  margin: 35px auto;
  box-shadow: 0 15px 35px rgba(13, 62, 38, 0.2);
}

.timer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-honey-primary);
}

.timer-flex {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.timer-segment {
  background: white;
  color: var(--color-green-deep);
  border: 1px solid var(--color-honey-light);
  border-radius: 8px;
  width: 68px;
  padding: 8px 0;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.timer-num {
  font-size: 26px;
  line-height: 1;
  color: var(--color-green-deep);
}

.timer-label {
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
  color: var(--color-text-muted);
}
