:root {
    --primary-color: #f5b905;
    --secondary-color: #092c4d;
    --font-family: 'Outfit', 'Prompt', sans-serif;

    --lg-bg-color: rgba(255, 255, 255, 0.25);
    --lg-highlight: rgba(255, 255, 255, 0.75);
    --lg-text: #ffffff;
    --lg-hover-glow: rgba(255, 255, 255, 0.4);
    --lg-red: #fb4268;
    --lg-grey: #5b5b5b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-family);
    background-color: #f6ba04;
}

.header-menu {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container--inline {
    display: flex;
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;

}

.glass-container {
    position: relative;
    display: flex;
    background: transparent;
    border-radius: 2rem;
    /* overflow: hidden; */
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.glass-container--large {
    min-width: 100%;
}

.glass-filter {
    position: absolute;
    inset: 0;
    z-index: 0;
    backdrop-filter: blur(0px);
    filter: url(#lg-dist);
    isolation: isolate;
    border-radius: 2rem;
}

.glass-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--lg-bg-color);
    border-radius: 2rem;
}

.glass-specular {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    overflow: hidden;
    box-shadow: inset 1px 1px 0 var(--lg-highlight),
        inset 0 0 5px var(--lg-highlight);
    border-radius: 2rem;
}

.glass-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 1rem 1.5rem 0.9rem;
    border-radius: 2rem;
}

.glass-content--inline {
    padding: 0.25rem 0.75rem 0.25rem 0.95rem;
    flex: 1 1 auto;
    justify-content: space-between;
    border-radius: 2rem;
}

.glass-content__logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    width: 150px;
    /* Base width to balance the search bar */
}

.glass-content__logo img {
    width: 54px;
    height: 54px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.glass-content__menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.container-menu {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 8px 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.container-menu i {
    font-size: 25px;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    z-index: 1;
}

.container-menu .menu-text {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 15px;
    margin-left: 0;
    z-index: 1;
}

/* Active State */
.container-menu.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    gap: 10px;
    padding: 8px 20px;
    box-shadow: 0 4px 15px rgba(9, 44, 77, 0.3);
}

.container-menu.active i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.container-menu.active .menu-text {
    max-width: 150px;
    opacity: 1;
    margin-left: 5px;
}

/* Hover Effect */
.container-menu:hover:not(.active) {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transform: translateY(-2px);
}

/* Search Bar Styling Integration */
.glass-content__form {
    display: flex;
    justify-content: flex-end;
    width: 250px;
    /* Matches logo width for balance */
}

.glass-content__form form {
    width: 100%;
    position: relative;
}

.inputGroup {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.inputGroup:focus-within {
    background-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 0 20px rgba(245, 185, 5, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.inputForm {
    width: 100%;
    padding: 10px 40px 10px 20px;
    border: none;
    background: transparent;
    color: var(--secondary-color);
    font-size: 14px;
    outline: none;
    font-weight: 500;
}

.field-icon {
    position: absolute;
    right: 15px;
    color: var(--secondary-color);
    font-size: 16px !important;
    opacity: 0.7;
}

/* Search Dropdown Styling */
#searchDropdown {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 10px;
    width: 300px;
    right: 0 !important;
    left: auto !important;
}

#searchDropdown .dropdown-item {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

#searchDropdown .dropdown-item:last-child {
    border-bottom: none;
}

#searchDropdown .dropdown-item:hover {
    background-color: rgba(245, 185, 5, 0.1);
}

#searchDropdown .search-item-img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f8f9fa;
}

#searchDropdown .search-item-info {
    display: flex;
    flex-direction: column;
}

#searchDropdown .search-item-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

#searchDropdown .search-item-desc {
    font-size: 12px;
    color: #666;
}

#searchDropdown .no-results {
    padding: 15px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.banner-container {
    height: 78vh;
    position: relative;
    border-radius: 0 0 0 20%;
    background-color: #000;
    overflow: hidden;

    &::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(9, 44, 77, 0.4) 0%, transparent 20%, transparent 80%, rgba(9, 44, 77, 0.5) 100%);
        pointer-events: none;
        z-index: 2;
    }

    .carousel,
    .carousel-inner,
    .carousel-item {
        height: 100%;
    }

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 8s linear;
    }

    .carousel-item.active img {
        transform: scale(1.1);
    }
}


.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 12px;
    height: 12px;
    padding: 0;
    margin-right: 6px;
    margin-left: 6px;
    border-radius: 50%;
    text-indent: -999px;
    cursor: pointer;
    background-color: #5a5a5a;
    background-clip: padding-box;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 0 2px rgba(255, 255, 255, 0.5);
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-indicators .active {
    opacity: 1;
    width: 40px;
    border-radius: 20px !important;
    background-color: var(--secondary-color);
    box-shadow: 0 0 15px var(--secondary-color),
        0 4px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

footer {
    background-color: var(--secondary-color);
    width: 100%;
    position: relative;
    z-index: 10;
    border-radius: 0 150px 0 0;
}

.map-overlay-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    color: #666;
    z-index: 500;
    pointer-events: none;
}

.leaflet-control {
    display: none !important;
}

/* Make map tiles black and white */
.leaflet-tile-pane {
    filter: grayscale(100%) brightness(1.1);
    -webkit-filter: grayscale(100%) brightness(1.1);
}

.leaflet-popup,
.leaflet-popup-content-wrapper {
    font-family: var(--font-family) !important;
    background: var(--primary-color) !important;
    color: var(--dark-color) !important;
    border-radius: 12px !important;
}

/* Hide Leaflet Routing Machine control panel */
.leaflet-routing-container {
    display: none !important;
}

/* Style route info display */
.route-info {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(230, 164, 67, 0.2);
}

.leaflet-popup-tip {
    background: var(--primary-color) !important;
}

.route-info i {
    font-size: 14px;
}

/* Custom Homepage Styles */
.text-shadow-glow {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.3);
}

.max-w-lg {
    max-width: 600px;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(245, 185, 5, 0.4);
}

.btn-primary-custom:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(9, 44, 77, 0.4);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(9, 44, 77, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(9, 44, 77, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.icon-circle {
    width: 64px;
    height: 64px;
    background-color: rgba(245, 185, 5, 0.2);
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.glass-card:hover .icon-circle {
    background-color: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.glass-card:hover .icon-circle i {
    --fa-primary-color: var(--secondary-color) !important;
    --fa-secondary-color: #fff !important;
}

.custom-hover-box:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    transform: translateX(10px);
}

.custom-hover-box .icon-box-feature {
    transition: all 0.3s ease;
}

.custom-hover-box:hover .icon-box-feature {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

.btn-cta-contact {
    background: linear-gradient(45deg, var(--primary-color), #ffcc33);
    color: var(--secondary-color) !important;
    /* Ensure text color stays secondary */
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(245, 185, 5, 0.3);
}

.btn-cta-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(245, 185, 5, 0.5);
    color: var(--secondary-color) !important;
}

.social-icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white !important;
    transition: all 0.3s ease;
}

.social-icon-btn.line {
    background-color: #00B900;
}

.social-icon-btn.facebook {
    background-color: #1877F2;
}

.social-icon-btn.phone {
    background-color: #25D366;
}

.social-icon-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white !important;
}

.process-step {
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

.process-step:hover .process-icon {
    transform: scale(1.1);
    background: var(--primary-color);
}

.process-step:hover h6 {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Product Showcase Classes */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(9, 44, 77, 0.1) !important;
}

.product-img {
    transition: all 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-overlay {
    background: rgba(9, 44, 77, 0.3);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: all 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.1s;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
    opacity: 1;
}

.product-overlay .btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

.btn-outline-custom {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Product Filter Buttons */
.filter-btn {
    padding: 8px 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 30px;
    color: var(--secondary-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(9, 44, 77, 0.3);
}

.product-item {
    transition: all 0.4s ease;
}

.titlebar .summary {
    display: none !important;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-item.show {
    animation: fadeInScale 0.4s ease forwards;
}

/* Product Thumbnails (Detail Page) */
.product-thumbnail {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
    border-radius: 8px;
    object-fit: contain;
    background-color: #f8f9fa;
    height: 80px;
    width: 80px;
    flex: 0 0 auto;
}

.product-thumbnail:hover {
    opacity: 0.8;
}

.product-thumbnail.active {
    border-color: var(--secondary-color);
    opacity: 1;
}

/* Custom Horizontal Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(9, 44, 77, 0.2);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(9, 44, 77, 0.4);
}

@media (min-width: 768px) {
    .process-row::after {
        content: '';
        position: absolute;
        top: 65px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: rgba(9, 44, 77, 0.2);
        z-index: 0;
    }
}

@media (max-width: 768px) {
    footer {
        padding-bottom: 100px !important;
        border-radius: 0;
    }

    .banner-container {
        height: 35vh;
        border-radius: 0 0 0 40px;
    }

    .container--inline {
        position: fixed;
        top: auto;
        bottom: 20px;
        width: 94%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2000;
    }

    .glass-content--inline {
        padding: 0.6rem 0.5rem;
        flex-wrap: nowrap;
        background: rgba(255, 255, 255, 0.45) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px rgba(9, 44, 77, 0.15);
    }

    .glass-content__logo,
    .glass-content__form {
        display: none !important;
    }

    .glass-content__menu {
        justify-content: space-around;
        gap: 2px;
        width: 100%;
        flex: 1;
    }

    .container-menu {
        padding: 8px 12px;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        border-radius: 12px;
        flex: 0 1 auto;
    }

    .container-menu i {
        font-size: 20px;
    }

    .container-menu .menu-text {
        font-size: 10px;
        max-width: 0;
        opacity: 0;
        margin-left: 0;
    }

    .container-menu.active {
        background: var(--secondary-color);
        padding: 8px 12px;
        border-radius: 12px;
        gap: 4px;
    }

    .container-menu.active .menu-text {
        max-width: 80px;
        opacity: 1;
        font-size: 10px;
        margin-left: 0;
    }
}

/* Desktop Menu - Keep Labels Visible */
@media (min-width: 992px) {
    .container-menu .menu-text {
        max-width: 150px;
        opacity: 1;
        margin-left: 8px;
    }

    .container-menu {
        padding: 8px 16px;
    }
}

/* Sketchfab 3D Embed Styling */
.sketchfab-embed-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    /* 4:3 Aspect Ratio */
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sketchfab-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.sketchfab-caption {
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
    color: var(--secondary-color);
    opacity: 0.8;
}

.sketchfab-caption a {
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sketchfab-caption a:hover {
    color: var(--secondary-color);
}

/* --- Polo Customizer Styles (Enhanced) --- */

/* Hero Section */
.section-custom-hero {
    background: radial-gradient(circle at 50% 50%, rgba(245, 185, 5, 0.05) 0%, transparent 70%);
}

.sketchfab-container {
    perspective: 1000px;
}

.sketchfab-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.feature-icon-sm {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

/* Customizer Main Container */
.main-customizer-container {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.customizer-preview-col {
    background: #fdfdfd;
}

.preview-stage {
    height: 550px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stage-background {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at center, #f8f9fa 0%, #e9ecef 100%);
    opacity: 0.5;
    z-index: 0;
}

.shirt-base {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.shirt-overlay {
    position: relative;
    z-index: 2;
    mix-blend-mode: multiply;
    pointer-events: none;
    max-width: 80%;
    height: auto;
    transition: opacity 0.4s ease;
}

/* View Toggle Pills */
.view-toggle-pills {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid white;
}

.view-pill {
    padding: 10px 24px;
    border: none;
    background: transparent;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-pill.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(9, 44, 77, 0.2);
}

.preview-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
}

.action-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-circle-btn:hover {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: white;
}

/* Color Controls */
.step-num {
    width: 28px;
    height: 28px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.color-swatch-wrapper {
    position: relative;
    padding: 4px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.color-swatch-wrapper:has(.color-swatch.active) {
    border-color: var(--primary-color);
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.custom-picker-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.custom-color-input {
    position: absolute;
    width: 150%;
    height: 150%;
    cursor: pointer;
    opacity: 0;
}

.custom-picker-icon {
    font-size: 18px;
    color: #adb5bd;
    pointer-events: none;
}

/* Upload Zone */
.upload-zone {
    border: 2px dashed #dee2e6;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-zone:hover {
    border-color: var(--primary-color);
    background: rgba(245, 185, 5, 0.05);
}

/* Range Slider */
.custom-range::-webkit-slider-thumb {
    background: var(--secondary-color);
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.custom-range::-webkit-slider-runnable-track {
    background: #e9ecef;
    height: 6px;
    border-radius: 10px;
}

/* Buttons */
.btn-cta-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-cta-primary:hover {
    background: #0d3b66;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(9, 44, 77, 0.2);
    color: var(--primary-color);
}

.placed-logo-container {
    position: absolute;
    top: 35%;
    left: 58%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: move;
}

.placed-logo-container img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.divider-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 10px;
}

@media (max-width: 991px) {
    .preview-stage {
        height: 400px;
    }

    .customizer-preview-col {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .view-toggle-pills {
        bottom: 15px;
    }

    .view-pill {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* --- About Page Styles --- */
.section-about-hero {
    background: radial-gradient(circle at 10% 20%, rgba(245, 185, 5, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(9, 44, 77, 0.05) 0%, transparent 50%);
}

.about-image-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(9, 44, 77, 0.1);
}

.about-image-card img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image-card:hover img {
    transform: scale(1.05);
}

.stat-box {
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.value-card {
    padding: 30px;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(9, 44, 77, 0.08);
}

.value-icon {
    width: 64px;
    height: 54px;
    background: rgba(245, 185, 5, 0.1);
    color: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/* --- Contact Page Styles --- */
.contact-method-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(9, 44, 77, 0.08);
}

.contact-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(245, 185, 5, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-form-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(9, 44, 77, 0.05);
}

.form-control-custom {
    background-color: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 12px 18px;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background-color: white;
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}

.map-container-contact {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

/* --- Index Page & Utilities --- */
.banner-hero-content {
    background: linear-gradient(90deg, rgba(9, 44, 77, 0.8) 0%, rgba(9, 44, 77, 0.4) 50%, transparent 100%) !important;
    width: 100% !important;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 5%;
    text-align: left !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.banner-hero-content .container {
    max-width: 800px;
    margin-left: 0;
    text-align: left;
}

.aspect-ratio-1x1 {
    aspect-ratio: 1 / 1;
}

.object-fit-cover {
    object-fit: cover;
}

.icon-wrapper-lg {
    width: 70px;
    height: 70px;
    background: rgba(245, 185, 5, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.glass-card:hover .icon-wrapper-lg {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.trust-badge-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badge {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
}

/* --- Product Detail Specifics --- */
.product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.product-thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(245, 185, 5, 0.4);
}

.product-main-img-container {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.02);
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.product-main-img-container:hover {
    transform: scale(1.01);
}

.product-detail-carousel-img {
    cursor: zoom-in;
    transition: filter 0.3s ease;
}

.product-detail-carousel-img:hover {
    filter: brightness(0.95);
}

.lightbox-modal .modal-content {
    background: transparent;
    border: none;
}

.lightbox-modal .modal-header {
    border: none;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1060;
}

.lightbox-modal .btn-close {
    background-color: white;
    opacity: 1;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.lightbox-img-full {
    max-height: 90vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}


.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.breadcrumb-custom {
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb-custom a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-custom a:hover {
    color: var(--primary-color);
}

.related-product-card {
    transition: transform 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-5px);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.cookie-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cookie-icon {
    font-size: 32px;
    color: var(--primary-color);
    background: var(--secondary-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(9, 44, 77, 0.2);
}

.cookie-text h4 {
    margin: 0 0 4px 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cookie {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(9, 44, 77, 0.2);
}

.btn-accept:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(245, 185, 5, 0.3);
}

.btn-settings {
    background-color: rgba(9, 44, 77, 0.08);
    color: var(--secondary-color);
}

.btn-settings:hover {
    background-color: rgba(9, 44, 77, 0.15);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 100px;
        /* Stay above the mobile nav */
        width: 92%;
        padding: 18px;
        gap: 14px;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }

    .cookie-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .cookie-buttons {
        gap: 8px;
    }

    .btn-cookie {
        padding: 8px 16px;
        font-size: 13px;
        flex: 1;
    }
}