:root {
    --primary-color: #d17a94;
    /* Dusty Pink */
    --secondary-color: #fce4ec;
    /* Light Pink Background */
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --accent-color: #81d4fa;
    /* Light Blue for variety */
    --font-main: 'Outfit', sans-serif;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--text-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-color);
}

/* Enhanced Header with Glass Effect */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.logo-text {
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-color);
}

.nav-list {
    display: flex;
    gap: 30px;
}

/* Enhanced Navigation Styles */
.nav-link {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    transition: var(--transition);
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar {
    position: relative;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.search-bar input {
    border: none;
    outline: none;
    padding: 5px;
    font-family: var(--font-main);
}

.search-bar button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
}

.cart-icon {
    position: relative;
    font-size: 20px;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-links {
    font-size: 12px;
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(209, 122, 148, 0.1) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-arrows {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 0 20px;
    pointer-events: none;
}

.arrow-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.arrow-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* Categories Section */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 700;
}

.container offer-container .section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 700;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Enhanced Category Cards */
.category-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-align: center;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(209, 122, 148, 0.1) 0%, rgba(252, 228, 236, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(209, 122, 148, 0.2);
}

.category-card:hover::before {
    opacity: 1;
}

.category-image {
    height: 250px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-info {
    padding: 15px;
}

.category-info h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

/* Footer */
.footer {
    background-color: #f9f9f9;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
    color: var(--text-light);
    font-size: 14px;
}

/* Products Section */
.products-wrapper {
    position: relative;
    padding: 0 20px;
}

.products-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 15px 5px;
    scrollbar-width: none;
}

.products-grid::-webkit-scrollbar {
    display: none;
}

/* Enhanced Product Cards */
.product-card {
    min-width: 250px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    border: 1px solid rgba(240, 240, 240, 0.8);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(209, 122, 148, 0.05) 0%, rgba(252, 228, 236, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(209, 122, 148, 0.15);
    border-color: var(--secondary-color);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    height: 250px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px 20px 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
}

/* Enhanced Add Button */
.add-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e8a0b5 100%);
    font-size: 14px;
    padding: 10px 0;
    width: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(209, 122, 148, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.add-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 122, 148, 0.4);
}

.add-btn:hover::before {
    width: 300px;
    height: 300px;
}

.product-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.product-arrow.left {
    left: -20px;
}

.product-arrow.right {
    right: -20px;
}


/* Special Offer Section */
.special-offer {
    background-color: #fce4ec;
    /* Light Pink Background to match theme but distinct */
}

.offer-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.offer-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.offer-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.offer-image:hover img {
    transform: scale(1.05);
}

.offer-content {
    flex: 1;
}

.offer-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.offer-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color);
}

.offer-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    min-width: 70px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.time-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.time-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
}


/* Testimonials Section */
.testimonials {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
}


/* Newsletter Section */
.newsletter {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px;
    border-radius: 30px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 15px;
    outline: none;
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form button {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

/* Extended Footer */
.footer-extended {
    background-color: #f9f9f9;
    padding: 60px 0 20px;
    color: var(--text-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-light);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: var(--text-light);
}

/* Remove old footer style if conflict, but it was just .footer p, so overwrite or just use new class */

/* Responsive Design for All Devices */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .products-grid {
        gap: 20px;
    }
    
    .offer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Tablets */
@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .logo {
        order: 1;
        flex: 1;
    }
    
    .mobile-menu-btn {
        order: 2;
        display: block;
        font-size: 20px;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 99;
        border-top: 1px solid var(--secondary-color);
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 10px 0;
    }

    .header-actions {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        gap: 15px;
    }
    
    .search-bar input {
        width: 120px;
    }
    
    .search-bar:focus-within input {
        width: 150px;
    }

    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .hero-card {
        padding: 25px;
        margin: 0 15px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .category-card {
        border-radius: 15px;
    }
    
    .category-image {
        height: 200px;
    }
    
    .products-wrapper {
        padding: 0 10px;
    }
    
    .product-card {
        min-width: 200px;
        border-radius: 15px;
    }
    
    .product-image {
        height: 200px;
        padding: 20px;
    }
    
    .product-info {
        padding: 10px 15px 15px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 16px;
    }
    
    .add-btn {
        width: 80px;
        padding: 8px 0;
        font-size: 12px;
    }
    
    .offer-image {
        max-width: 100%;
    }
    
    .offer-content h2 {
        font-size: 24px;
    }
    
    .countdown {
        justify-content: center;
        gap: 15px;
    }
    
    .time-box {
        min-width: 60px;
        padding: 8px 12px;
    }
    
    .time-value {
        font-size: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .newsletter h2 {
        font-size: 24px;
    }
    
    .newsletter-form {
        max-width: 100%;
        margin: 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo-text {
        font-size: 12px;
    }
    
    .mobile-menu-btn {
        font-size: 18px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .search-bar {
        padding: 6px 10px;
    }
    
    .search-bar input {
        width: 100px;
        font-size: 14px;
    }
    
    .search-bar:focus-within input {
        width: 120px;
    }
    
    .cart-icon {
        font-size: 18px;
    }
    
    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 9px;
        top: -6px;
        right: -8px;
    }
    
    .auth-links {
        font-size: 11px;
    }
    
    .hero {
        height: 350px;
    }
    
    .hero h1 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .hero p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .hero-card {
        padding: 20px;
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .section-title::before {
        width: 40px;
        height: 3px;
        top: -15px;
    }
    
    .section-title::after {
        width: 30px;
        height: 2px;
        bottom: -10px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .category-card {
        border-radius: 12px;
    }
    
    .category-image {
        height: 160px;
    }
    
    .category-info {
        padding: 10px;
    }
    
    .category-info h3 {
        font-size: 14px;
    }
    
    .products-wrapper {
        padding: 0 5px;
    }
    
    .product-card {
        min-width: 160px;
        border-radius: 12px;
    }
    
    .product-image {
        height: 160px;
        padding: 15px;
    }
    
    .product-info {
        padding: 8px 12px 12px;
    }
    
    .product-title {
        font-size: 13px;
    }
    
    .product-price {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .add-btn {
        width: 70px;
        padding: 6px 0;
        font-size: 11px;
        border-radius: 15px;
    }
    
    .product-arrow {
        width: 35px;
        height: 35px;
    }
    
    .product-arrow.left {
        left: -15px;
    }
    
    .product-arrow.right {
        right: -15px;
    }
    
    .offer-content h2 {
        font-size: 20px;
    }
    
    .offer-content p {
        font-size: 14px;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .time-box {
        min-width: 50px;
        padding: 6px 10px;
    }
    
    .time-value {
        font-size: 18px;
    }
    
    .time-label {
        font-size: 10px;
    }
    
    .testimonial-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .client-info img {
        width: 50px;
        height: 50px;
    }
    
    .client-info h4 {
        font-size: 14px;
    }
    
    .testimonial-card p {
        font-size: 14px;
    }
    
    .newsletter h2 {
        font-size: 20px;
    }
    
    .newsletter p {
        font-size: 14px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        margin: 0 10px;
    }
    
    .newsletter-form input {
        padding: 12px 15px;
        border-radius: 20px;
    }
    
    .newsletter-form button {
        padding: 12px 20px;
        border-radius: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-col h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        font-size: 12px;
        padding-top: 15px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 18px;
    }
    
    .hero p {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        min-width: 140px;
    }
    
    .product-image {
        height: 140px;
    }
    
    .offer-content h2 {
        font-size: 18px;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .time-box {
        min-width: 45px;
        padding: 5px 8px;
    }
    
    .time-value {
        font-size: 16px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 300px;
    }
    
    .hero-card {
        padding: 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .nav {
        top: 60px;
    }
}

/* --- Enhanced Styles --- */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Section Title Polish */
.section-title {
    position: relative;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Category Card Polish */
.category-card {
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.category-image {
    height: 260px;
}

/* Product Card Polish */
.product-card {
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Hero Card Polish */
.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

@media (min-width: 769px) {
    .hero h1 {
        font-size: 42px;
        font-weight: 800;
    }
}

/* Enhanced Animations and Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Section Titles */
.section-title {
    position: relative;
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--text-color);
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

/* Enhanced Cart Icon */
.cart-icon {
    position: relative;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-icon:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e8a0b5 100%);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(209, 122, 148, 0.4);
    animation: pulse 2s infinite;
}

/* Enhanced Search Bar */
.search-bar {
    position: relative;
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 8px 15px;
    background: rgba(249, 249, 249, 0.8);
    transition: var(--transition);
}

.search-bar:hover {
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.search-bar input {
    border: none;
    outline: none;
    padding: 5px;
    font-family: var(--font-main);
    background: transparent;
    width: 150px;
    transition: width 0.3s ease;
}

.search-bar:focus-within input {
    width: 200px;
}

.search-bar button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.search-bar button:hover {
    color: var(--primary-color);
}

/* Enhanced Hero Card */
.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

/* Enhanced Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--text-color) 0%, #555 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    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-primary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e8a0b5 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 122, 148, 0.4);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Enhanced Testimonial Cards */
.testimonial-card {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(209, 122, 148, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: var(--secondary-color);
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(209, 122, 148, 0.15);
}

/* Enhanced Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e8a0b5 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::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="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 30px;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced Footer */
.footer-extended {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    padding: 60px 0 20px;
    color: var(--text-color);
    position: relative;
}

.footer-extended::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }
    
    .hero-card {
        padding: 25px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .search-bar input {
        width: 120px;
    }
    
    .search-bar:focus-within input {
        width: 150px;
    }
}