/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Top Bar */
.top-bar {
    background: #fbbf24;
    color: #000;
    font-size: 0.875rem;
    padding: 0.5rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toll-free {
    font-weight: 600;
}

.top-links {
    display: flex;
    gap: 1rem;
}

.top-link {
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
}

.top-link:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Main Header */
.main-header {
    background: #000;
    color: #fff;
    padding: 1rem 0;
    /* position: relative;
    z-index: 1010; */
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo img {
    height: 3rem;
    width: auto;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem;
    transition: color 0.2s;
}

.nav-button:hover {
    color: #fbbf24;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #fbbf24;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    color: #000;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    min-width: 16rem;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: all 0.2s;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #000;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background: #f3f4f6;
}

/* Search */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    background: #fff;
    color: #000;
    padding: 0.5rem 3rem 0.5rem 1rem;
    border-radius: 0.5rem;
    width: 20rem;
    border: none;
    outline: none;
}

.search-icon {
    position: absolute;
    right: 0.75rem;
    color: #6b7280;
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 37.5rem;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s;
}

.slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gradient-orange {
    background: linear-gradient(to right, #ea580c, #dc2626, #ea580c);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-left {
    color: #fff;
}

.brand-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brand-badge {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: bold;
    font-size: 1.125rem;
}

.brand-badge.asus {
    background: #fff;
    color: #000;
}

.brand-badge.lenovo {
    background: #dc2626;
    color: #fff;
}

.brand-x {
    font-size: 1.875rem;
    font-weight: bold;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    font-size: 5rem;
    font-weight: 900;
    color: #fbbf24;
    margin: 0.5rem 0;
}

.hero-subtitle {
    font-size: 1.875rem;
    font-weight: bold;
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.hero-btn {
    background: #fbbf24;
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: #f59e0b;
    transform: scale(1.05);
}

.hero-disclaimer {
    font-size: 0.875rem;
    opacity: 0.75;
    margin-top: 1rem;
}

.hero-right {
    position: relative;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.product-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-col.offset {
    padding-top: 2rem;
}

.product-img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s;
}

.product-img:hover {
    transform: rotate(0deg) !important;
}

.rotate-2 { transform: rotate(2deg); }
.rotate--1 { transform: rotate(-1deg); }
.rotate-1 { transform: rotate(1deg); }
.rotate--2 { transform: rotate(-2deg); }

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 20;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-nav.prev {
    left: 1rem;
}

.hero-nav.next {
    right: 1rem;
}

.slide-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    background: rgba(255, 255, 255, 0.5);
}

.indicator.active {
    background: #fbbf24;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-title.white {
    color: #fff;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

.section-subtitle.white {
    color: #d1d5db;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Buttons */
.btn-primary {
    background: #fbbf24;
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background: #f59e0b;
}

.text-link {
    background: none;
    border: none;
    color: #2563eb;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: text-decoration 0.2s;
}

.text-link:hover {
    text-decoration: underline;
}

/* Best Deals Section */
.best-deals {
    padding: 4rem 0;
    background: #f9fafb;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-image {
    aspect-ratio: 1;
    padding: 1rem;
    background: #f9fafb;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1rem;
}

.product-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.special-price {
    font-size: 1.125rem;
    font-weight: bold;
    color: #dc2626;
}

.regular-price {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: line-through;
}

.discount {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
}

.product-btn {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.product-btn:hover {
    background: #374151;
}

/* Brand Showcase Section */
.brand-showcase {
    padding: 4rem 0;
}

.brand-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.brand-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.brand-card:hover {
    transform: scale(1.05);
}

.brand-card.blue { background: #2563eb; }
.brand-card.gray { background: #1f2937; }
.brand-card.gradient { background: linear-gradient(to right, #2563eb, #7c3aed); }
.brand-card.red { background: #dc2626; }
.brand-card.green { background: #059669; }

.brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M0 0h20v20H0V0zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14z'/%3E%3C/g%3E%3C/svg%3E");
}

.brand-content {
    position: relative;
    z-index: 10;
}

.brand-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.brand-logo-container {
    background: #fff;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.brand-logo {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.brand-product {
    height: 5rem;
    width: auto;
    object-fit: contain;
    margin-left: auto;
    transition: transform 0.3s;
}

.brand-card:hover .brand-product {
    transform: scale(1.1);
}

.brand-description {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0.75rem;
    white-space: pre-line;
}

.brand-btn {
    background: #fff;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.brand-btn:hover {
    background: #f3f4f6;
}

/* Product Categories Section */
.product-categories {
    padding: 4rem 0;
    background: #f9fafb;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.category-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.category-image {
    aspect-ratio: 1;
    padding: 1.5rem;
    background: linear-gradient(to bottom right, #f9fafb, #f3f4f6);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 1.5rem;
}

.category-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.category-subcategories {
    list-style: none;
    margin-bottom: 1.5rem;
}

.category-subcategories li {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.category-subcategories li:hover {
    color: #2563eb;
}

.category-btn {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.category-btn:hover {
    background: #374151;
}

/* Featured Products Section */
.featured-products {
    padding: 4rem 0;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    padding: 0.75rem;
    border-radius: 50%;
    background: #e5e7eb;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background: #d1d5db;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.carousel-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    background: #d1d5db;
}

.carousel-indicator.active {
    background: #2563eb;
}

/* Brand Distributor Section */
.brand-distributor {
    padding: 4rem 0;
    background: #1f2937;
}

.brand-scroll {
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.brand-logos {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    animation: scroll 20s linear infinite;
}

.brand-logos:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-logo-item {
    flex-shrink: 0;
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s;
    min-width: 10rem;
    height: 6.25rem;
    cursor: pointer;
}

.brand-logo-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.brand-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Statistics */
.stats-section {
    margin-top: 4rem;
}

.stats-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
}

.stats-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 1.5rem;
    margin: 0 auto 1rem;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.stat-item:hover .stat-icon {
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #d1d5db;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: linear-gradient(to bottom right, #dbeafe, #e0e7ff);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: box-shadow 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quote-icon {
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.testimonial-text {
    color: #374151;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-initial {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.125rem;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-company {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.blog-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.blog-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.blog-card:hover .blog-title {
    color: #2563eb;
}

.blog-excerpt {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: text-decoration 0.2s;
}

.blog-read-more:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
}

.footer-main {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}


.footer-col {
        flex: 1 1 200px;
        min-width: 200px;
        max-width: 300px;
}
.footer-col-support {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
 }

.footer-logo {
    height: 3rem;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
        .footer-main {
            flex-direction: column;
            align-items: center;
        }
        .footer-col, .footer-col-support {
            max-width: 100%;
        }
    }
.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    padding: 0.75rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: #e4405f; }
.social-btn.twitter { background: #1da1f2; }
.social-btn.youtube { background: #ff0000; }

.social-btn:hover {
    opacity: 0.8;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fbbf24;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #fbbf24;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-label {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-text {
    font-size: 0.875rem;
    color: #d1d5db;
}

.newsletter-title {
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem 0 0 0.5rem;
    background: #374151;
    color: #fff;
    border: 1px solid #4b5563;
    outline: none;
}

.newsletter-input:focus {
    border-color: #fbbf24;
}

.newsletter-btn {
    background: #fbbf24;
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-btn:hover {
    background: #f59e0b;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #fbbf24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .main-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .search-input {
        width: 100%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-highlight {
        font-size: 3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .brand-cards {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}


.search-results-dropdown {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
                }





