/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* COLORS */
:root {
    --primary: #1B5E20;
    --secondary: #D4AF37;
    --light: #f8f8f8;
    --dark: #222;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* CONTAINER */
.container {
    width: 90%;
    margin: auto;
}

/* BUTTON */
.btn {
    padding: 10px 18px;
    border: none;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #144d17;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.continue-shopping-btn{
    background:#f8f9fa;
    border:1px solid #e5e5e5;
    color:#666;
    font-weight:500;
    transition:.3s;
}


.continue-shopping-btn:hover{
    background:#efefef;
    color:#333;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

/* TRACK BUTTON FIX */
.nav-links .btn {
    background: var(--primary);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
}

.nav-links .btn:hover {
    background: #144d17;
    color: #fff;
}

@media(max-width:768px){

    .navbar {
        flex-direction: row;
    }

    .logo img {
        height: 50px;
    }

    .nav-links {
        top: 65px;
    }
}

/* HERO */
.hero {
    height: 80vh;
    background: url('../images/hero.png') no-repeat center/cover;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.3);
}


.hero-content {
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    margin-bottom: 20px;
    color: white;
}

/* FOOTER */
@media(max-width:768px){
    .main-footer .col-md-3{
        text-align:center;
    }
}

.main-footer {
    background: #0d0d0d;
    color: #fff;
    padding: 40px 0 20px;
    font-size: 14px;
}

.main-footer h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.main-footer p {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #28a745;
}

.main-footer hr {
    border-color: #333;
    margin: 20px 0;
}

.footer-bottom {
    font-size: 13px;
    color: #aaa;
}

.footer-bottom .india {
    display: block;
    margin-top: 5px;
    color: #ddd;
}

/* RESPONSIVE */
@media(max-width:768px){

    .navbar {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 10px;
    }

    .hero {
        height: 60vh;
        text-align: center;
    }

    .hero h1 {
        font-size: 28px;
    }
}



/* MENU TOGGLE RIGHT */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    position: absolute;
    right: 0;
}

/* MOBILE MENU */
@media(max-width:768px){

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        width: 220px;
        flex-direction: column;
        display: none;
        padding: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links a {
        margin: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }
}

/* FEATURES */
.features {
    background: #fff;
    padding: 50px 0;
    margin-top: 30px; /* ðŸ”¥ hero gap fix */
}

.features .col-md-3 {
    padding: 20px;
}

.features h5 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
}

.features p {
    font-size: 14px;
    color: #666;
}

.feature-box {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* PRODUCTS */
.products {
    background: var(--light);
}

.card {
    border: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* TRACK */
.track {
    background: #fff;
}

.track input {
    padding: 10px;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: 0.4s;
}

.product-card h5 {
    font-size: 15px;
    margin-top: 10px;
}

.product-price {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
}

.product-card:hover {
    transform: translateY(-8px);
}

/* TRACK BOX */
.track-box {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
}

.track-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

.track-box button {
    width: 100%;
    background: var(--primary);
    border: none;
    padding: 10px;
    color: #fff;
}

.track-box button:hover {
    background: #144d17;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* WHY */
.why h2 {
    font-size: 28px;
    font-weight: 600;
}

.why-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.why-box h5 {
    font-size: 23px;
    margin-top: 10px;
}

.why-box p {
    font-size: 14px;
    color: #666;
}

/* CTA */
.cta {
    background: #4F7942; /* tea gold/brown */
    color: #fff;
    padding: 60px 0;
}

.cta h2 {
    font-size: 30px;
    font-weight: 600;
}

.cta p {
    margin-top: 10px;
    color: white;
}

.product-card a {
    text-decoration: none;
    color: var(--dark);
}

.product-card h5 {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 500;
}

.product-price {
    color: var(--primary);
    font-weight: 600;
    margin-top: 5px;
}



.mini-hero {
    height: 250px;
    background: url('../images/hero.png') center/cover no-repeat;
    margin: 50px 0;
   
}

/* HEADINGS */
h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* PARAGRAPH */
p {
    color: #555;
    font-size: 15px;
}

section {
    padding: 70px 0;
}

.container {
    max-width: 1200px;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

/* PRODUCT PAGE */
#mainImage {
    transition: 0.3s;
}

#mainImage:hover {
    transform: scale(1.03);
}

select {
    padding: 10px;
}

h2 {
    font-size: 28px;
}

h4 {
    margin-top: 15px;
}

.main-img {
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:12px;
}

.thumb {
    width:70px;
    height:70px;
    object-fit:cover;
    cursor:pointer;
    border-radius:8px;
    border:2px solid transparent;
}

.thumb.active {
    border:2px solid var(--primary);
}

.variant-btn {
    border:1px solid #ddd;
    padding:8px 12px;
    margin:5px;
    border-radius:6px;
    background:#fff;
}

.active-variant {
    background:var(--primary);
    color:#fff;
}

.price-old {
    text-decoration:line-through;
    color:#888;
}

.related-card {
    text-decoration:none;
    color:#000;
}

.related-card img {
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:10px;
}

.related-card:hover {
    transform:translateY(-5px);
}

.qty-btn {
    padding: 5px 12px;
    border: 1px solid #ddd;
    background: #fff;
}

#qty {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
}



.main-img:hover {
    transform: scale(2.08);
}

.zoom-container {
    overflow: hidden;
    border-radius: 12px;
}

.main-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zoom-container:hover .main-img {
    transform: scale(1.2);
}

.price-new {
    color: var(--primary);
    font-size: 26px;
    font-weight: 600;
}

.price-old {
    font-size: 16px;
}

.related-price {
    color: var(--primary);
    font-weight: 600;
    margin-top: 5px;
}

.sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px;
    display: none;
}

.sticky-cart button {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px;
}

.trust-badges div {
    font-size: 14px;
    margin-bottom: 5px;
    color: #444;
}

.delivery-msg {
    color: green;
    font-weight: 500;
    margin-top: 5px;
}

.review-box {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    margin-top: 10px;
    color: #444;
}

.trust-inline span {
    background: #f5f5f5;
    padding: 6px 10px;
    border-radius: 20px;
}


.checkout-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}

.checkout-box input,
.checkout-box select {
    padding: 10px;
    border-radius: 6px;
}

.checkout-box h5 {
    margin-bottom: 15px;
}

.product-cards {
    display: block;
    text-decoration: none;
    color: #000;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
}

.product-cards img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
}

.product-cards h5 {
    font-size: 14px;
    margin-top: 8px;
}

.product-cards .price {
    color: var(--primary);
    font-weight: 600;
    margin-top: 5px;
}

.product-cards:hover {
    transform: translateY(-5px);
}

.cart-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.qty-btn {
    padding: 4px 10px;
    border: 1px solid #ddd;
    background: #fff;
    margin: 0 5px;
    text-decoration: none;
    color: #000;
}

.cart-item input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
}

.remove-btn {
    color: red;
    font-size: 14px;
    text-decoration: none;
}



.track-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.track-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 10px;
}

.tracking-box {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}

/* STATUS COLORS */
.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending {
    background: #ffeeba;
    color: #856404;
}

.status-shipped {
    background: #cce5ff;
    color: #004085;
}

.status-delivered {
    background: #d4edda;
    color: #155724;
}

.about-hero {
    text-align: center;
    margin-bottom: 40px;
}

.about-section img {
    border-radius: 10px;
}

.about-box {
    padding: 15px;
}

.contact-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-box h5 {
    margin-bottom: 15px;
}

.contact-box input,
.contact-box textarea {
    border-radius: 6px;
    padding: 10px;
}

/* ===== BREW SECTION IMPROVED ===== */

.brew-section {
    background: #fff;
    padding: 60px 0;
}

.brew-title {
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.brew-title span {
    color: #1b5e20;
}

/* CENTER FIX */
.brew-section .row {
    justify-content: center;
    gap: 20px;
}

/* STEP CARD */
.brew-step {
    text-align: center;
    max-width: 160px;
    transition: 0.3s;
}

/* ICON */
.brew-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    background: #1b5e20;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 10px;

    transition: 0.3s;
}

/* TEXT */
.brew-step h6 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.brew-step p {
    font-size: 13px;
    color: #555;
}

/* HOVER EFFECT */
.brew-step:hover {
    transform: translateY(-6px);
}

.brew-step:hover .brew-icon {
    background: #2e7d32;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ANIMATION */
.brew-step {
    opacity: 0;
    transform: translateY(30px);
    animation: brewFadeUp 0.6s ease forwards;
}

.brew-step:nth-child(1){ animation-delay: 0.1s; }
.brew-step:nth-child(2){ animation-delay: 0.2s; }
.brew-step:nth-child(3){ animation-delay: 0.3s; }
.brew-step:nth-child(4){ animation-delay: 0.4s; }
.brew-step:nth-child(5){ animation-delay: 0.5s; }

@keyframes brewFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE FIX */
@media(max-width:768px){

    .brew-section .row {
        gap: 10px;
    }

    .brew-step {
        max-width: 45%;
    }

}

/* ===== PREMIUM BREW SECTION ===== */

.brew-pro {
    
    background: linear-gradient(#FFBD31, #f4f9f4);
    padding: 70px 0;
}

.brew-pro-title {
    font-weight: 600;
    margin-bottom: 40px;
}

.brew-pro-title span {
    color: #1b5e20;
}

/* STEPS WRAPPER */
.brew-pro-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}



/* STEP */
.brew-pro-step {
    text-align: center;
    
    position: relative;
    min-width: 140px;

    opacity: 0;
    transform: translateY(30px);
    animation: brewFade 0.6s ease forwards;
}

/* DELAY */
.brew-pro-step:nth-child(1){animation-delay:.1s;}
.brew-pro-step:nth-child(3){animation-delay:.2s;}
.brew-pro-step:nth-child(5){animation-delay:.3s;}
.brew-pro-step:nth-child(7){animation-delay:.4s;}
.brew-pro-step:nth-child(9){animation-delay:.5s;}

/* ICON */
.brew-pro-icon {
    width: 70px;
    height: 70px;
    background: #1b5e20;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: auto;
    margin-bottom: 10px;

    transition: 0.3s;
}

/* TEXT */
.brew-pro-step h6 {
    font-size: 18px;
    font-weight: 600;
}

.brew-pro-step p {
    font-size: 15px;
    color: #555;
}

/* LINE */
.brew-pro-line {
    width: 50px;
    height: 2px;
    background: #c8e6c9;
    margin: 0 10px;
}

/* HOVER */
.brew-pro-step:hover .brew-pro-icon {
    background: #2e7d32;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* ANIMATION */
@keyframes brewFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media(max-width:768px){

    .brew-pro-steps {
        flex-direction: column;
    }

    .brew-pro-line {
        width: 2px;
        height: 25px;
        margin: 10px auto;
    }

}

/* TESTIMONIAL */
.testimonial-section {
    background: #f8fdf8;
    padding: 60px 0;
}

/* SLIDER */
.testimonial-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

/* CARD */
.testimonial-card {
    min-width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    scroll-snap-align: start;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* TEXT */
.testimonial-text {
    font-size: 14px;
    margin: 10px 0;
}

/* USER */
.testimonial-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

/* BADGES */
/* TRUST BADGES PREMIUM */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* PILL STYLE */
.badge-pill {
    background: #ffffff;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: default;
}

/* HOVER EFFECT 🔥 */
.badge-pill:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    background: #1b5e20;
    color: #fff;
}



/* WRAPPER */
.testimonial-wrapper {
    position: relative;
}

/* SLIDER */
.testimonial-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

/* CARD */
.testimonial-card {
    min-width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* BUTTON */
.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #1b5e20;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.slider-btn.left { left: -10px; }
.slider-btn.right { right: -10px; }

/* VERIFIED BADGE */
.verified {
    color: #1b5e20;
    font-size: 12px;
    margin-left: 5px;
}

/* HOVER SHOW BUTTON */
.slider-btn {
    opacity: 0;
    transition: 0.3s;
}

.testimonial-wrapper:hover .slider-btn {
    opacity: 1;
}

/* MOBILE */
@media(max-width:768px){
    .slider-btn {
        display: none;
    }
}


.testimonial-dots {
    margin-top: 20px;
    display: flex !important;
    justify-content: center;
    gap: 8px;
}



.testimonial-dots span {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block; 
}

.testimonial-dots span.active {
    background: #1b5e20;
    transform: scale(1.3);
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 12px;
}

/* BASE */
.social-icons a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #111;

    color: #fff;
    font-size: 16px;

    transition: all 0.3s ease;
}

/* INSTAGRAM */
.social-icons a.insta:hover {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
    box-shadow: 0 0 12px rgba(214,41,118,0.7);
}

/* FACEBOOK */
.social-icons a.fb:hover {
    background: #1877f2;
    box-shadow: 0 0 12px rgba(24,119,242,0.7);
}

/* YOUTUBE */
.social-icons a.yt:hover {
    background: #ff0000;
    box-shadow: 0 0 12px rgba(255,0,0,0.7);
}

/* TWITTER */
.social-icons a.tw:hover {
    background: #1da1f2;
    box-shadow: 0 0 12px rgba(29,161,242,0.7);
}

/* HOVER SCALE */
.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
}