:root {
    --primary-color: #0A3B24; /* Deep Forest Green for luxury */
    --secondary-color: #C85A17; /* Rich Rust/Gold for buttons/accents */
    --text-color: #1A231F; /* Premium dark text */
    --light-bg: #FDFBF7; /* Pale Ivory background */
    --card-bg: #ffffff; /* Pure white cards */
    --white: #ffffff;
    --border-color: #E5E0D5; /* Warm subtle border */
    --discount-green: #EBF2ED; /* Subtle green bg for discount */
    --discount-text: #0A3B24;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text-color);
    background-color: #fdfaf3;
    /* Soft, blurry organic gradients that perfectly match the glowing background in the reference UI */
    background-image: 
        radial-gradient(ellipse 80% 60% at bottom left, rgba(163, 210, 71, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 80% 60% at bottom right, rgba(140, 198, 63, 0.15) 0%, transparent 70%),
        linear-gradient(to bottom, #fdfaf3 0%, #f7f3e6 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent */
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Premium shadow */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1; /* Take up 1/3 of space */
    order: 2; /* Put logo in the middle */
}

.logo img {
    height: 130px; /* Height ensuring TM symbol at top right is clearly visible */
    object-fit: contain;
}

.brand-name {
    display: none; /* The new logo already has the text, so hiding this */
}

nav#nav-menu {
    flex: 1; /* Take up 1/3 of space */
    order: 1; /* Put nav on the left */
    display: flex;
    justify-content: flex-start;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    transition: color 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

.header-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
    flex: 1; /* Take up 1/3 of space */
    order: 3; /* Put icons on the right */
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Download App Banner */
.download-app-banner {
    background-color: #0b4a38;
    color: var(--white);
    padding: 10px 0;
}

.app-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-icon {
    background-color: #156d53;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-weight: bold;
    font-family: serif;
    font-size: 24px;
}

.app-info strong {
    font-size: 16px;
    display: block;
}

.app-info p {
    font-size: 12px;
    color: #ccc;
    margin-top: 2px;
}

.btn-download {
    background-color: #fce3a1;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.btn-download:hover {
    background-color: #f5d175;
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--light-bg);
}

.hero-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 1942 / 809;
    object-fit: cover;
    object-position: center;
    max-width: 1920px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.hero-banner img.active {
    position: relative;
    opacity: 1;
    z-index: 2;
}

.banner-prev, .banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s;
}

.banner-prev:hover, .banner-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.banner-prev { left: 20px; }
.banner-next { right: 20px; }

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.banner-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Category Icons */
.category-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 0 10px; /* Reduced vertical space */
    background-color: transparent; /* Changed from white to blend with body */
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s;
}

.category:hover .icon-circle {
    background-color: var(--primary-color);
    color: var(--white);
}

.category span {
    font-size: 14px;
    font-weight: 500;
}

/* Products Section */
.products-section {
    padding: 10px 20px 40px; /* Reduced top padding */
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px; /* Reduced bottom margin */
    color: var(--primary-color);
}

.product-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto; /* Enables horizontal scrolling */
    gap: 25px;
    padding-bottom: 15px; /* Space for scrollbar */
    scroll-behavior: smooth;
    /* Hide scrollbar for cleaner look across browsers */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.product-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.product-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    min-width: 280px;
    width: 280px;
    flex: 0 0 auto;
}

.product-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    height: 100%; /* Fill the wrapper height */
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.save-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: var(--secondary-color); /* Rust pill color */
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.img-container {
    background-color: #fcfbf9; /* Soft beige background for images */
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
}

.img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-info {
    padding: 0 5px;
}

.product-info h3 {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.old-price {
    text-decoration: line-through;
    color: #777;
    font-size: 12px;
}

.new-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #f5a623;
    font-size: 13px;
    margin-bottom: 15px;
}

.reviews {
    color: #777;
    font-weight: 400;
    font-size: 12px;
    margin-left: 5px;
}

.btn-add {
    width: 100%;
    background-color: var(--secondary-color); /* Theme color */
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-add:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 59, 36, 0.2);
}

/* Certifications */
.certifications {
    background-color: var(--card-bg);
    padding: 30px 0;
    border-top: 1px solid #e8ede3;
}

.cert-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.cert-item {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.footer-left {
    flex: 1 1 300px;
}
.footer-links {
    flex: 1 1 300px;
    display: flex;
    gap: 40px;
}
.footer-right {
    flex: 1 1 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 100px; /* Increased size to display detailed trademark logo */
    background-color: #faf6f0; /* Soft warm background matching logo inner fill */
    padding: 4px;
    border-radius: 12px; /* Slight rounding preserving top-right TM symbol */
    object-fit: contain;
}

.footer-logo span {
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
}

.footer-left p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-left a {
    color: var(--white);
    text-decoration: underline;
}

.newsletter {
    margin: 20px 0;
}

.newsletter h4 {
    margin-bottom: 15px;
    font-size: 14px;
}

.input-group {
    display: flex;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.input-group input {
    background: transparent;
    border: none;
    color: white;
    flex: 1;
    outline: none;
}

.input-group input::placeholder {
    color: #aaa;
}

.input-group button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}

.copyright {
    font-size: 12px;
    color: #999;
}



.link-column h4 {
    color: #e5973b;
    margin-bottom: 20px;
    font-size: 14px;
}

.link-column ul {
    list-style: none;
}

.link-column ul li {
    margin-bottom: 12px;
}

.link-column ul li a {
    font-size: 14px;
    color: #ccc;
    transition: color 0.3s;
}

.link-column ul li a:hover {
    color: var(--white);
}

.footer-right h4 {
    color: #e5973b;
    margin-bottom: 15px;
    font-size: 14px;
}

.btn-contact {
    background-color: #e5973b;
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: #f5a623;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: #1c6d55;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fce3a1;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #27856b;
}

.app-links h4 {
    color: var(--white);
}

.store-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.store-buttons img {
    height: 40px;
}
/* Bilona Process Section */
.bilona-process {
    background-image: url('../images/bilona-bg.png');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.bilona-title {
    text-align: center;
    color: #1a422d;
    font-size: 36px;
    margin-bottom: 10px;
}

.bilona-subtitle {
    text-align: center;
    color: #333;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 16px;
}

.bilona-timeline {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    padding-bottom: 50px;
    height: 1000px; /* Fixed height for absolute exact positioning */
}

.timeline-svg-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.timeline-step {
    position: absolute;
    width: 420px;
    z-index: 2;
    transform: translate(-50%, -50%); /* Centers the card exactly on the point */
}

/* Position exactly on the SVG curve points */
.timeline-step.step-1 { top: 10%; left: 25%; }
.timeline-step.step-2 { top: 30%; left: 75%; }
.timeline-step.step-3 { top: 50%; left: 25%; }
.timeline-step.step-4 { top: 70%; left: 75%; }
.timeline-step.step-5 { top: 90%; left: 25%; }

.step-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px 25px;
    width: 100%;
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    align-items: center;
}

.step-badge {
    background: #1a422d;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    top: -18px;
    left: -18px;
    border: 4px solid white;
    z-index: 3;
}

.step-content h4 {
    font-size: 15px;
    color: #1a422d;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

.step-img {
    width: 60px;
    height: 60px;
    background: #e6f0eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1a422d;
    font-size: 24px;
}


/* Cart Badge */
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #e5973b;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-header h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}
.cart-close:hover {
    color: #000;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: #f9f9f9;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #333;
    font-size: 14px;
    margin-bottom: 10px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.qty-selector button {
    background: #fff;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 16px;
    color: #555;
}
.qty-selector button:hover {
    background: #f5f5f5;
}

.qty-selector span {
    width: 30px;
    text-align: center;
    font-size: 14px;
}

.btn-remove {
    background: #4a5c48;
    color: #fff;
    border: none;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.btn-remove:hover {
    background: #334231;
}

.cart-footer {
    padding: 20px;
    background: #fdfdfd;
    border-top: 1px solid #eee;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cart-tax-note {
    font-size: 12px;
    color: #777;
    margin-bottom: 15px;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background-color: #2b4f3b;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-checkout:hover {
    background-color: #1e3a29;
}

/* ----------------------------
   CATALOG PAGE (products.php)
------------------------------- */
.catalog-page {
    display: flex;
    gap: 40px;
    padding: 50px 20px;
    align-items: flex-start;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background: var(--white);
    border-radius: 12px;
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    flex-shrink: 0;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    border-bottom: 1px solid #f0f0f0;
}
.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    font-size: 15px;
    font-weight: 600;
    color: #1a422d;
    transition: background-color 0.3s, padding-left 0.3s;
}

.sidebar-link i {
    font-size: 12px;
    color: #8cc63f;
    background: #f0f7e8;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-link:hover {
    background-color: #f9fbf7;
    padding-left: 30px;
}

/* Catalog Grid */
.catalog-content {
    flex: 1;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.catalog-header h2 {
    font-size: 14px;
    font-weight: 700;
    color: #8c9c9d;
    letter-spacing: 1px;
}

.catalog-nav .nav-btn {
    background: white;
    border: 1px solid #eee;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: #555;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s;
}
.catalog-nav .nav-btn:hover {
    background: #1a422d;
    color: white;
    border-color: #1a422d;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.catalog-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* New Card Design */
.catalog-card {
    background: var(--white);
    border: 1px solid #1a422d;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.catalog-img-container {
    background-color: #f7f6f0;
    padding: 20px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.catalog-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.catalog-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.catalog-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    text-align: center;
}

.catalog-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    color: #f5a623;
    font-size: 12px;
    margin-bottom: 15px;
}
.catalog-rating .reviews {
    color: #777;
    margin-left: 5px;
    font-weight: 500;
}

.catalog-price-row {
    border: 1px solid #e3cc6c;
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    margin-top: auto;
}

.price-details {
    display: flex;
    flex-direction: column;
}

.catalog-old-price {
    font-size: 11px;
    color: #777;
    margin-bottom: 2px;
}
.catalog-old-price .strikethrough {
    text-decoration: line-through;
}

.catalog-new-price {
    font-size: 11px;
    color: #777;
}
.catalog-new-price strong {
    font-size: 16px;
    color: #000;
}

.catalog-discount {
    text-align: right;
    color: #1a8e5f;
    font-size: 10px;
    font-weight: 700;
}
.catalog-discount strong {
    font-size: 18px;
    display: block;
    line-height: 1;
}

.btn-select {
    width: 100%;
    background-color: #557545;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.btn-select:hover {
    background-color: #3b562e;
}


/* Responsive */
@media (max-width: 768px) {
    header {
        position: relative;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }
    
    .menu-toggle {
        display: block;
        order: 1;
    }
    
    .logo {
        flex: 1;
        justify-content: center;
    }
    
    .logo img {
        height: 75px;
    }
    
    .brand-name {
        display: none;
    }
    
    /* User icon now visible on mobile */    
    .header-icons {
        gap: 15px;
        font-size: 18px;
        flex: initial;
        order: 3;
    }
    
    nav#nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 15px 0;
        border-top: 1px solid var(--border-color);
    }
    
    nav#nav-menu.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    nav ul li a {
        font-size: 13px;
    }
    
    .hero-banner img {
        width: 100%;
        height: auto;
    }
    
    .app-banner-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .category-icons {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 0;
    }
    
    .category {
        width: 30%;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .product-card {
        padding: 15px;
    }
    
    .product-info h3 {
        font-size: 14px;
        height: 38px;
    }
    
    .new-price {
        font-size: 16px;
    }
    
    .old-price {
        font-size: 12px;
    }
    
    .savings {
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .btn-add {
        padding: 8px;
        font-size: 13px;
    }
    
    .cert-container {
        gap: 15px;
    }
    
    .cert-item {
        font-size: 14px;
        width: 45%;
        text-align: center;
    }
    
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .footer-left p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .newsletter {
        margin: 15px 0;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: space-around;
        text-align: left;
        gap: 10px;
    }
    
    .link-column h4 {
        margin-bottom: 10px;
    }
    
    .link-column ul li {
        margin-bottom: 8px;
    }
    
    .link-column ul li a {
        font-size: 12px;
    }
    
    .social-icons {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .store-buttons {
        justify-content: center;
    }
    
    .bilona-process { padding: 40px 15px; }
    .bilona-timeline {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        padding-bottom: 20px;
    }
    .timeline-svg-path {
        display: none;
    }
    .timeline-step {
        position: relative;
        width: 100%;
        max-width: 400px;
        top: auto !important;
        left: auto !important;
        transform: none !important;
    }
    
    /* Premium Catalog Page Mobile Layout */
    .catalog-page {
        flex-direction: column;
        padding: 10px 15px;
        gap: 15px;
    }
    .sidebar {
        width: 100%;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-bottom: 5px;
    }
    .sidebar-list {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
        scrollbar-width: none;
    }
    .sidebar-list::-webkit-scrollbar {
        display: none;
    }
    .sidebar-list li {
        border-bottom: none;
        flex: 0 0 auto;
    }
    .sidebar-link {
        padding: 8px 16px;
        background: var(--white);
        border: 1px solid #1a422d;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 500;
        color: #1a422d;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .sidebar-link i {
        display: none;
    }
    .sidebar-link:hover, .sidebar-link.active {
        background: var(--primary-color);
        color: var(--white);
        padding-left: 16px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .catalog-card {
        border-radius: 12px;
    }
    .catalog-img-container {
        height: 120px;
        padding: 10px;
        border-radius: 12px 12px 0 0;
    }
    .catalog-info {
        padding: 10px;
    }
    .catalog-info h3 {
        font-size: 11px;
        height: 30px;
        margin-bottom: 4px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .catalog-rating {
        font-size: 10px;
        margin-bottom: 6px;
    }
    .catalog-price-row {
        padding: 5px;
        margin-bottom: 8px;
        border-radius: 6px;
    }
    .catalog-price-row p {
        font-size: 10px;
    }
    .catalog-new-price strong {
        font-size: 13px;
    }
    .catalog-discount strong {
        font-size: 12px;
    }
    .btn-select {
        padding: 6px;
        font-size: 10px;
    }
}

/* ----------------------------
   FIREBASE AUTH LOGIN POPUP
------------------------------- */
.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/cow_temple_banner.png') center/cover no-repeat;
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auth-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* PREMIUM AUTH MODAL STYLING */
.auth-modal {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    width: 800px;
    max-width: 90vw;
    display: flex;
    overflow: hidden;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
}

.auth-overlay.active .auth-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Left Side with Image Background */
.auth-modal-left {
    flex: 1;
    background: url('../images/gaushala_main.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: white;
}

.auth-modal-left::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(10, 59, 36, 0.9) 0%, rgba(10, 59, 36, 0.3) 50%, rgba(0,0,0,0) 100%);
}

.auth-left-content {
    position: relative;
    z-index: 2;
}

.auth-left-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.auth-left-content p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Right Side (Form) */
.auth-modal-right {
    flex: 1;
    padding: 50px 40px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.05);
    border: none;
    color: #666;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-close:hover {
    background: #ffefef;
    color: #d9534f;
    transform: rotate(90deg);
}

.auth-header {
    text-align: left;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.auth-header p {
    color: #666;
    font-size: 14px;
}

.auth-input-group {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #fafafa;
    transition: border-color 0.3s;
}

.auth-input-group:focus-within {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(10, 59, 36, 0.1);
}

.auth-country-code {
    padding: 15px 20px;
    background: #f0f0f0;
    color: #555;
    font-weight: 600;
    border-right: 1px solid #e0e0e0;
}

.auth-input-group input {
    flex: 1;
}

.auth-input-group input::placeholder {
    color: #999;
}

.auth-btn {
    width: 100%;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-btn:hover {
    background: var(--primary-color);
}

.auth-btn:active {
    transform: scale(0.98);
}

.auth-btn:disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

/* Loader Animation */
.auth-loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: auth-spin 1s linear infinite;
    display: none;
}

.auth-btn.loading span {
    display: none;
}

.auth-btn.loading .auth-loader {
    display: block;
}

@keyframes auth-spin {
    to { transform: rotate(360deg); }
}

/* OTP Boxes */
.otp-container {
    display: none;
}
.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.otp-box {
    width: 45px;
    height: 55px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 24px;
    text-align: center;
    outline: none;
    transition: border-color 0.3s;
}
.otp-box:focus {
    border-color: #e5973b;
}

.auth-resend {
    text-align: center;
    font-size: 13px;
    color: #aaa;
    margin-top: 15px;
}

.auth-resend a {
    color: #e5973b;
    text-decoration: none;
    pointer-events: none;
    opacity: 0.5;
}
.auth-resend a.active {
    pointer-events: auto;
    opacity: 1;
}

.auth-error {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    margin-bottom: 15px;
    display: none;
}

/* User Account Dropdown */
.user-dropdown {
    position: relative;
    display: inline-block;
}
.user-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 30px;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 100;
    overflow: hidden;
}
.user-dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background 0.2s;
}
.user-dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #e5973b;
}
.user-dropdown:hover .user-dropdown-content {
    display: block;
}

/* ----------------------------
   FAST CHECKOUT MODAL UI
------------------------------- */
.fc-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.fc-overlay.active {
    opacity: 1;
    visibility: visible;
}

.fc-modal {
    background: #fdfdfd;
    width: 450px;
    max-width: 100%;
    height: 90vh;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: translateY(50px);
    transition: transform 0.3s;
}

.fc-overlay.active .fc-modal {
    transform: translateY(0);
}

.fc-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: transparent;
    border: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    z-index: 10;
}

.fc-header {
    text-align: center;
    background: #fff;
    padding-top: 15px;
}

.fc-logo {
    height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}

.fc-trusted-bar {
    background: #2b4f3b;
    color: #fff;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
}

.fc-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #fbfbfb;
}

.fc-order-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    margin-bottom: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* Steps */
.fc-step {
    display: none;
    text-align: center;
}

.fc-step.active {
    display: block;
    animation: fadeInStep 0.4s ease;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.fc-step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.fc-step-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/* Inputs */
.fc-input-group {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px 15px;
    margin-bottom: 30px;
}

.fc-flag {
    font-weight: 600;
    color: #333;
    padding-right: 15px;
    border-right: 1px solid #eee;
    margin-right: 15px;
}

.fc-input-group input {
    flex: 1;
    border: none;
    padding: 10px 0;
    outline: none;
    font-size: 16px;
    color: #333;
}

.fc-quote {
    color: #666;
    font-style: italic;
    font-size: 13px;
    margin-top: 40px;
}
.fc-quote-author {
    margin-top: 5px;
    font-style: normal;
    font-weight: 600;
}

/* OTP Boxes */
.fc-otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.fc-otp-box {
    width: 40px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    background: #fff;
    outline: none;
}
.fc-otp-box:focus {
    border-color: #8BC34A;
}

.fc-resend {
    font-size: 13px;
    color: #888;
}
.fc-resend a {
    color: #8BC34A;
    text-decoration: none;
}

/* Address Form */
#fc-address-form {
    text-align: left;
}
.fc-form-row {
    margin-bottom: 15px;
}
.fc-form-row.split {
    display: flex;
    gap: 15px;
}
.fc-input {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.fc-input:focus {
    border-color: #8BC34A;
    background: #fff;
}
.fc-delivery-note {
    font-size: 12px;
    color: #888;
    font-style: italic;
    margin-top: -5px;
}

.fc-error {
    color: red;
    font-size: 13px;
    margin-top: 15px;
    text-align: center;
    display: none;
}

/* Footer / Badges */
.fc-footer {
    background: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.03);
}

.fc-btn-primary {
    width: 100%;
    background: #e5973b; /* Fallback for step 1 */
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 20px;
}

.fc-btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.fc-trust-badges {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: #666;
    text-align: center;
    margin-bottom: 15px;
}
.fc-badge i {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: #555;
}

.fc-powered-by {
    font-size: 11px;
    color: #999;
    text-align: center;
}

/* Legal Policy Pages */
.legal-page {
    background-color: #f9f9f9;
    padding: 60px 20px;
}
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.legal-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}
.legal-header h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.legal-updated {
    font-size: 14px;
    color: #777;
}
.legal-content h2 {
    font-size: 24px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}
.legal-content h3 {
    font-size: 20px;
    color: #444;
    margin-top: 25px;
    margin-bottom: 10px;
}
.legal-content p, .legal-content ul, .legal-content ol {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
.legal-content ul, .legal-content ol {
    margin-left: 20px;
}
.legal-content li {
    margin-bottom: 10px;
}
.legal-breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}
.legal-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}
.legal-breadcrumb a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 20px;
    }
    .legal-header h1 {
        font-size: 28px;
    }
    .legal-content h2 {
        font-size: 20px;
    }
    .legal-page {
        padding: 30px 15px;
    }
}
/* ========================================= */
/* ABOUT US PAGE STYLES                      */
/* ========================================= */
.about-page-wrapper {
    background-color: #fcf6ec; /* Beige background */
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #1a3224; /* Dark green/brownish text */
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.about-left-col {
    flex: 1;
    min-width: 300px;
    position: relative;
    padding-bottom: 80px; /* Space for overlapping card */
}

.about-main-img {
    width: 100%;
    max-width: 450px;
    height: 600px;
    object-fit: cover;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-quote-card {
    position: absolute;
    bottom: 20px;
    left: -40px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    width: 250px;
    font-style: italic;
    color: #b27a31;
    font-size: 15px;
    line-height: 1.6;
    z-index: 2;
}

.about-quote-card::before {
    content: '\201C'; /* quote mark */
    font-size: 50px;
    font-family: Georgia, serif;
    color: #e5973b;
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.about-small-img {
    position: absolute;
    bottom: 0;
    right: 10px;
    width: 200px;
    height: 220px;
    background: #fff;
    padding: 10px;
    padding-bottom: 25px; /* Polaroid style */
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: rotate(5deg);
    z-index: 3;
}
.about-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.about-badge {
    position: absolute;
    top: 50px;
    right: -20px;
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    color: #3b5f43;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    letter-spacing: 1px;
    z-index: 4;
}

.about-right-col {
    flex: 1;
    min-width: 300px;
}

.about-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3b5f43;
    margin-bottom: 15px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a422d;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}
.about-desc strong {
    color: #1a422d;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.about-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100px;
}

.about-feature i {
    font-size: 32px;
    color: #c49a5b;
    margin-bottom: 15px;
}

.about-feature span {
    font-size: 14px;
    font-weight: 600;
    color: #1a422d;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    .about-left-col {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .about-quote-card {
        left: 0;
    }
    .about-badge {
        right: 0;
    }
}
@media (max-width: 576px) {
    .about-title {
        font-size: 32px;
    }
    .about-quote-card {
        width: 200px;
        font-size: 13px;
    }
    .about-small-img {
        width: 150px;
        height: 170px;
    }
}
/* ========================================= */
/* GAUSHALA SECTION (ABOUT US)               */
/* ========================================= */
.gaushala-section {
    background-color: #fdf7e9; /* Light beige matching top section */
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden;
}

/* Green Hills SVG Background */
.gaushala-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.gaushala-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gaushala-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.gaushala-text {
    flex: 1;
    min-width: 300px;
}

.gaushala-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #4a7556;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.gaushala-title {
    font-size: 45px;
    font-weight: 700;
    color: #1a422d;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gaushala-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 90%;
}

.gaushala-features-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.gaushala-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90px;
}

.gaushala-feature i {
    font-size: 32px;
    color: #a3c4a8; /* soft green icon color */
    margin-bottom: 12px;
    border: 1px solid #d4e0d7;
    border-radius: 50%;
    padding: 15px;
}

.gaushala-feature span {
    font-size: 13px;
    font-weight: 600;
    color: #3b5f43;
}

.gaushala-image-container {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 40px; /* space for quote */
}

.gaushala-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    height: 450px;
    max-height: 450px;
    object-fit: cover;
}

.gaushala-product-overlay {
    position: absolute;
    bottom: 60px;
    left: 20px;
    width: 180px;
}

.gaushala-quote {
    position: absolute;
    bottom: 0;
    right: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 250px;
    font-style: italic;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.gaushala-quote::before {
    content: '\201C'; /* quote mark */
    font-size: 40px;
    font-family: Georgia, serif;
    color: #4a7556;
    position: absolute;
    top: -5px;
    left: 15px;
    line-height: 1;
}

/* Gallery Section */
.gallery-section {
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.gallery-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #4a7556;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gallery-item span {
    font-size: 14px;
    font-weight: 600;
    color: #1a422d;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}@media (max-width: 576px) {
    .gaushala-title {
        font-size: 32px;
    }
    .gaushala-quote {
        width: 200px;
        font-size: 12px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsiveness for Auth Modal */
@media (max-width: 768px) {
    .auth-modal {
        flex-direction: column;
        width: 95vw;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .auth-modal-left {
        display: flex;
        height: 180px;
        flex: none;
        padding: 20px;
    }
    
    .auth-left-content h3 {
        font-size: 20px;
    }
    
    .auth-left-content p {
        font-size: 12px;
        margin-bottom: 0;
    }
    
    .auth-modal-right {
        padding: 30px 20px;
        flex: none;
    }
    
    .auth-header h2 {
        font-size: 20px;
    }
    
    .otp-box {
        width: 35px;
        height: 45px;
        font-size: 18px;
    }
}

/* ========================================= */
/* PRODUCT IMAGE SLIDER                      */
/* ========================================= */
.product-slider-container {
    position: relative;
    width: 100%;
}

.slider-main-image {
    position: relative;
    width: 100%;
    text-align: center;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.slider-main-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background 0.3s;
    z-index: 10;
}

.slider-prev:hover, .slider-next:hover {
    background: #fff;
    color: #e5973b;
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.slider-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.3s;
}

.slider-thumb:hover, .slider-thumb.active {
    border: 2px solid #e5973b;
}

/* ========================================= */
/* VIDEO PRODUCT OVERLAY                     */
/* ========================================= */
.vid-product-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    max-width: calc(100% - 40px);
}
.vid-product-overlay img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}
.vid-product-overlay .vid-p-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.vid-add-cart-btn {
    width: 100%;
    background-color: #0d5c46;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
}
.vid-add-cart-btn:hover {
    background-color: #0a4736;
}

/* ========================================= */
/* PRODUCT GALLERY GRID                      */
/* ========================================= */
.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.product-gallery-grid.single-image {
    grid-template-columns: 1fr;
}
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    background: #f9f9f9;
    aspect-ratio: 1 / 1;
    position: relative;
    border: 1px solid #eee;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

}

/* ========================================= */
/* BANNER SLIDER                             */
/* ========================================= */
.hero-banner {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 21 / 9;
    max-height: 600px;
    overflow: hidden;
    background: #000;
}
.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.banner-slide.active {
    opacity: 1;
}
.banner-prev, .banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
    font-size: 20px;
}
.banner-prev { left: 15px; }
.banner-next { right: 15px; }
.banner-prev:hover, .banner-next:hover { background: rgba(0,0,0,0.8); }
.banner-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}
.banner-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
}
.banner-dot.active {
    background: white;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
    .hero-banner {
        aspect-ratio: 16 / 9;
    }
}

/* ========================================= */
/* FLOATING WHATSAPP ICON                    */
/* ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 30px;
        bottom: 15px;
        left: 15px;
    }
}

/* ========================================= */
/* TRUST & QUALITY FEATURES SECTION          */
/* ========================================= */
.trust-features-section {
    margin: 40px auto 30px;
    padding: 35px 25px;
    background: linear-gradient(135deg, rgba(235, 242, 237, 0.75) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(13, 92, 70, 0.15);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10, 59, 36, 0.05);
    max-width: 1150px;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.trust-card {
    background: #ffffff;
    border: 1px solid rgba(229, 224, 213, 0.8);
    border-radius: 16px;
    padding: 24px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    text-decoration: none;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(10, 59, 36, 0.08);
    border-color: var(--primary-color);
}

.trust-icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A3B24, #14613B);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(10, 59, 36, 0.18);
    border: 2px solid rgba(200, 90, 23, 0.35);
    transition: transform 0.3s ease;
}

.trust-card:hover .trust-icon-wrap {
    transform: scale(1.08) rotate(5deg);
    border-color: var(--secondary-color);
}

.trust-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0;
}

.trust-card span {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
    font-weight: 500;
}

/* Responsive 2x2 Grid for Tablets & Mobile */
@media (max-width: 900px) {
    .trust-features-section {
        margin: 25px 15px;
        padding: 25px 15px;
    }
    .trust-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .trust-features-section {
        margin: 20px 12px;
        padding: 18px 12px;
        border-radius: 16px;
    }
    .trust-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .trust-card {
        padding: 18px 10px;
        border-radius: 14px;
    }
    .trust-icon-wrap {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    .trust-card h4 {
        font-size: 13.5px;
    }
    .trust-card span {
        font-size: 11px;
        margin-top: 4px;
    }
}
