* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background: #1a1a1a;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.countdown-timer {
    display: flex;
    gap: 10px;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    min-width: 50px;
}

.timer-number {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
}

.timer-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #999;
}

.banner-offer {
    flex: 1;
    text-align: center;
    font-size: 14px;
}

.highlight {
    color: #ff6b35;
    font-weight: 700;
}

.strike {
    text-decoration: line-through;
    color: #ff6b35;
}

.grab-deal-btn {
    background: #ff6b35;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.grab-deal-btn:hover {
    background: #e85a2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Header */
.header {
    background: #4338ca;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    font-style: italic;
    color: white;
    cursor: pointer;
}

.nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.cart-count {
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    position: absolute;
    top: -5px;
    right: -5px;
}

.btn-account {
    background: #5b4fd8;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-account:hover {
    background: #4a3fc7;
}

.btn-buy-all {
    background: #06b6d4;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-buy-all:hover {
    background: #0891b2;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(67, 56, 202, 0.3) 0%, transparent 50%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.search-bar {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    outline: none;
}

.search-bar button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 35px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.search-bar button:hover {
    background: #e85a2a;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

/* Sidebar */
.sidebar {
    background: white;
    padding: 20px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar h3 {
    background: #4338ca;
    color: white;
    padding: 12px 15px;
    margin: -20px -20px 15px -20px;
    border-radius: 10px 10px 0 0;
    font-size: 16px;
}

.category-list {
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid #f0f0f0;
}

.category-list a {
    display: block;
    padding: 10px 5px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
}

.category-list a:hover,
.category-list a.active {
    color: #4338ca;
    padding-left: 10px;
    background: rgba(67, 56, 202, 0.05);
}

.category-list span {
    color: #999;
    font-size: 12px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
}

.product-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

.new-price {
    color: #4338ca;
    font-weight: 700;
    font-size: 20px;
}

.product-rating {
    color: #fbbf24;
    font-size: 14px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-cart {
    background: #4338ca;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-cart:hover {
    background: #3730a3;
    transform: scale(1.1);
}

.btn-details {
    flex: 1;
    background: white;
    color: #4338ca;
    border: 2px solid #4338ca;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-details:hover {
    background: #4338ca;
    color: white;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.no-results.show {
    display: block;
}

.no-results i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
}

.no-results p {
    color: #999;
}

/* All Access & other sections (shortened here for brevity in CSS extraction) */
.all-access-section {
    display: none;
}

.all-access-section.active {
    display: block;
}

.home-section {
    display: block;
}

.home-section.hide {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .hero-title {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .top-banner {
        justify-content: center;
        text-align: center;
    }

    .nav .btn-account {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* Single product layout */
.product-detail-page {
    background: #f5f5f5;
    padding: 40px 0 60px;
}

.product-detail-breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr);
    gap: 40px;
}

.preview-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-preview,
.btn-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.btn-preview {
    background: #ffffff;
    color: #333;
    border-color: #e5e5e5;
}

.btn-preview:hover {
    border-color: #4338ca;
    color: #4338ca;
}

.btn-demo {
    background: #4338ca;
    color: #ffffff;
}

.btn-demo:hover {
    background: #3730a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 56, 202, 0.3);
}

.product-description {
    line-height: 1.8;
}

.product-description h2,
.product-description h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
}

.product-description p {
    margin-bottom: 20px;
    color: #555;
}

.product-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.product-features-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

.product-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.product-sidebar {
    height: fit-content;
    position: sticky;
    top: 100px;
}

.pricing-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.get-it-now {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 15px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.old-price-large {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.new-price-large {
    font-size: 36px;
    color: #4338ca;
    font-weight: 700;
}

.features-check {
    margin-bottom: 25px;
}

.check-item {
    padding: 8px 0;
    color: #333;
    font-weight: 500;
}

.price-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    color: #ffffff;
}

.social-btn.facebook { background: #1877f2; }
.social-btn.twitter { background: #1da1f2; }
.social-btn.linkedin { background: #0077b5; }
.social-btn.pinterest { background: #e60023; }
.social-btn.email { background: #ea4335; }

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Style the default Woo add to cart button on single product */
.single-product .single_add_to_cart_button {
    width: 100%;
    background: #4338ca;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.single-product .single_add_to_cart_button:hover {
    background: #3730a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 56, 202, 0.3);
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}


