:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --text-secondary: #d1d5db;
    --primary-color: #D4AF37;
    /* Gold */
    --secondary-color: #E2E8F0;
    /* Platinum */
    --accent-gold: #FFD700;
    --glass-bg: rgba(20, 20, 20, 0.4);
    --glass-border: rgba(212, 175, 55, 0.2);
    --card-bg: rgba(10, 10, 10, 0.8);
    --font-main: 'Outfit', sans-serif;
    --nav-height: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Ambient Cursor Glow */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(10, 10, 11, 0.7);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
}

.icon-wrapper {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
    color: #fff;
    transition: transform 0.2s;
}

.icon-wrapper:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.hero-visual img {
    transition: transform 0.1s ease-out;
}

.hero-content {
    max-width: 50%;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), #FFF8DC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    background: linear-gradient(90deg, var(--primary-color), #FDB931);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
}

.hero-visual {
    position: relative;
    width: 40%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    animation: orbFloat 6s ease-in-out infinite;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1.2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.floating-card i {
    font-size: 1.5rem;
}

.c1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.c2 {
    bottom: 10%;
    right: 0;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Products Section */
.products-section {
    padding: 5rem 10%;
    min-height: 100vh;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.highlight {
    color: var(--secondary-color);
}

.categories-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cat-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.cat-btn:hover,
.cat-btn.active {
    background: var(--glass-bg);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.1s ease, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.product-image {
    height: 250px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Dots Navigation */
.card-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 12px;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .card-dots {
    opacity: 1;
}

.card-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.card-dot:hover,
.card-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.product-image img,
.product-image video {
    max-width: 80%;
    max-height: 70%;
    object-fit: contain;
    transition: transform 0.5s;
    transform: translateZ(20px);
}


.product-card:hover .product-image img,
.product-card:hover .product-image video {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
}

.product-price {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.add-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: var(--glass-bg);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.add-btn:hover {
    background: var(--primary-color);
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #0f0f11;
    border-left: 1px solid var(--glass-border);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-cart:hover {
    color: #fff;
}

.cart-items {
    flex-grow: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-img img {
    max-width: 80%;
    max-height: 80%;
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title {
    font-size: 1rem;
    font-weight: 500;
}

.cart-item-price {
    color: var(--secondary-color);
}

.cart-item-controls {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.qty-btn {
    background: var(--glass-bg);
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
}

.cart-footer {
    padding: 2rem;
    background: rgba(20, 20, 22, 0.8);
    border-top: 1px solid var(--glass-border);
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #6d28d9;
}

.empty-state {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 3rem;
}

/* About Section */
.about-section {
    padding: 5rem 10%;
    background: linear-gradient(to bottom, var(--bg-color), #0a0a0a);
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.about-content {
    flex: 1;
}

.about-visual {
    flex: 1;
    height: 400px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
}

.feature-item i {
    color: var(--primary-color);
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 10% 2rem;
    background: #020202;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #fff;
    width: 35px;
    height: 35px;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* 3D Scanning Effect Overlay */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    opacity: 0.5;
    animation: scan 3s linear infinite;
    z-index: 10;
    pointer-events: none;
    display: none;
    /* Hidden by default, added via JS to specific elements */
}

@keyframes scan {
    0% {
        top: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Admin Interface */
.admin-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2000;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    display: none;
    /* Hidden by default */
}

/* ... existing admin modal styles ... */
/* Reuse .admin-modal for auth container */

.auth-box {
    width: 90%;
    max-width: 400px;
    background: #111;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.auth-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.auth-form {
    display: none;
    animation: fadeIn 0.3s;
}

.auth-form.active {
    display: block;
}

.auth-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #fff;
}

.user-btn {
    position: relative;
}

.user-logged-in {
    color: var(--primary-color) !important;
}

.admin-trigger:hover {
    background: var(--primary-color);
    color: #000;
    transform: rotate(90deg);
}

.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.admin-modal.active {
    opacity: 1;
    visibility: visible;
}

.admin-content {
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    background: #111;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.admin-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
}

.admin-header h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.close-admin {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-admin:hover {
    color: #fff;
}

.admin-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    padding: 0 1.5rem;
}

.admin-tab {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    font-size: 1rem;
}

.admin-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.admin-body {
    padding: 2rem;
    overflow-y: auto;
    flex-grow: 1;
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.save-btn {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    float: right;
    transition: transform 0.2s;
}

.save-btn:hover {
    transform: translateY(-2px);
}

/* Product Manager Styles */
.products-manager {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.admin-product-item:hover {
    border-color: var(--glass-border);
}

.admin-product-img {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 5px;
    object-fit: cover;
}

.admin-product-details {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.admin-product-details input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-secondary);
    color: #fff;
    padding: 5px;
    width: 100%;
}

.admin-product-details input:focus {
    border-bottom-color: var(--primary-color);
    outline: none;
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-icon-only {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.btn-icon-only:hover {
    background: var(--text-secondary);
}

.btn-delete:hover {
    background: #ef4444;
}

.add-new-btn {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed var(--text-secondary);
    color: var(--text-secondary);
    border-radius: 10px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s;
}

.add-new-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: var(--primary-color);
}

/* Glass Card Utility */
.glass-card {
    background: rgba(20, 20, 20, 0.85);
    /* Darker opacity for better visibility */
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Product Details Modal */
.product-details-box {
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.close-details {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s;
}

.close-details:hover {
    background: var(--primary-color);
    color: #000;
    transform: rotate(90deg);
}

.details-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    height: 100%;
    overflow: hidden;
}

.details-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.main-view {
    flex-grow: 1;
    background: #050505;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

.thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
    flex-shrink: 0;
}

.thumb-item {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    transition: all 0.2s;
    position: relative;
    background: #111;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--primary-color);
    opacity: 1;
}

.thumb-item img,
.thumb-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    padding-right: 10px;
}

.details-info h2 {
    font-size: 2.8rem;
    margin: 0.5rem 0;
    line-height: 1.1;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.details-info .product-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.details-info .price-tag {
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 300;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    display: inline-block;
}

.details-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

@media (max-width: 900px) {
    .details-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .product-details-box {
        height: 95vh;
        padding: 1.5rem;
    }

    .details-gallery {
        min-height: 300px;
        flex-shrink: 0;
    }

    .main-view {
        height: 300px;
    }

    .details-info h2 {
        font-size: 2rem;
    }
}