/* Ensure strikethrough for original price in product cards is clear */
.modern-product-price span[style*='line-through'] {
    text-decoration: line-through;
    color: #000;
    font-size: 1.1em;
    margin-right: 8px;
    vertical-align: middle;
}
/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600&family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Black and White Theme Colors */
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #666666;
    --dark-text: #000000;
    --light-text: #333333;
    --bg-light: #FFFFFF;
    --bg-accent: #F5F5F5;
    --white: #FFFFFF;
    --black: #000000;
    --border-color: #000000;
    --error-color: #FF0000;
    --success-color: #00FF00;
    --gray-light: #F5F5F5;
    --gray-medium: #CCCCCC;
    --transition: all 0.3s ease;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 2px;
}

body {
    font-family: 'Raleway', sans-serif;
    color: #000000;
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #000000;
}

p {
    margin-bottom: 1rem;
    color: #000000;
}

a {
    text-decoration: none;
    color: #000000;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #000000;
    font-family: 'Raleway', sans-serif;
}

.btn-primary {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}

.btn-primary:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.btn-secondary:hover {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 10px;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

header.scrolled .logo h1 {
    color: #000000;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFFFFF;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.icon-link span{
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
}
header.scrolled .icon-link {
    color: #000000;
}

.icon-link i {
    font-size: 1.2rem;
}

.icon-link:hover {
    color: #FFFFFF;
    transform: scale(1.05);
}

header.scrolled .icon-link:hover {
    color: #333333;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #FFFFFF;
    color: #000000;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure it appears above other elements */
}

/* Responsive styles for cart icon */
@media (max-width: 768px) {
    .header-right .cart-icon {
        margin-left: 10px; /* Add some spacing in smaller screens */
    }
    
    .header-right .cart-icon .icon-link span {
        display: none; /* Hide the text on smaller screens */
    }
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

header.scrolled .login-btn {
    color: #000000;
    border-color: #000000;
}

.login-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

header.scrolled .login-btn:hover {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.signup-btn {
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #FFFFFF;
}

.signup-btn:hover {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

header.scrolled .signup-btn {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}

header.scrolled .signup-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 10px 0;
    min-width: 150px;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.user-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 8px 15px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #F5F5F5;
}

.dropdown-item i {
    font-size: 1rem;
}

/* Cart Dropdown */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 15px;
    min-width: 300px;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cart-icon:hover .cart-dropdown {
    display: block;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #EEEEEE;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #000000;
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.quantity-btn {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000000;
    background-color: transparent;
    cursor: pointer;
}

.cart-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #EEEEEE;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.cart-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.cart-actions .btn {
    flex: 1;
    text-align: center;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000000;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
    header {
        background-color: #FFFFFF;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }

    .logo h1 {
        color: #000000;
    }

    .icon-link {
        color: #000000;
    }

    .icon-link:hover {
        color: #333333;
    }

    .main-menu {
        display: none;
    }

    .main-menu.active {
        display: block;
        width: 100%;
        background-color: #FFFFFF;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .main-menu li {
        width: 100%;
    }

    .main-menu li a {
        color: #000000 !important;
        padding: 15px 20px;
        display: block;
        width: 100%;
        text-align: left;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .main-menu li a.active {
        color: #000000 !important;
        font-weight: 700;
        background-color: rgba(0, 0, 0, 0.05);
    }

    .main-menu li a:hover {
        color: #000000 !important;
        font-weight: 700;
        background-color: rgba(0, 0, 0, 0.05);
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .header-right {
        display: none;
    }

    .main-menu.active .header-right {
        display: block;
        width: 100%;
        padding: 15px 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        order: 2;
    }

    .user-actions {
        display: none;
    }

    .main-menu.active .user-actions {
        display: block;
        width: 100%;
        padding: 15px 0;
        order: 3;
    }

    .auth-buttons {
        display: none;
    }

    .main-menu.active .auth-buttons {
        display: block;
        width: 100%;
        padding: 0 20px;
        order: 4;
    }

    .auth-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .login-btn {
        color: #000000;
        border: 1px solid #000000;
    }

    .login-btn:hover {
        background-color: #000000;
        color: #FFFFFF;
        border: 2px solid #000000;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .signup-btn {
        background-color: #000000;
        color: #FFFFFF;
        border: 1px solid #000000;
    }

    .signup-btn:hover {
        background-color: transparent;
        color: #FFFFFF;
        border: 2px solid #FFFFFF;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cart-icon {
        display: none;
    }

    .main-menu.active .cart-icon {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        order: 5;
        text-decoration: none;
        color: #000000;
        position: relative;
        width: 100%;
    }

    .main-menu.active .cart-icon .icon-link {
        display: flex;
        align-items: center;
        color: #000000;
        text-decoration: none;
        font-weight: 500;
        width: 100%;
    }

    .main-menu.active .cart-icon .icon-link i {
        margin-right: 8px;
        font-size: 1.1rem;
        color: #000000;
    }

    .main-menu.active .cart-icon .icon-link span {
        display: inline-block !important;
        color: #000000 !important;
        font-size: 1rem;
        font-weight: 500;
    }

    .main-menu.active .cart-icon .cart-count {
        margin-left: auto;
        background-color: #000000;
        color: #FFFFFF;
        padding: 2px 6px;
        border-radius: 10px;
        font-size: 0.8rem;
        position: relative;
        top: 0;
        right: 0;
    }
}

/* Add this at the end of the file */
.mobile-menu-toggle {
    cursor: pointer;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

nav {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    transition: all 0.3s ease;
}

header.scrolled nav {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.main-menu {
    display: flex;
    justify-content: flex-start;
    margin-left: 10px;
}

.main-menu li a {
    display: block;
    padding: 12px 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    color: #FFFFFF;
}

header.scrolled .main-menu li a {
    color: #000000;
}

.main-menu li a:hover, .main-menu li a.active {
    color: #FFFFFF;
}

header.scrolled .main-menu li a:hover, 
header.scrolled .main-menu li a.active {
    color: #333333;
}

.main-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

header.scrolled .main-menu li a::after {
    background-color: #333333;
}

.main-menu li a:hover::after, .main-menu li a.active::after {
    width: 70%;
}

/* Update active state for transparent navbar */
.main-menu li a.active {
    color: #FFFFFF;
}

header.scrolled .main-menu li a.active {
    color: #333333;
}

/* Update hover state for transparent navbar */
.main-menu li a:hover {
    color: #FFFFFF;
}

header.scrolled .main-menu li a:hover {
    color: #333333;
}

/* Hero Section */
.hero {
    background-image: url('/Assets/2.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    min-height: 500px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 60px;
}

.hero-text {
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.hero-text .subtitle {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
    color: var(--white);
}

.hero-text h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    animation: slideInLeft 1s ease-out;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--white);
    animation: slideInRight 1s ease-out;
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #000000;
    animation: scaleIn 0.6s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Categories Section */
.categories {
    padding: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 300px;
    background-color: #FFFFFF;
    border: 1px solid #000000;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
}

.category-content h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Featured Products Section */
.featured-products {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--dark-text);
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
    text-transform: lowercase;
    font-family: 'Raleway', sans-serif;
}

.section-divider {
    width: 80px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 0 auto;
}

.featured-star {
    font-size: 0.8rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.featured-products {
    padding: 60px 0 80px;
    background-color: #fafafa;
}

.products-grid {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

/* Modern Product Card */
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 480px;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.08);
}
/* Product Image Container */
.product-image-wrapper,
.product-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.01) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image-wrapper::before {
    opacity: 1;
}

/* Product Image */
.product-image-wrapper img,
.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1) contrast(1.05);
}

.product-card:hover .product-image-wrapper img,
.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.1);
}
.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #000;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 14px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    letter-spacing: 0.5px;
}
.product-actions {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}
.product-action-btn {
    background: rgba(255,255,255,0.96);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.product-action-btn:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
/* Product Content */
.product-content,
.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

/* Product Title */
.product-title,
.product-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.3px;
}

/* Product Description */
.product-description,
.product-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Product Price */
.product-price,
.product-card .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.product-price::before,
.product-card .price::before {
    content: '₹';
    font-size: 1.1rem;
    margin-right: 2px;
    opacity: 0.8;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    gap: 10px;
}
/* Product Footer */
.product-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Modern Buy Button */
.buy-btn,
.buy-now-btn {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.buy-btn::before,
.buy-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.buy-btn:hover::before,
.buy-now-btn:hover::before {
    left: 0;
}

.buy-btn:hover,
.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.buy-btn span,
.buy-now-btn span {
    position: relative;
    z-index: 1;
}
.product-category {
    background: #f7f7f7;
    color: #888;
    font-size: 0.93rem;
    padding: 4px 12px;
    border-radius: 8px;
    margin-left: 8px;
}
@media (max-width: 700px) {
    .product-card {
        width: 100%;
        margin: 0 0 18px 0;
        min-height: 0;
    }
    .product-info {
        padding: 14px 10px 10px 10px;
    }
    .product-image {
        height: 180px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: #FFFFFF;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid #000000;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #000000;
}

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

.testimonial-content {
    flex-grow: 1;
}

.testimonial-stars {
    color: #000000;
    margin-bottom: 15px;
}

.testimonial-stars i {
    margin-right: 2px;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    margin-top: 15px;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #333333;
    font-size: 0.9rem;
}

.testimonial-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.testimonial-nav-btn:hover {
    background: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    transform: scale(1.1);
}

.testimonial-nav-btn:focus {
    outline: none;
}

/* Responsive styles for testimonials */
@media (max-width: 992px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .testimonial-avatar {
        margin-bottom: 20px;
    }

    .testimonial-navigation {
        position: relative;
        margin-top: 20px;
        justify-content: center;
        gap: 20px;
    }
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background-color: #FFFFFF;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 1px solid #000000;
    animation: scaleIn 0.6s ease-out;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 25px 20px;
    position: relative;
}

.blog-date {
    font-size: 0.7rem;
    color: #000000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-date i {
    margin-right: 5px;
    font-size: 0.8rem;
}

.blog-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    color: #000000;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--secondary-color);
}

.blog-excerpt {
    color: #000000;
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-text);
    border: 1px solid var(--dark-text);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: #FFFFFF;
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    background-color: #FFFFFF;
    color: #000000;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #FFFFFF;
    color: var(--dark-text);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column p {
    color: #000000;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    background-color: #333333;
    transform: scale(1.2);
}

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

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--secondary-color);
    min-width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.payment-methods {
    display: flex;
}

.payment-methods i {
    font-size: 1.5rem;
    margin-left: 10px;
    color: var(--dark-text);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 50px auto;
    padding: 30px;
    width: 95%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff0000;
}

.modal-product-details {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.modal-product-image {
    width: 300px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f8f8f8;
    padding: 10px;
    transition: transform 0.3s ease;
}

.modal-product-image:hover img {
    transform: scale(1.05);
}

.modal-product-info {
    flex: 1;
}

.modal-product-info h3 {
    margin: 0 0 15px;
    font-size: 1.8rem;
    color: #333;
    line-height: 1.3;
}

.modal-product-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.modal-product-description {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.purchase-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: none;
    background-color: #f0f0f0;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

#quantity {
    width: 60px;
    text-align: center;
    font-weight: bold;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* Add styles for close button */
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-modal:hover {
    color: #ff0000;
    transform: scale(1.1);
}

/* Responsive Modal */
@media (max-width: 992px) {
    .modal-content {
        margin: 20px auto;
        padding: 20px;
        width: 95%;
    }

    .modal-product-details {
        flex-direction: column;
        align-items: center;
    }

    .modal-product-image {
        width: 100%;
        max-width: 350px;
        height: 350px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .modal-content {
        padding: 15px;
        margin: 15px auto;
    }
    
    .modal-product-image {
        height: 250px;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
    }
    
    .modal-product-info h3 {
        font-size: 1.5rem;
    }
    
    .modal-product-price {
        font-size: 1.5rem;
    }
}

/* Responsive Styles */
/* @media (max-width: 992px) {
    .features-grid,
    .products-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .product-details {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .purchase-form {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-color);
        padding-top: 30px;
    }
} */

@media (max-width: 992px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .search-bar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .header-right {
        flex-direction: column;
        width: 100%;
    }
    
    .main-menu {
        display: none;
    }
    
    .main-menu.active {
        display: flex;
        flex-direction: column;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 25px;
        right: 15px;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        border-radius: var(--border-radius);
    }
    
    .newsletter-form input {
        margin-bottom: 10px;
    }

    .products-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }

    .product-image {
        height: 250px;
    }

    .product-info {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .features-grid,
    .products-container,
    .categories-grid,
    .blog-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p {
        margin-bottom: 15px;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .payment-methods i {
        margin: 0 5px;
    }

    .products-container {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 280px;
    }
}

/* Additional styles specific to Private Education page */
.hero5 {
    background-image: url('/Assets/5.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    min-height: 500px;
}

.hero5::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero5-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 60px;
}

.hero5-text {
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.hero5-text .subtitle {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
    color: var(--white);
}

.hero5-text h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    animation: slideInLeft 1s ease-out;
}

.hero5-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--white);
    animation: slideInRight 1s ease-out;
}
.blog-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.blog-filters {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: center;
}

.blog-search {
    position: relative;
    width: 300px;
}

.blog-search input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.blog-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-category {
    padding: 8px 16px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: capitalize;
}

.blog-category:hover, .blog-category.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.featured-post {
    margin-bottom: 40px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-post-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-post-image {
    height: 100%;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-content {
    padding: 30px;
}

.post-date {
    display: flex;
    align-items: center;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.post-date i {
    margin-right: 5px;
}

.featured-post-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.featured-post-excerpt {
    margin-bottom: 20px;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.no-posts {
    text-align: center;
    padding: 60px 0;
}

.no-posts h3 {
    margin-bottom: 20px;
}

.newsletter-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* @media (max-width: 992px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} */

@media (max-width: 992px) {
    .featured-post-inner {
        grid-template-columns: 1fr;
    }
    
    .featured-post-image {
        height: 300px;
    }
    
    .blog-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-search {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: var(--border-radius);
    }
    
    .newsletter-form input {
        margin-bottom: 10px;
    }
}

/* Additional styles specific to Products page */
.hero2 {
    background-image: url('/Assets/4.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    min-height: 500px;
}

.hero2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero2-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 60px;
}

.hero2-text {
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.hero2-text .subtitle {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
    color: var(--white);
}

.hero2-text h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    animation: slideInLeft 1s ease-out;
}

.hero2-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--white);
    animation: slideInRight 1s ease-out;
}
/* .hero2 {
    background-image: url('/Assets/2.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    min-height: 500px;
} */
.filters-section {
    padding: 30px 0;
    background-color: var(--bg-light);
}

.filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-title {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.search-filter {
    position: relative;
    width: 300px;
}

.search-filter input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.search-filter i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
    justify-content: center;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-filter {
    padding: 15px 30px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.5s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-filter span {
    position: relative;
    z-index: 2;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.category-filter:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.category-filter:hover::before {
    opacity: 1;
}

.category-filter:hover span {
    color: var(--white);
}

.category-filter.active {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-filter.active span {
    color: var(--white);
}

.no-products {
    text-align: center;
    padding: 60px 0;
}

.no-products h3 {
    margin-bottom: 20px;
}

.care-guide {
    padding: 60px 0;
    background-color: var(--white);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.guide-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid #000000;
}

.guide-card h3 {
    margin-bottom: 20px;
}

.guide-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-step {
    display: flex;
    margin-bottom: 15px;
}

.step-number {
    font-weight: bold;
    color: var(--secondary-color);
    margin-right: 10px;
}

/* @media (max-width: 992px) {
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} */

@media (max-width: 992px) {
    .filters-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-title {
        margin-bottom: 15px;
    }

    .search-filter {
        width: 100%;
        margin-bottom: 15px;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional styles specific to Feedback page */
.hero6{
    background-image: url('/Assets/8.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    min-height: 500px;
}
.feedback-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.feedback-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid #000000;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #000000;
    border-radius: var(--border-radius);
    background-color: #FFFFFF;
    color: #000000;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-col {
    flex: 1;
}

.rating-container {
    display: flex;
    gap: 5px;
}

.star {
    color: var(--gray-medium);
    font-size: 30px;
    cursor: pointer;
}

.star.active {
    color: var(--secondary-color);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.checkbox-container input {
    margin-top: 5px;
    margin-right: 10px;
    width: auto;
}

.testimonials-section {
    padding: 60px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid #000000;
}

.testimonial-stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #000000;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* @media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} */

@media (max-width: 992px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional styles specific to About page */
.hero1 {
    background-image: url('/Assets/3.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    min-height: 500px;
}

.hero1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero1-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 60px;
}

.hero1-text {
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.hero1-text .subtitle {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
    color: var(--white);
}

.hero1-text h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    animation: slideInLeft 1s ease-out;
}

.hero1-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--white);
    animation: slideInRight 1s ease-out;
}

/* .hero1{
    background-image: url('/Assets/3.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    min-height: 500px;
} */
.history-section, .mission-section, .approach-section, .team-section {
    padding: 80px 0;
    position: relative;
}

.history-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23000" opacity="0.01"/><circle cx="10" cy="60" r="0.5" fill="%23000" opacity="0.01"/><circle cx="90" cy="40" r="0.5" fill="%23000" opacity="0.01"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.mission-section {
    background-color: var(--bg-light);
}

.approach-section {
    background-color: var(--white);
}

.team-section {
    background-color: var(--bg-accent);
}

.about-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.about-cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.about-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.about-cta .btn-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.history-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.history-image {
    flex: 1;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.history-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.history-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(45deg, #000000, #333333);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.history-image:hover::before {
    opacity: 0.2;
    transform: translate(10px, 10px);
}

.history-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    filter: brightness(0.95) contrast(1.05);
}

.history-image:hover img {
    filter: brightness(1) contrast(1.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.est-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #000000, #333333);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.est-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.history-text {
    flex: 1;
    padding: 20px 0;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.history-image {
    animation: fadeInLeft 1s ease-out 0.3s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) perspective(1000px) rotateY(-5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) perspective(1000px) rotateY(-5deg);
    }
}

.history-text h2 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(44,62,80,0.08);
    position: relative;
    line-height: 1.2;
}

.history-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #000000, #333333);
    border-radius: 2px;
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px 25px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.history-text p:hover {
    border-left-color: #000000;
    padding-left: 30px;
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.history-text p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 249, 250, 0.9));
    border-left: 4px solid #000000;
    font-style: italic;
}

.mission-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    border: 1px solid #000000;
    animation: fadeIn 1s ease-out;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    animation: fadeIn 1s ease-out;
}

.value-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #000000;
    animation: scaleIn 0.6s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2);
}

.approach-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.approach-text {
    flex: 1;
}

.approach-item {
    display: flex;
    margin-bottom: 20px;
    background-color: #FFFFFF;
    border: 1px solid #000000;
}

.approach-icon {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 3px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #000000;
    animation: fadeIn 0.8s ease-out;
    transition: transform 0.3s ease;
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-title {
    color: #000000;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    color: #000000;
    font-size: 0.9rem;
}

/* @media (max-width: 992px) {
    .values-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} */

@media (max-width: 992px) {
    .history-content, .approach-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .history-image, .history-text, .approach-image, .approach-text {
        width: 100%;
    }
    
    .history-image {
        transform: perspective(1000px) rotateY(0deg);
        max-width: 500px;
        margin: 0 auto;
    }
    
    .history-image img {
        height: 400px;
    }
    
    .history-text h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .history-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .history-text p {
        text-align: left;
        padding: 15px 20px;
        margin-bottom: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .history-section {
        padding: 60px 0;
    }
    
    .history-content {
        gap: 30px;
    }
    
    .history-image img {
        height: 350px;
    }
    
    .history-text h2 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    
    .history-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .est-badge {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .history-section {
        padding: 40px 0;
    }
    
    .history-content {
        gap: 25px;
    }
    
    .history-image {
        max-width: 100%;
    }
    
    .history-image img {
        height: 300px;
        border-radius: 10px;
    }
    
    .history-image::before {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }
    
    .history-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .history-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 18px;
        padding: 12px 15px;
    }
    
    .history-text p:first-of-type {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }
    
    .est-badge {
        bottom: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 0.75rem;
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional styles specific to Contact page */
.hero3 {
    background-image: url('/Assets/6.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    min-height: 500px;
}

.hero3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero3-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 60px;
}

.hero3-text {
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.hero3-text .subtitle {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
    color: var(--white);
}

.hero3-text h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    animation: slideInLeft 1s ease-out;
}

.hero3-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--white);
    animation: slideInRight 1s ease-out;
}
/* .hero3{
    background-image: url('/Assets/6.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    min-height: 500px;
} */
.contact-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-form {
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid #000000;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
}

.contact-details h4 {
    margin-bottom: 5px;
}

.contact-details p {
    color: #000000;
    margin-bottom: 0;
}

.social-media {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #000000;
    border-radius: var(--border-radius);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.map-section {
    padding: 60px 0;
}

.map-container {
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Update any remaining text colors */
p, span, a, li, label, input, textarea, select {
    color: #000000;
}

/* Update Contact Form Button */
.contact-form .btn-primary {
    display: block;
    margin: 0 auto;
    min-width: 200px;
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}

.contact-form .btn-primary:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Update Feedback Form Button */
.feedback-form-container .btn-primary {
    display: block;
    margin: 30px auto 0;
    min-width: 200px;
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}

.feedback-form-container .btn-primary:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Add specific styles for the feedback form submit button */
.feedback-form-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback-form-container .form-group {
    width: 100%;
}

/* Update Product Categories Styling */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
    justify-content: center;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-filter {
    padding: 15px 30px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.5s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-filter span {
    position: relative;
    z-index: 2;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.category-filter:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.category-filter:hover::before {
    opacity: 1;
}

.category-filter:hover span {
    color: var(--white);
}

.category-filter.active {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-filter.active span {
    color: var(--white);
}

@media (max-width: 992px) {
    .category-filters {
        gap: 15px;
        padding: 15px;
    }
    
    .category-filter {
        min-width: 150px;
        padding: 12px 25px;
        font-size: 0.8rem;
    }
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Apply animations to elements */
.hero-text {
    animation: fadeIn 1s ease-out;
}

.hero-text h2 {
    animation: slideInLeft 1s ease-out;
}

.hero-text p {
    animation: slideInRight 1s ease-out;
}

.feature-card {
    animation: scaleIn 0.6s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card {
    animation: scaleIn 0.6s ease-out;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.team-card {
    animation: fadeIn 0.8s ease-out;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image img {
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.category-filter {
    animation: scaleIn 0.5s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-filter:hover {
    transform: translateY(-8px) scale(1.05);
}

.testimonial-card {
    animation: fadeIn 0.8s ease-out;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.blog-card {
    animation: scaleIn 0.6s ease-out;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.social-links a {
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Add animation delays for staggered effects */
.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.6s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay:  0.4s;
}

.product-card:nth-child(4) {
    animation-delay: 0.6s;
}

.team-card:nth-child(2) {
    animation-delay: 0.2s;
}

.team-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add animation to form elements */
.form-group input,
.form-group textarea,
.form-group select {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Add animation to navigation menu items */
.main-menu li a {
    transition: all 0.3s ease;
}

.main-menu li a:hover {
    transform: translateY(-2px);
}

/* Add animation to logo */
.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Mission Section Animations */
.mission-card {
    animation: fadeIn 1s ease-out;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
}

.values-grid {
    animation: fadeIn 1s ease-out;
}

.value-card {
    animation: scaleIn 0.6s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2);
}

/* Add staggered animation delays for value cards */
.value-card:nth-child(2) {
    animation-delay: 0.2s;
}

.value-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Add animation for mission section text */
.mission-card h3 {
    animation: slideInLeft 0.8s ease-out;
}

.mission-card p {
    animation: slideInRight 0.8s ease-out;
}

.value-card h3 {
    animation: fadeIn 0.8s ease-out;
}

.value-card p {
    animation: fadeIn 0.8s ease-out;
}

header.scrolled .cart-icon .icon-link {
    color: #000000;
}

header.scrolled .cart-icon .icon-link:hover {
    color: #333333;
}

header.scrolled .cart-count {
    background-color: #000000;
    color: #FFFFFF;
}

.cart-icon .icon-link span {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.3s ease;
}

header.scrolled .cart-icon .icon-link span {
    color: #000000;
}

header.scrolled .cart-icon .icon-link:hover span {
    color: #333333;
}

.checkout-btn {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Form Submit Button Styles */
.form-submit-btn {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin: 20px auto;
    display: block;
}

.form-submit-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Login and Signup Form Specific Styles */
.login-form .form-submit-btn,
.signup-form .form-submit-btn {
    margin-top: 30px;
}

.login-form .form-submit-btn:hover,
.signup-form .form-submit-btn:hover {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Additional Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Apply animations to elements */
/* Hero Section */
.hero-text .subtitle {
    animation: fadeInDown 1s ease-out;
}

.hero-text h2 {
    animation: fadeInLeft 1s ease-out;
}

.hero-text p {
    animation: fadeInRight 1s ease-out;
}

/* Features Section */
.feature-card {
    animation: fadeInUp 0.8s ease-out;
}

.feature-icon {
    animation: pulse 2s infinite;
}

/* Categories Section */
.category-card {
    animation: fadeInUp 0.8s ease-out;
}

.category-card:hover img {
    animation: pulse 1s infinite;
}

/* Products Section */
.product-card {
    animation: fadeInUp 0.8s ease-out;
}

.product-badge {
    animation: fadeInDown 0.8s ease-out;
}

.product-actions {
    animation: fadeInRight 0.8s ease-out;
}

/* Testimonials Section */
.testimonial-card {
    animation: fadeInUp 0.8s ease-out;
}

.testimonial-avatar {
    animation: pulse 2s infinite;
}

.testimonial-stars {
    animation: fadeInDown 0.8s ease-out;
}

/* Blog Section */
.blog-card {
    animation: fadeInUp 0.8s ease-out;
}

.blog-image {
    animation: fadeInDown 0.8s ease-out;
}

.blog-date {
    animation: fadeInLeft 0.8s ease-out;
}

.blog-title {
    animation: fadeInRight 0.8s ease-out;
}

/* Newsletter Section */
.newsletter-content h3 {
    animation: fadeInDown 0.8s ease-out;
}

.newsletter-content p {
    animation: fadeInUp 0.8s ease-out;
}

.newsletter-form {
    animation: fadeInUp 1s ease-out;
}

/* Footer Section */
.footer-column {
    animation: fadeInUp 0.8s ease-out;
}

.social-links a {
    animation: bounce 2s infinite;
}

/* Contact Section */
.contact-info-item {
    animation: fadeInLeft 0.8s ease-out;
}

.contact-form {
    animation: fadeInRight 0.8s ease-out;
}

/* Feedback Section */
.feedback-form-container {
    animation: fadeInUp 0.8s ease-out;
}

.testimonial-item {
    animation: fadeInUp 0.8s ease-out;
}

/* About Section */
.history-content {
    animation: fadeInUp 0.8s ease-out;
}

.mission-card {
    animation: fadeInUp 0.8s ease-out;
}

.value-card {
    animation: fadeInUp 0.8s ease-out;
}

.team-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Add staggered animation delays */
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.4s; }
.feature-card:nth-child(4) { animation-delay: 0.6s; }

.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.4s; }
.product-card:nth-child(4) { animation-delay: 0.6s; }

.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.4s; }

.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.4s; }

.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.4s; }
.footer-column:nth-child(4) { animation-delay: 0.6s; }

/* Add hover animations */
.btn:hover {
    animation: pulse 0.5s ease-in-out;
}

.social-links a:hover {
    animation: bounce 0.5s ease-in-out;
}

.feature-icon:hover {
    animation: rotate 1s ease-in-out;
}

/* Add loading animation for images */
img {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

/* Add scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add animation to form elements */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    animation: pulse 0.5s ease-in-out;
}

/* Add animation to navigation menu items */
.main-menu li a {
    position: relative;
    overflow: hidden;
}

.main-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.main-menu li a:hover::after {
    transform: translateX(0);
}

/* Add animation to logo */
.logo {
    animation: fadeInDown 1s ease-out;
}

.logo:hover {
    animation: pulse 0.5s ease-in-out;
}

/* Add animation to cart icon */
.cart-icon {
    animation: fadeInRight 1s ease-out;
}

.cart-count {
    animation: bounce 2s infinite;
}

/* Add animation to mobile menu toggle */
.mobile-menu-toggle span {
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    animation: pulse 0.5s ease-in-out;
}

/* Navigation Menu Active State */
.main-menu li a {
    display: block;
    padding: 12px 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    color: #FFFFFF;
}

header.scrolled .main-menu li a {
    color: #000000;
}

/* Active and Hover States */
.main-menu li a.active {
    color: #FFFFFF;
    font-weight: 700;
}

header.scrolled .main-menu li a.active {
    color: #000000;
    font-weight: 700;
}

.main-menu li a:hover {
    color: #FFFFFF;
    font-weight: 600;
}

header.scrolled .main-menu li a:hover {
    color: #000000;
    font-weight: 600;
}

/* Underline Animation */
.main-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

header.scrolled .main-menu li a::after {
    background-color: #000000;
}

.main-menu li a:hover::after {
    width: 70%;
}

.main-menu li a.active::after {
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
}

header.scrolled .main-menu li a.active::after {
    background-color: #000000;
}

/* Mobile Menu Active State */
@media (max-width: 992px) {
    .main-menu li a.active {
        color: #000000 !important;
        font-weight: 700;
        background-color: rgba(0, 0, 0, 0.05);
        border-bottom: 2px solid #000000;
    }

    .main-menu li a:hover {
        color: #000000 !important;
        font-weight: 600;
        background-color: rgba(0, 0, 0, 0.05);
    }

    .main-menu li a::after {
        display: none;
    }
}
/* --- Responsive Footer (Leonor Greyl style) --- */
.site-footer {
    background: #000 !important;
    color: #fff !important;
    padding: 0;
    font-family: 'Raleway', sans-serif;
}
.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 24px 24px;
    gap: 32px;
}
.footer-col {
    flex: 1 1 200px;
    min-width: 200px;
    margin-bottom: 24px;
}
.newsletter-col h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 18px;
    text-transform: none;
    letter-spacing: 0.5px;
}
.footer-newsletter-form {
    display: flex;
    gap: 0;
    max-width: 320px;
}
.footer-newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px 14px;
    border: none;
    border-radius: 2px 0 0 2px;
    font-size: 1rem;
    outline: none;
}
.footer-newsletter-form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 22px;
    border-radius: 0 2px 2px 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.footer-newsletter-form button:hover {
    background: #222;
    color: #fff;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: #aaa;
}
.footer-social-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.footer-social-links {
    display: flex;
    gap: 16px;
}
.footer-social-links a {
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #222;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social-links a:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}
.footer-bottom {
    background: #000;
    border-top: 1px solid #222;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    flex-wrap: wrap;
}
.footer-bottom-left {
    color: #fff;
}
.footer-bottom-right a {
    color: #fff;
    margin: 0 6px;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-right a:hover {
    color: #aaa;
}
@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        gap: 0;
        padding: 36px 12px 12px 12px;
    }
    .footer-col {
        margin-bottom: 32px;
    }
    .footer-social-links {
        justify-content: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .footer-main {
        padding: 28px 6px 6px 6px;
    }
    .footer-col {
        min-width: 0;
        width: 100%;
        margin-bottom: 24px;
    }
    .footer-newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    .footer-newsletter-form input[type="email"],
    .footer-newsletter-form button {
        border-radius: 2px;
        width: 100%;
        margin-bottom: 8px;
    }
    .footer-social-links {
        justify-content: center;
    }
}
/* --- End Responsive Footer --- */

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #fafafa;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.why-choose-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000000, #333333);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
    color: #333333;
}

.why-choose-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.why-choose-card:hover .why-choose-icon::after {
    transform: translate(-50%, -50%) scale(1);
}

.why-choose-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
}

.why-choose-card:hover h3 {
    color: #333333;
}

.why-choose-card p {
    color: #666666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    transition: color 0.3s ease;
}

.why-choose-card:hover p {
    color: #444444;
}

.why-choose-icon-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 25px;
}

.why-choose-content {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .why-choose-card {
        padding: 30px 25px;
    }
    
    .why-choose-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .why-choose-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .why-choose-card {
        padding: 25px 20px;
    }
    
    .why-choose-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .why-choose-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .why-choose-card p {
        font-size: 0.9rem;
    }
}

/* Animation for cards */
.why-choose-card {
    animation: fadeInUp 0.8s ease-out;
}

.why-choose-card:nth-child(1) { animation-delay: 0.1s; }
.why-choose-card:nth-child(2) { animation-delay: 0.2s; }
.why-choose-card:nth-child(3) { animation-delay: 0.3s; }
.why-choose-card:nth-child(4) { animation-delay: 0.4s; }

/* Hover effects for different cards */
.why-choose-card:nth-child(1):hover .why-choose-icon {
    transform: scale(1.1) rotate(-5deg);
}

.why-choose-card:nth-child(2):hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-choose-card:nth-child(3):hover .why-choose-icon {
    transform: scale(1.1) rotate(-3deg);
}

.why-choose-card:nth-child(4):hover .why-choose-icon {
    transform: scale(1.1) rotate(3deg);
}

/* Product Finder Layout (Salon Finder Style) */
.salon-finder-container {
    display: flex;
    height: calc(100vh - 280px);
    margin-top: 0;
    overflow: hidden;
}

.left-panel {
    width: 400px;
    background: #fff;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.right-panel {
    flex: 1;
    position: relative;
}

.search-section {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    flex-shrink: 0;
    overflow-y: auto;
    max-height: 150px;
}

.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    min-height: 44px;
}

.filter-dropdown {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    min-height: 44px;
    min-width: 120px;
    width: auto;
}

.search-results {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    min-height: 200px;
    max-height: calc(100vh - 400px);
}

.no-results {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 50px;
}

.salon-list {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.salon-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.salon-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.salon-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.salon-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
}

.salon-info h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.salon-address {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.salon-phone {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.salon-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon:hover {
    transform: scale(1.1);
}

.visit-website-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.visit-website-btn:hover {
    background: #333;
}

.notification-section {
    padding: 15px;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
    flex-shrink: 0;
    overflow-y: scroll;
    max-height: 200px;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    scrollbar-gutter: stable;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notification-section::-webkit-scrollbar {
    width: 8px;
}

.notification-section::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.notification-section::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
    border: 1px solid #f1f1f1;
}

.notification-section::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Firefox scrollbar styling */
.notification-section {
    scrollbar-width: thin;
    scrollbar-color: #999 #f1f1f1;
}

.notification-section h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.notification-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.notification-form input {
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.notification-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
    flex-shrink: 0;
}

.notify-btn, .show-all-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    line-height: 1.2;
}

.notify-btn {
    background: #000;
    color: #fff;
}

.notify-btn:hover {
    background: #fff;
    border: 1px solid #000;
    color: #000;
}

.show-all-btn {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.show-all-btn:hover {
    background: #000;
    color: #fff;
}

.map-container {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-controls {
    position: absolute;
    top: 100px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
    pointer-events: auto;
}

.map-control-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.map-control-btn:hover {
    background: #f0f0f0;
}

.map-controls-row {
    display: flex;
    gap: 5px;
}

.toggle-container {
    position: absolute;
    top: 100px;
    left: 20px;
    z-index: 1000;
}

.toggle-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.toggle-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

.toggle-btn.active {
    background: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .salon-finder-container {
        height: calc(100vh - 280px);
    }

    .left-panel {
        width: 350px;
    }

    .search-bar {
        flex-direction: column;
        gap: 8px;
    }

    .filter-dropdown {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .salon-finder-container {
        flex-direction: column;
        height: auto;
        margin-top: 0;
        overflow: visible;
    }

    .left-panel {
        width: 100%;
        height: auto;
        max-height: 70vh;
        order: 2;
        display: flex;
        flex-direction: column;
    }

    .right-panel {
        height: 30vh;
        order: 1;
        position: relative;
    }

    .search-section {
        padding: 15px;
        flex-shrink: 0;
        overflow-y: auto;
        max-height: 120px;
    }

    .search-bar {
        flex-direction: column;
        gap: 8px;
    }

    .search-input,
    .filter-dropdown {
        width: 100%;
        font-size: 16px;
        min-width: auto;
        max-width: none;
    }

    .search-results {
        padding: 15px;
        max-height: 45vh;
        flex: 1;
        min-height: 200px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .salon-item {
        padding: 12px;
        margin-bottom: 12px;
    }

    .salon-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .salon-image {
        width: 50px;
        height: 50px;
        margin-right: 0;
    }

    .salon-actions {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .notification-section {
        padding: 8px;
        max-height: 20vh;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        gap: 4px;
        flex-shrink: 0;
        scrollbar-width: thin;
        scrollbar-color: #999 #f1f1f1;
    }

    .notification-form {
        gap: 4px;
    }

    .notification-form input {
        font-size: 16px;
        padding: 6px 8px;
    }

    .notification-buttons {
        flex-direction: column;
        gap: 4px;
        margin-top: 4px;
    }

    .notify-btn, .show-all-btn {
        padding: 6px 10px;
        font-size: 13px;
        line-height: 1.1;
    }

    .toggle-container {
        top: 80px;
        left: 10px;
        z-index: 1001;
        position: absolute;
    }

    .toggle-btn {
        padding: 10px 16px;
        font-size: 13px;
        background: rgba(0, 0, 0, 0.9);
        color: #fff;
        border: 2px solid #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    .map-controls {
        top: 120px;
        right: 10px;
        gap: 3px;
        position: absolute;
        z-index: 1000;
    }

    .map-control-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid #ddd;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    .map-controls-row {
        gap: 3px;
    }
}

@media (max-width: 480px) {
    .salon-finder-container {
        margin-top: 0;
    }

    .left-panel {
        max-height: 65vh;
    }

    .right-panel {
        height: 35vh;
    }

    .search-section {
        padding: 12px;
        overflow-y: auto;
        max-height: 100px;
    }

    .search-results {
        padding: 12px;
        max-height: 40vh;
        flex: 1;
        min-height: 150px;
        overflow-y: auto;
    }

    .salon-item {
        padding: 10px;
        margin-bottom: 10px;
    }

    .salon-info h3 {
        font-size: 15px;
    }

    .salon-address,
    .salon-phone {
        font-size: 13px;
    }

    .notification-section {
        padding: 6px;
        max-height: 20vh;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        gap: 3px;
        scrollbar-width: thin;
        scrollbar-color: #999 #f1f1f1;
    }

    .notification-form {
        gap: 3px;
    }

    .notification-form input {
        padding: 5px 6px;
        font-size: 16px;
    }

    .notification-buttons {
        gap: 3px;
        margin-top: 3px;
    }

    .notify-btn, .show-all-btn {
        padding: 4px 8px;
        font-size: 12px;
        line-height: 1.1;
    }

    .notification-section h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .toggle-container {
        top: 110px;
        left: 10px;
        z-index: 1001;
        transition: top 0.3s ease;
    }

    .toggle-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .map-controls {
        top: 110px;
        right: 10px;
        z-index: 1000;
        transition: top 0.3s ease;
    }

    .map-control-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .visit-website-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Animation for switching views */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Ensure notification section scrollbar is always visible */
.notification-section {
    /* Force scrollbar to always show */
    overflow-y: scroll !important;
    /* Force scrollbar to always be visible */
    scrollbar-gutter: stable;
}

/* Additional scrollbar styling for better visibility */
.notification-section::-webkit-scrollbar {
    width: 12px !important;
    background-color: #f1f1f1;
}

.notification-section::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.notification-section::-webkit-scrollbar-thumb {
    background: #999 !important;
    border-radius: 6px;
    border: 1px solid #f1f1f1;
    min-height: 40px;
}

.notification-section::-webkit-scrollbar-thumb:hover {
    background: #666 !important;
}

.notification-section::-webkit-scrollbar-corner {
    background: #f1f1f1;
}

/* Ensure scrollbar is visible on all screen sizes */
@media (max-width: 768px) {
    .notification-section {
        overflow-y: scroll !important;
        scrollbar-width: thin !important;
        scrollbar-color: #999 #f1f1f1 !important;
        scrollbar-gutter: stable;
    }
}

@media (max-width: 480px) {
    .notification-section {
        overflow-y: scroll !important;
        scrollbar-width: thin !important;
        scrollbar-color: #999 #f1f1f1 !important;
        scrollbar-gutter: stable;
    }
}