:root {
    --gold: #28A745;
    /* Changed to Green */
    --gold-dark: #218838;
    --anthracite: #1A1A1B;
    --dark-grey: #2C2C2E;
    --white: #0A0A0A;
    /* Dark Background */
    --light-grey: #121212;
    --text-color: #f4f4f4;
    /* Light Text */
    --text-light: #cccccc;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--gold);
    padding: 5px 15px;
    text-align: center;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: #ffffff;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

/* ... existing content ... */

.image-logo {
    display: flex;
    align-items: center;
}

.image-logo img {
    max-height: 60px;
    width: auto;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    /* Header height + spacing */
    padding-bottom: 80px;
    background: linear-gradient(to bottom, #0A0A0A 0%, #121212 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    text-align: center;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 600px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    /* Use will-change to let the browser optimize 3D transform animations */
    will-change: transform;
    transform: translateZ(0);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Prevent image repainting during 3D rotation */
    transform: translateZ(0);
    backface-visibility: hidden;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
    will-change: transform;
}

.swiper-slide-active .slide-overlay {
    transform: translateY(0);
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-section .section-title {
    margin-bottom: 60px;
    display: block;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Service Card Interactive */
.service-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    background: #1A1A1A;
    border: 1px solid #333;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    cursor: pointer;
    will-change: transform;
    transform: translateZ(0);
}

/* ... existing hover styles ... */

/* Service Detail Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 80%;
    max-width: 900px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    will-change: transform;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    color: #ffffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--gold);
    background: var(--white);
}

/* Modal Body Layout */
.modal-header-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.modal-details {
    padding: 40px;
}

.modal-details h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 10px;
}

.modal-details p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.step-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '\f054';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -10px;
    top: 30%;
    color: #ddd;
    font-size: 1.2rem;
}

.step-number {
    display: block;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 15px;
    line-height: 40px;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-title {
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}

.step-desc {
    font-size: 0.85rem;
    color: #777;
}

/* Modal CTA */
.modal-cta {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--anthracite);
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
}

/* Mobile Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-item:not(:last-child)::after {
        content: '\f078';
        right: 50%;
        top: auto;
        bottom: -25px;
        transform: translateX(50%);
    }

    .step-item {
        margin-bottom: 30px;
        width: 100%;
    }
}


.service-card:hover {
    transform: translateY(-10px);
    background: #222;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--gold);
}

.service-icon {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--gold);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: #121212;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
}

/* Marquee */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    background: var(--white);
    will-change: transform;
    transform: translateZ(0);
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.marquee-content span {
    display: inline-block;
    margin: 0 40px;
    font-size: 2.5rem;
    color: #ccc;
    transition: var(--transition);
    transform: translateZ(0);
}

.marquee-content span:hover {
    color: var(--anthracite);
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: var(--white);
}

.portfolio-section .section-title {
    display: block;
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 27, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-overlay i {
    color: var(--gold);
    font-size: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Footer */
footer {
    background: var(--anthracite);
    color: var(--white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.image-logo-footer img {
    max-height: 70px;
    /* Slightly larger for footer */
    width: auto;
}

.footer-brand p {
    margin-top: 20px;
    color: #aaa;
    font-size: 0.9rem;
}

.footer-contact h3,
.footer-newsletter h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-contact h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-contact ul li i {
    margin-right: 15px;
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    padding: 10px 20px;
    background: #25D366;
    color: white;
    border-radius: 5px;
    font-weight: 600;
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-form-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #1A1A1A;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
}

.contact-form-footer .form-group input,
.contact-form-footer .form-group select {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.contact-form-footer .form-group input:focus,
.contact-form-footer .form-group select:focus {
    border-color: var(--gold);
}

.custom-file-upload {
    border: 1px dashed #333;
    display: inline-block;
    padding: 10px 12px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    color: #ccc;
    background: #000;
    border-radius: 5px;
    transition: var(--transition);
}

.custom-file-upload:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-primary-footer {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.2);
}

.btn-primary-footer:hover {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.4);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--anthracite);
}

.footer-bottom {
    background: var(--dark-grey);
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
        min-height: auto;
    }

    .stats-grid {
        gap: 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        /* Fill screen below header */
        background: var(--white);
        transition: 0.4s ease;
        flex-direction: column;
        justify-content: center;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 40px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .swiper-slide {
        width: 300px;
        height: 350px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Products Section (Homepage) */
.products-section {
    padding: 100px 0;
    background: var(--light-grey);
}

.products-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    display: block;
    /* Ensure it takes full width so text-align works */
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-category-card {
    position: relative;
    height: 300px;
    border: 3px solid #ffffff;
    /* Distinct white border */
    overflow: hidden;
    display: block;
    background: #000;
}

.product-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition);
}

.product-category-card:hover img {
    opacity: 0.4;
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.category-overlay h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.5);
    /* Background for readability */
    padding: 10px 0;
}

/* Catalog Page Layout */
.catalog-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--white);
    min-height: 100vh;
}

.catalog-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

/* Sidebar Filters */
.filters-sidebar {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    height: fit-content;
}

.filters-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    color: #fff;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ccc;
}

.checkbox-list li {
    margin-bottom: 10px;
}

.checkbox-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-list label:hover {
    color: var(--gold);
}

.checkbox-list input[type="checkbox"] {
    accent-color: var(--gold);
}

.price-range-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-range-inputs input {
    width: 100%;
    padding: 8px;
    background: #000;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
}

/* Product Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--light-grey);
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.product-info p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    border-top: 1px solid #333;
    padding-top: 15px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.btn-inspect {
    background: var(--gold);
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-inspect:hover {
    background: var(--gold-dark);
}

/* Responsive */
@media (max-width: 991px) {
    .catalog-container {
        grid-template-columns: 1fr;
    }

    /* Advanced Catalog Features */

    /* Search Box */
    .search-box {
        margin-bottom: 30px;
    }

    .search-box input {
        width: 100%;
        padding: 12px 15px;
        background: #0A0A0A;
        border: 1px solid #333;
        color: #fff;
        border-radius: 5px;
        outline: none;
        transition: var(--transition);
    }

    .search-box input:focus {
        border-color: var(--gold);
        box-shadow: 0 0 10px rgba(40, 167, 69, 0.2);
    }

    /* Strict 3-Column Grid on Desktop */
    .catalog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px;
    }

    /* Product Card Enhancements */
    .product-card {
        position: relative;
        background: #121212;
        border: 1px solid #333;
        border-radius: 8px;
        overflow: hidden;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
    }

    .product-card:hover {
        transform: translateY(-5px);
        border-color: var(--gold);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .product-image {
        position: relative;
        height: 220px;
        overflow: hidden;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-card:hover .product-image img {
        transform: scale(1.1);
        /* Zoom effect */
    }

    /* Category Badge */
    .product-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: var(--gold);
        color: #fff;
        font-size: 0.75rem;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 3px;
        text-transform: uppercase;
        z-index: 2;
    }

    /* Stock Info */
    .stock-info {
        font-size: 0.8rem;
        color: #28a745;
        margin-bottom: 5px;
        display: block;
    }

    /* Product Info & Pricing */
    .product-info {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .product-info h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: #fff;
    }

    .product-info p {
        color: #aaa;
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .product-footer {
        margin-top: auto;
        border-top: 1px solid #222;
        padding-top: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .product-price {
        font-size: 1.2rem;
        font-weight: 800;
        color: #fff;
    }

    .product-actions {
        display: flex;
        gap: 10px;
    }

    .btn-inspect {
        background: var(--gold);
        color: #fff;
        padding: 8px 15px;
        border-radius: 4px;
        font-size: 0.85rem;
        font-weight: 600;
        border: none;
        cursor: pointer;
    }

    .btn-inspect:hover {
        background: var(--gold-dark);
    }

    .btn-quick-add {
        background: #222;
        color: #fff;
        width: 32px;
        height: 32px;
        border-radius: 4px;
        border: 1px solid #333;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
    }

    .btn-quick-add:hover {
        background: var(--gold);
        border-color: var(--gold);
    }

    /* Responsive Grid Adjustments */
    @media (max-width: 992px) {
        .catalog-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    }

    @media (max-width: 576px) {
        .catalog-grid {
            grid-template-columns: 1fr !important;
        }

        .filters-sidebar {
            display: none;
        }
    }

}

/* --- Phase 1: Catalog Redesign Styles --- */
.product-badge-modern {
    background: var(--gold);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    /* Rounded badge */
    text-transform: uppercase;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.btn-buy {
    background: var(--gold);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
    flex-grow: 1;
    /* Make it expand */
    text-align: center;
}

.btn-buy:hover {
    background: var(--gold-dark);
}

.btn-cart-icon {
    background: #222;
    color: #fff;
    width: 40px;
    /* Highly visible */
    height: 38px;
    border-radius: 5px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.btn-cart-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* --- Phase 2: Product Detail Page Styles --- */
.product-detail-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: #0A0A0A;
    color: #fff;
    min-height: 100vh;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 30px;
}

.breadcrumbs a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Gallery slightly wider */
    gap: 50px;
    margin-bottom: 60px;
}

/* Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    height: 500px;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    background: #121212;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Contain to show full product */
}

.thumbnail-strip {
    display: flex;
    gap: 15px;
    overflow-x: auto;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 1px solid #333;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    object-fit: cover;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--gold);
}

/* Info Column */
.product-info-col h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.product-price-large {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.short-desc {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.option-select {
    width: 100%;
    padding: 12px;
    background: #121212;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.option-select:focus {
    border-color: var(--gold);
}

.purchase-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.qty-input {
    width: 80px;
    padding: 10px;
    background: #121212;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
}

.btn-add-to-cart {
    flex-grow: 1;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-add-to-cart:hover {
    background: var(--gold-dark);
}

.secondary-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-order-btn:hover {
    background: #1fb355;
    color: #fff;
}

.meta-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 0.9rem;
    color: #888;
}

.meta-info span {
    display: block;
    margin-bottom: 5px;
}

.meta-info strong {
    color: #fff;
}

/* Tabs */
.product-tabs-section {
    background: #121212;
    border-radius: 10px;
    padding: 30px;
}

.tab-nav {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 1.1rem;
    font-weight: 600;
    padding-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.tab-btn.active {
    color: var(--gold);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
}

.tab-content {
    display: none;
    color: #ccc;
    line-height: 1.7;
}

.tab-content.active {
    display: block;
}

/* Responsive Detail Page */
@media (max-width: 991px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }

    .main-image {
        height: 400px;
    }
}

/* --- Phase 3 & 4: Admin & Cart Removal Styles --- */

/* Remove Cart Icon Button Style override/hide if used elsewhere */
.btn-cart-icon {
    display: none !important;
    /* Force hide */
}

/* Make Buy Button Full Width */
.btn-buy {
    width: 100%;
}

/* Admin Floating Button */
.admin-btn-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.admin-btn-float:hover {
    transform: scale(1.1);
    background: var(--gold-dark);
}

/* Admin Modal */
.admin-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.admin-modal.active {
    display: flex;
}

.modal-content {
    background: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    border: 1px solid #333;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #aaa;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-close:hover {
    color: #fff;
}

.modal-content h2 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.form-group-admin {
    margin-bottom: 15px;
}

.form-group-admin label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group-admin input,
.form-group-admin select,
.form-group-admin textarea {
    width: 100%;
    padding: 10px;
    background: #000;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
    outline: none;
}

.form-group-admin textarea {
    height: 100px;
    resize: vertical;
}

.btn-save-admin {
    width: 100%;
    background: var(--gold);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
}

.btn-save-admin:hover {
    background: var(--gold-dark);
}