:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #ff3e3e;
    /* A vibrant red often used in sneaker culture */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --nav-height: 80px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: left 0.1s ease, top 0.1s ease;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
    background: linear-gradient(to right, #ffffff, #888888, #ffffff);
    background-size: 200% auto;
    color: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.nav-links {
    display: flex;
    gap: 3rem;
    /* Hide on mobile defaults, would need media queries for full robustness */
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--text-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}

.cart-link {
    position: relative;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 600px;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero-label {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--text-color);
    color: var(--bg-color);
    border: 2px solid var(--text-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-color);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--text-color);
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

spline-viewer {
    width: 100%;
    height: 100%;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-visual {
        width: 100%;
        right: 0;
        opacity: 0.6;
        /* Dim model slightly so text is readable if they overlap */
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        margin-top: 20%;
        width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-visual {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.4;
        z-index: 0;
    }
}

/* Content Sections */
.collection-section,
.about-section,
.footer-section {
    padding: 6rem 5%;
    position: relative;
    z-index: 10;
    background: var(--bg-color);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-color);
    letter-spacing: -1px;
}

.sneaker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

@media (max-width: 900px) {
    .sneaker-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sneaker-grid {
        grid-template-columns: 1fr;
    }
}

.sneaker-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0px;
    /* Square/Sharp edges or keep rounded? Image shows clean look. */
    padding: 0;
    /* Remove padding to let image fill or custom padding */
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    position: relative;
    /* For badge positioning */
    text-decoration: none;
    /* For if we wrap in <a> */
    color: inherit;
    display: block;
    /* Ensure anchor acts as block */
}

.sneaker-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    font-family: var(--font-main);
}

.card-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    /* border-radius: 12px; Removed for cleaner edge-to-edge look if desired, or keep */
    background: #f5f5f5;
    /* Light background like the reference image */
}

.slides img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-info {
    padding: 1rem;
    text-align: left;
    /* Align left as per reference */
}

.card-info .brand {
    font-size: 1.1rem;
    font-weight: 800;
    /* Bold */
    margin-bottom: 0.2rem;
    color: var(--text-color);
    text-transform: uppercase;
}

.card-info .model {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.current-price {
    color: var(--text-color);
    /* White or Theme Color */
    font-weight: 700;
    font-size: 1.2rem;
}

/* Common form styles removal or update if needed */
.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-family: var(--font-main);
    width: 300px;
    outline: none;
}

.newsletter-form button {
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

/* Showcase Section */
.showcase-section {
    padding: 4rem 5%;
    background: var(--bg-color);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    height: 600px;
}

.showcase-item {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #111;
    background-image: radial-gradient(circle at center, #222 0%, #000 100%);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-text-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.showcase-brand {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-color);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.showcase-model {
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.showcase-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-main);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: fit-content;
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.showcase-btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .showcase-item {
        height: 400px;
    }

    .showcase-brand {
        font-size: 1.8rem;
    }

    .showcase-model {
        font-size: 1.1rem;
    }

    .showcase-content {
        padding: 1.5rem;
    }

    .showcase-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question .chevron {
    transition: transform 0.3s ease;
}

.faq-question.active .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* New Footer Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.address-text,
.purpose-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.social-link.whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
}

.social-link.trendyol:hover {
    border-color: #F27A1A;
    color: #F27A1A;
}

.social-link.instagram:hover {
    border-color: #E1306C;
    color: #E1306C;
}

.copyright-text {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-link:hover {
        transform: translateY(-5px);
    }
}

/* Marquee Section */
.marquee-section {
    padding: 2rem 0;
    background: var(--text-color);
    color: var(--bg-color);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

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

.marquee-text {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Custom Modal System */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.custom-modal {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    width: 90%;
    max-width: 450px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.custom-modal-overlay.active .custom-modal {
    transform: scale(1);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: capitalize;
}

.modal-message {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: var(--font-main);
    text-decoration: none;
}

.modal-btn.primary {
    background: #fff;
    color: #000;
}

.modal-btn.primary:hover {
    background: #e0e0e0;
}

.modal-btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-btn.secondary:hover {
    border-color: #fff;
    color: var(--accent-color);
    font-weight: 900;
}

.marquee-icon {
    width: 30px;
    height: 30px;
    color: var(--accent-color);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Card Slider Styles */
.card-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slides img.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    transition: background 0.3s ease;
    opacity: 0;
    /* Hidden by default */
}

.card-slider:hover .slider-btn {
    opacity: 1;
    /* Show on hover */
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

/* Product Detail Page Styles */
.product-page {
    padding-top: var(--nav-height);
    min-height: 100vh;
    background: var(--bg-color);
}

.product-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5%;
    align-items: start;
}

/* Gallery Styles */
.gallery-container {
    display: flex;
    gap: 20px;
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
}

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

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.thumb:hover,
.thumb.active {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.1);
}

.main-image-frame {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.main-image-frame img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-image-frame:hover img {
    transform: scale(1.05);
}

/* Detail Content Styles */
.detail-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1rem;
}

.product-subtitle {
    order: -2;
    /* Move Brand above Title */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0px;
    margin-top: 0;
}

.product-title {
    order: -1;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.5px;
    color: var(--text-color);
    margin-top: -1rem;
    /* Visual balance after reorder */
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 500;
    /* More elegant than 700 */
    color: #ffffff;
    /* White for luxury instead of generic red */
    margin: 0.5rem 0 1.5rem 0;
    letter-spacing: -1px;
}

.description-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
}

.description-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.description-box p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.model-code {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.size-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.size-btn {
    padding: 1rem 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-main);
    font-weight: 600;
}

.size-btn:hover {
    border-color: var(--text-color);
}

.size-btn.active {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

.add-to-cart-btn {
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    padding: 1.2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    background: #ccc;
}

.trust-badges {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.badge-item::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
}

/* Responsive Product Page */
@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gallery-container {
        position: relative;
        top: 0;
        flex-direction: column-reverse;
    }

    .thumbnails {
        flex-direction: row;
        justify-content: center;
    }

    .detail-content {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }

    .size-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .thumb {
        width: 60px;
        height: 60px;
    }
}

/* Similar Products Section Styles */
.similar-products-section {
    padding: 0 5% 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.similar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.slider-nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

.products-carousel-wrapper {
    width: 100%;
    overflow: hidden;
}

.products-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    padding-bottom: 1rem;
    /* Space for hover effects if needed */
}

.products-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* Simplified Card Style for Slider */
.simple-card {
    width: 280px;
    /* Fixed width for equality */
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    color: inherit;
    height: 100%;
    /* Ensure full height usage */
}

.simple-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
}

.card-image-box {
    width: 100%;
    height: 180px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .simple-card {
        min-width: 200px;
    }
}

/* Cart Page Styles */
.cart-page {
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 4rem;
    min-height: 100vh;
}

.cart-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.cart-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-color);
    letter-spacing: -1px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.cart-items-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
}

.cart-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.cart-items-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.clear-cart-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.clear-cart-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.empty-cart-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.empty-cart-message svg {
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-cart-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.empty-cart-message p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.cart-item-variant {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cart-item-size {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.cart-item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: auto;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.5rem;
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-family: var(--font-main);
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.quantity {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
}

.cart-item-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
}

.remove-item-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-item-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(255, 62, 62, 0.1);
}

/* Order Summary */
.cart-summary-section {
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
    height: fit-content;
}

.order-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
}

.order-summary h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.summary-row.total-row {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 0.5rem;
}

.free-shipping {
    color: var(--accent-color);
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 1rem 0;
}

.checkout-btn {
    width: 100%;
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    padding: 1.2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    background: #ccc;
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.trust-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.trust-item svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: var(--text-color);
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

/* User dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 180px;
    display: none;
    flex-direction: column;
    z-index: 1200;
}

.user-dropdown.open {
    display: flex;
}

.user-dropdown.hidden {
    display: none;
}

.user-dropdown-item {
    display: block;
    padding: 10px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 0.95rem;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.user-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Responsive Cart */
@media (max-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary-section {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .cart-title {
        font-size: 2rem;
    }

    .cart-item {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }

    .cart-item-controls {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--glass-border);
    }

    .cart-item-image {
        width: 100px;
        height: 100px;
    }

    .cart-item-name {
        font-size: 1rem;
    }
}

/* Toast */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1200;
    backdrop-filter: blur(10px);
    max-width: 300px;
}

.toast.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Confirm modal */
.confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1300;
    padding: 1rem;
}

.confirm-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.confirm-dialog {
    background: rgba(14, 14, 14, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
}

.confirm-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-color);
}

.confirm-message {
    margin: 0 0 1.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.confirm-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.btn-primary,
.btn-secondary {
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-main);
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: var(--text-color);
    color: var(--bg-color);
}

.btn-primary:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.15);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: #ffffff;
    color: #111111;
    z-index: 1400;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.search-overlay.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.search-overlay-inner {
    width: 100%;
    max-width: 1400px;
    padding: 0 5%;
}

.search-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    font-family: var(--font-main);
}

.search-overlay-title {
    font-size: 1.2rem;
    font-weight: 500;
}

.search-overlay-close {
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-main);
    font-size: 0.95rem;
    cursor: pointer;
    color: #111111;
}

.search-overlay-close .close-icon {
    font-size: 1.1rem;
}

.search-overlay-body {
    width: 100%;
}

.search-input-row {
    position: relative;
    margin-bottom: 40px;
}

.search-input-row input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-family: var(--font-main);
    padding: 0 0 10px 0;
    color: #111111;
}

.search-input-row input::placeholder {
    color: #b0b0b0;
}

.search-input-underline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #444444;
}

.search-results-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: #444444;
}

.search-results-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.search-breadcrumb {
    font-size: 0.95rem;
    color: #7a7a7a;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
}

.search-result-item {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-result-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Search Results Page */
.search-page-body {
    background: var(--bg-color);
    color: var(--text-color);
}

.search-page {
    padding: 60px 8%;
    max-width: 1400px;
    margin: 0 auto;
    font-family: var(--font-main);
}

.search-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.search-page-breadcrumb {
    font-size: 1rem;
    color: #7a7a7a;
}

.search-page-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    color: var(--text-color);
}

.search-page-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.search-page-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-color);
}

.search-page-toolbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-page-sort select {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-color);
}

.search-page-count {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.search-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
}

.search-page-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    padding: 16px;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.search-page-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

.search-page-image-box {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
}

.search-page-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.search-page-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
}

.search-page-variant {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.search-page-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Auth Page */
.auth-body {
    background: var(--bg-color);
    color: var(--text-color);
}

.auth-wrapper {
    max-width: 480px;
    margin: 0 auto;
    padding: calc(var(--nav-height) + 40px) 1.5rem 80px;
    text-align: center;
}

.auth-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 32px;
}

.auth-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(8px);
}

.auth-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    cursor: pointer;
}

.auth-tab.active {
    color: var(--text-color);
    border-color: var(--text-color);
}

.auth-panels {
    text-align: left;
}

.auth-panel {
    display: none;
}

.auth-label {
    display: block;
    margin: 14px 0 6px 0;
    font-weight: 600;
}

.auth-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-color);
    font-family: var(--font-main);
}

.auth-remember {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.auth-checkbox input {
    width: 18px;
    height: 18px;
}

.auth-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-decoration: none;
}

.auth-primary-btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: var(--text-color);
    color: var(--bg-color);
    font-weight: 800;
    margin-top: 12px;
    cursor: pointer;
}

.auth-social {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: #1a73e8;
    color: #fff;
    text-align: center;
    font-weight: 700;
    margin-bottom: 16px;
}

.auth-hint,
.auth-legal {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 10px 0;
}

/* Dashboard */
.dashboard-body {
    background: var(--bg-color);
    color: var(--text-color);
}

.dashboard-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(var(--nav-height) + 40px) 5% 80px;
}

.dashboard-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 32px;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

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

.dash-sidebar a {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
}

.dash-sidebar a.active {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: transparent;
}

.dash-sidebar a.dashboard-logout {
    color: #ff6b6b;
    border-color: #ff6b6b55;
}

.dash-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dash-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 18px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .search-page {
        padding: 32px 1.5rem;
    }

    .search-page-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .search-overlay-inner {
        padding: 0 1.5rem;
    }

    .search-overlay-header {
        margin-bottom: 40px;
    }
}