/* ============================================
   VARIABLES & ROOT CONFIGURATION
   ============================================ */

:root {
    /* Primary Colors */
    --primary: #007bff;
    --primary-dark: #0056b3;
    --primary-light: #e7f1ff;
    --primary-lighter: #f0f7ff;
    
    /* Secondary Colors */
    --secondary: #6c757d;
    --secondary-dark: #5a6268;
    --secondary-light: #e2e3e5;
    
    /* Status Colors */
    --success: #28a745;
    --success-light: #d4edda;
    --danger: #dc3545;
    --danger-light: #f8d7da;
    --warning: #ffc107;
    --warning-light: #fff3cd;
    --info: #17a2b8;
    --info-light: #d1ecf1;
    
    /* Neutral Colors */
    --dark: #212529;
    --dark-light: #343a40;
    --light: #f8f9fa;
    --lighter: #f5f6f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    --text-muted: #6c757d;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Font Sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1010;
    --z-fixed: 1020;
    --z-modal-backdrop: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-notification: 9999;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--dark);
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

/* h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
} */

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-base);
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

small {
    font-size: var(--font-size-sm);
}

/* ============================================
   SECTION TITLES
   ============================================ */

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark);
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-muted);
    font-weight: var(--font-weight-normal);
    margin-top: 0.5rem;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
    font-size: var(--font-size-sm);
    letter-spacing: 0.5px;
    padding: var(--spacing-sm) 0;
    background-color: var(--dark);
    color: var(--white);
    animation: slideDown 0.5s ease;
}

.announcement-bar i {
    margin-right: var(--spacing-sm);
}

/* ============================================
   NAVBAR STYLES
   ============================================ */

.navbar {
    background-color: var(--white) !important;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: var(--z-sticky);
    padding: var(--spacing-md) 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: var(--spacing-sm) 0;
}

/* Brand Logo */
.navbar-brand {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark) !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--primary) !important;
}

.navbar-brand i {
    color: var(--primary);
    font-size: var(--font-size-2xl);
}

/* Navigation Links */
.nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--text-muted) !important;
    transition: var(--transition);
    position: relative;
    padding: var(--spacing-sm) var(--spacing-md) !important;
    margin: 0 var(--spacing-xs);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.nav-link i {
    margin-right: var(--spacing-sm);
}

/* Dropdown Menu */
.dropdown-menu {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: none;
    animation: fadeInDown 0.3s ease;
    padding: var(--spacing-md) 0;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.dropdown-item {
    font-weight: var(--font-weight-medium);
    color: var(--text-muted);
    transition: var(--transition);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: calc(var(--spacing-lg) + 4px);
}

.dropdown-item i {
    margin-right: var(--spacing-md);
    width: 16px;
}

/* Search Bar */
.search-container {
    position: relative;
}

.search-input {
    border-radius: var(--radius-full);
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    min-width: 250px;
    background-color: var(--light);
    font-weight: var(--font-weight-medium);
}

.search-input:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px var(--primary-light);
    outline: none;
}

.search-btn {
    border-radius: var(--radius-full);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: var(--font-weight-medium);
}

/* Cart Link */
.cart-link {
    color: var(--dark) !important;
    transition: var(--transition);
    font-size: var(--font-size-lg);
    position: relative;
}

.cart-link:hover {
    color: var(--primary) !important;
    transform: scale(1.15);
}

.cart-badge {
    font-size: var(--font-size-xs);
    padding: 2px 6px !important;
    animation: pulse 2s infinite;
    min-width: 20px;
    text-align: center;
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: var(--spacing-md);
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23212529' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    margin: 0 -12px;
    margin-bottom: var(--spacing-xl);
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.hero-slide {
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation: zoomIn 0.8s ease;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    line-height: 1.2;
    animation: slideInLeft 0.6s ease 0.2s both;
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
}

.hero-subtitle {
    animation: slideInLeft 0.6s ease 0.4s both;
    opacity: 0.95;
    font-size: var(--font-size-lg);
}

.hero-btn {
    animation: slideInUp 0.6s ease 0.6s both;
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: var(--font-weight-semibold);
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-btn:active {
    transform: translateY(-1px);
}

.hero-image {
    animation: float 3s ease-in-out infinite;
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 350px;
    }

    .hero-title {
        font-size: var(--font-size-2xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
    }
}

/* ============================================
   PROMO BANNERS
   ============================================ */

.promo-banners {
    margin-bottom: var(--spacing-xl);
}

.promo-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.promo-card:hover::before {
    top: -30%;
    right: -30%;
}

.promo-card:nth-child(1) {
        background: linear-gradient(180deg, #9f9f9f 0%, #ddd9d0 100%);
}

.promo-card:nth-child(2) {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.promo-card:nth-child(3) {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

.promo-card:nth-child(4) {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.promo-card h6 {
    font-weight: var(--font-white);
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.promo-card p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    margin: 0;
}

.promo-card i {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
    transition: var(--transition);
    color: var(--white);
}

.promo-card:hover i {
    transform: scale(1.2) rotateY(360deg);
}

/* ============================================
   PRODUCT CARD STYLES
   ============================================ */

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--primary);
}

/* Product Image Wrapper */
.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: var(--light);
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.1) rotate(1deg);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light) 0%, var(--border-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    animation: slideInRight 0.5s ease;
}

/* Product Actions */
.product-actions {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition);
    z-index: 10;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    font-size: var(--font-size-base);
}

.btn-icon:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-lg);
}

/* Product Info */
.product-info {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    line-height: 1.4;
    color: var(--dark);
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
}

.product-card:hover .product-name {
    color: var(--primary);
}

/* Product Rating */
.product-rating {
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: var(--spacing-md);
}

.product-rating i {
    transition: var(--transition);
    color: var(--warning);
}

.product-rating .text-muted {
    font-size: var(--font-size-sm);
}

/* Product Price */
.product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.current-price {
    font-size: var(--font-size-xl);
    color: var(--primary);
    font-weight: var(--font-weight-bold);
}

.original-price {
    font-size: var(--font-size-sm);
    text-decoration: line-through;
    color: var(--text-muted);
}

.discount-badge {
    background-color: var(--danger) !important;
    font-size: var(--font-size-xs);
    padding: 3px 8px !important;
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-sm);
}

/* Stock Info */
.stock-info {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-lg);
}

.stock-info .badge {
    padding: 6px 12px;
    font-weight: var(--font-weight-medium);
    border-radius: var(--radius-sm);
}

/* Add to Cart Button */
.btn-primary {
    background-color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    transition: var(--transition);
    padding: 0.65rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:active::before {
    width: 300px;
    height: 300px;
}

.add-to-cart-full {
    margin-top: auto;
}

/* ============================================
   SECTION LAYOUTS
   ============================================ */

.featured-section,
.latest-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f1e8 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-xl);
}


.section-header {
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--light);
    margin-bottom: var(--spacing-xl);
}

.product-col {
    animation: fadeInUp 0.5s ease;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-lg);
    animation: slideInUp 0.6s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-section h3 {
    color: var(--white);
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-section input {
    border-radius: var(--radius-md);
    border: none;
    padding: 1rem;
    font-weight: var(--font-weight-medium);
    background-color: var(--white);
}

.newsletter-section input::placeholder {
    color: var(--text-muted);
}

.newsletter-section button {
    border-radius: var(--radius-md);
    padding: 1rem 2rem;
}

/* ============================================
   CART PAGE STYLES
   ============================================ */

.cart-table {
    margin-top: var(--spacing-lg);
}

.cart-item {
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-lg) 0;
}

.cart-summary {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.cart-summary-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.cart-summary-item.total {
    border-top: 2px solid var(--border-color);
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-md);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    color: var(--primary);
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */

.checkout-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
}

.form-section {
    margin-bottom: var(--spacing-xl);
}

.form-section:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--spacing-xl);
}

.form-label {
    font-weight: var(--font-weight-semibold);
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    font-weight: var(--font-weight-normal);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
    outline: none;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.footer {
    margin-top: auto;
    background-color: var(--dark) !important;
    border-top: 1px solid var(--border-color);
    color: var(--white);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
}

.footer h5,
.footer h6 {
    color: var(--black);
}

.footer-link {
    transition: var(--transition);
    display: inline-block;
    color: var(--text-muted);
}

.footer-link:hover {
    color: var(--primary);
    padding-left: var(--spacing-sm);
    transform: translateX(2px);
}

.footer-link i {
    margin-right: var(--spacing-sm);
}

.footer p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
    margin-right: var(--spacing-sm);
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: var(--z-notification);
    font-size: var(--font-size-lg);
}

.scroll-to-top.show {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* ============================================
   ALERTS & NOTIFICATIONS
   ============================================ */

.alert {
    border: none;
    border-radius: var(--radius-lg);
    border-left: 4px solid;
    animation: slideInDown 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.alert-success {
    background-color: var(--success-light);
    border-left-color: var(--success);
    color: var(--success);
}

.alert-danger {
    background-color: var(--danger-light);
    border-left-color: var(--danger);
    color: var(--danger);
}

.alert-warning {
    background-color: var(--warning-light);
    border-left-color: var(--warning);
    color: #856404;
}

.alert-info {
    background-color: var(--info-light);
    border-left-color: var(--info);
    color: var(--info);
}

.alert-dismissible .btn-close {
    transition: var(--transition);
}

.alert-dismissible .btn-close:hover {
    transform: scale(1.2);
}

/* ============================================
   BADGES & LABELS
   ============================================ */

.badge {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xs);
}

.badge-primary {
    background-color: var(--primary-light);
    color: var(--primary);
}

.badge-success {
    background-color: var(--success-light);
    color: var(--success);
}

.badge-danger {
    background-color: var(--danger-light);
    color: var(--danger);
}

.badge-warning {
    background-color: var(--warning-light);
    color: #856404;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    transition: var(--transition);
    border: 2px solid transparent;
    padding: 0.65rem 1.5rem;
    font-size: var(--font-size-base);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
}

.btn-light {
    background-color: var(--light);
    border-color: var(--light);
    color: var(--dark);
}

.btn-light:hover {
    background-color: var(--border-light);
    border-color: var(--border-light);
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: var(--font-size-lg);
}

/* Loading State */
.btn.loading {
    opacity: 0.75;
    pointer-events: none;
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    font-size: var(--font-size-base);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23007bff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
    outline: none;
}

.input-group {
    gap: var(--spacing-sm);
}

.input-group .form-control {
    flex: 1;
}

/* ============================================
   TABLES
   ============================================ */

.table {
    margin-bottom: 0;
    border-collapse: collapse;
}

.table thead {
    background-color: var(--light);
    border-bottom: 2px solid var(--border-color);
}

.table thead th {
    font-weight: var(--font-weight-bold);
    color: var(--dark);
    padding: var(--spacing-md);
    border: none;
}

.table tbody td {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.table tbody tr:hover {
    background-color: var(--light);
}

/* ============================================
   MODALS & DROPDOWNS
   ============================================ */

.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-lg);
}

.modal-title {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
}

.modal-body {
    padding: var(--spacing-lg);
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-lg);
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
    gap: var(--spacing-xs);
}

.page-link {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--primary);
    transition: var(--transition);
    padding: 0.5rem 0.75rem;
}

.page-link:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.page-link.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-link.disabled {
    color: var(--text-muted);
    border-color: var(--border-color);
    cursor: not-allowed;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.fw-light {
    font-weight: var(--font-weight-light);
}

.fw-normal {
    font-weight: var(--font-weight-normal);
}

.fw-500 {
    font-weight: var(--font-weight-medium);
}

.fw-600 {
    font-weight: var(--font-weight-semibold);
}

.fw-700 {
    font-weight: var(--font-weight-bold);
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

/* Spacing Utilities */
.gap-1 { gap: var(--spacing-sm); }
.gap-2 { gap: var(--spacing-md); }
.gap-3 { gap: var(--spacing-lg); }
.gap-4 { gap: var(--spacing-xl); }
.gap-5 { gap: var(--spacing-2xl); }

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 1200px) {
    .search-input {
        min-width: 200px;
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 992px) {
    .search-container {
        display: none !important;
    }

    .hero-title {
        font-size: var(--font-size-2xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
    }

    .hero-image {
        display: none;
    }

    .featured-section,
    .latest-section {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .product-actions {
        opacity: 1;
        transform: translateX(0);
    }

    .promo-card {
        margin-bottom: var(--spacing-lg);
    }

    .hero-slide {
        min-height: 300px;
    }

    .hero-title {
        font-size: var(--font-size-xl);
    }

    .section-title {
        font-size: var(--font-size-xl);
    }

    .section-title::after {
        width: 40px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: var(--font-size-base);
    }

    .navbar {
        padding: var(--spacing-sm) 0;
    }

    .navbar-brand {
        font-size: var(--font-size-lg);
    }

    .nav-link {
        padding: var(--spacing-sm) var(--spacing-md) !important;
    }

    .product-card {
        margin-bottom: var(--spacing-lg);
    }

    .product-info {
        padding: var(--spacing-md);
    }

    .btn-icon {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 576px) {
    :root {
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.5rem;
        --font-size-2xl: 1.25rem;
        --font-size-xl: 1.1rem;
    }

    .navbar-brand {
        font-size: var(--font-size-lg);
    }

    .navbar-brand i {
        font-size: var(--font-size-lg);
    }

    .hero-section {
        margin: 0 -12px;
        margin-bottom: var(--spacing-lg);
    }

    .hero-slide {
        min-height: 250px;
    }

    .hero-title {
        font-size: var(--font-size-xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-sm);
    }

    .hero-btn {
        padding: 0.6rem 1.5rem;
        font-size: var(--font-size-sm);
    }

    .section-title {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-md);
    }

    .product-name {
        font-size: var(--font-size-sm);
    }

    .current-price {
        font-size: var(--font-size-lg);
    }

    .product-info {
        padding: var(--spacing-md);
    }

    .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: var(--font-size-sm);
    }

    .btn-icon {
        width: 38px;
        height: 38px;
    }

    .promo-card {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .promo-card i {
        font-size: var(--font-size-xl);
    }

    .newsletter-section {
        padding: var(--spacing-lg);
    }

    .newsletter-section h3 {
        font-size: var(--font-size-lg);
    }

    .newsletter-section .row {
        gap: var(--spacing-lg);
    }

    .newsletter-section input,
    .newsletter-section button {
        font-size: var(--font-size-sm);
        padding: 0.75rem !important;
    }

    .cart-summary {
        margin-top: var(--spacing-lg);
    }

    .footer {
        padding-top: var(--spacing-lg);
    }

    .announcement-bar {
        font-size: var(--font-size-xs);
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus Visible */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: var(--z-fixed);
}

.skip-link:focus {
    top: 0;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --dark: #f8f9fa;
        --light: #212529;
        --white: #1a1a1a;
        --border-color: #404040;
    }

    body {
        background-color: var(--white);
        color: var(--dark);
    }

    .navbar {
        background-color: var(--white) !important;
        border-bottom-color: var(--border-color);
    }

    .product-card,
    .featured-section,
    .latest-section,
    .checkout-form {
        background-color: var(--white);
        border-color: var(--border-color);
    }

    .product-image-wrapper {
        background-color: var(--light);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .navbar,
    .announcement-bar,
    .scroll-to-top,
    .btn,
    .product-actions {
        display: none !important;
    }

    .product-card {
        page-break-inside: avoid;
    }
}

/* HERO SLIDER STYLES */
.hero-slider { position: relative; width: 100%; height: 420px; overflow: hidden; }
@media (max-width: 768px) { .hero-slider { height: 360px; } }
@media (max-width: 576px) { .hero-slider { height: 320px; } }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.9s ease, transform 0.9s ease;
  display: block;
}

.hero-slide[aria-hidden="false"] { opacity: 1; transform: scale(1); z-index: 1; }

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
  display: flex;
  align-items: center;
}

.hero-title { text-shadow: 0 6px 18px rgba(0,0,0,0.4); }
.hero-subtitle { text-shadow: 0 4px 12px rgba(0,0,0,0.35); }
.hero-image-wrapper { max-width: 320px; }
.hero-image { width: 100%; height: auto; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6)); }

/* Controls */
.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: #222;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform .15s ease;
}
.hero-control:hover { transform: translateY(-50%) scale(1.06); }
.hero-prev { left: 18px; }
.hero-next { right: 18px; }

/* Indicators (dots) */
.hero-indicators {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: 6; display: flex; gap: 8px;
}
.hero-indicators .indicator {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.6);
  border: none; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.hero-indicators .indicator.active { background: #fff; transform: scale(1.15); }

/* Small screens: hide controls to save space */
@media (max-width: 576px) {
  .hero-control { display: none; }
  .hero-overlay .hero-image-wrapper { display: none; } /* hide big product image on small */
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}
/* REMOVE CARD LOOK FROM SLIDER */
.hero-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-slider {
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    margin: 0 !important;
}

/* Slides full width without rounded corners */
.hero-slide {
    border-radius: 0 !important;
}

/* Remove container padding inside slider */
.hero-overlay .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Remove white gap below navbar */
header, nav, .navbar {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
/* GLASS NAVBAR */
.navbar-custom {
    background: rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: 0.3s ease-in-out;
    box-shadow: none !important;
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
}

/* LOGO */
.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* NAV MENU LINKS */
.nav-link {
    font-weight: 500;
    color: #222 !important;
    padding: 8px 18px !important;
}

.nav-link:hover {
    opacity: 0.8;
}

/* REMOVE UNDERLINE */
.nav-link::after {
    display: none !important;
}

/* ICONS */
.nav-icon {
    font-size: 20px;
    color: #222;
    transition: 0.2s ease;
}

.nav-icon:hover {
    opacity: 0.7;
}

/* CART COUNT BADGE */
.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #ff3b3b;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .left-icons {
        margin-left: auto !important;
    }
}
.wellness-intro-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f1e8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.wellness-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 116, 84, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-intro-text {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    color: #4a3f2e;
    margin-bottom: 25px;
    line-height: 1.3;
}

.section-intro-text p {
    font-size: 17px;
    color: #6b5d4f;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Category Cards Grid */
.wellness-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 30px 25px;
    text-align: center;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 20px;
    box-shadow: 0 4px 15px rgba(139, 116, 84, 0.3);
}

.category-icon i {
    font-size: 24px;
    color: white;
}

.category-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #4a3f2e;
    margin-bottom: 15px;
}

.category-content p {
    font-size: 15px;
    color: #6b5d4f;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8b7454;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.category-link:hover {
    gap: 12px;
    color: #6b5d4f;
}


/* ================================================
   SECTION 2: PRODUCT FEATURE (LEFT TEXT + RIGHT IMAGE)
   ================================================ */

.product-feature-section {
    padding: 100px 0;
    background: #ffffff;
}

.feature-content {
    padding-right: 40px;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.feature-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: #2c2416;
    line-height: 1.3;
    margin-bottom: 25px;
}

.feature-description {
    font-size: 17px;
    color: #6b5d4f;
    line-height: 1.8;
    margin-bottom: 35px;
}

.feature-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.benefit-item i {
    color: #8b7454;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 15px;
    color: #4a3f2e;
    line-height: 1.6;
}

.feature-price-cta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-tag .currency {
    font-size: 16px;
    color: #8b7454;
    font-weight: 600;
}

.price-tag .amount {
    font-size: 36px;
    font-weight: 700;
    color: #2c2416;
}

.btn-buy-now {
    display: inline-block;
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 116, 84, 0.3);
}

.btn-buy-now:hover {
    background: linear-gradient(135deg, #6b5d4f 0%, #4a3f2e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 116, 84, 0.4);
    color: white;
}

.feature-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}


/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 991px) {
    .section-intro-text h2 {
        font-size: 32px;
    }

    .wellness-categories {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .product-feature-section {
        padding: 60px 0;
    }

    .feature-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .feature-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .wellness-intro-section {
        padding: 50px 0;
    }

    .section-intro-text h2 {
        font-size: 26px;
    }

    .section-intro-text p {
        font-size: 15px;
    }

    .wellness-categories {
        grid-template-columns: 1fr;
    }

    .feature-content h2 {
        font-size: 24px;
    }

    .feature-price-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .btn-buy-now {
        width: 100%;
        text-align: center;
    }
}
.featured-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f1e8 100%);
    padding: 100px 0;
    position: relative;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(139, 116, 84, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #2c2416;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #6b5d4f;
    font-weight: 400;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Product Card Premium */
.product-card-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Product Image Container */
.product-image-container {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
    background: #f8f6f3;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-premium:hover .product-image {
    transform: scale(1.08);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0ece4 0%, #e8ded0 100%);
}

.product-image-placeholder i {
    font-size: 48px;
    color: #c5b8a4;
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.badge-featured {
    background: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.badge-stock {
    background: rgba(220, 53, 69, 0.95);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* Product Overlay with Actions */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.product-card-premium:hover .product-overlay {
    opacity: 1;
}

.quick-actions {
    display: flex;
    gap: 12px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-premium:hover .quick-actions {
    transform: translateY(0);
}

.action-btn {
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4a3f2e;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.action-btn:hover {
    background: #8b7454;
    color: white;
    transform: scale(1.1);
}

.action-btn:disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

/* Product Info Premium */
.product-info-premium {
    padding: 24px;
}

.product-name-premium {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c2416;
    text-decoration: none;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
    min-height: 44px;
}

.product-name-premium:hover {
    color: #8b7454;
}

/* Rating */
.product-rating-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    font-size: 14px;
    color: #ffc107;
}

.rating-count {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

/* Price Section */
.price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 12px 0;
    border-top: 1px solid #f0ece4;
    border-bottom: 1px solid #f0ece4;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c2416;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.discount-tag {
    background: linear-gradient(135deg, #28a745 0%, #20803a 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

/* Stock Status */
.stock-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.available {
    background: #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.5);
}

.status-dot.unavailable {
    background: #dc3545;
}

.status-text {
    font-size: 13px;
    font-weight: 600;
    color: #6b5d4f;
}

/* Add to Cart Button */
.btn-add-cart {
    width: 100%;
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 116, 84, 0.3);
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #6b5d4f 0%, #4a3f2e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 116, 84, 0.4);
}

.btn-add-cart:disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-add-cart:disabled:hover {
    transform: none;
}

/* View All Button */
.btn-view-all {
     display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 116, 84, 0.3);
}

.btn-view-all:hover {
    background: linear-gradient(135deg, #6b5d4f 0%, #4a3f2e 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 116, 84, 0.4);
    color: white;
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .featured-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 38px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .product-image-container {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-image-container {
        height: 220px;
    }

    .product-info-premium {
        padding: 18px;
    }

    .current-price {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .featured-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image-container {
        height: 280px;
    }

    .quick-actions {
        gap: 8px;
    }

    .action-btn {
        width: 40px;
        height: 40px;
    }
}
/* ================================================
   LATEST SECTION - SAME STYLE AS FEATURED
   ================================================ */

.latest-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f1e8 100%);
    padding: 100px 0;
    position: relative;
}

.latest-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(40, 167, 69, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Header */
.latest-section .section-header {
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.latest-section .section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20803a 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.latest-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #2c2416;
    margin-bottom: 15px;
    line-height: 1.2;
}

.latest-section .section-subtitle {
    font-size: 18px;
    color: #6b5d4f;
    font-weight: 400;
}

/* Badge New - Green color for Latest */
.latest-section .badge-new {
    background: linear-gradient(135deg, #28a745 0%, #20803a 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
}

/* All other styles same as featured section */
/* Products grid, cards, overlay, etc. inherit from featured-section CSS */

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1200px) {
    .latest-section .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .latest-section {
        padding: 70px 0;
    }

    .latest-section .section-title {
        font-size: 38px;
    }

    .latest-section .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .latest-section .product-image-container {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .latest-section .section-title {
        font-size: 32px;
    }

    .latest-section .section-subtitle {
        font-size: 16px;
    }

    .latest-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .latest-section .product-image-container {
        height: 220px;
    }

    .latest-section .product-info-premium {
        padding: 18px;
    }

    .latest-section .current-price {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .latest-section {
        padding: 50px 0;
    }

    .latest-section .section-title {
        font-size: 28px;
    }

    .latest-section .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .latest-section .product-image-container {
        height: 280px;
    }

    .latest-section .quick-actions {
        gap: 8px;
    }

    .latest-section .action-btn {
        width: 40px;
        height: 40px;
    }
}
.brand-story-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f1e8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.brand-story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 116, 84, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Image Wrapper */
.story-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.story-image-wrapper:hover {
    transform: scale(1.02);
}

.story-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-badge i {
    font-size: 24px;
    color: #28a745;
}

.image-badge span {
    font-size: 16px;
    font-weight: 600;
    color: #2c2416;
}

/* Story Content */
.story-content {
    padding-left: 40px;
}

.story-tag {
    display: inline-block;
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #2c2416;
    line-height: 1.3;
    margin-bottom: 25px;
}

.story-intro {
    font-size: 19px;
    color: #4a3f2e;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.story-description {
    font-size: 16px;
    color: #6b5d4f;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Trust Elements */
.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.trust-item:hover {
    background: white;
    border-color: #8b7454;
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(139, 116, 84, 0.3);
}

.trust-icon i {
    font-size: 24px;
    color: white;
}

.trust-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c2416;
    margin-bottom: 8px;
}

.trust-text p {
    font-size: 14px;
    color: #6b5d4f;
    margin: 0;
    line-height: 1.6;
}

/* Learn More Button */
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 116, 84, 0.3);
}

.btn-learn-more:hover {
    background: linear-gradient(135deg, #6b5d4f 0%, #4a3f2e 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 116, 84, 0.4);
    color: white;
}

.btn-learn-more i {
    transition: transform 0.3s ease;
}

.btn-learn-more:hover i {
    transform: translateX(5px);
}

/* ================================================
   BRAND STORY SECTION
   ================================================ */

.brand-story-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f1e8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.brand-story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 116, 84, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Image Wrapper */
.story-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.story-image-wrapper:hover {
    transform: scale(1.02);
}

.story-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-badge i {
    font-size: 24px;
    color: #28a745;
}

.image-badge span {
    font-size: 16px;
    font-weight: 600;
    color: #2c2416;
}

/* Story Content */
.story-content {
    padding-left: 60px;
}

.story-tag {
    display: inline-block;
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #2c2416;
    line-height: 1.3;
    margin-bottom: 25px;
}

.story-intro {
    font-size: 19px;
    color: #4a3f2e;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.story-description {
    font-size: 16px;
    color: #6b5d4f;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Trust Elements */
.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.trust-item:hover {
    background: white;
    border-color: #8b7454;
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(139, 116, 84, 0.3);
}

.trust-icon i {
    font-size: 24px;
    color: white;
}

.trust-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c2416;
    margin-bottom: 8px;
}

.trust-text p {
    font-size: 14px;
    color: #6b5d4f;
    margin: 0;
    line-height: 1.6;
}

/* Learn More Button */
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 116, 84, 0.3);
}

.btn-learn-more:hover {
    background: linear-gradient(135deg, #6b5d4f 0%, #4a3f2e 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 116, 84, 0.4);
    color: white;
}

.btn-learn-more i {
    transition: transform 0.3s ease;
}

.btn-learn-more:hover i {
    transform: translateX(5px);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 991px) {
    .brand-story-section {
        padding: 70px 0;
    }

    .story-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .story-title {
        font-size: 34px;
    }

    .story-intro {
        font-size: 17px;
    }

    .story-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .story-title {
        font-size: 28px;
    }

    .story-intro {
        font-size: 16px;
    }

    .story-description {
        font-size: 15px;
    }

    .story-image {
        height: 350px;
    }

    .trust-elements {
        gap: 20px;
    }

    .trust-item {
        padding: 15px;
    }

    .trust-icon {
        width: 50px;
        height: 50px;
    }

    .trust-icon i {
        font-size: 20px;
    }

    .trust-text h4 {
        font-size: 16px;
    }

    .trust-text p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .brand-story-section {
        padding: 50px 0;
    }

    .story-title {
        font-size: 24px;
    }

    .story-image {
        height: 300px;
    }

    .image-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
    }

    .image-badge i {
        font-size: 20px;
    }

    .image-badge span {
        font-size: 14px;
    }

    .btn-learn-more {
        width: 100%;
        justify-content: center;
    }
}
/* Instagram Section */
.insta-sec {
    background: #f5f5f2;
}

.insta-heading {
    font-size: 28px;
}

/* Remove Scrollbar Completely + Smooth Scroll */
.insta-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

.insta-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Reel Cards */
.insta-card {
    min-width: 260px;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    background: #000;
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Testimonial Section */
.testimonial-sec {
    background: linear-gradient(180deg, #ffffff 0%, #f5f1e8 100%);
    padding: 70px 0;
    text-align: center;
}

.testimonial-slide .stars {
    font-size: 24px;
    color: #b58a48;
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 24px;
    font-style: italic;
    color: #333;
    max-width: 900px;
    margin: 0 auto 25px auto;
}

.testimonial-author {
    font-size: 18px;
    font-weight: 600;
    color: #7a7a7a;
    margin-bottom: 40px;
}

/* hide all slides */
.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s;
}

/* show active slide */
.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.testimonial-controls button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 26px;
    transition: 0.3s;
}

.testimonial-controls button:hover {
    background: #f1f1f1;
}
/* Section Background */
.ayurveda-hero {
    padding: 0 0 50px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f1e8 100%);
    font-family: 'Poppins', sans-serif;
}

/* Image Container */
.ayurveda-bg {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    border-radius: 25px;
    overflow: hidden;
}

/* Background Image */
.ayurveda-bg img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(65%);
}

/* Text Overlay */
.ayurveda-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 70%;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
}

.ayurveda-content h2 {
    font-size: 52px;
    font-weight: 300;     /* Thin & elegant */
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.ayurveda-content p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e5e5e5;
}

/* Button */
.ayurveda-btn {
    padding: 12px 40px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    letter-spacing: 1px;
    transition: 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.ayurveda-btn:hover {
    background: #fff;
    color: #000;
}


.ayurveda-btn:hover {
    opacity: 0.8;
}

/* Follow Bar */
.follow-bar {
    text-align: center;
    margin-top: 40px;
}

.follow-bar p {
    font-size: 15px;
    letter-spacing: 4px;
    font-weight: 500;
    color: #000;
    border-top: 1px solid #dcdcdc;
    padding-top: 25px;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.navbar-right {
    margin-left: auto !important;
    display: flex;
    align-items: center;
    gap: 15px;
}
.insta-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.insta-scroll {
    padding-right: 40px;  /* ensures last video is fully visible */
}
/* ================================================
   PRODUCTS PAGE HEADER
   ================================================ */

.products-page-header {
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.products-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.header-icon i {
    font-size: 36px;
    color: white;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ================================================
   FILTERS SECTION
   ================================================ */

.filters-section {
    background: white;
    padding: 30px 0;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.filters-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Search Box */
.search-box {
    flex: 1;
}

.search-form {
    width: 100%;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    background: white;
    border-color: #8b7454;
    box-shadow: 0 4px 15px rgba(139, 116, 84, 0.2);
}

.search-icon {
    color: #999;
    font-size: 18px;
    margin-right: 15px;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #333;
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #6b5d4f 0%, #4a3f2e 100%);
    transform: translateX(2px);
}

/* Sort Box */
.sort-box {
    width: 280px;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 8px 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sort-wrapper:focus-within {
    background: white;
    border-color: #8b7454;
}

.sort-icon {
    color: #999;
    font-size: 16px;
    margin-right: 12px;
}

.sort-select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #333;
    outline: none;
    cursor: pointer;
    font-weight: 500;
}

/* ================================================
   PRODUCTS GRID SECTION (Same as Featured)
   ================================================ */

.products-grid-section {
    padding: 0 0 80px 0;
}

/* Use same CSS as featured-section for product cards */
/* Product cards will inherit styles from featured products section */

/* Badge Variations for Products Page */
.badge-stock-low {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-out-stock {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================================
   PAGINATION
   ================================================ */

.pagination-wrapper {
    margin-top: 60px;
}

.pagination-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-custom li {
    list-style: none;
}

.pagination-custom a,
.pagination-custom span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: white;
    color: #666;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.pagination-custom a:hover {
    background: #8b7454;
    color: white;
    border-color: #8b7454;
    transform: translateY(-2px);
}

.pagination-custom .active span {
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    color: white;
    border-color: #8b7454;
}

/* ================================================
   NO PRODUCTS FOUND
   ================================================ */

.no-products-found {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8ded0 100%);
    border-radius: 30px;
    margin: 50px 0;
}

.no-products-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(139, 116, 84, 0.3);
}

.no-products-icon i {
    font-size: 48px;
    color: white;
}

.no-products-found h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #2c2416;
    margin-bottom: 15px;
}

.no-products-found p {
    font-size: 17px;
    color: #6b5d4f;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.btn-back-to-products {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 116, 84, 0.3);
}

.btn-back-to-products:hover {
    background: linear-gradient(135deg, #6b5d4f 0%, #4a3f2e 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 116, 84, 0.4);
    color: white;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 991px) {
    .page-title {
        font-size: 40px;
    }

    .filters-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .sort-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .products-page-header {
        padding: 60px 0;
    }

    .header-icon {
        width: 70px;
        height: 70px;
    }

    .header-icon i {
        font-size: 30px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .filters-section {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .products-page-header {
        padding: 50px 0;
        margin-bottom: 40px;
    }

    .page-title {
        font-size: 28px;
    }

    .search-input-group {
        padding: 6px 6px 6px 20px;
    }

    .search-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .no-products-icon {
        width: 100px;
        height: 100px;
    }

    .no-products-icon i {
        font-size: 40px;
    }

    .no-products-found h3 {
        font-size: 26px;
    }

    .no-products-found p {
        font-size: 15px;
    }
}

.premium-footer {
    background: linear-gradient(180deg, #2c2416 0%, #1a1410 100%);
    color: #d4c9b8;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(212,201,184,0.1)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Decorative Wave */
.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: rotateY(180deg);
}

.footer-wave path {
    fill: #f5f1e8;
}

/* Footer Main */
.footer-main {
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(212, 201, 184, 0.2);
}

/* Footer About Section */
.footer-about {
    padding-right: 30px;
}

.footer-logo {
    margin-bottom: 15px;
}

.logo-footer {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #b8ad9c;
    margin-bottom: 25px;
}

/* Social Media Links */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4c9b8;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #8b7454;
    color: white;
    transform: translateY(-5px);
    border-color: #8b7454;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

/* Footer Links */
.footer-links {
    padding-left: 20px;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #8b7454 0%, transparent 100%);
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #b8ad9c;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-menu a i {
    font-size: 10px;
    color: #8b7454;
    transition: transform 0.3s ease;
}

.footer-menu a:hover {
    color: #ffffff;
    padding-left: 10px;
}

.footer-menu a:hover i {
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    padding-left: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(139, 116, 84, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 18px;
    color: #8b7454;
}

.contact-item:hover .contact-icon {
    background: #8b7454;
    transform: scale(1.1) rotate(5deg);
}

.contact-item:hover .contact-icon i {
    color: white;
}

.contact-text {
    flex: 1;
}

.contact-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #b8ad9c;
}

.contact-text a {
    color: #b8ad9c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 30px 0;
}

.footer-copyright,
.footer-developer {
    margin: 0;
    font-size: 14px;
    color: #b8ad9c;
}

.footer-copyright strong,
.footer-developer strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-developer i {
    color: #e74c3c;
    font-size: 12px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* ================================================
   SCROLL TO TOP BUTTON
   ================================================ */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(139, 116, 84, 0.4);
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #6b5d4f 0%, #4a3f2e 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 116, 84, 0.6);
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top i {
    font-size: 20px;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* @media (max-width: 991px) {
    .premium-footer {
        padding: 60px 0 0;
        margin-top: 60px;
    }

    .footer-about {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .footer-links,
    .footer-contact {
        padding-left: 0;
    }

    .footer-wave svg {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .footer-brand-name {
        font-size: 22px;
    }

    .footer-description {
        font-size: 13px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .footer-heading {
        font-size: 16px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .premium-footer {
        padding: 50px 0 0;
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .footer-copyright,
    .footer-developer {
        font-size: 13px;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
    }

    .scroll-to-top i {
        font-size: 18px;
    }
} */
/* Product Detail Page Styles */
:root {
    --beige-bg: #f5f2ed;
    --brown-dark: #3d2817;
    --brown-medium: #6b5345;
    --green-badge: #7a8f6c;
}

.product-detail-modern {
    background: linear-gradient(135deg, #f8f6f3 0%, #e8ded0 100%);
    min-height: 100vh;
    padding: 40px 0;
}

.breadcrumb-modern {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
    font-size: 0.85rem;
}

.breadcrumb-modern a {
    color: var(--brown-medium);
    text-decoration: none;
}

.breadcrumb-modern a:hover {
    text-decoration: underline;
}

.product-images-gallery {
    position: sticky;
    top: 20px;
}

.main-product-image {
    background: #e8e4dc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail-item {
    aspect-ratio: 1/1;
    background: #e8e4dc;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: var(--brown-dark);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title-modern {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--brown-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.price-section-modern {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.current-price-modern {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--brown-dark);
}

.original-price-modern {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.discount-badge-modern {
    display: inline-block;
    background: #a4b89a;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.shipping-info-modern {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--brown-medium);
    flex-wrap: wrap;
}

.shipping-info-modern .info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.shipping-info-modern .bullet {
    width: 3px;
    height: 3px;
    background: var(--brown-medium);
    border-radius: 50%;
    margin: 0 8px;
}

.shipping-info-modern .info-item:first-child .bullet {
    display: none;
}

.product-description-modern {
    color: var(--brown-medium);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--brown-medium);
    font-size: 0.9rem;
}

.benefits-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--green-badge);
    font-weight: bold;
    font-size: 1.2rem;
}

.size-selector-modern {
    margin-bottom: 25px;
}

.size-label {
    font-weight: 500;
    color: var(--brown-dark);
    margin-bottom: 10px;
    display: block;
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-option {
    padding: 8px 20px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.size-option:hover,
.size-option.active {
    border-color: var(--brown-dark);
    background: var(--brown-dark);
    color: white;
}

.quantity-selector-modern {
    margin-bottom: 25px;
}

.quantity-label {
    font-weight: 500;
    color: var(--brown-dark);
    margin-bottom: 10px;
    display: block;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--brown-dark);
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--beige-bg);
}

.qty-input {
    width: 60px;
    height: 35px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.action-buttons-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.btn-modern {
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    border: none;
    text-decoration: none;
    display: block;
}

.btn-add-cart {
    background: linear-gradient(135deg, #6b5d4f 0%, #4a3f2e 100%);
    color: var(rgb(234, 229, 229));
    border: 1px solid var(--brown-dark);
}

.btn-add-cart:hover {
    background: var(--brown-dark);
    color: rgb(242, 238, 238);
}

.btn-buy-now {
    background: var(--brown-dark);
    color: white;
}

.btn-buy-now:hover {
    background: #2d1f12;
}

.collapsible-section {
    border-top: 1px solid #ddd;
    padding: 20px 0;
}

.collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--brown-dark);
}

.collapsible-content {
    margin-top: 15px;
    color: var(--brown-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    display: none;
}

.collapsible-content.active {
    display: block;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
}

.trust-badge img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brown-medium);
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 20px;
}

.share-button:hover {
    color: var(--brown-dark);
}

.results-section {
    margin: 60px 0;
    text-align: center;
}

.results-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--brown-dark);
    margin-bottom: 30px;
}

.before-after-container {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.before-after-container img {
    width: 100%;
    display: block;
}

.ritual-section {
    margin: 60px 0;
}

.ritual-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--brown-dark);
    margin-bottom: 30px;
    text-align: center;
}

.ritual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.ritual-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ritual-card-image {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #e8e4dc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ritual-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ritual-card-content {
    padding: 20px;
}

.ritual-card-title {
    font-weight: 500;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.ritual-card-text {
    color: var(--brown-medium);
    font-size: 0.85rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .product-images-gallery {
        position: relative;
        margin-bottom: 30px;
    }
}
/* ================================================
   MOBILE VIEW FIXES - Desktop Design Ko Maintain Karke
   ================================================ */

/* Hero Slider - Desktop Layout Mobile Pe */
@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }
    
    .hero-slide {
        min-height: 500px;
    }
    
    /* Content Ko Center Align */
    .hero-overlay .row {
        justify-content: center;
        text-align: center;
    }
    
    .hero-overlay .col-md-6 {
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 32px !important;
        line-height: 1.3;
        margin-bottom: 20px !important;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 16px !important;
        line-height: 1.6;
        margin-bottom: 25px !important;
        text-align: center;
    }
    
    /* Buttons Side by Side */
    .hero-overlay .col-md-6 > div {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .hero-btn {
        padding: 12px 25px !important;
        font-size: 14px !important;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 450px;
    }
    
    .hero-slide {
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 26px !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
    }
    
    .hero-btn {
        padding: 11px 22px !important;
        font-size: 13px !important;
    }
}

/* Featured Products - 2 Column Grid on Mobile (Desktop Jaisa) */
@media (max-width: 768px) {
    .featured-section,
    .latest-section {
        padding: 60px 15px 80px !important;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-tag {
        font-size: 11px;
        padding: 6px 18px;
    }
    
    .section-title {
        font-size: 32px !important;
    }
    
    .section-subtitle {
        font-size: 15px !important;
    }
    
    /* 2 Column Grid - Desktop Style Maintain */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        margin-bottom: 40px;
    }
    
    .product-card-premium {
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: auto !important;
        margin-bottom: 0 !important;
        overflow: visible !important;
        border-radius: 16px;
    }
    
    .product-image-container {
        height: 200px !important;
        flex-shrink: 0 !important;
        position: relative;
    }
    
    .product-badges {
        top: 8px;
        left: 8px;
        gap: 5px;
        z-index: 2;
    }
    
    .badge-featured,
    .badge-new {
        font-size: 8px !important;
        padding: 4px 9px !important;
        border-radius: 16px;
    }
    
    .badge-stock {
        font-size: 8px !important;
        padding: 4px 9px !important;
    }
    
    /* Product Overlay */
    .product-overlay {
        padding: 12px;
    }
    
    .quick-actions {
        gap: 6px;
    }
    
    .action-btn {
        width: 34px !important;
        height: 34px !important;
        font-size: 12px !important;
    }
    
    /* Product Info */
    .product-info-premium {
        padding: 14px 12px 16px 12px !important;
        display: flex !important;
        flex-direction: column !important;
        flex-grow: 1 !important;
    }
    
    .product-name-premium {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
        height: auto !important;
        min-height: auto !important;
        max-height: 38px;
        overflow: hidden;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2;
        -webkit-box-orient: vertical !important;
        text-align: center !important;
    }
    
    .product-rating-premium {
        margin-bottom: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .stars {
        display: flex !important;
        gap: 2px !important;
    }
    
    .stars i {
        font-size: 11px !important;
    }
    
    .rating-count {
        font-size: 10px !important;
        margin-left: 5px;
    }
    
    /* Price Section */
    .price-section {
        padding: 10px 0 !important;
        margin-bottom: 10px !important;
        border-top: 1px solid #f0ece4 !important;
        border-bottom: 1px solid #f0ece4 !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .price-row {
        display: flex !important;
        align-items: baseline !important;
        gap: 6px !important;
    }
    
    .current-price {
        font-size: 16px !important;
        font-weight: 700 !important;
    }
    
    .original-price {
        font-size: 11px !important;
        text-decoration: line-through !important;
    }
    
    .discount-tag {
        font-size: 8px !important;
        padding: 3px 6px !important;
        border-radius: 10px !important;
        white-space: nowrap !important;
    }
    
    /* Stock Status */
    .stock-status {
        margin-bottom: 12px !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .status-dot {
        width: 6px !important;
        height: 6px !important;
    }
    
    .status-text {
        font-size: 11px !important;
    }
    
    /* Add to Cart Button - IMPORTANT GRADIENT */
    .product-card-premium .btn-add-cart,
    .product-card-premium .add-to-cart-full,
    .product-card-premium button.btn-add-cart,
    .product-card-premium button.add-to-cart-full {
        padding: 10px 8px !important;
        font-size: 12px !important;
        border-radius: 10px !important;
        margin-top: auto !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%) !important;
        color: white !important;
        border: none !important;
        box-shadow: 0 4px 15px rgba(139, 116, 84, 0.3) !important;
    }
    
    .product-card-premium .btn-add-cart:hover,
    .product-card-premium .add-to-cart-full:hover,
    .product-card-premium button.btn-add-cart:hover,
    .product-card-premium button.add-to-cart-full:hover {
        background: linear-gradient(135deg, #6b5d4f 0%, #4a3f2e 100%) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(139, 116, 84, 0.4) !important;
    }
    
    .product-card-premium .btn-add-cart i,
    .product-card-premium .add-to-cart-full i {
        font-size: 12px !important;
        color: white !important;
    }
    
    .product-card-premium .btn-add-cart span,
    .product-card-premium .add-to-cart-full span {
        font-size: 12px !important;
        color: white !important;
    }
}

@media (max-width: 576px) {
    .featured-section,
    .latest-section {
        padding: 50px 12px 70px !important;
    }
    
    .section-title {
        font-size: 28px !important;
    }
    
    .section-subtitle {
        font-size: 14px !important;
    }
    
    /* Still 2 Columns but Smaller */
    .products-grid {
        gap: 12px !important;
        margin-bottom: 35px;
    }
    
    .product-card-premium {
        border-radius: 14px;
    }
    
    .product-image-container {
        height: 170px !important;
    }
    
    .product-badges {
        top: 6px;
        left: 6px;
    }
    
    .badge-featured,
    .badge-new,
    .badge-stock {
        font-size: 7px !important;
        padding: 3px 8px !important;
    }
    
    .action-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 11px !important;
    }
    
    .product-info-premium {
        padding: 12px 10px 14px 10px !important;
    }
    
    .product-name-premium {
        font-size: 12px !important;
        max-height: 35px;
        margin-bottom: 8px !important;
        text-align: center !important;
    }
    
    .product-rating-premium {
        justify-content: center !important;
    }
    
    .stars i {
        font-size: 10px !important;
    }
    
    .rating-count {
        font-size: 9px !important;
    }
    
    .current-price {
        font-size: 15px !important;
    }
    
    .original-price {
        font-size: 10px !important;
    }
    
    .discount-tag {
        font-size: 7px !important;
        padding: 2px 5px !important;
    }
    
    .stock-status {
        margin-bottom: 10px !important;
    }
    
    .status-dot {
        width: 5px !important;
        height: 5px !important;
    }
    
    .status-text {
        font-size: 10px !important;
    }
    
    .btn-add-cart,
    .add-to-cart-full {
        padding: 9px 6px !important;
        font-size: 11px !important;
        border-radius: 8px !important;
        background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%) !important;
        color: white !important;
        border: none !important;
    }
    
    .btn-add-cart:hover,
    .add-to-cart-full:hover {
        background: linear-gradient(135deg, #6b5d4f 0%, #4a3f2e 100%) !important;
    }
    
    .btn-add-cart i,
    .add-to-cart-full i {
        font-size: 11px !important;
    }
    
    .btn-add-cart span,
    .add-to-cart-full span {
        font-size: 11px !important;
    }
}

/* Ayurveda Section - Desktop Style Maintain */
@media (max-width: 768px) {
    .ayurveda-hero {
        padding: 0 0 50px;
    }
    
    .ayurveda-bg {
        width: 95%;
        margin: 40px auto;
        border-radius: 20px;
    }
    
    .ayurveda-bg img {
        height: 500px;
        filter: brightness(60%);
    }
    
    /* Content Centered - Desktop Jaisa */
    .ayurveda-content {
        width: 80%;
        text-align: center;
    }
    
    .ayurveda-content h1 {
        font-size: 38px !important;
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: 400;
    }
    
    .ayurveda-content p {
        font-size: 17px !important;
        line-height: 1.6;
        margin-bottom: 28px;
        font-weight: 300;
    }
    
    .ayurveda-btn {
        padding: 14px 40px;
        font-size: 16px;
        display: inline-block;
        letter-spacing: 1px;
    }
    
    .follow-bar p {
        font-size: 14px;
        letter-spacing: 3.5px;
        padding-top: 22px;
        width: 95%;
    }
}

@media (max-width: 576px) {
    .ayurveda-bg {
        width: 100%;
        margin: 30px auto;
        border-radius: 15px;
    }
    
    .ayurveda-bg img {
        height: 450px;
    }
    
    .ayurveda-content {
        width: 85%;
    }
    
    .ayurveda-content h1 {
        font-size: 32px !important;
        margin-bottom: 18px;
    }
    
    .ayurveda-content p {
        font-size: 15px !important;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .ayurveda-btn {
        padding: 12px 35px;
        font-size: 15px;
    }
    
    .follow-bar p {
        font-size: 12px;
        letter-spacing: 3px;
        padding-top: 20px;
    }
}

/* View All Button - Centered */
@media (max-width: 768px) {
    .btn-view-all {
        padding: 14px 35px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .btn-view-all {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Extra Small Devices - Still Desktop Layout */
@media (max-width: 400px) {
    .hero-slider {
        height: 420px;
    }
    
    .hero-slide {
        min-height: 420px;
    }
    
    .hero-title {
        font-size: 24px !important;
    }
    
    .hero-subtitle {
        font-size: 13px !important;
    }
    
    .featured-section,
    .latest-section {
        padding: 45px 10px 65px !important;
    }
    
    .section-title {
        font-size: 26px !important;
    }
    
    .section-subtitle {
        font-size: 13px !important;
    }
    
    /* 2 Columns Still */
    .products-grid {
        gap: 10px !important;
        margin-bottom: 30px;
    }
    
    .product-card-premium {
        border-radius: 12px;
    }
    
    .product-image-container {
        height: 150px !important;
    }
    
    .product-badges {
        top: 5px;
        left: 5px;
        gap: 4px;
    }
    
    .badge-featured,
    .badge-new,
    .badge-stock {
        font-size: 7px !important;
        padding: 3px 7px !important;
    }
    
    .action-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 10px !important;
    }
    
    .product-info-premium {
        padding: 10px 8px 12px 8px !important;
    }
    
    .product-name-premium {
        font-size: 11px !important;
        max-height: 32px;
        margin-bottom: 7px !important;
        text-align: center !important;
    }
    
    .product-rating-premium {
        justify-content: center !important;
    }
    
    .stars i {
        font-size: 9px !important;
    }
    
    .rating-count {
        font-size: 8px !important;
    }
    
    .price-section {
        padding: 7px 0 !important;
        margin-bottom: 7px !important;
    }
    
    .current-price {
        font-size: 14px !important;
    }
    
    .original-price {
        font-size: 9px !important;
    }
    
    .discount-tag {
        font-size: 7px !important;
        padding: 2px 5px !important;
    }
    
    .stock-status {
        margin-bottom: 8px !important;
    }
    
    .status-dot {
        width: 5px !important;
        height: 5px !important;
    }
    
    .status-text {
        font-size: 9px !important;
    }
    
    .btn-add-cart,
    .add-to-cart-full {
        padding: 8px 5px !important;
        font-size: 10px !important;
        border-radius: 8px !important;
        background: linear-gradient(135deg, #8b7454 0%, #6b5d4f 100%) !important;
        color: white !important;
        border: none !important;
    }
    
    .btn-add-cart:hover,
    .add-to-cart-full:hover {
        background: linear-gradient(135deg, #6b5d4f 0%, #4a3f2e 100%) !important;
    }
    
    .btn-add-cart i,
    .add-to-cart-full i {
        font-size: 10px !important;
    }
    
    .btn-add-cart span,
    .add-to-cart-full span {
        font-size: 10px !important;
    }
    
    .ayurveda-bg img {
        height: 400px;
    }
    
    .ayurveda-content h1 {
        font-size: 28px !important;
    }
    
    .ayurveda-content p {
        font-size: 14px !important;
    }
}
/* Testimonial Stars - Mobile Only Center */
@media (max-width: 768px) {
    .testimonial-sec .stars {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}