/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --text-color: #2a2a2a;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --hover-bg: #f5f5f5;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: var(--text-color);
    background-color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000;
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 40px 0 250px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    gap: 60px;
    position: relative;
}

.logo {
    position: absolute;
    left: 0;
    width: 250px;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-link {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    font-weight: 600;
    color: var(--text-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Pages */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
}

.page.active {
    display: block;
}

/* Home/Hero Section */
#home {
    padding-top: 0;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #ffffff;
    padding: 80px 40px 40px 250px;
}

.hero-image-container {
    width: 100%;
    max-width: 530px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
}

.container-left {
    max-width: 100%;
    margin: 0;
    padding: 100px 40px 100px 250px;
}

.text-content {
    max-width: 600px;
}

.text-content p {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.page-title {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 60px;
    text-align: left;
}

/* Series Layout */
.series-layout {
    display: flex;
    margin-bottom: 80px;
    position: relative;
    margin-left: -250px;
}

.series-layout:last-child {
    margin-bottom: 0;
}

/* Gallery wrapper for arrows */
.gallery-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Navigation arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.series-layout:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-nav-left {
    left: 10px;
}

.gallery-nav-right {
    right: 10px;
}

.series-sidebar {
    flex-shrink: 0;
    width: 250px;
    padding-left: 0;
    box-sizing: border-box;
    text-align: center;
}

.series-title {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    writing-mode: horizontal-tb;
    transform: translateX(-8px);
}

/* Gallery Grid (Series) - Vertical Layout */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    flex: 1;
    max-width: 60%;
}

.gallery-item {
    cursor: pointer;
}

.gallery-image {
    overflow: hidden;
    background-color: #f5f5f5;
    margin-bottom: 20px;
}

.gallery-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Portrait images: 2 side by side equal to 1 landscape width */
.gallery-item.portrait {
    width: calc((100% - 30px) / 2);
    flex-shrink: 0;
}

.gallery-item.portrait .gallery-image {
    aspect-ratio: 3/4;
}

.gallery-item.portrait .gallery-image img {
    height: 100%;
    object-fit: cover;
}

/* Landscape images: full width */
.gallery-item.landscape {
    width: 100%;
}

.gallery-item.landscape .gallery-image img {
    width: 100%;
    height: auto;
}

.gallery-info h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* Products Grid (Editions) - Same layout as Series */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    flex: 1;
    /* max-width: 90%; REMOVED to align with header */
    width: 100%;
    margin-left: -14px;
    /* Micro-adjustment for visual alignment */
}

.product-card {
    cursor: pointer;
    width: calc((100% - 60px) / 3);
    flex-shrink: 0;
}

/* Force standard ratio to keep grid aligned */
.product-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: #f5f5f5;
    margin-bottom: 0;
    /* Removing margin to maximize image relative to card */
}

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

/* Remove orientation specific overrides for Editions to keep strict grid */
.product-card.portrait,
.product-card.landscape {
    width: calc((100% - 60px) / 3);
}

.product-card.portrait .product-image,
.product-card.landscape .product-image {
    aspect-ratio: 3/4;
}

.product-card.portrait .product-image img,
.product-card.landscape .product-image img {
    height: 100%;
    object-fit: cover;
}


.product-info {
    margin-top: 15px;
    /* Add margin here instead */
    text-align: left;
    margin-left: 18px;
    /* Shift title right relative to image */
}

.product-info h3 {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
}

/* Product Modal - Redesigned */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 2000;
    overflow: hidden;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: 100%;
    height: 100%;
    max-width: 1400px;
    padding: 60px 80px;
    position: relative;
    display: flex;
    align-items: center;
}

.modal-close {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 32px;
    color: var(--text-color);
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    opacity: 0.6;
}

/* Cart icon in modal */
.modal-cart-icon {
    position: absolute;
    top: 30px;
    right: 80px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-color);
    transition: var(--transition);
}

.modal-cart-icon:hover {
    opacity: 0.7;
}

.modal-cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--text-color);
    color: white;
    font-size: 10px;
    font-weight: 500;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.modal-cart-count.show {
    opacity: 1;
    transform: scale(1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 120px);
    align-items: center;
}

.modal-gallery {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-main-image {
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-main-image img {
    max-width: 100%;
    max-height: calc(100vh - 160px);
    object-fit: contain;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
}

.modal-info h2 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 3px;
}

.modal-series {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.modal-year {
    font-size: 14px;
    color: var(--text-light);
}

.modal-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.modal-specs p,
.modal-materials,
.modal-certificate {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-light);
}

.modal-price {
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}

.size-selector {
    margin-top: 5px;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-option {
    padding: 10px 18px;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

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

.size-option.active {
    background-color: var(--text-color);
    color: white;
    border-color: var(--text-color);
}

.btn-acquire {
    width: 100%;
    padding: 16px 30px;
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-acquire:hover {
    background-color: var(--text-color);
    color: white;
}

.modal-shipping {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}

.modal-shipping a {
    color: var(--text-light);
    text-decoration: underline;
}

.modal-shipping a:hover {
    color: var(--text-color);
}

/* ================== IMAGE LIGHTBOX ================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3001;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-content {
    max-width: 95%;
    max-height: 90%;
    overflow: hidden;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content:active {
    cursor: grabbing;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 1px;
}

/* Make modal image clickable for lightbox */
.modal-main-image img {
    cursor: zoom-in;
}

/* ================== SKELETON LOADERS ================== */
.product-card {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.05s;
}

.product-card:nth-child(2) {
    animation-delay: 0.1s;
}

.product-card:nth-child(3) {
    animation-delay: 0.15s;
}

.product-card:nth-child(4) {
    animation-delay: 0.2s;
}

.product-card:nth-child(5) {
    animation-delay: 0.25s;
}

.product-card:nth-child(6) {
    animation-delay: 0.3s;
}

.product-card:nth-child(7) {
    animation-delay: 0.35s;
}

.product-card:nth-child(8) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Image fade-in on load */
.product-image img {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-image img.loaded {
    opacity: 1;
}

/* Skeleton placeholder */
.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.product-image img.loaded+.product-image::before,
.product-image:has(img.loaded)::before {
    display: none;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.product-image {
    position: relative;
}

/* Context Section */
.context-content {
    display: grid;
    gap: 60px;
}

.context-image {
    aspect-ratio: 4/3;
    background-color: #f5f5f5;
    margin-bottom: 40px;
}

.context-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.context-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.context-text p {
    font-size: 18px;
    line-height: 2;
    color: var(--text-light);
}

/* Contacts Section */
.contacts-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.contact-item a {
    font-size: 16px;
    color: var(--text-color);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--text-light);
}

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

.social-links {
    display: flex;
    gap: 40px;
    justify-content: center;
}

/* ================== SHOPPING CART ================== */

/* Nav Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Cart Icon */
.cart-icon {
    display: none;
    /* Hidden by default, shown only in Editions section via JS */
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-color);
    transition: var(--transition);
}

.cart-icon:hover {
    opacity: 0.7;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--text-color);
    color: white;
    font-size: 10px;
    font-weight: 500;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.cart-count.show {
    opacity: 1;
    transform: scale(1);
}

/* Cart Panel - Slide from right */
.cart-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cart-panel.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* Cart Header */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-header h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cart-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    line-height: 1;
}

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

/* Cart Items */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f5f5f5;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 100px;
    background-color: #f5f5f5;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 4px;
}

.cart-item-size {
    font-size: 12px;
    color: var(--text-light);
}

.cart-item-price {
    font-size: 14px;
    font-weight: 500;
}

.cart-item-remove {
    background: none;
    border: none;
    font-size: 12px;
    color: var(--text-light);
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: var(--text-color);
}

/* Cart Footer */
.cart-footer {
    padding: 30px;
    border-top: 1px solid #f0f0f0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
}

.btn-checkout {
    width: 100%;
    padding: 16px 30px;
    background-color: var(--text-color);
    color: white;
    border: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 12px;
}

.btn-checkout:hover {
    opacity: 0.85;
}

.btn-continue {
    width: 100%;
    padding: 14px 30px;
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid #ddd;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Cart Empty State */
.cart-empty {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 60px 30px;
    text-align: center;
}

.cart-empty p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cart-empty.show {
    display: flex;
}

.cart-footer.hidden {
    display: none;
}

.cart-items.hidden {
    display: none;
}

/* Added to Cart Animation */
@keyframes cartPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.cart-icon.pop {
    animation: cartPop 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Mobile Navigation */
    .nav-container {
        padding: 0 20px;
    }

    .logo {
        position: static;
        width: auto;
        text-align: left;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile Hero */
    .hero {
        padding: 80px 20px 40px 20px;
        justify-content: center;
    }

    .hero-image-container {
        max-width: 90%;
        width: 90%;
    }

    .hero-main-image {
        width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    /* Mobile Containers */
    .container,
    .container-left,
    .container-narrow {
        padding: 100px 20px 60px 20px;
    }

    .page-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    /* Mobile Series Layout */
    .series-layout {
        flex-direction: column;
        margin-left: 0;
        padding-left: 0;
    }

    .series-sidebar {
        position: static;
        width: 100%;
        padding-left: 0;
        text-align: left;
        margin-bottom: 20px;
    }

    .series-title {
        transform: none;
    }

    /* Mobile Gallery Grid */
    .gallery-grid {
        gap: 20px;
        max-width: 100%;
    }

    .gallery-item,
    .gallery-item.portrait,
    .gallery-item.landscape {
        width: 100%;
    }

    /* Mobile Products Grid */
    .products-grid {
        max-width: 100%;
        gap: 20px;
    }

    .product-card,
    .product-card.portrait,
    .product-card.landscape {
        width: 100%;
    }

    /* Mobile Modal - Full rewrite */
    .modal-content {
        padding: 0;
        height: 100%;
        overflow-y: auto;
        display: block;
    }

    .modal-close {
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 2010;
        background: white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .modal-cart-icon {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 2010;
        background: white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 60px 20px 30px 20px;
        max-height: none;
        height: auto;
        min-height: 100vh;
    }

    .modal-gallery {
        height: auto;
    }

    .modal-main-image {
        max-height: none;
    }

    .modal-main-image img {
        max-height: 50vh;
        width: 100%;
    }

    .modal-details {
        max-width: 100%;
        gap: 15px;
        padding-bottom: 30px;
    }

    .modal-info h2 {
        font-size: 18px;
    }

    .modal-specs {
        gap: 10px;
        margin-top: 5px;
    }

    .modal-price {
        font-size: 18px;
        margin-top: 10px;
    }

    .size-selector {
        margin-top: 10px;
    }

    .btn-acquire {
        padding: 14px 20px;
        font-size: 14px;
        letter-spacing: 2px;
    }

    .modal-shipping {
        margin-top: 10px;
    }

    /* Mobile Text */
    .text-content p {
        font-size: 16px;
    }

    .social-links {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .size-options {
        flex-direction: column;
    }

    .size-option {
        width: 100%;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Contact Section Styles - Smaller Font */
.contacts-content .contact-item a,
.contacts-content .contact-item {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
}


/* Custom Scrollbar - White, 4px */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #e0e0e0;
}

/* Content Section Loader */
.content-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    width: 100%;
    height: 200px;
}

.content-loader-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}