/* Shop Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    padding-top: 70px;
}

/* Navigation */
.shop-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: 800;
    color: #0026CA;
    text-decoration: none;
}

.nav-brand i {
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #0026CA;
}

.cart-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ef5350;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.btn-nav-login {
    padding: 10px 25px;
    background: linear-gradient(135deg, #0026CA 0%, #0052FF 100%);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-nav-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 38, 202, 0.3);
    color: white;
    text-decoration: none;
}

/* Hero Section */
.shop-hero {
    background: linear-gradient(135deg, #0026CA 0%, #0052FF 100%);
    padding: 80px 0 60px;
    color: white;
    margin-bottom: 50px;
}

.hero-content-shop {
    text-align: center;
}

.hero-badge-shop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.hero-title-shop {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-blue {
    color: #FFFFFF;
}

.title-gold {
    color: #FFB800;
}

.title-highlight {
    color: #FFB800;
    position: relative;
}

.hero-subtitle-shop {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.hero-features-shop {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-features-shop span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

/* Category Section */
.category-section {
    margin-bottom: 40px;
}

.category-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.category-scroll::-webkit-scrollbar {
    height: 6px;
}

.category-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.category-scroll::-webkit-scrollbar-thumb {
    background: #0026CA;
    border-radius: 10px;
}

.category-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s;
}

.category-pill:hover,
.category-pill.active {
    border-color: #0026CA;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #0026CA;
    text-decoration: none;
}

.category-pill i {
    font-size: 16px;
}

/* Products Section */
.products-section {
    padding: 40px 0 80px;
}

.section-header-shop {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-shop h2 {
    font-size: 36px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
}

.section-header-shop p {
    font-size: 16px;
    color: #666;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card-shop {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.product-card-shop:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image-shop {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image-shop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card-shop:hover .product-image-shop img {
    transform: scale(1.1);
}

.product-image-placeholder {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0026CA;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 38, 202, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card-shop:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    padding: 12px 25px;
    background: white;
    color: #0026CA;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-quick-view:hover {
    transform: scale(1.05);
}

.product-info-shop {
    padding: 20px;
}

.product-category-badge {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, #0026CA 0%, #0052FF 100%);
    color: white;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-title-shop {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 50px;
}

.product-desc-shop {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-features-shop {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-features-shop span {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-features-shop i {
    color: #0026CA;
}

.product-footer-shop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.product-price-shop {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 11px;
    color: #999;
    margin-bottom: 3px;
}

.price-amount {
    font-size: 20px;
    font-weight: 800;
    color: #0026CA;
}

.btn-add-cart {
    padding: 10px 20px;
    background: linear-gradient(135deg, #0026CA 0%, #0052FF 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 38, 202, 0.3);
}

/* Empty State */
.empty-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.empty-products i {
    margin-bottom: 20px;
}

.empty-products h3 {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
}

/* Footer */
.shop-footer {
    background: #222;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col ul {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-col i {
    margin-right: 8px;
    color: #0052FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: -400px;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    transition: right 0.3s;
    max-width: 350px;
    border-left: 4px solid #4caf50;
}

.notification.show {
    right: 30px;
}

.notification-icon {
    font-size: 32px;
    color: #4caf50;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-shop {
        font-size: 32px;
    }
    
    .hero-subtitle-shop {
        font-size: 16px;
    }
    
    .hero-badge-shop {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}