:root {
    --bg-color: #08080c;
    --surface-color: #12121a;
    --surface-hover: #1c1c26;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --neon-blue: #00f0ff;
    --neon-purple: #8a2be2;
    --lorden-gold: #fbd38d;
    --lorden-gold-glow: rgba(251, 211, 141, 0.4);
    --neon-glow: rgba(0, 240, 255, 0.3);
    
    --transition: 0.3s ease-in-out;
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ================= HEADER ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(18, 18, 26, 0.85);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--text-main), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--surface-color);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    width: 100%;
    max-width: 300px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.search-bar:focus-within {
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-glow);
}

.search-bar input {
    background: transparent;
    border: none;
    color: var(--text-main);
    width: 100%;
    outline: none;
}

.search-bar button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    color: var(--neon-blue);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--neon-blue);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================= BUTTONS ================= */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.primary-btn {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: #fff;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--neon-glow);
}

.glow-effect {
    box-shadow: 0 0 15px var(--neon-glow);
}

.buy-btn {
    background: var(--surface-hover);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    margin-top: 1rem;
}

.buy-btn:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 10px var(--neon-glow);
}

/* ================= HERO SLIDER ================= */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    max-width: 800px;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease-in-out 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--neon-blue);
    color: #000;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-glow);
}

/* ================= SECTIONS COMMON ================= */
section {
    padding: 5rem 5%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 2px;
}

/* ================= CATEGORIES ================= */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--surface-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.category-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid var(--surface-hover);
}

.custom-cat-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--surface-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin: 0 auto 1rem;
}

/* ================= PRODUCTS ================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--surface-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: var(--neon-blue);
}

.img-wrapper {
    height: 250px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--neon-blue);
    margin-top: auto;
}

/* ================= LORDEN LAMPS SECTION ================= */
.lorden-section {
    background: linear-gradient(135deg, #1a1510 0%, var(--bg-color) 100%);
    border-top: 1px solid rgba(251, 211, 141, 0.2);
    border-bottom: 1px solid rgba(251, 211, 141, 0.2);
}

.lorden-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.lorden-text {
    flex: 1;
}

.lorden-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--lorden-gold);
    text-shadow: 0 0 20px var(--lorden-gold-glow);
}

.premium-text {
    font-size: 1.2rem;
    color: #dcdcdc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.lorden-section .primary-btn {
    background: linear-gradient(45deg, #b8860b, #ffd700);
    color: #000;
}

.lorden-section .primary-btn:hover {
    box-shadow: 0 0 20px var(--lorden-gold-glow);
}

.lorden-image {
    flex: 1;
}

.lorden-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    border: 1px solid rgba(251, 211, 141, 0.3);
}

/* ================= CUSTOM ORDER CTA ================= */
.custom-order-cta {
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(0, 240, 255, 0.1));
    text-align: center;
    border-radius: var(--radius);
    margin: 5rem 5%;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-inline: auto;
}

/* ================= FOOTER ================= */
footer {
    background-color: var(--surface-color);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.social-icons a {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--neon-blue);
    transform: translateY(-3px);
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--neon-blue);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--neon-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
}

/* ================= MODAL ================= */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--text-main);
}

.modal-content h2 {
    margin-bottom: 0.5rem;
    color: var(--neon-blue);
}

.modal-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-color);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--neon-blue);
}

.form-group input[readonly] {
    background: var(--surface-hover);
    color: var(--neon-blue);
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

#success-message {
    text-align: center;
    padding: 2rem 0;
}

#success-message i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

#success-message h3 {
    margin-bottom: 0.5rem;
}

#success-message p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hidden {
    display: none !important;
}

/* ================= PRODUCT DETAILS PAGE ================= */
.breadcrumbs {
    padding: 2rem 5% 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    text-shadow: 0 0 10px var(--neon-glow);
}

.product-details-container {
    display: flex;
    gap: 4rem;
    padding: 2rem 5% 5rem;
    align-items: flex-start;
}

.product-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-container {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    background: var(--surface-color);
}

.main-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.thumbnail-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.thumbnail-row::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-row::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.6;
}

.thumbnail:hover {
    opacity: 1;
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-glow);
}

.product-info-box {
    flex: 1;
}

.product-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--lorden-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px var(--lorden-gold-glow);
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.feature-icon {
    color: var(--lorden-gold);
    text-shadow: 0 0 10px var(--lorden-gold-glow);
    font-size: 1.2rem;
    width: 24px;
}

.price-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: var(--radius);
    border-left: 4px solid var(--neon-blue);
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
}

.price-disclaimer {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.large-order-btn {
    width: 100%;
    font-size: 1.2rem;
    padding: 1rem;
}

/* ================= CUSTOM FORM ELEMENTS ================= */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-color);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text-main);
    outline: none;
    appearance: none;
    cursor: pointer;
}

.select-wrapper select:focus {
    border-color: var(--neon-blue);
}

.select-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 100px;
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 8px;
    background: var(--bg-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-upload-wrapper:hover, .file-upload-wrapper.dragover {
    border-color: var(--neon-blue);
    background: rgba(0, 240, 255, 0.05);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    z-index: 1;
}

.file-upload-ui i {
    font-size: 2rem;
    color: var(--neon-blue);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .product-details-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .product-gallery, .product-info-box {
        width: 100%;
    }
    
    .lorden-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 5%;
    }

    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .search-bar {
        display: none;
    }
    .slide-content h1 {
        font-size: 2.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .modal-content {
        padding: 1.5rem;
        width: 95%;
        margin: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    .price-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.8rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    .footer-about p {
        font-size: 0.9rem;
    }
}
