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

:root {
    --bg-color: #050505;
    --card-bg: #121212;
    --accent-color: #ff0055;
    --accent-glow: rgba(255, 0, 85, 0.5);
    --bg-glow: rgba(255, 0, 85, 0.05);
    --grid-line: rgba(255, 255, 255, 0.02);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --font-main: 'Inter', sans-serif;
    --font-header: 'Outfit', sans-serif;
}

/* Vapor Theme Overrides (More Professional Deep Blue) */
.vapor-theme {
    --bg-color: #0a0e14; /* Deep Midnight Blue */
    --accent-color: #0984e3; /* Deep Sea Blue */
    --accent-glow: rgba(9, 132, 227, 0.4);
    --bg-glow: rgba(9, 132, 227, 0.08);
    --grid-line: rgba(9, 132, 227, 0.04);
}

/* Anodize Theme Overrides (Sleek Premium Purple/Violet) */
.anodize-theme {
    --bg-color: #0c0812; /* Deep Dark Purple */
    --accent-color: #9f80f9; /* Royal Pastel Purple */
    --accent-glow: rgba(159, 128, 249, 0.4);
    --bg-glow: rgba(159, 128, 249, 0.08);
    --grid-line: rgba(159, 128, 249, 0.03);
}

body {
    background-color: var(--bg-color);
    background-image:
        /* Technical Grid Pattern */
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
        /* Mesh Glows - Dynamic Theme based */
        radial-gradient(circle at 15% 15%, var(--bg-glow) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, var(--bg-glow) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, var(--bg-glow) 0%, transparent 60%),
        radial-gradient(circle at 80% 85%, var(--bg-glow) 0%, transparent 45%),
        radial-gradient(circle at 20% 85%, var(--bg-glow) 0%, transparent 35%);
    background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    padding: 10px 20px 20px;
    background-attachment: fixed;
    transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Reduced gap */
}

/* Header Styles */
header {
    text-align: center;
    position: relative;
    padding-top: 0;
    /* Removed top padding */
}

.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    /* Reduced margin */
}

.logo-container {
    position: relative;
    width: 200px; /* Slightly wider for PNG */
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-main {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 0, 85, 0.2));
    transition: filter 0.5s ease;
}

.spray-gun {
    position: absolute;
    right: -120px;
    top: -40px;
    width: 300px;
    height: 300px;
    z-index: -1;
    pointer-events: none;
}

.title-section h1 {
    font-family: var(--font-header);
    font-size: clamp(1.8rem, 8vw, 3rem);
    /* Smaller font */
    font-weight: 900;
    font-style: italic;
    line-height: 0.85;
    letter-spacing: -1px;
}

.title-section .main-title {
    color: white;
}

.title-section .sub-title {
    color: var(--accent-color);
    text-shadow: 0 0 40px var(--accent-glow);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Service Switch */
.service-switch-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.switch-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.service-switch {
    display: flex;
    width: 480px; /* Fixed width on desktop for perfect column sizing */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 5px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.switch-option {
    flex: 1;
    width: 33.333%; /* Force equal sizing in flex layout */
    padding: 12px 0; /* Horizontal padding removed, rely on equal column widths */
    text-align: center;
    font-weight: 700;
    color: var(--text-secondary);
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 40px;
    white-space: nowrap;
    cursor: pointer;
}

.short-text {
    display: none;
}

.full-text {
    display: inline;
}

.switch-option.active {
    color: white;
}

.switch-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc((100% - 10px) / 3);
    height: calc(100% - 10px);
    background: var(--accent-color);
    border-radius: 40px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px var(--accent-glow);
    z-index: 1;
}

.service-switch[data-service="powder"] .switch-slider {
    transform: translateX(0);
}

.service-switch[data-service="vapor"] .switch-slider {
    transform: translateX(100%);
}

.service-switch[data-service="anodize"] .switch-slider {
    transform: translateX(200%);
}

.color-toggle-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 5px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 120px;
    opacity: 1;
}

.color-toggle-container.hidden-toggle {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    pointer-events: none;
    overflow: hidden;
}

.toggle-wrapper-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 15px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.toggle-wrapper.hide-toggle,
.catalog-title.hide-toggle {
    display: none !important;
}

.catalog-title {
    display: flex;
    align-items: center;
    font-family: var(--font-header);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    height: 34px;
    text-shadow: 0 0 15px var(--accent-glow);
}

.toggle-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color .4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), background-color .4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #ffcc00;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
}

input:checked+.slider:before {
    transform: translateX(20px);
    background-color: #000;
}

.toggle-status {
    font-size: 0.75rem;
    color: #ffcc00;
    font-weight: 700;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

input:checked~.toggle-status {
    opacity: 1;
}

/* Content Visibility & Animation */
.price-content.hidden {
    display: none;
}

.price-content.active {
    display: block;
}

/* Features Bar */
.features-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 25px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    animation: featureReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes featureReveal {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-icon {
    width: 45px;
    height: 45px;
    border: 1.5px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
    background: rgba(255, 0, 85, 0.1);
}

.feature-text .label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: white;
    text-transform: uppercase;
}

.feature-text .sub-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Price List Grid */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid #222;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.price-content.active .price-card {
    animation: cardEntrance 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Staggered animation for cards */
.price-content.active .price-card:nth-child(1) {
    animation-delay: 0.1s;
}

.price-content.active .price-card:nth-child(2) {
    animation-delay: 0.2s;
}

.price-content.active .price-card:nth-child(3) {
    animation-delay: 0.3s;
}

.price-content.active .price-card:nth-child(4) {
    animation-delay: 0.4s;
}

.price-content.active .price-card:nth-child(5) {
    animation-delay: 0.5s;
}

.price-content.active .price-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(25px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: #333;
}

.card-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #a30034 100%);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
    width: fit-content;
    max-width: 60%;
    /* Limit width to prevent overlap */
    min-width: 160px;
    position: relative;
    z-index: 2;
    transition: background 0.5s ease;
}

.vapor-theme .card-header {
    background: linear-gradient(135deg, #0984e3 0%, #1e3799 100%);
}

.vapor-theme .logo-main {
    filter: drop-shadow(0 0 12px rgba(9, 132, 227, 0.4));
}

.vapor-theme #sprayGradient stop {
    stop-color: #0984e3;
}

.anodize-theme .card-header {
    background: linear-gradient(135deg, #9f80f9 0%, #5633c3 100%);
}

.anodize-theme .logo-main {
    filter: drop-shadow(0 0 12px rgba(159, 128, 249, 0.4));
}

.anodize-theme #sprayGradient stop {
    stop-color: #9f80f9;
}

.card-icon-container {
    position: absolute;
    right: 20px;
    top: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.icon-box {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 0, 85, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.02);
}

.click-hint {
    font-size: 0.6rem;
    color: #ffcc00;
    /* Vibrant Yellow */
    opacity: 0.9;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.3px;
    pointer-events: none;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.4;
    }
}

.card-header h2 {
    font-family: var(--font-header);
    font-style: italic;
    font-weight: 900;
    font-size: 1.3rem;
    color: white;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 65px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px dashed #222;
    margin-top: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-item:first-child {
    margin-top: 0;
}

.item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-chevron {
    color: var(--accent-color);
    font-weight: 900;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
}

.item-name {
    font-weight: 700;
    font-family: var(--font-header);
    letter-spacing: 0.2px;
}

.price-item.has-dropdown {
    cursor: pointer;
}

.price-item.active .item-chevron {
    transform: rotate(90deg);
}

.item-dropdown {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    margin-bottom: 0;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        margin-bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        visibility 0.3s ease,
        background 0.3s ease;
    background: transparent;
    border-radius: 0 0 10px 10px;
}

.price-item.active+.item-dropdown {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.dropdown-content {
    overflow: hidden;
    padding: 0 30px;
    /* Vertical padding handled by gap or margin to avoid snap */
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: padding 0.3s ease;
}

.price-item.active+.item-dropdown .dropdown-content {
    padding: 15px 30px;
}

.sub-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.sub-price span:last-child,
.price-wrapper {
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    margin-left: 10px;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.original-price-strike {
    text-decoration: line-through;
    opacity: 0.45;
    font-size: 0.75rem;
    font-weight: normal;
    color: var(--text-secondary);
}

.promo-price-active {
    color: #ffcc00 !important; /* Vibrant promo yellow */
    font-weight: 800;
}

.promo-badge {
    color: #ffcc00;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 204, 0, 0.06);
    border: 1px solid rgba(255, 204, 0, 0.15);
}

.dropdown-info-note {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: #ffcc00;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-info-note::before {
    content: "✨";
    font-style: normal;
}

.item-name {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.item-price {
    font-weight: 800;
    font-family: var(--font-header);
    font-size: 1.1rem;
    color: white;
}

.item-price span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-right: 5px;
}

/* Footer Section */
.footer-section {
    background: rgba(255, 0, 85, 0.02);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    max-width: 600px;
    margin: 20px auto 0;
}

.notes-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--accent-glow);
}

.notes-icon svg {
    width: 18px;
    height: 18px;
}

.notes-content h3 {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-bottom: 3px;
    font-family: var(--font-header);
    font-style: italic;
    font-weight: 900;
}

.notes-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notes-content li {
    font-size: 0.7rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 12px;
    line-height: 1.3;
}

.notes-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Social Footer */
.social-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 5px auto 10px; /* Reduced spacing */
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.social-icon {
    color: var(--text-secondary);
    transition: color 0.3s ease, filter 0.3s ease;
}

.instagram-link:hover .social-icon {
    color: #e1306c;
    filter: drop-shadow(0 0 5px rgba(225, 48, 108, 0.5));
}

.whatsapp-link:hover .social-icon {
    color: #25d366;
    filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.5));
}

/* Responsive */
@media (max-width: 768px) {
    .price-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .price-card {
        border-radius: 12px;
    }

    .card-header {
        padding: 8px 15px;
        min-width: 120px;
        clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    }

    .card-header h2 {
        font-size: 0.8rem;
    }

    .card-icon-container {
        top: 12px;
        right: 12px;
        gap: 8px;
    }

    .icon-box {
        width: 35px;
        height: 35px;
    }

    .click-hint {
        font-size: 0.6rem;
    }

    .card-content {
        padding: 20px 10px 10px;
        gap: 0;
    }

    .price-item {
        margin: 0;
        padding: 2px 0;
    }

    .item-dropdown {
        margin: 0 !important;
    }

    .price-item:first-child {
        margin-top: 0;
    }

    .item-name {
        font-size: 0.75rem;
    }

    .item-price {
        font-size: 0.8rem;
    }

    .item-price span {
        font-size: 0.65rem;
    }

    .sub-price {
        font-size: 0.7rem;
        gap: 8px;
        align-items: flex-start;
    }

    .sub-price span:first-child {
        line-height: 1.3;
    }

    .dropdown-content {
        padding: 0 15px;
    }

    .price-item.active+.item-dropdown .dropdown-content {
        padding: 12px 15px;
    }

    .features-bar {
        justify-content: space-between;
        padding: 15px 5px;
        flex-wrap: nowrap;
        gap: 5px;
    }

    .feature-item {
        gap: 6px;
        flex: 1;
        justify-content: center;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
        border-width: 1px;
    }

    .feature-text .label {
        font-size: 0.5rem;
        line-height: 1.1;
    }

    .feature-text .sub-label {
        font-size: 0.45rem;
        line-height: 1.1;
    }

    .spray-gun {
        display: none;
    }

    .logo-container {
        width: 140px;
        /* Even smaller on mobile */
        height: 60px;
    }

    .title-section h1 {
        font-size: 1.5rem;
        /* Smaller titles on mobile */
    }

    .service-switch {
        width: 100%;
        max-width: 480px;
    }

    .service-switch-container {
        margin-top: 15px;
        width: 100%;
        padding: 0 10px;
    }

    .switch-option {
        padding: 8px 0;
        font-size: 0.75rem;
    }

    .full-text {
        display: none;
    }

    .short-text {
        display: inline;
    }
}

.premium-tag {
    font-family: 'Au Bord de la Seine', sans-serif;
    font-size: 0.7rem;
    color: #ffcc00;
    font-weight: 400;
    margin-left: 8px;
    letter-spacing: 0.5px;
    opacity: 0;
    display: inline-block;
    animation: tagReveal 0.4s ease forwards;
    vertical-align: middle;
}

@keyframes tagReveal {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .premium-tag {
        font-size: 0.7rem;
        margin-left: 6px;
    }
}

@media (max-width: 480px) {
    .switch-option {
        padding: 6px 0;
        font-size: 0.65rem;
    }
}

/* Color Catalog Drawer */
.catalog-drawer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease, 
                padding 0.4s ease, 
                margin 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 0 25px;
}

.catalog-drawer.active-drawer {
    max-height: 1200px;
    opacity: 1;
    padding: 25px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.catalog-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.catalog-section h3 {
    font-family: var(--font-header);
    font-size: 0.85rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--accent-color);
    padding-left: 10px;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.color-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.color-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.color-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.color-item:hover .color-photo {
    transform: scale(1.06);
}

.color-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.btn-catalog {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 6px 15px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 34px;
}

.btn-catalog:hover,
.btn-catalog.active-btn {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .catalog-drawer.active-drawer {
        padding: 15px;
    }
    
    .color-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 10px;
    }
    
    .color-item {
        padding: 10px 5px;
    }
    
    .color-name {
        font-size: 0.65rem;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal.active .lightbox-content-wrapper {
    transform: scale(1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 15px;
    font-family: var(--font-header);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 10000;
    user-select: none;
}

.lightbox-close:hover {
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 35px;
    }
}

/* Try Color Button in Lightbox */
.btn-try-color {
    margin-top: 15px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8003d 100%);
    border: none;
    outline: none;
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--accent-glow);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-try-color:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 25px var(--accent-glow), 0 0 10px rgba(255, 255, 255, 0.2);
    filter: brightness(1.1);
}

/* Color Simulator Modal */
.simulator-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.simulator-modal.active {
    opacity: 1;
    visibility: visible;
}

.simulator-content {
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    width: 92%;
    max-width: 840px;
    max-height: 90vh;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
    transform: scale(0.96);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.simulator-modal.active .simulator-content {
    transform: scale(1);
}

.simulator-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 18px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.simulator-header h2 {
    font-family: var(--font-header);
    font-style: italic;
    font-weight: 900;
    font-size: 1.5rem;
    color: white;
    letter-spacing: 0.5px;
}

.selected-color-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.color-highlight {
    color: var(--accent-color);
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--accent-glow);
}

.simulator-body {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: start;
}

.sim-preview-container {
    background: #030303;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
    overflow: hidden;
}

.sim-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sim-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    z-index: 1;
    transition: filter 0.15s ease;
}

.sim-color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: multiply;
    opacity: 0.85;
    transition: opacity 0.15s ease, mix-blend-mode 0.15s ease;
}

.sim-controls {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.sim-control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sim-control-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sim-presets {
    display: flex;
    gap: 8px;
}

.btn-sim-preset {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 4px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-sim-preset:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.btn-sim-preset.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 0 12px var(--accent-glow);
}

.sim-upload-box {
    border: 1.5px dashed rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.01);
}

.sim-upload-box:hover {
    border-color: var(--accent-color);
    background: rgba(255, 0, 85, 0.03);
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.05);
}

.sim-upload-box .upload-icon {
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.sim-upload-box .upload-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.sim-upload-box .upload-sub {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.sim-slider-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 4px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.sim-slider-item input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.sim-slider-item input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    box-shadow: 0 0 8px var(--accent-glow);
    transition: transform 0.1s ease;
}

.sim-slider-item input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.sim-slider-item select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    cursor: pointer;
    outline: none;
    font-weight: 600;
    transition: border-color 0.2s ease;
}

.sim-slider-item select:focus {
    border-color: var(--accent-color);
}

.btn-order-wa {
    width: 100%;
    background: #25d366;
    color: black;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-order-wa:hover {
    background: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-1px);
}

.simulator-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 10000;
    user-select: none;
}

.simulator-close:hover {
    color: white;
    transform: scale(1.1);
}

/* Responsive Simulator */
@media (max-width: 768px) {
    .simulator-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .simulator-content {
        padding: 20px;
        max-height: 95vh;
    }
    
    .simulator-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
    
    .simulator-header h2 {
        font-size: 1.25rem;
    }
    
    .sim-preview-container {
        max-width: 320px;
        margin: 0 auto;
    }
}