:root {
    --bg-color: #0d0d0d;
    --text-color: #ffffff;
    --accent-color: #c4fb6d;
    /* Neon green accent from the hoodies */
    --secondary-color: #1a1a1a;
    --muted-color: #888888;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.tagline {
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--accent-color);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-toggle {
    background: none;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.lang-dropdown-toggle:hover {
    border-color: var(--accent-color);
    background: rgba(196, 251, 109, 0.05);
}

.lang-flag {
    font-size: 1.25rem;
    line-height: 1;
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--secondary-color);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 6px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: none;
    border: none;
    border-radius: 5px;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.lang-option.active {
    background: rgba(196, 251, 109, 0.1);
    color: var(--accent-color);
}

.lang-name {
    font-weight: 500;
}

.cart-icon {
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.cart-icon:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('assets/IMG_5892.jpeg') center 70%/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.4), var(--bg-color));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 0.9;
}

.hero .dot {
    color: var(--accent-color);
}

.tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

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

.btn.primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.btn.primary:disabled {
    background-color: var(--secondary-color);
    color: var(--muted-color);
    border: 1px solid var(--glass-border);
    transform: none;
    cursor: not-allowed;
    opacity: 0.6;
}

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

.btn.secondary:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    transform: translateY(-5px);
}

/* Product Section */
.featured-collection {
    padding: 8rem 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

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

.product-card {
    position: relative;
    background: var(--secondary-color);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    overflow: hidden;
}

.product-image {
    height: 400px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--accent-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.size-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.size-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-color);
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.size-btn.out-of-stock {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
    border-color: rgba(255, 255, 255, 0.05);
}

.size-btn.out-of-stock:hover {
    border-color: rgba(255, 255, 255, 0.05);
}

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

.size-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.low-stock-badge {
    font-size: 0.5rem;
    color: #ff4d4d;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    background-color: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.add-to-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-info .original-price {
    color: var(--muted-color);
    text-decoration: line-through;
    font-size: 0.9rem;
    font-weight: 400;
}

.discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 900;
    border-radius: 2px;
    z-index: 2;
}

/* About Section */
.brand-story {
    padding: 8rem 0;
    background-color: var(--secondary-color);
}

.brand-story .grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-text .section-title {
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--muted-color);
}

/* Newsletter */
.newsletter {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.9)), url('assets/IMG_4542.PNG') center/cover;
}

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

.newsletter p {
    margin-bottom: 2rem;
    color: var(--muted-color);
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    outline: none;
}

/* Footer */
footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

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

.footer-logo img {
    height: 80px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--muted-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--text-color);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* Basket Page */
.basket-page {
    padding: 10rem 0 5rem;
    min-height: 80vh;
}

.basket-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.basket-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.basket-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    align-items: center;
}

.basket-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
}

.item-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.item-details p {
    color: var(--muted-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.item-price {
    color: var(--accent-color);
    font-weight: 700;
}

.remove-btn {
    background: transparent;
    border: none;
    color: var(--muted-color);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.remove-btn:hover {
    color: #ff4d4d;
}

.basket-summary {
    background: var(--secondary-color);
    padding: 2rem;
    border: 1px solid var(--glass-border);
}

.customer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.customer-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.customer-form input,
.customer-form textarea {
    padding: 0.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: var(--transition);
}

.customer-form textarea {
    resize: vertical;
    min-height: 100px;
    /* Increased for better mobile visibility */
}

.form-hint {
    font-size: 0.7rem;
    color: var(--muted-color);
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
    display: block;
    font-style: italic;
}

.customer-form input:focus,
.customer-form textarea:focus {
    border-color: var(--accent-color);
}

.basket-summary h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--muted-color);
}

.summary-row.total {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-color);
    font-weight: 900;
    font-size: 1.2rem;
}

.basket-summary .btn {
    width: 100%;
    margin-top: 2rem;
    display: block;
    text-align: center;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    color: var(--muted-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.continue-shopping:hover {
    color: var(--text-color);
}

.empty-msg {
    text-align: center;
    padding: 4rem 0;
    color: var(--muted-color);
}

.empty-msg a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
}

#cart-count {
    background: var(--accent-color);
    color: var(--bg-color);
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border-radius: 50%;
    font-weight: 900;
    margin-left: 0.2rem;
    position: relative;
    top: -5px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .basket-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .basket-page {
        padding: 6rem 0 3rem;
    }

    .basket-item {
        grid-template-columns: 80px 1fr auto;
        gap: 1rem;
        padding-bottom: 1.5rem;
    }

    .basket-item img {
        height: 100px;
        width: 80px;
    }

    .item-details h4 {
        font-size: 0.9rem;
    }

    .item-details p {
        font-size: 0.8rem;
    }

    .remove-btn {
        font-size: 1rem;
    }

    .customer-form .form-row {
        grid-template-columns: 1fr;
    }

    .basket-summary {
        padding: 1.2rem;
    }

    .basket-summary h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .summary-row {
        font-size: 0.9rem;
    }

    .summary-row.total {
        font-size: 1.1rem;
        flex-wrap: wrap;
        /* Allow wrapping if price is long */
    }

    .summary-row span:last-child {
        word-break: keep-all;
        /* Keep DT together with price if possible */
        white-space: nowrap;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--muted-color);
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

.fade-in {
    animation: fadeIn 1.5s ease forwards;
}

.slide-up {
    animation: slideUp 1s ease 0.5s forwards;
    opacity: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .brand-story .grid {
        grid-template-columns: 1fr;
    }
}

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

    .hero {
        background-attachment: scroll;
        background-position: top center;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero .cta-group {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Checkout Loader Overlay */
.checkout-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.95);
    display: none;
    /* Hidden by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.checkout-loader-overlay.active {
    display: flex;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--glass-border);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin-loader 1s linear infinite;
    margin-bottom: 2rem;
}

.loader-text {
    font-family: 'Archivo', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-color);
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes spin-loader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-text {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Product Card Link */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-link .product-card {
    cursor: pointer;
}

.product-card-link:hover .product-card {
    border-color: var(--accent-color);
}

.view-product-btn {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.product-card-link:hover .view-product-btn {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

.image-count-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(6px);
    color: var(--text-color);
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 2px;
    z-index: 2;
    letter-spacing: 1px;
}

/* ========================= */
/* PRODUCT DETAIL PAGE       */
/* ========================= */

.product-page {
    padding: 8rem 0 5rem;
    min-height: 80vh;
}

.back-link {
    display: inline-block;
    color: var(--muted-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--accent-color);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 6rem;
}

.gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--secondary-color);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(6px);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 3;
}

.gallery-nav:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

.gallery-prev {
    left: 0.75rem;
}

.gallery-next {
    right: 0.75rem;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--glass-border) transparent;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 2px;
}

.gallery-thumb {
    flex: 0 0 72px;
    height: 90px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.5;
}

.gallery-thumb:hover {
    opacity: 0.8;
}

.gallery-thumb.active {
    border-color: var(--accent-color);
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Detail Info */
.product-detail-info {
    padding-top: 1rem;
}

.product-detail-name {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-detail-price .current-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-color);
}

.product-detail-price .original-price {
    font-size: 1.1rem;
    color: var(--muted-color);
    text-decoration: line-through;
}

.product-detail-divider {
    width: 100%;
    height: 1px;
    background: var(--glass-border);
    margin-bottom: 2rem;
}

.product-detail-section {
    margin-bottom: 2rem;
}

.product-detail-section h3 {
    font-size: 0.8rem;
    color: var(--muted-color);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.product-detail-section .size-selector {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-detail-section .size-btn {
    width: 48px;
    height: 48px;
    font-size: 0.85rem;
}

.product-detail-add {
    width: 100%;
    padding: 1.2rem;
    font-size: 0.95rem;
    letter-spacing: 3px;
    margin-top: 1rem;
}

.product-detail-add:not(:disabled):hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

.product-detail-add.active {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

/* Product Page Responsive */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
    }

    .product-detail-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .product-page {
        padding: 6rem 0 3rem;
    }

    .back-link {
        margin-bottom: 1.5rem;
        font-size: 0.7rem;
    }

    .product-detail-name {
        font-size: 1.5rem;
    }

    .product-detail-price .current-price {
        font-size: 1.3rem;
    }

    .gallery-thumb {
        flex: 0 0 56px;
        height: 70px;
    }

    .gallery-nav {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .product-detail-section .size-btn {
        width: 42px;
        height: 42px;
    }
}

/* More Products Section */
.more-products-section {
    padding: 5rem 0 4rem;
    margin-top: 4rem;
    border-top: 1px solid var(--glass-border);
    background: var(--secondary-color);
}

.more-products-section .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.more-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.more-products-grid .product-image {
    height: 320px;
}

@media (max-width: 768px) {
    .more-products-section {
        padding: 3rem 0;
        margin-top: 2rem;
    }

    .more-products-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .more-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .more-products-grid .product-image {
        height: 220px;
    }
}

/* ========================= */
/* TOAST NOTIFICATION        */
/* ========================= */

.toast-notification {
    position: fixed;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 1rem 2rem;
    font-family: 'Archivo', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 20000;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.toast-notification.show {
    top: 1.5rem;
}

.toast-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 900;
    margin-left: 0.5rem;
    transition: var(--transition);
}

.toast-link:hover {
    text-decoration: underline;
}

/* ========================= */
/* CONFIRMATION MODAL        */
/* ========================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(8px);
    z-index: 15000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
}

.modal-content {
    background: var(--secondary-color);
    border: 1px solid var(--glass-border);
    max-width: 500px;
    width: 100%;
    padding: 2.5rem;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

.modal-title {
    font-family: 'Archivo', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-align: center;
}

.modal-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.modal-section h4 {
    font-size: 0.7rem;
    color: var(--muted-color);
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.modal-section p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.modal-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.modal-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.modal-item-name {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    flex: 1;
}

.modal-item-detail {
    font-size: 0.75rem;
    color: var(--muted-color);
}

.modal-item-price {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 700;
}

.modal-total {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-family: 'Archivo', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.modal-total span:last-child {
    color: var(--accent-color);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.modal-actions .btn {
    flex: 1;
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
    cursor: pointer;
}

.modal-cancel-btn {
    background: transparent;
}

.modal-confirm-btn {
    cursor: pointer;
}

/* ========================= */
/* ORDER SUCCESS PAGE        */
/* ========================= */

.order-success-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.order-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--bg-color);
    font-size: 2.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.order-success-title {
    font-family: 'Archivo', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 0.8rem;
}

.order-success-subtitle {
    color: var(--muted-color);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.order-id-display {
    font-family: 'Archivo', sans-serif;
    font-size: 0.85rem;
    color: var(--muted-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 1rem 2rem;
    background: rgba(196, 251, 109, 0.08);
    border: 1px solid rgba(196, 251, 109, 0.2);
    display: inline-block;
}

.order-id-display strong {
    color: var(--accent-color);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-left: 0.5rem;
}

.order-success-card {
    background: var(--secondary-color);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    text-align: left;
    margin-bottom: 2.5rem;
}

.order-success-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.order-success-section h4 {
    font-size: 0.7rem;
    color: var(--muted-color);
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.order-success-section p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.order-success-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item-row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 1rem;
    align-items: center;
}

.summary-item-img {
    width: 60px;
    height: 75px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
}

.summary-item-details h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.summary-item-details p {
    font-size: 0.75rem;
    color: var(--muted-color);
}

.summary-item-price {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
}

.order-success-total {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0 1rem;
    font-family: 'Archivo', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.order-success-total span:last-child {
    color: var(--accent-color);
}

.order-success-email-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted-color);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.order-success-email-note strong {
    color: var(--text-color);
}

.order-success-btn {
    display: inline-block;
    margin-top: 1rem;
}

/* Mobile adjustments for modals */
@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.1rem;
    }

    .modal-order-item {
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .order-success-title {
        font-size: 1.8rem;
    }

    .order-success-card {
        padding: 1.2rem;
    }

    .summary-item-row {
        grid-template-columns: 50px 1fr auto;
        gap: 0.8rem;
    }

    .summary-item-img {
        width: 50px;
        height: 62px;
    }
}

/* ========================= */
/* INFO PAGES (Shipping,     */
/* Returns, FAQ)             */
/* ========================= */

.info-page {
    padding: 8rem 0 5rem;
    min-height: 80vh;
}

.info-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.info-page-title {
    font-family: 'Archivo', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-page-subtitle {
    font-size: 1.1rem;
    color: var(--muted-color);
    max-width: 500px;
    margin: 0 auto;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Highlight Card */
.info-highlight-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(196, 251, 109, 0.08), rgba(196, 251, 109, 0.02));
    border: 1px solid rgba(196, 251, 109, 0.2);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.info-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-highlight-card h2 {
    font-family: 'Archivo', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 4px;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.info-highlight-card p {
    color: var(--muted-color);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-grid-two {
    grid-template-columns: repeat(2, 1fr);
}

/* Info Card */
.info-card {
    background: var(--secondary-color);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.4s ease;
}

.info-card:hover::after {
    width: 100%;
}

.info-card:hover {
    border-color: rgba(196, 251, 109, 0.3);
    transform: translateY(-4px);
}

.info-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.info-card p {
    color: var(--muted-color);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Info List */
.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    color: var(--muted-color);
    font-size: 0.9rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--glass-border);
    padding-left: 1.2rem;
    position: relative;
}

.info-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.info-list li:last-child {
    border-bottom: none;
}

/* Info Section */
.info-section {
    margin-bottom: 3rem;
}

.info-section-title {
    font-family: 'Archivo', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-align: center;
}

/* Info Table */
.info-table-wrapper {
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--secondary-color);
    border: 1px solid var(--glass-border);
}

.info-table th {
    font-family: 'Archivo', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(196, 251, 109, 0.05);
}

.info-table td {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: var(--muted-color);
    border-bottom: 1px solid var(--glass-border);
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.accent-text {
    color: var(--accent-color) !important;
    font-weight: 700;
}

/* Info Steps */
.info-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.info-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.step-number {
    font-family: 'Archivo', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(196, 251, 109, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.info-step h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.info-step p {
    color: var(--muted-color);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Contact Card */
.info-contact-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--secondary-color);
    border: 1px solid var(--glass-border);
    margin-top: 2rem;
}

.info-contact-card h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.info-contact-card p {
    color: var(--muted-color);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.info-contact-card .btn {
    max-width: 100%;
    white-space: nowrap;
}

/* FAQ Accordion */
.faq-section {
    margin-bottom: 3rem;
}

.faq-section .info-section-title {
    text-align: left;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.faq-item {
    border: 1px solid var(--glass-border);
    margin-bottom: 0.5rem;
    background: var(--secondary-color);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(196, 251, 109, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-color);
    font-family: 'Archivo', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--muted-color);
    font-size: 0.9rem;
    line-height: 1.8;
}

.faq-answer a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Scroll Reveal Animations */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Info Pages Responsive */
@media (max-width: 992px) {
    .info-page-title {
        font-size: 3rem;
    }

    .info-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .info-page {
        padding: 6rem 0 3rem;
    }

    .info-page-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .info-page-subtitle {
        font-size: 0.95rem;
    }

    .info-hero {
        margin-bottom: 2rem;
        padding: 2rem 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-grid-two {
        grid-template-columns: 1fr;
    }

    .info-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .info-step {
        padding: 1.5rem 1rem;
        text-align: left;
        display: grid;
        grid-template-columns: 60px 1fr;
        gap: 0 1rem;
        align-items: start;
    }

    .step-number {
        grid-row: 1 / 3;
        font-size: 2.5rem;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .info-highlight-card {
        padding: 2rem 1.5rem;
    }

    .info-highlight-card h2 {
        font-size: 1.4rem;
    }

    .info-section-title {
        font-size: 1.4rem;
    }

    .faq-question {
        font-size: 0.8rem;
        padding: 1rem 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .info-contact-card {
        padding: 2rem 1.5rem;
    }

    .info-contact-card h3 {
        font-size: 1.1rem;
    }

    .info-table th,
    .info-table td {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
}

/* Info Pages RTL */
body.rtl .info-page-title,
body.rtl .info-page-subtitle,
body.rtl .info-highlight-card,
body.rtl .info-contact-card {
    text-align: center;
}

body.rtl .faq-question {
    text-align: right;
    flex-direction: row-reverse;
}

body.rtl .faq-question::after {
    margin-left: 0;
    margin-right: 1rem;
}

body.rtl .faq-section .info-section-title {
    text-align: right;
}

body.rtl .info-list li {
    padding-left: 0;
    padding-right: 1.2rem;
}

body.rtl .info-list li::before {
    left: auto;
    right: 0;
    content: '←';
}

body.rtl .info-table th {
    text-align: right;
}

body.rtl .info-table td {
    text-align: right;
}

/* ========================= */
/* RTL SUPPORT (Arabic)      */
/* ========================= */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .navbar .container {
    flex-direction: row-reverse;
}

body.rtl nav ul {
    flex-direction: row-reverse;
}

body.rtl .nav-actions {
    flex-direction: row-reverse;
}

body.rtl .lang-switcher {
    margin-right: 0;
    margin-left: 1rem;
}

body.rtl .hero-content {
    text-align: center;
}

body.rtl .cta-group {
    flex-direction: row-reverse;
}

body.rtl .brand-story .grid {
    direction: rtl;
}

body.rtl .about-text {
    text-align: right;
}

body.rtl .footer-grid {
    direction: rtl;
}

body.rtl .footer-bottom {
    text-align: center;
}

/* Basket RTL */
body.rtl .basket-container {
    direction: rtl;
}

body.rtl .basket-item {
    direction: rtl;
    text-align: right;
}

body.rtl .basket-item-actions {
    flex-direction: row-reverse;
}

body.rtl .form-row {
    flex-direction: row-reverse;
}

body.rtl .form-hint {
    text-align: right;
}

body.rtl .summary-row {
    flex-direction: row-reverse;
}

body.rtl .continue-shopping {
    text-align: center;
}

/* Product RTL */
body.rtl .product-detail-info {
    text-align: right;
}

body.rtl .product-detail-price {
    justify-content: flex-end;
}

body.rtl .size-selector {
    justify-content: flex-start;
}

/* Order Success RTL */
body.rtl .order-success-container {
    text-align: center;
}

body.rtl .order-success-section {
    text-align: right;
}

body.rtl .order-success-total {
    flex-direction: row-reverse;
}

/* Modal RTL */
body.rtl .modal-content {
    text-align: right;
}

body.rtl .modal-total {
    flex-direction: row-reverse;
}

body.rtl .modal-actions {
    flex-direction: row-reverse;
}

body.rtl .modal-order-item {
    direction: rtl;
}