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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #00ff88;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo-image {
    height: 90px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #00ff88;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-link i {
    font-size: 1.1rem;
}

#cart-count {
    background: #00ff88;
    color: #000000;
    border-radius: 8px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 20px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #00ff88;
    transition: width 0.3s ease;
}

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

/* Customize button highlight */
.nav-link[href="customize.html"],
.nav-link.active {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000000 !important;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.nav-link[href="customize.html"]:hover,
.nav-link.active:hover {
    background: linear-gradient(45deg, #00cc6a, #00ff88);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
    color: #000000 !important;
}

.nav-link[href="customize.html"]::after,
.nav-link.active::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding-top: 115px;
}

.hero-content {
    flex: 1;
    padding: 2rem;
    padding-top: 115px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 600px;
    height: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 255, 136, 0.3));
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 30px rgba(0, 255, 136, 0.5));
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000000;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    padding: 2rem 0;
    text-align: center;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #000000;
    font-weight: 600;
    font-size: 1.1rem;
}

.promo-content i {
    font-size: 1.5rem;
}

/* Brand Sections */
.brand-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.brand-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.product-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 2rem;
    padding-top: 115px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
}

    justify-content: center;
    margin: -20px auto 1rem;
    font-size: 2rem;
    color: #00ff88;
}

.product-card h3 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.product-card p {
    color: #cccccc;
}

/* Customize Section */
.customize-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.customize-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.customize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.customize-option {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 2rem;
    padding-top: 115px;
    transition: transform 0.3s ease;
}

.customize-option:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
}

.customize-option i {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.customize-option h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.customize-option p {
    color: #cccccc;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.gallery-item {
    background: #1a1a1a;
    border: 2px solid #333;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a, #333);
    border: 2px solid #00ff88;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #00ff88;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    margin-top: 2rem;
}

.why-order-heading {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.stat {
    text-align: left;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.stat h3 {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

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

.faq-item:hover {
    border-color: #00ff88;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #2a2a2a;
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.faq-question i {
    color: #00ff88;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 50px;
}

.faq-answer p {
    color: #cccccc;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    min-width: 250px;
}

.contact-item:hover {
    border-color: #00ff88;
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #00ff88;
}

.contact-item h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cccccc;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #1a1a1a;
    border-top: 1px solid #333;
    padding: 2rem 0;
}

.disclaimer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-content p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.disclaimer-content strong {
    color: #00ff88;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #333;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #00ff88;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Fix viewport issues */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
    }
    
    .navbar {
        width: 100%;
        max-width: 100vw;
    }
    
    .nav-container {
        max-width: 100%;
        width: 100%;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 60px;
        width: 100%;
        max-width: 100vw;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    /* Fix section widths */
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        width: 100%;
    }

    .about-stats {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
    }

    .brand-grid,
    .customize-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        max-width: 100%;
        width: 100%;
    }
    
    /* Fix footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .brand-section h2,
    .customize-section h2,
    .gallery-section h2,
    .about-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
    
    /* Additional mobile contact optimizations */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .contact-item i {
        font-size: 1.25rem;
    }
    
    .contact-item h3 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
} 

/* Additional Mobile Viewport Fixes */
@media (max-width: 768px) {
    /* Ensure all elements stay within viewport */
    * {
        max-width: 100vw;
    }
    
    /* Fix any potential horizontal scroll */
    body, html {
        overflow-x: hidden;
        position: relative;
    }
    
    /* Ensure all sections fit properly */
    .hero,
    .promo-banner,
    .customize-section,
    .brand-section,
    .gallery-section,
    .about-section,
    .contact-section,
    .disclaimer-section,
    .footer {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Fix grid layouts */
    .customize-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
    }
    
    /* Fix jukebox viewer */
    .jukebox-viewer {
        max-width: 100%;
        width: 100%;
        padding: 1rem;
    }
    
    .carousel-area {
        max-width: 100%;
        width: 100%;
    }
    
    /* Fix additional widgets */
    .additional-widgets {
        max-width: 100%;
        width: 100%;
        padding: 1rem;
    }
    
    /* Fix color selector grid */
    .color-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    /* Fix widget buttons */
    .widget-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .widget-btn {
        flex: 1;
        min-width: 180px;
    }
    
    /* Fix contact section for mobile */
    /* Fix customize grid for mobile - keep horizontal layout */
    .customize-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .customize-option {
        padding: 1rem 0.5rem;
        text-align: center;
    }
    
    .customize-option i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .customize-option h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .customize-option p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    /* Fix brand selection for mobile - compact and visible */

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}




.brand-image {
    background: #1a1a1a;    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.3s ease;
}


.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 255, 136, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    padding-top: 115px;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.brand-overlay h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.brand-overlay p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.brand-button {
    background: #00ff88;
    color: #000000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-button:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* Brand Pages Styles */
.brand-hero {
    padding: 80px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.brand-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.brand-hero p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}




    border-color: #00ff88;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}






.product-button:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* Customization Widget Styles */


    border-radius: 15px;
    overflow: hidden;
}



.option-group {
    margin-bottom: 2rem;
}

.option-group h4 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.color-options, .material-options, .paddle-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}










/* Product Image Styles */

.compatibility {
    color: #888;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {


.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 136, 0.8);
    border: none;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 10;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #00ff88;
    transform: translateY(-50%) scale(1.1);
}

.nav-left {
    left: 5px;
}

.nav-right {
    right: 5px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
    .nav-arrow {
        display: none;
    }
}


.bmw-page .option-group h4,
.audi-page .option-group h4 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.bmw-page .color-options,
.bmw-page .material-options,
.bmw-page .paddle-options,
.audi-page .color-options,
.audi-page .material-options,
.audi-page .paddle-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}




.bmw-page .customize-actions,

.bmw-page .btn-primary,
.bmw-page .btn-secondary,
.audi-page .btn-primary,

.bmw-page .btn-primary,

.bmw-page .btn-secondary,

.bmw-page .btn-primary:hover,
.bmw-page .btn-secondary:hover,
.audi-page .btn-primary:hover,
.audi-page .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Mobile responsive for BMW/Audi widgets */
@media (max-width: 768px) {





.widget-options {
    background: #1a1a1a;
    padding: 2rem;
    padding-top: 115px;
    border-radius: 15px;
    border: 1px solid #333;
    height: fit-content;
}

.option-group {
    margin-bottom: 2rem;
}

.option-group h4 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.color-options, .material-options, .paddle-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}





.customize-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-primary {
    background: #00ff88;
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Mobile responsive for customization widget */
@media (max-width: 768px) {
/* Cache bust: 1757290104 */





/* Cache bust: 1757290539 */
/* Cache bust: 1757290916 */

/* Updated Product Section - Image Focused Design */







.placeholder-image {
    font-size: 4rem;
    color: #00ff88;
    opacity: 0.7;
}







.product-button:disabled {
    background: #666;
    color: #999;
    cursor: not-allowed;
}


.nav-arrow:hover {
    background: #00ff88;
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.nav-left {
    left: 10px;
}

.nav-right {
    right: 10px;
}

/* Placeholder styling */


/* Mobile responsive */
@media (max-width: 768px) {

@media (max-width: 480px) {
/* Cache bust: 1757291692 */
/* Cache bust: 1757292116 - Fixed CSS conflicts */
/* Cache bust: 1757292404 - Fixed product panels */
/* Cache bust: 1757292428 - Clean product panels */
/* Cache bust: 1757293498 - Namespace separation complete */
/* Cache bust: 1757294269 - Fixed brand-hero navbar overlap */
/* Cache bust: 1757294666 - Fixed hero-content top padding */
/* Cache bust: 1757294827 - Increased hero-content top padding to 100px */
/* Cache bust: 1757294867 - Increased hero-content top padding to 115px */
/* Cache bust: 1757304258 - Added TikTok widget alongside Instagram in contact section */
/* Cache bust: 1757304838 - Restored homepage to correct state before TikTok widget attempt */

