/* PhoneSpot.uk Theme - Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #4285f4;
    --accent-color: #1a73e8;
    --success-color: #34a853;
    --warning-color: #fbbc05;
    --danger-color: #ea4335;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f1f3f4;
    --gray-200: #e8eaed;
    --gray-300: #dadce0;
    --gray-400: #bdc1c6;
    --gray-500: #9aa0a6;
    --gray-600: #80868b;
    --gray-700: #5f6368;
    --gray-800: #3c4043;
    --gray-900: #202124;
    --border-radius: 8px;
    --shadow-light: 0 1px 6px rgba(32, 33, 36, 0.1);
    --shadow-medium: 0 4px 12px rgba(32, 33, 36, 0.15);
    --shadow-heavy: 0 8px 25px rgba(32, 33, 36, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    max-width: 100vw;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.2s ease;
    align-items: flex-start;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    color: #2d5016;
    letter-spacing: -1px;
    line-height: 0.9;
    font-family: 'Arial Black', Arial, sans-serif;
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 13px;
    color: #4CAF50;
    font-weight: 400;
    margin-top: 2px;
    font-style: italic;
    letter-spacing: 0.5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-container {
    position: relative;
}

.search-icon {
    font-size: 18px;
    color: white;
    background: #FF5722;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
}

.search-icon:hover {
    background: #E64A19;
    transform: scale(1.05);
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    padding: 16px;
    display: none;
    z-index: 1001;
}

.search-box.active {
    display: block;
}

.search-box input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-results {
    margin-top: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.cart-container {
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 8px;
}

.cart-container:hover {
    transform: scale(1.1);
}

.cart-icon {
    font-size: 24px;
    color: #333;
    transition: color 0.2s ease;
}

.cart-container:hover .cart-icon {
    color: #FF5722;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -5px;
    background: #FF5722;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(255, 87, 34, 0.3);
    border: 2px solid white;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 8px 20px;
    border-top: 1px solid #e0e0e0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.main-nav .nav-menu {
    flex: 1;
    padding: 0;
    box-sizing: border-box;
    overflow-x: auto;
}

.main-nav::-webkit-scrollbar {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
    flex-shrink: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #555;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 4px;
    margin: 0 2px;
}

.nav-link:hover,
.nav-link.active {
    color: #FF5722;
    background: rgba(255, 87, 34, 0.1);
}

.nav-menu li {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #555;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 4px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-link.new-badge::after,
.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--warning-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.clearance-sale {
    background: #FF5722;
    color: white;
    padding: 8px 16px;
    margin: 4px 0 4px 8px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.clearance-sale:hover {
    background: #E64A19;
    transform: scale(1.05);
}

.sale-text {
    position: relative;
}

.sale-text::before {
    content: '🔥';
    margin-right: 6px;
}

/* Dropdown Menu Styles */
.nav-item {
    position: relative;
}

.nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item .dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: rgba(255, 87, 34, 0.1);
    color: #FF5722;
    padding-left: 24px;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--gray-100);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--gray-600);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #2c5282;
}

.nav-link.new-badge::after {
    content: "NEW";
    position: absolute;
    top: -5px;
    right: -25px;
    background: #68d391;
    color: white;
    font-size: 8px;
    padding: 2px 4px;
    border-radius: 2px;
    font-weight: bold;
}

.clearance-sale {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sale-text {
    background: linear-gradient(45deg, #ff6b6b, #ffa726);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Section with Slideshow */
.hero-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 600px;
    max-width: 100vw;
    margin: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.hero-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 100px 20px;
    position: relative;
    z-index: 2;
    min-height: 600px;
    box-sizing: border-box;
}

.hero-text {
    color: white;
    animation: slideInLeft 0.8s ease-out;
    position: relative;
    z-index: 3;
    max-width: 600px;
    margin-left: 40px;
}

.product-code {
    color: #FF5722;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: #e0e0e0;
    margin-bottom: 35px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.buy-now-btn {
    background: #FFC107;
    color: #1a1a1a;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    width: auto;
}

.buy-now-btn:hover {
    background: #FFD54F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.hero-image {
    display: none; /* Hidden since we're using background images */
}

.hero-product-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-product-img:hover {
    transform: scale(1.05);
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
    z-index: 10;
    box-sizing: border-box;
}

.prev-slide,
.next-slide {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(5px);
    font-size: 16px;
}

.prev-slide:hover,
.next-slide:hover {
    background: rgba(255, 193, 7, 0.9);
    border-color: #FFC107;
    color: #1a1a1a;
    transform: scale(1.1);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.indicator.active {
    background: #FFC107;
    border-color: #FFC107;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 87, 34, 0.8);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-slideshow {
        height: 400px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .buy-now-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .slideshow-controls {
        padding: 0 15px;
    }
    
    .prev-slide,
    .next-slide {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slide-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-product-img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Section Styles */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #2d3748;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #ffa726);
    border-radius: 2px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-all {
    color: #2c5282;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.view-all:hover {
    color: #1a365d;
}

/* Popular Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    transition: opacity 0.3s;
}

.category-card.computing {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%);
    color: white;
}

.category-card.otgs {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.category-card.cables {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.category-card.adaptors {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.category-card.powerbanks {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.category-content h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.product-count {
    font-size: 14px;
    opacity: 0.8;
}

.category-icon {
    margin-top: 15px;
}

.category-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--gray-200);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
    border-color: var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--warning-color);
    color: var(--gray-900);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(251, 188, 5, 0.3);
}

.product-image {
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-900);
    line-height: 1.3;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 12px;
}

.stock-status.in-stock {
    color: var(--success-color);
}

.stock-status.in-stock i {
    color: var(--success-color);
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

/* Category Banners */
.category-banners {
    padding: 60px 0;
    background: white;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.banner-card {
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.banner-card:hover {
    transform: scale(1.02);
}

.banner-card.travel-speakers {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.banner-card.car-chargers {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.banner-card.premium-plugs {
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
}

.banner-content {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.banner-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-image {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.banner-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* Top Selling Products */
.top-selling-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.top-selling-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.top-selling-item:hover {
    transform: translateY(-3px);
}

.item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.item-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3748;
    line-height: 1.3;
}

.item-price {
    font-size: 16px;
    font-weight: bold;
    color: #e53e3e;
}

/* Shopping Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--primary-color);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cart-header h3 {
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: var(--gray-200);
}

.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f7fafc;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--gray-900);
    line-height: 1.3;
}

.cart-item-price {
    font-size: 14px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-controls button {
    width: 25px;
    height: 25px;
    border: 1px solid var(--gray-200);
    background: white;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--primary-color);
}

.cart-item-controls button:hover {
    background: var(--primary-color);
    color: white;
}

.cart-item-quantity {
    font-size: 14px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    color: var(--gray-900);
}

.remove-item {
    color: var(--danger-color);
    cursor: pointer;
    font-size: 16px;
    margin-left: auto;
    transition: color 0.2s ease;
}

.remove-item:hover {
    color: #dc2626;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.free-shipping-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(251, 188, 5, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 12px;
    border: 1px solid rgba(251, 188, 5, 0.2);
}

.free-shipping-info i {
    color: var(--warning-color);
}

.cart-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--primary-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.total-amount {
    color: var(--accent-color);
    font-size: 18px;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.view-cart-btn,
.checkout-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.view-cart-btn {
    background: #f7fafc;
    color: #2d3748;
    border: 1px solid #e2e8f0;
}

.view-cart-btn:hover {
    background: #edf2f7;
}

.checkout-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.checkout-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
}

.footer-services {
    background: #1a1a1a;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    background: #2a2a2a;
    border: 1px solid #333;
}

.service-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 87, 34, 0.1);
    border-color: #FF5722;
}

.service-icon {
    font-size: 32px;
    color: #FF5722;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-content h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
}

.service-content p {
    font-size: 14px;
    opacity: 0.8;
    color: #cccccc;
}

.footer-content {
    padding: 30px 0;
    background: #1a1a1a;
    border-top: 1px solid #333;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: #FF5722;
    background: rgba(255, 87, 34, 0.1);
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: #999999;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Image Placeholder Handling */
img {
    background-color: #f7fafc;
    background-image: linear-gradient(45deg, #e2e8f0 25%, transparent 25%, transparent 75%, #e2e8f0 75%, #e2e8f0),
                      linear-gradient(45deg, #e2e8f0 25%, transparent 25%, transparent 75%, #e2e8f0 75%, #e2e8f0);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    transition: opacity 0.3s;
}

img:not([src]), img[src=""], img[src="#"] {
    opacity: 0.5;
}

img[onerror] {
    background: #f7fafc;
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Loading Animation */
.loading {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2d3748;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top:hover {
    background: #1a202c;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .banners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .top-selling-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-top {
        padding: 8px 0;
        min-height: 60px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-tagline {
        font-size: 11px;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .search-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        padding: 10px;
    }
    
    .cart-icon {
        font-size: 22px;
    }
    
    .main-nav {
        padding: 6px 0;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .main-nav::-webkit-scrollbar {
        display: none;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .clearance-sale {
        padding: 6px 12px;
        font-size: 10px;
        margin: 2px 4px 2px 0;
        border-radius: 16px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .product-code {
        font-size: 36px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .banners-grid {
        grid-template-columns: 1fr;
    }
    
    .top-selling-list {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Additional Product Page Styles */
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px 0;
}

.product-gallery {
    display: flex;
    gap: 20px;
}

.product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
}

.thumbnail.active {
    border-color: #2c5282;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image {
    flex: 1;
    max-width: 400px;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.product-details h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2d3748;
}

.sold-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #e53e3e;
    font-size: 14px;
    margin-bottom: 20px;
}

.price-large {
    font-size: 32px;
    font-weight: bold;
    color: #e53e3e;
    margin-bottom: 15px;
}

.viewers-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.quantity-controls button {
    width: 40px;
    height: 40px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 18px;
    color: #666;
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: bold;
}

.add-to-cart-large {
    width: 100%;
    background: #2d3748;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.add-to-cart-large:hover {
    background: #1a202c;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.buy-with-shop {
    width: 100%;
    background: #5a67d8;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.buy-with-shop:hover {
    background: #4c51bf;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.action-btn:hover {
    color: #2c5282;
}

.product-meta {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.product-meta-item {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
}

.meta-label {
    font-weight: 600;
    width: 120px;
    color: #666;
}

.meta-value {
    color: #2d3748;
}

.meta-value.in-stock {
    color: #38a169;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.payment-icon {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7fafc;
    border-radius: 4px;
    padding: 5px;
}

.payment-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Product Tabs */
.product-tabs {
    margin-top: 40px;
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-btn.active {
    color: #e53e3e;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e53e3e;
}

.tab-content {
    line-height: 1.8;
    color: #666;
}

.tab-content h4 {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 10px;
}

.tab-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

/* Related Products */
.related-products {
    margin-top: 60px;
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
}

/* Sticky Add to Cart (Bottom Bar) */
.sticky-add-to-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--gray-200);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.sticky-product-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.sticky-product-image {
    width: 50px;
    height: 50px;
}

.sticky-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.sticky-product-details h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--gray-900);
}

.sticky-product-price {
    font-size: 16px;
    font-weight: bold;
    color: var(--accent-color);
}

.sticky-cart-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-add-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.sticky-add-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

/* PhoneSpot.uk Enhanced Animations and Interactions */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes countBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--primary-color);
    color: var(--gray-900);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    z-index: 10001;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.toast.toast-show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    border-left-color: var(--success-color);
}

.toast-error {
    border-left-color: var(--danger-color);
}

.toast-warning {
    border-left-color: var(--warning-color);
}

.toast-info {
    border-left-color: var(--primary-color);
}

.toast i {
    font-size: 16px;
}

.toast-success i {
    color: var(--success-color);
}

.toast-error i {
    color: var(--danger-color);
}

.toast-warning i {
    color: var(--warning-color);
}

.toast-info i {
    color: var(--primary-color);
}

/* Enhanced Search Box with PhoneSpot.uk Theme */
.search-box {
    position: relative;
    display: none;
}

.search-box.active {
    display: block;
}

.search-container {
    position: relative;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid var(--gray-200);
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: var(--secondary-color);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--gray-100);
}

.search-result-item:hover {
    background: var(--gray-50);
}

.search-result-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.search-item-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.search-item-price {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
}

.search-loading, .search-error, .search-no-results {
    padding: 15px;
    text-align: center;
    color: var(--gray-600);
    font-size: 14px;
}

/* Enhanced Empty Cart Styling */
.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-600);
}

.empty-cart-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--gray-400);
}

.empty-cart-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.empty-cart-subtext {
    font-size: 14px;
    color: var(--gray-500);
}

/* Enhanced Mobile Styles for PhoneSpot.uk Theme */
@media (max-width: 768px) {
    .search-box {
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        z-index: 1000;
        background: white;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .toast {
        left: 20px;
        right: 20px;
        min-width: auto;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-tabs {
        margin-top: 30px;
    }
    
    .tab-headers {
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .related-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Product Detail Styles */
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px 0;
}

.product-gallery {
    display: flex;
    gap: 20px;
}

.main-image {
    flex: 1;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-details h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gray-900);
    line-height: 1.2;
}

.sold-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    background: rgba(229, 62, 62, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    width: fit-content;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.viewers-count {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 25px;
}

.delivery-info {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid var(--gray-200);
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.delivery-item:last-child {
    margin-bottom: 0;
}

.delivery-item i {
    color: var(--primary-color);
    width: 16px;
}

.stock-info {
    margin-bottom: 30px;
}

.stock-level {
    margin-top: 8px;
    color: var(--warning-color);
    font-weight: 600;
    font-size: 14px;
}

.quantity-selector {
    margin-bottom: 25px;
}

.quantity-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

#product-quantity {
    width: 80px;
    height: 40px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-btn.large {
    flex: 1;
    padding: 15px 20px;
    font-size: 16px;
}

.product-page .buy-now-btn {
    background: var(--warning-color);
    color: var(--gray-900);
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-page .buy-now-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(251, 188, 5, 0.3);
}

.product-features {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.product-features h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.product-features li i {
    color: var(--success-color);
    width: 16px;
}

/* Product Tabs */
.product-tabs {
    margin-top: 60px;
    border-top: 1px solid var(--gray-200);
    padding-top: 40px;
}

.tab-headers {
    display: flex;
    gap: 2px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--gray-200);
}

.tab-header {
    background: var(--gray-100);
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
}

.tab-header.active {
    background: var(--primary-color);
    color: white;
}

.tab-header:hover:not(.active) {
    background: var(--gray-200);
}

.tab-content {
    display: none;
    padding: 20px 0;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray-900);
}

/* Review Styles */
.review-summary {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.rating-overview {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-score {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.stars {
    color: var(--warning-color);
    font-size: 18px;
}

.review-count {
    color: var(--gray-600);
    font-size: 14px;
}

/* Loading States and Micro-interactions */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth Transitions for All Interactive Elements */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

/* Mobile Bottom Navigation - Panther Force Style */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 8px 0;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.bottom-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 12px;
    text-decoration: none;
    color: #666;
    font-size: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.bottom-nav-item i {
    font-size: 18px;
    margin-bottom: 2px;
}

.bottom-nav-item.active {
    color: #FF5722;
}

.bottom-nav-item:hover {
    color: #FF5722;
    transform: translateY(-1px);
}

.bottom-nav-cart {
    position: relative;
}

.bottom-nav-cart .cart-count {
    position: absolute;
    top: -4px;
    right: 8px;
    background: #FF5722;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    border: 1px solid white;
}

/* Show mobile bottom nav on mobile devices */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
    
    /* Add bottom padding to body to account for fixed bottom nav */
    body {
        padding-bottom: 64px;
    }
    
    .footer {
        margin-bottom: 64px;
    }
    
    /* Adjust mobile header for very small screens */
    @media (max-width: 480px) {
        .logo-text {
            font-size: 20px;
        }
        
        .logo-tagline {
            font-size: 10px;
        }
        
        .header-actions {
            gap: 10px;
        }
        
        .search-icon {
            width: 36px;
            height: 36px;
            font-size: 14px;
        }
        
        .cart-icon {
            font-size: 20px;
        }
        
        .nav-link {
            padding: 8px 10px;
            font-size: 10px;
        }
        
        .clearance-sale {
            padding: 4px 10px;
            font-size: 9px;
        }
        
        .bottom-nav-item {
            padding: 4px 8px;
            font-size: 9px;
        }
        
        .bottom-nav-item i {
            font-size: 16px;
        }
        
        /* Mobile Footer Adjustments */
        .footer-services {
            padding: 20px 0;
        }
        
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .service-item {
            padding: 12px;
        }
        
        .service-icon {
            font-size: 24px;
        }
        
        .service-content h4 {
            font-size: 14px;
        }
        
        .service-content p {
            font-size: 12px;
        }
        
        .footer-links {
            gap: 15px;
            justify-content: space-around;
        }
        
        .footer-links a {
            font-size: 10px;
            padding: 4px 8px;
        }
        
        .footer-copyright {
            font-size: 10px;
            padding: 0 10px;
        }
    }
    
    @media (max-width: 380px) {
        .services-grid {
            grid-template-columns: 1fr;
            gap: 10px;
        }
        
        .footer-links {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }
    }
}