/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6C63FF;
    --secondary: #FF6B9D;
    --success: #4ECDC4;
    --warning: #FFCE00;
    --danger: #FF4757;
    --bg: #FAFAFA;
    --card-bg: #FFFFFF;
    --text-primary: #333;
    --text-secondary: #666;
    --border: #E5E5E5;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg);
    padding-bottom: 90px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: var(--card-bg);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo h1 {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    background: linear-gradient(135deg, var(--success), var(--warning));
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.header-icon {
    background: var(--bg);
    border: 2px solid transparent;
    padding: 0.8rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.header-icon:hover {
    background: var(--border);
    transform: translateY(-1px);
}

.cart-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Search Container */
.search-container {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.search-container.active {
    transform: translateY(0);
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg);
    border-radius: 12px;
    padding: 0.5rem;
}

.search-box input {
    flex: 1;
    border: none;
    background: none;
    padding: 0.5rem;
    font-size: 1rem;
    outline: none;
}

.search-box button {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Hero Slider */
.hero-slider {
    margin-top: 80px;
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 0 0 25px 25px;
    box-shadow: var(--shadow);
}

.slides-container {
    display: flex;
    width: 500%;
    height: 100%;
    animation: slide 25s infinite;
}

.slide {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.slide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.slide-1 {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.slide-2 {
    background: linear-gradient(135deg, var(--success), var(--warning));
}

.slide-3 {
    background: linear-gradient(135deg, var(--secondary), var(--danger));
}

.slide-4 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slide-5 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
}

.slide h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.slide p {
    font-size: 0.95rem;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

@keyframes slide {
    0%, 18% { transform: translateX(0); }
    20%, 38% { transform: translateX(-20%); }
    40%, 58% { transform: translateX(-40%); }
    60%, 78% { transform: translateX(-60%); }
    80%, 98% { transform: translateX(-80%); }
    100% { transform: translateX(0); }
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    animation: indicatorAnimation 25s infinite;
}

.indicator:nth-child(1) { animation-delay: 0s; }
.indicator:nth-child(2) { animation-delay: 5s; }
.indicator:nth-child(3) { animation-delay: 10s; }
.indicator:nth-child(4) { animation-delay: 15s; }
.indicator:nth-child(5) { animation-delay: 20s; }

@keyframes indicatorAnimation {
    0%, 4% { background: rgba(255,255,255,1); width: 24px; }
    4.1%, 100% { background: rgba(255,255,255,0.4); width: 12px; }
}

/* Categories */
.categories {
    padding: 2.5rem 0;
    background: var(--card-bg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.see-all {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.see-all:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.category-scroll {
    display: flex;
    gap: 1.2rem;
    overflow-x: scroll;
    padding: 0.5rem 0 0.5rem 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    min-width: 85px;
    height: 85px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-item.active::before,
.category-item:hover::before {
    opacity: 1;
}

.category-content {
    position: relative;
    z-index: 2;
}

.category-item.active,
.category-item:hover {
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0.4rem auto;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.category-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

/* Products */
.products {
    padding: 2.5rem 0;
    background: var(--bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid var(--border);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.product-image {
    height: 130px;
    background: linear-gradient(135deg, #FFB5A7 0%, var(--success) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.8s ease;
}

.product-card:hover .product-image::after {
    transform: rotate(45deg) translateY(-100%);
}

.product-info {
    padding: 1.2rem;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    position: relative;
}

.product-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.price-range {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    opacity: 0.8;
    display: block;
    line-height: 1.2;
}

.add-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(108, 99, 255, 0.2);
    align-self: flex-end;
    margin-top: auto;
}

.add-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.cart-btn-product {
    background: linear-gradient(135deg, var(--success), var(--warning));
    color: white;
    border: none;
    padding: 0.4rem;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(76, 205, 196, 0.2);
    position: static;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
}

.cart-btn-product:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(76, 205, 196, 0.3);
}

.view-detail-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(108, 99, 255, 0.2);
}

.view-detail-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

/* Load More */
.load-more {
    text-align: center;
    margin-top: 2rem;
}

.load-more button {
    background: var(--card-bg);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more button:hover {
    background: var(--primary);
    color: white;
}

/* Services Info */
.services-info {
    padding: 2.5rem 0;
    background: var(--card-bg);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.info-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.info-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.info-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.cart-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    z-index: 2001;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: var(--bg);
    color: var(--text-primary);
}

.cart-items {
    padding: 1rem 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.cart-item-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: var(--bg);
    border: 1px solid var(--border);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.remove-btn {
    background: var(--danger);
    color: white;
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #e74c3c;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.cart-total {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
    color: var(--primary);
}

.order-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.3);
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 110px;
    right: 1.2rem;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1500;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.whatsapp-fab:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    padding: 1rem 0 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 1px solid var(--border);
    backdrop-filter: blur(15px);
}

.nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    min-width: 65px;
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-item.active::before {
    width: 100%;
    height: 100%;
}

.nav-item.active {
    color: white;
    transform: translateY(-3px);
}

.nav-item:not(.active):hover {
    background: var(--bg);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 1.4rem;
    margin-bottom: 0.1rem;
    transition: all 0.3s ease;
}

.nav-item.active .nav-icon {
    transform: scale(1.1);
}

.nav-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

/* Notifications */
.notification {
    position: fixed;
    top: 100px;
    right: 1rem;
    background: var(--text-primary);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 3000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: var(--success);
}

.notification.error {
    background: var(--danger);
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (min-width: 768px) {
    .container {
        max-width: 500px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .hero-slider {
        height: 280px;
    }
    
    .slide h2 {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: -0.5px;
    }
    
    .slide p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .header {
        padding: 0.8rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .hero-slider {
        height: 180px;
    }
    
    .slide {
        padding: 1.5rem;
    }
    
    .slide h2 {
        font-size: 1.4rem;
        font-weight: 800;
        letter-spacing: -0.3px;
    }
    
    .slide p {
        font-size: 0.85rem;
    }
    
    .categories,
    .products,
    .services-info {
        padding: 2rem 0;
    }
    
    .products-grid {
        gap: 1rem;
    }
    
    .product-image {
        height: 110px;
        font-size: 2.2rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .price-range {
        font-size: 0.45rem;
        margin-top: 0.1rem;
    }
    
    .nav-item {
        padding: 0.6rem 0.8rem;
        min-width: 55px;
    }
    
    .nav-icon {
        font-size: 1.2rem;
    }
    
    .nav-label {
        font-size: 0.7rem;
    }
    
    .whatsapp-fab {
        bottom: 100px;
        right: 1rem;
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }
    
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }
}

@media (max-width: 360px) {
    .hero-slider {
        height: 160px;
    }
    
    .slide h2 {
        font-size: 1.3rem;
        font-weight: 800;
        letter-spacing: -0.2px;
    }
    
    .slide p {
        font-size: 0.8rem;
    }
    
    .products-grid {
        gap: 0.8rem;
    }
    
    .product-image {
        height: 100px;
        font-size: 2rem;
    }
    
    .price-range {
        font-size: 0.4rem;
        margin-top: 0.05rem;
    }
    
    .product-info {
        padding: 0.8rem;
    }
    
    .add-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary), #8B4513);
    color: white;
    margin-top: 3rem;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFE4B5;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h4 {
    color: #FFE4B5;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #FFE4B5;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        margin-top: 2rem;
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* En Çok Tercih Edilenler Styles */
.popular-products-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.popular-products-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f1f1;
}

.popular-products-scroll::-webkit-scrollbar {
    height: 8px;
}

.popular-products-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.popular-products-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.popular-products-scroll::-webkit-scrollbar-thumb:hover {
    background: #8B4513;
}

.popular-product-card {
    min-width: 280px;
    max-width: 280px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
}

.popular-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.popular-product-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.popular-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-product-card:hover .popular-product-image img {
    transform: scale(1.05);
}

.popular-product-info {
    padding: 1.2rem;
}

.popular-product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-product-category {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.8rem;
    padding: 0.3rem 0.8rem;
    background: #f8f9fa;
    border-radius: 20px;
    display: inline-block;
}

.popular-product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.popular-product-sales {
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #fff5f5, #ffe8e8);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    border-left: 3px solid #e74c3c;
}

/* Responsive Design for Popular Products */
@media (max-width: 768px) {
    .popular-product-card {
        min-width: 240px;
        max-width: 240px;
    }
    
    .popular-product-image {
        height: 150px;
    }
    
    .popular-product-info {
        padding: 1rem;
    }
    
    .popular-product-name {
        font-size: 1rem;
    }
    
    .popular-product-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .popular-products-scroll {
        gap: 1rem;
        padding: 1rem 0.25rem;
    }
    
    .popular-product-card {
        min-width: 200px;
        max-width: 200px;
    }
    
    .popular-product-image {
        height: 130px;
    }
    
    .popular-product-info {
        padding: 0.8rem;
    }
    
    .popular-product-name {
        font-size: 0.9rem;
    }
    
    .popular-product-price {
        font-size: 1.1rem;
    }
    
    .popular-product-sales {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Varyasyon Kartları Stilleri - Kart Seçimi Sistemi */
.variation-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.4rem;
    margin-top: 1rem;
}

/* Masaüstü için daha fazla kart yan yana */
@media (min-width: 768px) {
    .variation-options-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.6rem;
    }
}

.variation-card {
    position: relative;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    padding: 0.7rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-height: 120px;
}

.variation-card:hover {
    border-color: #007bff;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    transform: translateY(-3px);
}

.variation-card[data-selected="true"],
.variation-card.selected {
    border-color: #007bff;
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.2);
    transform: translateY(-3px);
}

.variation-card[data-selected="true"] .variation-check,
.variation-card.selected .variation-check {
    opacity: 1;
    transform: scale(1);
}

.variation-radio {
    display: none !important;
}

.variation-content {
    position: relative;
    z-index: 1;
}

.variation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.variation-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    line-height: 1.2;
}

.variation-unit {
    margin-left: 0.5rem;
}

.unit-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 500;
    white-space: nowrap;
}

.variation-details {
    margin-top: 0.5rem;
}

.variation-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #007bff;
}

.price-unit {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
}

.variation-weight {
    color: #6c757d;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.variation-check {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 18px;
    height: 18px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 2;
}

.variation-label {
    display: block;
    padding: 1.5rem;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
    height: 100%;
}

.variation-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.variation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.variation-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.variation-unit {
    flex-shrink: 0;
}

.unit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.variation-details {
    display: flex;
}

/* Responsive Tasarım - Varyasyon Kartları */
@media (max-width: 768px) {
    .variation-options-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 0.3rem;
    }
    
    .variation-card {
        padding: 0.4rem;
        min-height: 80px;
    }
    
    .variation-header {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
        margin-bottom: 0.3rem;
    }
    
    .variation-unit {
        margin-left: 0;
    }
    
    .variation-name {
        font-size: 0.8rem;
        line-height: 1.1;
    }
    
    .price-amount {
        font-size: 1rem;
    }
    
    .unit-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
    
    .variation-details {
        margin-top: 0.3rem;
    }
}

@media (max-width: 480px) {
    .variation-options-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.2rem;
    }
    
    .variation-card {
        padding: 0.3rem;
        min-height: 70px;
    }
    
    .variation-name {
        font-size: 0.65rem;
        line-height: 1;
    }
    
    .price-amount {
        font-size: 0.8rem;
    }
    
    .variation-weight {
        font-size: 0.7rem;
    }
    
    .variation-check {
        top: 0.4rem;
        right: 0.4rem;
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }
}

/* Çok küçük ekranlar için ekstra agresif ayarlar */
@media (max-width: 360px) {
    .variation-options-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 0.15rem;
    }
    
    .variation-card {
        padding: 0.25rem;
        min-height: 60px;
        border-radius: 8px;
    }
    
    .variation-name {
        font-size: 0.6rem;
        line-height: 0.9;
        margin-bottom: 0.1rem;
    }
    
    .price-amount {
        font-size: 0.75rem;
    }
    
    .unit-badge {
        font-size: 0.5rem;
        padding: 0.1rem 0.3rem;
    }
    
    .variation-weight {
        font-size: 0.6rem;
    }
    
    .variation-check {
        top: 0.2rem;
        right: 0.2rem;
        width: 14px;
        height: 14px;
        font-size: 0.5rem;
    }
}
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.variation-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.price-unit {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.variation-weight {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #6c757d;
    font-size: 0.9rem;
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.variation-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .variation-options-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 0.3rem;
    }
    
    .variation-label {
        padding: 1.2rem;
    }
    
    .variation-header {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }
    
    .variation-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .variation-name {
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: 1.2rem;
    }
    
    .unit-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Cart Modal Styles */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.cart-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cart-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.cart-modal.active .cart-modal-content {
    transform: translateY(0);
}

.cart-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.cart-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.cart-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.cart-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cart-modal-body {
    padding: 1.5rem;
}

.added-product {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.added-product-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.added-product-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.added-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.added-product-details h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.added-product-details p {
    margin: 0;
    font-size: 0.875rem;
    color: #718096;
}

.added-product-quantity {
    font-weight: 500;
    color: #667eea !important;
}

.cart-summary {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.cart-summary-header h4 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.cart-items-preview {
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.cart-preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.cart-preview-item:last-child {
    border-bottom: none;
}

.cart-preview-item-name {
    font-size: 0.875rem;
    color: #4a5568;
    flex: 1;
}

.cart-preview-item-quantity {
    font-size: 0.875rem;
    color: #718096;
    margin: 0 0.5rem;
}

.cart-preview-item-price {
    font-size: 0.875rem;
    font-weight: 500;
    color: #2d3748;
}

.cart-total {
    padding: 1rem 0 0 0;
    border-top: 2px solid #e2e8f0;
    text-align: right;
    font-size: 1.125rem;
    color: #2d3748;
}

.cart-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    background: #f8fafc;
    border-radius: 0 0 20px 20px;
}

.btn-continue-shopping,
.btn-go-to-cart {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-continue-shopping {
    background: #e2e8f0;
    color: #4a5568;
}

.btn-continue-shopping:hover {
    background: #cbd5e0;
    transform: translateY(-1px);
}

.btn-go-to-cart {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-go-to-cart:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Modal recommendations */
.modal-recommendations {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.modal-recommendations-header h4 {
    margin: 0 0 15px 0;
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
}

.modal-recommendations-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 0;
    scrollbar-width: thin;
    scrollbar-color: #667eea #f1f1f1;
}

.modal-recommendations-grid::-webkit-scrollbar {
    height: 6px;
}

.modal-recommendations-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-recommendations-grid::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.modal-recommendations-grid::-webkit-scrollbar-thumb:hover {
    background: #5a67d8;
}

.modal-recommendation-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
    min-width: 120px;
    flex-shrink: 0;
}

.modal-recommendation-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.modal-recommendation-image {
    width: 60px;
    height: 60px;
    margin: 0 auto 8px;
    border-radius: 6px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-recommendation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-recommendation-info h6 {
    margin: 0 0 6px 0;
    font-size: 12px;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modal-recommendation-price {
    font-size: 13px;
    font-weight: 600;
    color: #e53e3e;
    margin-bottom: 8px;
}

.btn-add-recommendation {
    background: #38a169;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

.btn-add-recommendation:hover {
    background: #2f855a;
}

/* Toast notification animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .cart-modal-header,
    .cart-modal-body,
    .cart-modal-footer {
        padding: 1rem;
    }
    
    .cart-modal-footer {
        flex-direction: column;
    }
    
    .btn-continue-shopping,
    .btn-go-to-cart {
        padding: 1rem;
    }
    
    .modal-recommendations-grid {
        gap: 10px;
    }
    
    .modal-recommendation-item {
        padding: 10px;
        min-width: 100px;
    }
    
    .modal-recommendation-image {
        width: 50px;
        height: 50px;
    }
}