* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b9d;
    --secondary-color: #c8e6c9;
    --accent-color: #ffd54f;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    position: relative;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    justify-content: flex-start;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    position: relative;
}

.nav a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 157, 0.1);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
    padding: 0.5rem;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.3s;
}

.cart-icon:hover {
    background: rgba(255, 107, 157, 0.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 130%;
    background-image: url('baby_mother_smiling_clean.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.4) 0%, rgba(255, 139, 171, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    transform: translateZ(0);
    will-change: transform;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Products Section */
.products {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: var(--bg-light);
}

.product-info {
    padding: 1rem 1.25rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    min-height: 2.5rem;
    line-height: 1.3;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-price .original-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #999;
    text-decoration: line-through;
    margin: 0;
}

.product-price .current-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.discount-badge {
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
}

.add-to-cart {
    width: 100%;
    padding: 0.65rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #ff5a8a;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    background: var(--white);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s;
}

.cart-modal-content {
    max-width: 700px;
    position: relative;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    color: var(--text-dark);
}

.close {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

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

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.quantity-btn {
    background: var(--secondary-color);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.quantity-btn:hover {
    background: #a5d6a7;
}

.remove-item {
    background: #ffcdd2;
    color: #c62828;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.remove-item:hover {
    background: #ef9a9a;
}

.cart-total {
    padding: 1.5rem;
    border-top: 2px solid var(--primary-color);
    text-align: right;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.btn-secondary {
    flex: 1;
    padding: 0.75rem;
    background: var(--text-light);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #5d6d7e;
}

.modal-footer .btn-primary {
    flex: 1;
    text-align: center;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

/* Clear Cart Confirmation Modal */
.clear-cart-modal {
    max-width: 450px;
    text-align: center;
    padding: 2rem;
}

.clear-cart-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.clear-cart-modal h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.clear-cart-modal p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.clear-cart-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-cancel {
    padding: 0.75rem 2rem;
    background: var(--text-light);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background: #5d6d7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-confirm-clear {
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm-clear:hover {
    background: #ff6b9d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

/* Stripe Checkout Section */
.stripe-checkout-section {
    border-top: 2px solid var(--primary-color);
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    margin-top: 1rem;
}

.stripe-checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stripe-checkout-header h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.stripe-checkout-container {
    min-height: 400px;
    position: relative;
}

.stripe-checkout-container iframe {
    width: 100%;
    border: none;
    border-radius: 8px;
    min-height: 400px;
}

.stripe-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--text-light);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 107, 157, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.stripe-loading p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Stripe Checkout Redirect UI */
.stripe-checkout-redirect {
    text-align: center;
    padding: 2rem;
}

.checkout-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.stripe-checkout-redirect h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stripe-checkout-redirect p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.checkout-redirect-btn {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    font-weight: 600 !important;
}

.checkout-redirect-btn:hover {
    background: #ff6b9d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4) !important;
}

/* Trust Badges Section */
.trust-badges {
    padding: 4rem 0;
    background: var(--white);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-badge {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--shadow);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-badge h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.trust-badge p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background: var(--bg-light);
    position: relative;
}

.reviews::before,
.reviews::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--secondary-color);
    z-index: 1;
}

.reviews::before {
    left: 0;
}

.reviews::after {
    right: 0;
}

.reviews-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.review-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 2;
}

.review-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.review-nav-btn:active {
    transform: scale(0.95);
}

.review-nav-btn[style*="opacity: 0.5"] {
    cursor: not-allowed;
}

@media (max-width: 968px) {
    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .reviews-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .review-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        position: absolute;
        z-index: 10;
    }
    
    .review-nav-left {
        left: 5px;
    }
    
    .review-nav-right {
        right: 5px;
    }
    
    .reviews-wrapper {
        gap: 0;
        padding: 0 50px;
    }
    
    .review-card {
        flex: 0 0 100% !important;
        padding: 1.5rem;
        margin: 0;
        min-width: 100%;
        max-width: 100%;
    }
    
    .reviews-scroll-container {
        padding: 1rem 0;
        overflow: hidden;
    }
    
    .reviews-scroll {
        gap: 1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .review-stars {
        font-size: 1.2rem;
    }
}

.reviews-scroll-container {
    flex: 1;
    overflow: hidden;
    padding: 2rem 0;
}

.reviews-scroll {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    width: 100%;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s;
    flex: 0 0 calc(33.333% - 1.34rem);
    min-width: 0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.review-stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    color: var(--text-light);
    font-weight: 600;
    text-align: right;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: var(--white);
}

.about-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
}

.footer-section a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 0;
}

.contact-item:hover {
    color: var(--primary-color);
}

.contact-icon {
    font-size: 1.2rem;
    display: inline-block;
    width: 24px;
    text-align: center;
}

.social-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

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

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon svg {
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

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

/* Instagram specific styling */
.social-icon[aria-label="Instagram"]:hover {
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
}

/* TikTok specific styling */
.social-icon[aria-label="TikTok"]:hover {
    box-shadow: 0 6px 20px rgba(0, 242, 234, 0.5), 0 0 20px rgba(255, 0, 80, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    background: var(--white);
    min-height: 70vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: nowrap;
        padding: 0.5rem 0;
        justify-content: space-between;
    }
    
    .hamburger-menu {
        display: flex;
        order: 1;
        margin-right: 1rem;
    }
    
    .logo {
        order: 2;
        flex: 0 0 auto;
        justify-content: center;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .cart-icon {
        order: 3;
        margin-left: 1rem;
    }
    
    .footer-logo {
        height: 80px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        gap: 0;
        margin: 0;
        border-radius: 0;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav a {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 1rem 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--bg-light);
        color: var(--text-dark);
        flex: none;
    }
    
    .nav a:hover {
        color: var(--primary-color);
        padding-left: 0.5rem;
    }
    
    /* Overlay when menu is open */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .nav-overlay.active {
        display: block;
    }

    .hero {
        min-height: 80vh;
        padding: 4rem 0;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-background {
        background-attachment: scroll;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .modal-content {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .hamburger-menu {
        width: 28px;
        height: 28px;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .nav {
        width: 85%;
        max-width: 280px;
        padding: 4rem 1.5rem 2rem;
    }
    
    .nav a {
        font-size: 1rem;
        padding: 0.875rem 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .products {
        padding: 2rem 0;
    }

    .hero {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero .container {
        padding: 0 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-background {
        background-attachment: scroll;
        height: 140%;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .reviews {
        padding: 2rem 0;
    }
    
    .reviews .container {
        padding: 0 0.5rem;
    }
    
    .reviews-wrapper {
        padding: 0 40px;
    }
    
    .review-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .review-nav-left {
        left: 2px;
    }
    
    .review-nav-right {
        right: 2px;
    }
    
    .review-card {
        padding: 1.25rem;
        flex: 0 0 100% !important;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .reviews-scroll {
        width: 100%;
        display: flex;
    }
    
    .reviews-scroll-container {
        width: 100%;
        overflow: hidden;
    }
    
    .reviews-wrapper {
        padding: 0 45px;
        width: 100%;
        overflow: hidden;
    }
    
    .about {
        padding: 2rem 0;
    }
    
    .about .container {
        padding: 0 1rem;
    }
    
    .about-text {
        font-size: 1rem;
        padding: 0;
        word-wrap: break-word;
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    * {
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .footer {
        overflow-x: hidden;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        gap: 0.5rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .product-card {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .product-image {
        width: 100%;
        height: auto;
        max-height: 300px;
    }
    
    .product-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .reviews {
        overflow-x: hidden;
    }
    
    .hero {
        overflow-x: hidden;
    }
    
    .products {
        overflow-x: hidden;
    }
    
    .section-title {
        word-wrap: break-word;
    }
    
    .hero-content h2 {
        word-wrap: break-word;
    }
    
    .hero-content p {
        word-wrap: break-word;
    }
}

/* Product Detail Page */
.product-detail {
    padding: 3rem 0;
    min-height: 70vh;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.back-link:hover {
    transform: translateX(-5px);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
    align-items: start;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-images.sticky-images {
    position: sticky;
    top: 120px; /* Offset from top to account for header */
    align-self: start;
    transition: top 0.3s ease;
    max-height: calc(100vh - 140px); /* Prevent overflow */
    overflow-y: auto;
}

.product-details {
    position: relative;
}

.main-image-container {
    position: relative;
    width: 100%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

.main-product-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: var(--bg-light);
    display: block;
}

.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px var(--shadow);
}

.image-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.image-nav.prev {
    left: 15px;
}

.image-nav.next {
    right: 15px;
}

.thumbnail-gallery {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    flex-shrink: 0;
    background: var(--bg-light);
}

.thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px var(--shadow);
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-detail-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-detail-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-detail-price .price-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-detail-price .original-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: #999;
    text-decoration: line-through;
}

.product-detail-price .discount-badge {
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    white-space: nowrap;
}

.add-to-cart-section {
    margin-bottom: 2rem;
}

.btn-pink {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.2rem;
    border-radius: 10px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
}

.btn-large {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.2rem;
    border-radius: 10px;
}

.product-description,
.product-features {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
    margin-bottom: 1.5rem;
}

.product-description h3,
.product-features h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-description p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features ul li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    border-bottom: 1px solid #eee;
}

.product-features ul li:last-child {
    border-bottom: none;
}

/* Product Card Clickable */
.product-card {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.product-card .product-info {
    pointer-events: none;
}

.product-card .add-to-cart {
    pointer-events: all;
}

/* Responsive Product Detail */
@media (max-width: 968px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-images.sticky-images {
        position: relative;
        top: auto;
        max-height: none;
    }

    .main-product-image {
        height: 400px;
    }

    .product-detail-title {
        font-size: 2rem;
    }

    .current-price {
        font-size: 2rem;
    }
}

@media (max-width: 968px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .product-images {
        width: 100%;
        order: 1;
    }
    
    .product-details {
        order: 2;
        width: 100%;
    }
    
    .main-product-image {
        height: auto;
        max-height: 400px;
        object-fit: contain;
    }
    
    .thumbnail-gallery {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .thumbnail {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .product-detail-grid {
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .main-product-image {
        height: auto;
        max-height: 300px;
        width: 100%;
    }

    .product-detail-title {
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .current-price {
        font-size: 1.5rem;
    }
    
    .product-detail-price .original-price {
        font-size: 1.2rem;
    }

    .image-nav {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-description,
    .product-features {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .product-description h3,
    .product-features h3 {
        font-size: 1.1rem;
    }
    
    .product-description p {
        font-size: 0.95rem;
    }
    
    .btn-pink,
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .add-to-cart-section {
        margin-bottom: 1.5rem;
    }
}

/* Related Products Section */
.related-products {
    padding: 4rem 0;
    background: var(--white);
}

.related-products-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 600;
    font-style: italic;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.related-product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--bg-light);
}

.related-product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.related-product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    min-height: 3rem;
}

.related-product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.related-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.related-product-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: auto;
}

.related-product-btn:hover {
    background: #ff5a8a;
}

@media (max-width: 768px) {
    .related-products-title {
        font-size: 1.8rem;
    }

    .related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

