/* ============================================
   MODERN E-COMMERCE STYLES - FULLY RESPONSIVE
   Color Scheme: Blue #2F80C3, Red #E53935, Yellow #FFC107
   ============================================ */

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --primary-blue: #2F80C3;
    --primary-red: #E53935;
    --primary-yellow: #FFC107;
    --primary-blue-dark: #1e5a8a;
    --primary-red-dark: #c62828;
    --primary-yellow-dark: #ffb300;
    --dark: #1a1a2e;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--light-gray);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   TOP BAR (Dark Background)
   ============================================ */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar i {
    margin-right: 5px;
    color: var(--primary-yellow);
}

.top-bar a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--primary-yellow);
}

.top-bar-left span {
    display: inline-block;
}

/* ============================================
   MAIN HEADER - WHITE BACKGROUND
   ============================================ */
.main-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.sticky {
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

/* Logo */
.logo-wrapper {
    display: flex;
	height: 20px;
    flex-direction: column;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text .text-primary {
    background: none;
    -webkit-text-fill-color: var(--primary-red);
    color: var(--primary-red);
}

.logo-tagline {
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 1px;
}

/* Search Bar */
.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
    background: var(--white);
}

.search-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(47,128,195,0.1);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-red);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--primary-red-dark);
    transform: translateY(-50%) scale(1.05);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.action-icon {
    position: relative;
    font-size: 22px;
    color: #333;
    text-decoration: none;
    transition: var(--transition);
}

.action-icon:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}

.action-icon .badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--primary-red);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

/* Search Bar Mobile */
.search-bar-mobile {
    display: none;
}

/* ============================================
   NAVIGATION MENU
   ============================================ */
.main-nav {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 90px;
    z-index: 999;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link i {
    margin-right: 8px;
    color: var(--primary-blue);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link:hover i {
    color: var(--primary-red);
}

.nav-link.active {
    color: var(--primary-red);
}

.nav-link.active i {
    color: var(--primary-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-red);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 20px;
    color: #333;
    transition: var(--transition);
}

.dropdown-item i {
    margin-right: 8px;
    font-size: 12px;
    color: var(--primary-blue);
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--primary-red);
    padding-left: 25px;
}

.dropdown-item:hover i {
    color: var(--primary-red);
}

.dropdown-divider {
    margin: 8px 0;
    border-color: var(--border);
}

/* ============================================
   MOBILE BOTTOM NAVIGATION
   ============================================ */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--gray);
    font-size: 12px;
    position: relative;
    transition: var(--transition);
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.mobile-nav-item.active {
    color: var(--primary-red);
}

.mobile-nav-item .badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--primary-red);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(47,128,195,0.9) 0%, rgba(229,57,53,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.hero-buttons .btn-primary {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #333;
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255,193,7,0.3);
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-red);
}

/* Slick Slider Customization */
.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: white;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--primary-yellow);
    opacity: 1;
}

.slick-prev, .slick-next {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    z-index: 2;
}

.slick-prev:hover, .slick-next:hover {
    background: var(--primary-yellow);
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon i {
    color: var(--primary-blue);
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
    color: var(--primary-red);
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.category-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    height: 100%;
}

.category-card-inner {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.category-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon i {
    color: var(--primary-blue);
    transition: var(--transition);
}

.category-card-inner:hover .category-icon i {
    transform: scale(1.1);
    color: var(--primary-red);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.category-card-inner:hover .category-overlay {
    opacity: 0.05;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card-modern {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-badge-modern {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.product-badge-modern .badge {
    padding: 6px 12px;
    font-weight: 600;
    border-radius: 30px;
    font-size: 11px;
}

.product-image-modern {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background: var(--light-gray);
    text-align: center;
}

.product-image-modern img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.5s;
}

.product-card-modern:hover .product-image-modern img {
    transform: scale(1.05);
}

.product-actions-modern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.product-card-modern:hover .product-actions-modern {
    opacity: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-blue);
}

.action-btn:hover {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

.product-info-modern {
    padding: 20px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 48px;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: var(--transition);
}

.product-title a:hover {
    color: var(--primary-blue);
}

.product-price-modern {
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
}

.old-price {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-right: 8px;
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: white;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card-modern {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.blog-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image-modern {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card-modern:hover .blog-image-modern img {
    transform: scale(1.05);
}

.blog-date-modern {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 8px 12px;
    text-align: center;
    min-width: 55px;
    box-shadow: var(--shadow-sm);
}

.blog-date-modern .day {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    color: var(--primary-blue);
}

.blog-date-modern .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray);
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--primary-blue);
}

.read-more-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.read-more-link:hover {
    color: var(--primary-red);
}

.read-more-link i {
    transition: transform 0.3s;
}

.read-more-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
}

.newsletter-form .input-group {
    background: white;
    border-radius: 50px;
    overflow: hidden;
    padding: 5px;
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .btn-dark {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #000;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-widget h3,
.footer-widget h4 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.footer-logo h3 span {
    color: var(--primary-red);
}

.footer-logo .tagline {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info li i {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-yellow);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.payment-methods {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.back-to-top:hover {
    background: var(--primary-red-dark);
    transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229,57,53,0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(229,57,53,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(229,57,53,0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue-dark);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Large Tablets (992px and below) */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-bottom-nav {
        display: flex;
    }
    
    .main-content {
        margin-bottom: 70px;
    }
    
    .main-header {
        position: static;
    }
    
    .search-bar {
        display: none;
    }
    
    .search-bar-mobile {
        display: block;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .hero-slide {
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright {
        text-align: center;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .top-bar {
        font-size: 11px;
        padding: 8px 0;
    }
    
    .top-bar-left span,
    .top-bar-right a {
        font-size: 11px;
    }
    
    .top-bar-left span {
        display: inline-block;
        margin: 0 5px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-tagline {
        font-size: 8px;
    }
    
    .action-icon {
        font-size: 18px;
    }
    
    .hero-slide {
        min-height: 450px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-title {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .current-price {
        font-size: 1rem;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
    
    .category-card-inner {
        padding: 30px 15px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}

/* Mobile Landscape (576px and below) */
@media (max-width: 576px) {
    .top-bar {
        padding: 8px 0;
    }
    
    .top-bar-left {
        text-align: center;
        margin-bottom: 5px;
    }
    
    .top-bar-right {
        text-align: center;
    }
    
    .top-bar-left span {
        display: inline-block;
        margin: 0 8px;
    }
    
    .main-header {
        padding: 12px 0;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .action-icon {
        font-size: 16px;
    }
    
    .search-input {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .search-btn {
        width: 35px;
        height: 35px;
    }
    
    .hero-slide {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .slick-prev, .slick-next {
        display: none !important;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .product-image-modern img {
        height: 150px;
    }
    
    .product-info-modern {
        padding: 15px;
    }
    
    .blog-image-modern {
        height: 180px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        background: transparent;
        padding: 0;
        gap: 10px;
    }
    
    .newsletter-form .form-control {
        border-radius: 50px;
        text-align: center;
    }
    
    .newsletter-form .btn-dark {
        border-radius: 50px;
        width: 100%;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .mobile-bottom-nav {
        padding: 8px 0;
    }
    
    .mobile-nav-item i {
        font-size: 18px;
    }
    
    .mobile-nav-item span {
        font-size: 10px;
    }
    
    .contact-info li {
        font-size: 13px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
}

/* Extra Small Devices (400px and below) */
@media (max-width: 400px) {
    .logo-text {
        font-size: 18px;
    }
    
    .logo-tagline {
        font-size: 7px;
    }
    
    .top-bar-left span {
        font-size: 10px;
        margin: 0 4px;
    }
    
    .hero-content h1 {
        font-size: 1.3rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .product-title {
        font-size: 0.85rem;
    }
    
    .current-price {
        font-size: 0.9rem;
    }
    
    .action-btn {
        width: 35px;
        height: 35px;
    }
    
    .mobile-nav-item i {
        font-size: 16px;
    }
    
    .mobile-nav-item span {
        font-size: 9px;
    }
}

/* Landscape Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slide {
        min-height: 350px;
    }
    
    .hero-content {
        padding: 30px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .main-header {
        padding: 10px 0;
    }
    
    .product-image-modern img {
        height: 180px;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .main-nav,
    .mobile-bottom-nav,
    .footer,
    .back-to-top,
    .hero-buttons,
    .newsletter-section {
        display: none !important;
    }
    
    body {
        background: white;
        padding: 20px;
    }
    
    .product-card-modern {
        break-inside: avoid;
        page-break-inside: avoid;
    }
	/* ============================================
   SLICK SLIDER FIXES - MAKE IT WORK
   ============================================ */

/* Ensure slider container has proper dimensions */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider .slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-slider .slick-track {
    display: flex;
    margin: 0;
    padding: 0;
}

/* Hero slide styles */
.hero-slide {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
    width: 100%;
}

/* Slick dots positioning */
.hero-slider .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-slider .slick-dots li {
    display: inline-block;
    margin: 0 5px;
    padding: 0;
}

.hero-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.hero-slider .slick-dots li button:before {
    font-family: 'slick';
    font-size: 12px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .5;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-yellow);
}

/* Slick arrows */
.hero-slider .slick-prev,
.hero-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider .slick-prev {
    left: 20px;
}

.hero-slider .slick-next {
    right: 20px;
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: white;
    opacity: 1;
}

.hero-slider .slick-prev:before {
    content: '\f053';
}

.hero-slider .slick-next:before {
    content: '\f054';
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
    background: var(--primary-yellow);
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
    .hero-slider .slick-prev,
    .hero-slider .slick-next {
        display: none !important;
    }
}

/* Ensure slides are visible */
.hero-slider .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.hero-slider .slick-slide.slick-active {
    display: block;
}

.hero-slider .slick-initialized .slick-slide {
    display: block;
}

/* Hero content animation */
.hero-slider .slick-active .hero-content h1 {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-slider .slick-active .hero-content p {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-slider .slick-active .hero-buttons {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
}