@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

:root {
            --accent: #b9775f;

}

/* Dark Mode */
[data-theme="dark"] {
            --bg: #1a1a1a;
            --card: #151515;
            --text: #ffffff;
            --text-dim: rgba(255, 255, 255, 0.6);
            --border: rgba(255, 255, 255, 0.05);
            --header: rgba(21, 21, 21, 0.85);
            --input-bg: rgba(255, 255, 255, 0.05);
            --logo-filter: invert(0);
        }

        [data-theme="light"] {
            --bg: #f9f9f9;
            --card: #ffffff;
            --text: #111111;
            --text-dim: rgba(0, 0, 0, 0.6);
            --border: rgba(0, 0, 0, 0.08);
            --header: rgba(249, 249, 249, 0.85);
            --input-bg: rgba(0, 0, 0, 0.05);
            --logo-filter: invert(1) brightness(0.2);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            margin: 0;
            transition: background 0.3s ease;
            line-height: 1.6;
        }

        /* --- HEADER & NAVIGATION --- */
        header {
            padding: 15px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border);
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--header);
            z-index: 1002;
            box-sizing: border-box;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .logo-img {
            height: 35px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 20px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        /* FAQ LINKS */
        .faq-section a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 700;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .faq-section a:hover {
            border-bottom: 2px solid var(--accent);
            opacity: 0.8;
        }

        .category-bar {
            position: fixed;
            top: 70px;
            width: 100%;
            background: var(--card);
            border-bottom: 1px solid var(--border);
            z-index: 1001;
            padding: 12px 0;
            transition: all 0.3s ease;
        }

        .category-toggle {
            display: none;
        }

        .category-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .category-links a {
            text-decoration: none;
            color: var(--text);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
            transition: 0.2s;
        }

        .category-links a:hover {
            opacity: 1;
            color: var(--accent);
        }

        .icon-svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .theme-toggle {
            background: #b9775f;
            margin-left: 4px;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 900;
            font-size: 0.7rem;
            transition: 0.3s;
        }

        /* --- HERO & CONTENT --- */
        .shop-hero {
            margin-top: 105px;
            padding: 100px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            color: white;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 0;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .shop-hero p,
        .shop-hero h1, h2 {
            position: relative;
            z-index: 2;
            margin: 0;
        }

        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        /* --- CATEGORY BOXES --- */
        .category-grid {
            display: flex;
            gap: 20px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .category-box {
            flex: 1;
            min-width: 250px;
            height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            background: var(--input-bg);
            border: 1px solid var(--border);
            transition: 0.3s;
            position: relative;
            overflow: hidden;
            border-radius: 0px;
        }

        .category-box:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }

        .category-box h3 {
            margin: 0;
            color: var(--text);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
        }

        .category-box span {
            font-size: 0.7rem;
            color: var(--accent);
            font-weight: 700;
            margin-top: 10px;
            letter-spacing: 1px;
            z-index: 2;
        }

        /* --- TRENDING NOW SECTION --- */
        .trending-section {
            margin-bottom: 80px;
        }

        .trending-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .trending-card {
            position: relative;
            height: 500px;
            overflow: hidden;
            background: #eee;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            color: white;
            text-decoration: none;
            border-radius: 12px;
        }

        .trending-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

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

        .trending-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8));
            z-index: 2;
        }

        .trending-content {
            position: relative;
            z-index: 3;
        }

        .trending-content h4 {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
            opacity: 0.9;
        }

        .trending-content h3 {
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            margin: 0 0 15px 0;
            line-height: 1;
        }

        .shop-now-link {
            display: inline-block;
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 2px solid white;
            padding-bottom: 2px;
            transition: 0.3s;
        }

        .trending-card:hover .shop-now-link {
            color: var(--accent);
            border-color: var(--accent);
        }

        /* --- PRODUCT SECTIONS --- */
        .new-arrivals-section {
            margin-bottom: 60px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--accent);
            margin-bottom: 25px;
            padding-bottom: 10px;
        }

        .section-header h2 {
            margin: 0;
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -1px;
        }

        .new-arrivals-scroll {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding-bottom: 20px;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) var(--border);
        }

        .new-arrivals-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .new-arrivals-scroll::-webkit-scrollbar-track {
            background: var(--border);
        }

        .new-arrivals-scroll::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px;
        }

        .product {
            min-width: 200px;
            flex: 0 0 auto;
            background: var(--input-bg);
            border: 1px solid var(--border);
            transition: transform 0.3s;
            border-radius: 8px;
        }

        .product:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }

        .product_splash {
            padding: 15px;
            text-align: center;
        }

        .product_splash a {
            text-decoration: none;
            color: var(--text);
        }

        #product_title {
            display: block;
            font-weight: 700;
            font-size: 0.85rem;
            margin: 10px 0;
            height: 40px;
            line-height: 1.3rem;
        }

        #product_price {
            display: block;
            color: var(--accent);
            font-weight: 900;
            font-size: 1.1rem;
            margin-top: 5px;
        }

        .shop-content {
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 40px;
        }

        .sidebar h4 {
            text-transform: uppercase;
            font-size: 0.9rem;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 8px;
            margin-bottom: 20px;
        }

        .category-list {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        .category-list li {
            margin-bottom: 12px;
        }

        .category-list a {
            text-decoration: none;
            color: var(--text);
            font-size: 0.9rem;
            transition: 0.2s;
        }

        .category-list a:hover {
            text-decoration: underline;
            color: #b9775f;
            font-size: 0.9rem;
            font-weight:700;
            transition: 0.2s;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
        }

        .product-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            background: #eee;
        }

        .product-info {
            padding: 20px;
            text-align: center;
        }

        .add-btn {
            background: var(--accent);
            color: white;
            border: none;
            width: 100%;
            padding: 12px;
            font-weight: 900;
            margin-top: 15px;
            cursor: pointer;
        }

        /* --- FAQ SECTION --- */
        .faq-section {
            margin: 80px 0;
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
        }

        .faq-question {
            font-weight: 900;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            margin-bottom: 10px;
            color: var(--accent);
        }

        .faq-answer {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* --- SPOTLIGHT SECTION --- */
        .spotlight-section {
            margin-bottom: 80px;
        }

        .spotlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .spotlight-item {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: 0.3s;
        }

        .spotlight-item:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }

        .spotlight-item img {
            width: 100%;
            height: 250px;
            object-fit: contain;
            margin-bottom: 15px;
            background: #fff;
            border-radius: 8px;
        }

        .spotlight-item h3 {
            font-size: 0.9rem;
            font-weight: 900;
            margin: 15px 0;
            height: 3em;
            overflow: hidden;
            line-height: 1.4;
            color: var(--text);
        }

        .spotlight-item a {
            text-decoration: none;
        }

        /* --- FOOTER --- */
        footer {
            background: var(--card);
            padding: 60px 20px;
            margin-top: 80px;
            border-top: 1px solid var(--border);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
        }

        .footer-col h4 {
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            line-height: 20px;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            text-decoration: none;
            color: var(--text);
            font-size: 0.85rem;
            opacity: 0.7;
            transition: 0.2s;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--accent);
        }

        /* --- Newsletter --- */
        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: var(--input-bg);
            color: var(--text);
            font-family: inherit;
            outline: none;
        }

        .newsletter-form button {
            padding: 0 25px;
            border-radius: 12px;
            border: none;
            background: var(--accent);
            color: white;
            font-weight: 900;
            cursor: pointer;
            transition: 0.3s;
        }

        .payment-methods {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            padding: 20px 0;
            border-top: 1px solid var(--border);
        }

        .payment-methods img {
            height: 25px;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: 0.3s;
        }

        [data-theme='dark'] .payment-methods img {
            filter: grayscale(100%) brightness(2);
        }

        @media (max-width: 900px) {
            header {
                padding: 15px 20px;
                display: flex;
                justify-content: space-between;
            }

            .category-bar {
                padding: 0;
            }

            .category-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                width: 100%;
                padding: 14px 0;
                background: none;
                border: none;
                color: var(--text);
                font-family: 'Montserrat', sans-serif;
                font-weight: 900;
                font-size: 0.7rem;
                text-transform: uppercase;
                letter-spacing: 2px;
                cursor: pointer;
            }

            .hamburger-icon {
                display: flex;
                flex-direction: column;
                gap: 4px;
                width: 18px;
            }

            .hamburger-icon span {
                display: block;
                height: 2px;
                width: 100%;
                background: var(--text);
                transition: 0.3s;
            }

            .category-links {
                max-height: 0;
                overflow: hidden;
                flex-direction: column;
                align-items: center;
                gap: 0;
                transition: max-height 0.4s ease-out;
            }

            .category-bar.active .category-links {
                max-height: 400px;
                padding-bottom: 20px;
            }

            .category-bar.active .hamburger-icon span:nth-child(1) {
                transform: translateY(6px) rotate(45deg);
            }

            .category-bar.active .hamburger-icon span:nth-child(2) {
                opacity: 0;
            }

            .category-bar.active .hamburger-icon span:nth-child(3) {
                transform: translateY(-6px) rotate(-45deg);
            }

            .category-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .category-box {
                min-width: unset;
                height: 140px;
            }

            .category-box h3 {
                font-size: 1rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-icons {
                justify-content: center;
            }

            .shop-content {
                grid-template-columns: 1fr;
            }

            .sidebar {
                display: none;
            }
        }
        
        .tag {
    display: inline-block; padding: 4px 12px; background: var(--accent);
    color: white; font-weight: 900; font-size: 0.65rem;
    border-radius: 4px; margin-bottom: 15px; width: fit-content; text-transform: uppercase;
}

.tag-img {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    pointer-events: none;
}

/* --- SOLD OUT OVERLAY & WHITE FADE --- */
.sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6); /* White fade for Light Mode */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
    backdrop-filter: grayscale(1); /* Desaturates the product image */
}

[data-theme='dark'] .sold-out-overlay {
    background: rgba(0, 0, 0, 0.7); /* Darker fade for Dark Mode */
}

.sold-out-text {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 2px;
    border: 2px solid #fff;
    transform: rotate(-10deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* --- SORTING CONTROLS --- */
.sort-controls {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    margin-bottom: 30px;
}

.sort-wrapper {
    position: relative;
    display: inline-block;
}

.sort-wrapper::after {
    content: '\25BC';
    font-size: 0.6rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.6;
}

.sort-select {
    appearance: none;
    -webkit-appearance: none;
    padding: 12px 40px 12px 15px;
    border-radius: 4px;
    background: transparent;
    color: inherit;
    border: 1px solid rgba(128,128,128,0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    min-width: 220px;
}

[data-theme='dark'] .sort-select { background-color: #1a1a1a; color: #fff; }

/* --- GRID & CARDS --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: transparent; 
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.2s ease;
}

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

.product-card h3 a { color: inherit; text-decoration: none; }
.product-card h3 a::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.product-info { padding: 15px; display: flex; flex-direction: column; flex-grow: 1; align-items: center;}
.product-info h3 { margin: 0 0 10px 0; font-size: 1rem; }
.product-img { width: 100%; height: auto; display: block; }

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .sort-controls {
        justify-content: center;
        padding: 0 10px;
    }
    .sort-wrapper, .sort-select {
        width: 100%;
    }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 10px; }
    
        .sold-out-text {
        font-size: 0.85rem; /* Smaller text for 2-column mobile grid */
        padding: 6px 12px;
        letter-spacing: 1px;
        border-width: 1.5px;
    }
    
}

/* Product Grid */
.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

/* --- VERTICAL GALLERY LAYOUT --- */
.gallery {
    display: flex;
    flex-direction: row; 
    gap: 15px;
    align-items: flex-start;
}

.gallery-main {
    flex: 1;
    position: relative;
}

.gallery-main img#mainImg {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 8px;
    background: var(--light-bg);
}

.thumbnails {
    display: flex;
    flex-direction: column; 
    gap: 10px;
}

.thumbnails img {
    width: 80px;
    height: 80px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: 0.2s;
    object-fit: cover;
}

.thumbnails img:hover { border-color: var(--accent); }

/* Badges */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: #fff;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

.sig-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 45px;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

/* Form Styling */
.buy-box {
    border: 1px solid var(--border);
    transition: border 0.3s ease;
    padding: 20px;
    border-radius: 12px;
    background: var(--card);
    margin-top:30px;
}

.buy-box:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    transition: border 0.3s ease;
}

.buy-box:active {
    border-color: var(--accent);
    transform: translateY(-5px);
    transition: border 0.3s ease;
}

select, input[type="text"] {
    width: 100%;
    box-sizing: border-box; 
    color: var(--text);
    padding: 12px;
    margin: 10px 0;
    border: var(--border);
    border-radius: 6px;
    display: block;
    font-size: 0.9rem;
    background: var(--input-bg);
    appearance: none;
}

select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    cursor: pointer;
}

.btn-add { width: 100%; padding: 15px; border-radius: 12px; border: none; background: var(--text); color: var(--bg); font-weight: 900; font-size: 0.8rem; cursor: pointer; transition: 0.3s; text-transform:uppercase;}
.btn-add:hover { background: var(--accent); color: white; }

.notice {
    background: #fff4f0;
    padding: 15px;
    border-left: 4px solid var(--accent);
    font-size: 0.9rem;
    margin: 20px 0;
    color: #000 !important;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .product-container { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .gallery { flex-direction: column-reverse; }
    .thumbnails { flex-direction: row; }
    .stratus-badge { flex-direction: column !important; text-align: center !important; gap: 10px !important; }
}


        #ad-viewport-center {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: auto;
            position: relative;
            overflow: hidden;
            margin-bottom: 70px;
        }

        #ad-container img {
            max-width: 90vw;
            max-height: 90vh;
            height: auto;
            display: block;
            border-radius: 0px;
        }

/* --- KEY --- */      
  .product-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.6rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    padding-bottom: 8px;
    text-transform: uppercase; /* Optional: ensures uniform look */
}

.product-badge i, 
.product-badge img {
    width: 17px;
    display: flex;
    justify-content: center;
    flex-shrink: 0; /* Prevents icons from squishing on small screens */
}
        
/* --- SOLD OUT STYLING --- */
.sold-out-badge {
    background: #d4af37;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1rem, 5vw, 1.8rem);
    padding: 10px 20%;
    text-transform: uppercase;
    letter-spacing: 4px;
    transform: rotate(-15deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid #fff;
    white-space: nowrap;
}

.price.sold-out {
    color: #777 !important;
    text-decoration: line-through;
    opacity: 0.6;
}

.btn-sold-out {
    width: 100%;
    padding: 18px;
    background: #222;
    color: #555;
    border: 1px solid #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: not-allowed;
    margin-top: 20px;
}

/* --- PEN COLOR RADIUS OPTIONS --- */
.color-options {
    display: flex;
    gap: 15px;
    margin: 10px 0 35px 0;
    align-items: center;
}

.color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0.5;
}

.color-radio {
    display: none;
}

.color-radio:checked + .color-circle {
    transform: scale(1.1);
    font-weight: 600;
    opacity: 1;
}

.color-any { background: linear-gradient(45deg, transparent 48%, #FF0000 48%, #FF0000 52%, transparent 52%), #FFFFFF; border: 1px solid #ccc; }
.color-pink { background-color: #FF69B4; }
.color-red { background-color: #FF0000; }
.color-white { background-color: #FFFFFF; border: 1px solid #ccc; }

.color-circle::after {
    content: attr(data-label);
    position: absolute;
    bottom: -18px;
    font-size: 0.65rem;
    color: var(--text);
    white-space: nowrap;
    opacity: 1;
}

/* --- SIZE SELECTOR --- */
.size-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.size-option {
    position: relative;
}

.size-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.size-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    border: 1px solid #ccc;
    background: transparent;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text);
}

.size-option:hover .size-box {
    border-color: var(--accent);
}

.size-option input:checked + .size-box {
    background-color: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

[data-theme="dark"] .size-box { border-color: #444; }

@media (max-width: 480px) {
    .size-grid { grid-template-columns: repeat(3, 1fr); }
}