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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background: linear-gradient(135deg, #000000 0%, /*#764ba2*/#000000 100%);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-links {
    display: flex;
    gap: 15px;
}

.top-links a {
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.navbar {
    padding: 15px 0;
    background: black;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Consistent navbar sizing across all pages */
.navbar .nav-content {
    min-height: 72px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #27FFFF 0%, #27FFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Uniform nav link spacing and line-height across pages */
.navbar .nav-menu .nav-link {
    display: inline-block;
    line-height: 1;
    padding: 8px 0;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 14px;
}

.nav-link:hover,
.nav-link.active {
    color: #27FFFF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #27FFFF 0%, #27FFFF 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #27FFFF;
}

/* Dropdown icon spacing */
.dropdown .nav-link i.fa-chevron-down {
    margin-left: 5px;
}

/* Vehicles submenu styling */
.vehicles-submenu {
    position: relative;
}

/* Sports submenu styling */
.sports-submenu {
    position: relative;
}

.submenu-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 2px 8px;
}

.submenu-parent:hover {
    background: #f8f9fa;
    color: #27FFFF;
}

.submenu-content {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 150px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 10px 0;
    margin-left: 5px;
    z-index: 1001;
}

.vehicles-submenu:hover .submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sports-submenu:hover .submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu-content a {
    display: block;
    padding: 10px 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.submenu-content a:hover {
    background: #f8f9fa;
    color: #27FFFF;
    padding-left: 25px;
}

.subcategory-options {
    margin-left: 20px;
    padding-left: 15px;
    border-left: 2px solid #e9ecef;
}

.subcategory-options .filter-option {
    font-size: 13px;
    color: #777;
}

.subcategory-options .filter-option:hover {
    color: #27FFFF;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    background: white;
    box-shadow: 0 0 0 2px #27FFFF;
}

.search-box input {
    border: none;
    background: none;
    outline: none;
    padding: 5px;
    width: 200px;
    font-size: 14px;
}

.search-box button {
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
    padding: 5px;
}

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

.wishlist-btn,
.cart-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wishlist-btn:hover,
.cart-btn:hover {
    background: #27FFFF;
    color: #000000;
    transform: scale(1.1);
}

.wishlist-count,
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Sidebar Styles */
.cart-sidebar,
.wishlist-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active,
.wishlist-sidebar.active {
    right: 0;
}

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

.close-cart,
.close-wishlist {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.cart-items,
.wishlist-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, grey 0%, #000000 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
}

/* Main Content */
main {
    margin-top: 120px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    background: #f8f9fa;
    
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    text-align: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(20, 20, 21, 0.4);
}

.btn-secondary {
    background: white;
    color: #000000;
    border: 2px solid #000000;
}

.btn-secondary:hover {
    background: #000000;
    color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px #27FFFF;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-image {
    position: relative;
}

.hero-category-buttons {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    z-index: 10;
    width: auto;
    max-width: 90vw;
}

.category-btn {
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: 2px solid #27FFFF;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 140px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.category-btn:hover {
    background: #27FFFF;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 255, 255, 0.4);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: #27FFFF;
    transition: all 0.3s ease;
}

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

.feature-card i {
    font-size: 40px;
    color: #000000;
    margin-bottom: 20px;
}

.feature-card .feature-icon-frame {
    position: relative;
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card .feature-icon-frame .icon-base {
    font-size: 44px;
    color: #000000;
}

.feature-card .feature-icon-frame .icon-overlay {
    position: absolute;
    right: -4px;
    bottom: -4px;
    font-size: 20px;
    background: #27FFFF;
    border-radius: 50%;
    padding: 4px;
    color: #000000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.feature-card .feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #27FFFF;
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.stars {
    color: #ffc107;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

/* Stock Status Styling */
.stock-status {
    color: #2effff;
    font-size: 14px;
    font-weight: 600;
    background: #080808;
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid #000000;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: #010101;
}

.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, rgb(58, 58, 58) 0%, #000000 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.view-all-container {
    text-align: center;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.category-card:hover .category-overlay {
    transform: translateY(0);
}

.category-overlay h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.product-count {
    font-size: 14px;
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.rating i {
    color: #ffc107;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.testimonial-author h4 {
    color: #333;
    font-weight: 600;
}





/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #27FFFF;
}

.footer-section p {
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #27FFFF;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #0f1114;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #27FFFF;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-image img {
        height: 50vh;
    }
    
    .hero-category-buttons {
        gap: 10px;
        max-width: 92vw;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 13px;
        min-width: 130px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100%);
        background: rgb(18, 18, 18);
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .search-box {
        display: none;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-category-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        padding: 0 5px;
        max-width: 95vw;
        overflow-x: auto;
        justify-content: center;
        align-items: center;
    }
    
    .hero-image img {
        height: 40vh;
    }
    
    .category-btn {
        padding: 4px 6px;
        font-size: 8px;
        min-width: 60px;
        height: 26px;
        flex: 0 0 auto;
        white-space: nowrap;
    }
    

    
    .cart-sidebar,
    .wishlist-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-image-slider {
        max-width: 100%;
        margin: 0 15px;
    }
    
    .testimonials-slider-track {
        gap: 8px;
        padding: 0 8px;
    }
    
    .testimonials-slider-item {
        min-width: calc(50% - 4px);
        max-height: 200px;
    }
    
    .testimonials-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .testimonials-slider-btn.prev-btn {
        left: 10px;
    }
    
    .testimonials-slider-btn.next-btn {
        right: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-section .social-links a {
        margin: 0 5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-image img {
        height: 35vh;
    }
    
    .hero-category-buttons {
        flex-wrap: nowrap;
        gap: 3px;
        padding: 0 3px;
        max-width: 98vw;
        justify-content: center;
        overflow-x: auto;
    }
    
    .category-btn {
        padding: 3px 5px;
        font-size: 7px;
        min-width: 50px;
        height: 24px;
        flex: 0 0 auto;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

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

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease forwards;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #27FFFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, grey 0%, #000000 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #27FFFF;
}

/* Shop Page Styles */
.breadcrumb {
    background: #f8f9fa;
    padding: 20px 0;
    margin-top: 100px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: #141414;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #27FFFF;
}

.breadcrumb-nav span {
    color: #6c757d;
}

.shop-section {
    padding: 40px 0;
}

.shop-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Filters Sidebar */
.filters-sidebar {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    transition: color 0.3s ease;
}

.filter-option:hover {
    color: #27FFFF;
}

.filter-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #27FFFF;
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-range input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e9ecef;
    outline: none;
    -webkit-appearance: none;
}

.price-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #27FFFF;
    cursor: pointer;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-inputs input {
    width: 80px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.price-inputs span {
    color: #6c757d;
    font-weight: 500;
}

.clear-filters-btn {
    width: 100%;
    padding: 12px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #6c757d;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: #e9ecef;
    color: #333;
}

/* Products Section */
.products-section {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.products-info h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.products-info p {
    color: #6c757d;
    font-size: 14px;
}

.products-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-controls label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.sort-controls select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

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

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.view-btn:hover,
.view-btn.active {
    background: #27FFFF;
    color: white;
    border-color: #27FFFF;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

.products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 20px;
    align-items: center;
}

.products-grid.list-view .product-image {
    height: 150px;
}

.products-grid.list-view .product-info {
    text-align: left;
}

.products-grid.list-view .product-actions {
    flex-direction: column;
    gap: 10px;
}

/* Pagination */
.products-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #555;
}

.pagination-btn:hover:not(:disabled) {
    background: #27FFFF;
    color: white;
    border-color: #27FFFF;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
}

.pagination-numbers button {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #555;
}

.pagination-numbers button:hover,
.pagination-numbers button.active {
    background: #27FFFF;
    color: white;
    border-color: #27FFFF;
}

/* Shop page overrides to match home (black + cyan) */
.page-shop .breadcrumb {
    background: #000000;
}
.page-shop .breadcrumb-nav a {
    color: #000000;
}
.page-shop .breadcrumb-nav a:hover {
    color: #27FFFF;
}
.page-shop .filters-sidebar {
    background: #0f1114;
    border: 2px solid #27FFFF;
}

/* Size dropdown container - positions dropdown on the right side of "in stock" */
.size-dropdown-container {
    margin-left: auto;
}

.size-dropdown {
    padding: 4px 8px;
    border: 1px solid #666;
    border-radius: 4px;
    background: white;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-dropdown:hover {
    border-color: #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.size-dropdown:focus {
    outline: none;
    border-color: #27FFFF;
    box-shadow: 0 0 0 2px rgba(39, 255, 255, 0.2);
}

/* Update product rating to flex layout to position "in stock" and dropdown */
.product-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.page-shop .filter-group h3 {
    color: #ffffff;
}

.page-shop .filter-option { 
    color: #cfd3d7; 
}

.page-shop .filter-option:hover { 
    color: #27FFFF; 
}

.page-shop .filter-option input[type="checkbox"] { 
    accent-color: #27FFFF; 
}

.page-shop .price-range input[type="range"] { 
    background: #1f232b; 
}

.page-shop .price-range input[type="range"]::-webkit-slider-thumb { 
    background: #27FFFF; 
}

.page-shop .price-inputs input { 
    background: #0f1114; 
    color: #ffffff; 
    border-color: #27FFFF; 
}

.page-shop .price-inputs span { 
    color: #9aa0a6; 
}

.page-shop .clear-filters-btn { 
    background: #0f1114; 
    color: #ffffff; 
    border-color: #27FFFF; 
}

.page-shop .clear-filters-btn:hover { 
    background: #11151b; 
}

.page-shop .products-header { 
    border-bottom-color: #1f232b; 
}

.page-shop .products-info h2 { 
    color: #ffffff; 
}

.page-shop .products-info p { 
    color: #9aa0a6; 
}

.page-shop .sort-controls label { 
    color: #cfd3d7; 
}

.page-shop .sort-controls select { 
    background: #0f1114; 
    color: #ffffff; 
    border-color: #27FFFF; 
}

.page-shop .view-btn { 
    background: #0f1114; 
    color: #9aa0a6; 
    border-color: #27FFFF; 
}

.page-shop .view-btn:hover,
.page-shop .view-btn.active { 
    background: #27FFFF; 
    color: #000000; 
    border-color: #27FFFF; 
}

.page-shop .pagination-btn { 
    background: #0f1114; 
    color: #cfd3d7; 
    border-color: #27FFFF; 
}

.page-shop .pagination-btn:hover:not(:disabled) { 
    background: #27FFFF; 
    color: #000000; 
    border-color: #27FFFF; 
}

.page-shop .pagination-numbers button { 
    background: #0f1114; 
    color: #cfd3d7; 
    border-color: #27FFFF; 
}

.page-shop .pagination-numbers button:hover,
.page-shop .pagination-numbers button.active { 
    background: #27FFFF; 
    color: #000000; 
    border-color: #27FFFF; 
}

/* Responsive Design for Shop Page */
@media (max-width: 1024px) {
    .shop-content {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .shop-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filters-sidebar {
        position: static;
        order: 1;
    }
    
    .products-section {
        order: 2;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .products-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .products-grid.list-view .product-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .products-grid.list-view .product-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .sort-controls {
        width: 100%;
    }
    
    .sort-controls select {
        flex: 1;
    }
}

/* About Page Styles */
.about-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #27FFFF 0%, #764ba2 100%);
    color: white;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero-text p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.about-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27FFFF 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

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

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

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.member-role {
    color: #27FFFF;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #27FFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #27FFFF;
    color: white;
    transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #27FFFF 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #27FFFF 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero-text h1 {
        font-size: 36px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text h2 {
        font-size: 28px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-text h1 {
        font-size: 28px;
    }
    
    .about-hero-text p {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #27FFFF 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27FFFF;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group.focused label {
    color: #27FFFF;
}

.submit-btn {
    background: linear-gradient(135deg, #27FFFF 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27FFFF 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-details p {
    color: #666;
    line-height: 1.5;
}

.social-media h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.social-link i {
    font-size: 18px;
    width: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-content h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    font-size: 14px;
    color: #27FFFF;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-content h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero-content h1 {
        font-size: 36px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .faq-content h2,
    .map-content h2 {
        font-size: 28px;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .social-link {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 28px;
    }
    
    .contact-hero-content p {
        font-size: 16px;
    }
    
    .contact-form-container h2,
    .contact-info h2 {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 14px;
    }
    
    .faq-answer p {
        padding: 15px 20px;
    }
}

/* Delivery Page Styles */
.delivery-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: white;
    text-align: center;
}

.delivery-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.delivery-hero-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.shipping-options {
    padding: 80px 0;
    background: white;
}

.shipping-options h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

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

.shipping-card {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.shipping-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #27FFFF;
}

.shipping-card.featured {
    border-color: #27FFFF;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.shipping-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.shipping-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.shipping-details {
    margin-bottom: 25px;
}

.delivery-time {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.delivery-cost {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.delivery-note {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.shipping-features {
    list-style: none;
    text-align: center;
}

.shipping-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.shipping-features i {
    color: #000000;
    font-size: 14px;
}

/* Delivery Process */
.delivery-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.delivery-process h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    transform: translateY(-50%);
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Delivery Areas */
.delivery-areas {
    padding: 80px 0;
    background: white;
}

.delivery-areas h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.areas-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.area-category h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.area-category ul {
    list-style: none;
}

.area-category li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.area-category li:last-child {
    border-bottom: none;
}

.delivery-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #27FFFF;
}

.delivery-note i {
    color: #27FFFF;
    font-size: 18px;
}

.delivery-note p {
    color: #666;
    margin: 0;
}

.areas-map img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Tracking Information */
.tracking-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.tracking-info h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.tracking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.tracking-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tracking-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.tracking-input {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.tracking-input input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.tracking-input input:focus {
    outline: none;
    border-color: #27FFFF;
}

.track-btn {
    background: linear-gradient(135deg, #27FFFF 0%, #27FFFF 100%);
    color: rgb(0, 0, 0);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.track-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 255, 255, 0.4);
}

.track-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.tracking-example {
    font-size: 14px;
    color: #666;
}

.tracking-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tracking-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tracking-feature:hover {
    transform: translateY(-3px);
}

.tracking-feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.tracking-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.tracking-feature p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Delivery FAQ */
.delivery-faq {
    padding: 80px 0;
    background: white;
}

.delivery-faq h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

/* Responsive Design for Delivery Page */
@media (max-width: 768px) {
    .delivery-hero-content h1 {
        font-size: 36px;
    }
    
    .shipping-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shipping-card.featured {
        transform: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-step::before {
        display: none;
    }
    
    .areas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tracking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tracking-input {
        flex-direction: column;
    }
    
    .tracking-features {
        gap: 20px;
    }
    
    .shipping-options h2,
    .delivery-process h2,
    .delivery-areas h2,
    .tracking-info h2,
    .delivery-faq h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .delivery-hero-content h1 {
        font-size: 28px;
    }
    
    .delivery-hero-content p {
        font-size: 16px;
    }
    
    .shipping-card {
        padding: 20px;
    }
    
    .shipping-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .process-step {
        padding: 20px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .tracking-form {
        padding: 25px 20px;
    }
    
    .tracking-feature {
        padding: 20px;
    }
}

/* Horizontal Image Gallery */
.horizontal-gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-container {
    overflow: hidden;
    position: relative;
    margin: 40px 0;
}

.gallery-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    flex: 0 0 300px;
    margin-right: 20px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.gallery-overlay p {
    font-size: 12px;
    color: #e0e0e0;
    margin: 0;
}

/* Responsive Design for Horizontal Gallery */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 250px;
        margin-right: 15px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 15px 12px 12px;
    }
    
    .gallery-overlay h4 {
        font-size: 14px;
    }
    
    .gallery-overlay p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 200px;
        margin-right: 10px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .gallery-overlay {
        padding: 12px 10px 10px;
    }
    
    .gallery-overlay h4 {
        font-size: 13px;
    }
    
    .gallery-overlay p {
        font-size: 10px;
    }
}

/* Product Specifications and Size Selection Styles */
.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.spec-item {
    background: #f8f9fa;
    color: #666;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.size-selection {
    margin-bottom: 15px;
}

.size-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

/* Size Options - Horizontal Buttons */
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-btn {
    padding: 8px 12px;
    border: 2px solid #666;
    border-radius: 6px;
    background: #e9ecef;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.size-btn:hover {
    border-color: linear-gradient(135deg, grey 0%, #000000 100%);
    background: #fff;
    color:linear-gradient(135deg, grey 0%, #000000 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.size-btn.active {
    background: linear-gradient(135deg, grey 0%, #000000 100%);
    border-color: linear-gradient(135deg, grey 0%, #000000 100%);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Legacy dropdown styles (keeping for backward compatibility) */
.size-selector {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-selector:focus {
    outline: none;
    border-color: #27FFFF;
    box-shadow: 0 0 0 2px rgba(39, 255, 255, 0.1);
}

.size-selector:hover {
    border-color: #27FFFF;
}

/* Modal Size Selection */
.modal-size-selection {
    margin-bottom: 20px;
}

/* Modal Size Options - Horizontal Buttons */
.modal-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-size-btn {
    padding: 10px 15px;
    border: 2px solid #666;
    border-radius: 8px;
    background: #e9ecef;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
}

.modal-size-btn:hover {
    border-color: #000;
    background: #fff;
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal-size-btn.active {
    background: #000;
    border-color: #000;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Legacy modal dropdown styles (keeping for backward compatibility) */
.modal-size-selector {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-size-selector:focus {
    outline: none;
    border-color: #27FFFF;
    box-shadow: 0 0 0 2px rgba(39, 255, 255, 0.1);
}

/* Product Specifications in Modal */
.product-specifications {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.product-specifications h4 {
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
}

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

.product-specifications li {
    padding: 5px 0;
    border-bottom: 1px solid #e9ecef;
    color: #666;
    font-size: 14px;
}

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

.product-specifications strong {
    color: #333;
    margin-right: 10px;
}

/* Cart Item Size Display */
.cart-item-size {
    font-size: 12px;
    color: #666;
    margin: 5px 0;
    font-style: italic;
}

.cart-item-size strong {
    color: #666;
    font-weight: 600;
}

/* Cart Item Specifications Display */
.cart-item-specs {
    font-size: 11px;
    color: #999;
    margin: 3px 0;
    font-style: italic;
}

/* Modal Price Display */
.modal-current-price {
    font-size: 24px;
    font-weight: 700;
    color: #010101;
}

.modal-original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

/* Responsive adjustments for size selection */
@media (max-width: 768px) {
    .product-specs {
        gap: 6px;
    }
    
    .spec-item {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .size-btn {
        padding: 6px 10px;
        font-size: 13px;
        min-width: 35px;
    }
    
    .modal-size-btn {
        padding: 8px 12px;
        font-size: 14px;
        min-width: 40px;
    }
    
    .size-options {
        gap: 6px;
    }
    
    .modal-size-options {
        gap: 8px;
    }
    
    /* Legacy dropdown responsive styles */
    .size-selector {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .modal-size-selector {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .product-specifications {
        padding: 12px;
    }
    
    .product-specifications h4 {
        font-size: 14px;
    }
    
    .product-specifications li {
        font-size: 13px;
    }
    
    /* Stock status responsive styling */
    .stock-status {
        font-size: 12px;
        padding: 2px 6px;
    }
}

/* Image Zoom Modal */
.image-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-zoom-modal.active {
    opacity: 1;
    visibility: visible;
}

.zoom-modal-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
}

.zoom-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.image-zoom-modal.active .zoom-modal-content {
    transform: scale(1);
}

.close-zoom-btn {
    position: absolute;
    top: -40px;
    right: -40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10001;
}

.close-zoom-btn:hover {
    background: white;
    transform: scale(1.1);
}

.zoomed-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.zoom-image-title {
    margin-top: 20px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Responsive design for zoom modal */
@media (max-width: 768px) {
    .zoom-modal-overlay {
        padding: 10px;
    }
    
    .close-zoom-btn {
        top: -30px;
        right: -30px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .zoomed-image {
        max-height: 70vh;
    }
    
    .zoom-image-title {
        font-size: 16px;
        margin-top: 15px;
    }
}
