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

html {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --side-width: 30%;
    --bg-page: #f5f4f0;
}

body {
    margin-bottom: 80px;
    color: #111;
    background: var(--bg-page);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* ===== NAVIGATION ===== */
nav a { color: #111; }
nav a::after { background: #111; }
nav { 
    background-color: #f5f4f0;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
 }
.menu-toggle span { background: #111; }

/* ===== PAGE HEADER ===== */
.page-header {
    text-align: center;
    padding: 60px 20px 20px;
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: 100%;
}
.page-header img {
    width: 300px;
    height: auto;
    max-width: 100%;
}

/* ===== MAIN CONTAINER ===== */
.container {
    display: flex;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

/* ===== FIXED LEFT + RIGHT SIDES ===== */
.side {
    width: var(--side-width);
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100vh;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    pointer-events: none;
    transition: none;
}

.side.scrolled {
    position: absolute;
    top: auto;
    bottom: 0;
    height: 100vh;
}

.left-side { 
    left: 0; 
}

.right-side { 
    right: 0; 
}

.card-wrap {
    width: 92%;
    max-width: 100%;
    background: #fff;
    padding: 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    pointer-events: all;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        30px 100%,
        0 calc(100% - 30px)
    );
}

/* ===== LEFT CARD ===== */
.title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.left-card h3 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 1.5;
}
.edition {
    font-size: 11px;
    color: #000;
    white-space: nowrap;
}
.price {
    margin-top: 10px;
    font-weight: 350;
    font-size: 13px;
}

/* ===== ACCORDION ===== */
.accordion { margin-top: 18px; }
.acc-item { border-bottom: 1px solid #eee; }
.acc-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-weight: 550;
    font-size: 12px;
    letter-spacing: 0.4px;
    user-select: none;
}

/* ===== ACCORDION TOGGLE WITH ROTATION ===== */
.acc-toggle { 
    font-size: 11px; 
    color: #111; 
    flex-shrink: 0;
    cursor: pointer;
    user-select: none;
    
    /* Smooth rotation transition */
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Make it more interactive */
    display: inline-block;
    padding: 5px;
    margin: -5px;
}

/* Rotate on accordion item hover */
.acc-item:hover .acc-toggle {
    transform: rotate(90deg);
}

/* Optional: Keep rotated when expanded */
.acc-item.active .acc-toggle {
    transform: rotate(90deg);
}

/* Scale on hover for extra effect */
.acc-toggle:hover {
    transform: scale(1.1) rotate(90deg);
}

/* ===== ACCORDION BODY ===== */
.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, padding 0.32s ease;
    padding: 0;
    font-size: 11px;
    line-height: 1.5;
    color: #222;
    display: none;
}
.acc-body.open { padding: 0 0 18px 0; }

/* ===== CENTER SCROLL AREA ===== */
.middle {
    margin-left: var(--side-width);
    margin-right: var(--side-width);
    width: calc(100% - (2 * var(--side-width)));
    max-width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}
.scroll-content {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
}
.scroll-content::-webkit-scrollbar { display: none; }
.scroll-content img {
    width: 500px;
    height: 500px;
    display: block;
    margin: 100px auto !important;
    object-fit: contain !important;
    margin-bottom: 50px;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        80px 100%,
        0 calc(100% - 80px)
    );
}

/* ===== RIGHT CARD ===== */
.right-card { text-align: left; }
.sizes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.sizes button {
    padding: 8px 14px;
    border: 1px solid #ddd;
    background: #f5f3f0;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.2s ease;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
}
.sizes button:hover,
.sizes button.active {
    background: #111;
    color: #fff;
    border-color: #111;
}
.choose-row {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.btn-primary {
    background: #111;
    color: #fff;
    border: 0;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 11px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
}
.btn-primary:hover { background: #333; }
.btn-secondary {
    background: #f5f4f0;
    border: 1px solid #ddd;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 11px;
    text-decoration: none;
    color: #111;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
}
.btn-secondary:hover { border-color: #111; }

/* ===== CAROUSEL - Hidden on desktop ===== */
.carousel-container { display: none; }

/* ===== KEY ELEMENTS SECTION - FULLY RESPONSIVE ===== */
.key-elements-section {
    padding: 80px 0 100px;
    background: var(--bg-page);
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}

.section-header {
    margin-bottom: 50px;
    padding: 0 40px;
}

.section-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #111;
}

.scroll-hint {
    display: none;
}

.h-scroll-outer {
    position: relative;
    width: 100%;
    max-width: 100%;
}

/* ===== DESKTOP: 5 columns with spacing ===== */
.h-scroll-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 100%;
    padding: 0 40px;
}

/* ===== KEY CARD - Desktop ===== */
.key-card {
    width: 100%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        25px 100%,
        0 calc(100% - 25px)
    );
}

.key-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.key-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px 10px 30px;
    background: #fff;
}

.key-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.key-card-body { 
    padding: 12px 14px 16px;
    background: #fff;
}

.key-card-tag {
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4a74f;
    font-weight: 600;
    margin-bottom: 6px;
}

.key-card-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    color: #111;
    line-height: 1.3;
}

.key-card-desc {
    font-size: 10px;
    line-height: 1.5;
    color: #777;
}

.h-scroll-nav {
    display: none;
}

/* ===== ACCORDION MODAL ===== */
.acc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s;
}

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

.acc-modal-card {
    background: #fff;
    max-width: 400px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 35px;
    position: fixed;
    left: 50px;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        30px 100%,
        0 calc(100% - 30px)
    );
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.4s ease;
}

.acc-modal-overlay.active .acc-modal-card {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

.acc-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: #fff;
    color: #444;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10;
}

.acc-modal-close:hover {
    transform: rotate(90deg);
}

.acc-modal-header {
    padding-right: 50px;
    padding-bottom: 10px;
}

.acc-modal-title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111;
}

.acc-modal-body {
    font-size: 12px;
    line-height: 2.5;
    color: #000;
}

/* ===== PRE-ORDER FORM MODAL CSS (MATCHING common.css waitlist modal) ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

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

.modal-content {
    background: white;
    width: 90%;
    max-width: 350px;
    padding: 10px 10px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        30px 100%,
        0 calc(100% - 30px)
    );
}

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

/* ===== MODAL CLOSE BUTTON WITH ROTATION (MATCHING common.css) ===== */
.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 35px;
    height: 35px;
    color: white;
    border: none;
    background: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
}

/* Rotate on hover (MATCHING common.css) */
.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: #fff;
}

.modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Support for logo image in close button */
.modal-close img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0);
    transition: filter 0.3s ease;
}

.modal-close:hover img {
    filter: brightness(0.8);
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.modal-header h2 {
    font-size: 12px;
    font-weight: 400;
    margin: 0 0 10px 0;
    color: #000;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
}

.modal-header p {
    font-size: 12px;
    margin: 0;
    color: #666;
}

.modal-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-input {
    width: 100%;
    padding: 12px 20px;
    border: 1px dashed #9D9688;
    font-size: 12px;
    font-family: "Roboto", sans-serif;
    transition: background 0.3s ease;
    color: #000;
    caret-color: #000;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
}

.form-input:focus {
    outline: none;
    background: #ebebeb;
}

.form-input::placeholder {
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    border: 1px dashed #9D9688;
    font-size: 12px;
    font-family: "Roboto", sans-serif;
    transition: background 0.3s ease;
    color: #000;
    caret-color: #000;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
}

.form-control:focus {
    outline: none;
    background: #ebebeb;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.modal-submit {
    width: auto;
    padding: 16px 50px;
    background: #000;
    color: white;
    border: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    display: block;
    margin: 0 auto;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
}

.modal-submit:hover {
    background: #333;
}

.modal-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.modal-submit .btn-text {
    display: inline;
}

.modal-submit .spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.modal-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.modal-footer img {
    max-width: 120px;
    height: auto;
}

/* Order Summary Box (MATCHING common.css style) */
.order-summary-box {
    background: #f5f4f0;
    padding: 16px;
    margin: 20px 0;
}

.order-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.order-row span:first-child {
    color: #666;
}

.order-row span:last-child {
    font-weight: 600;
    color: #111;
}

.order-row.total {
    padding-top: 12px;
    border-top: 2px solid #ddd;
    margin-top: 8px;
    font-size: 16px;
}

/* Success message (MATCHING common.css) */
.success-message {
    display: none;
    text-align: center;
    padding: 20px;
}

.success-message.active {
    display: block;
}

.success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 28px;
    margin: 0 0 15px 0;
    color: #000;
}

.success-message p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Force modal display override */
.modal-overlay#preorderModal {
    z-index: 99999 !important;
}

/* ===== IMAGE ZOOM MODAL ===== */
/* ===== IMAGE ZOOM MODAL - SMOOTH & RESPONSIVE ===== */

.image-zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(2px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
    padding: 20px;
}

.image-zoom-overlay.active {
    display: flex;
    opacity: 1;
}

.zoom-content {
    max-width: 95%;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 2px;
}

/* ===== MAIN ZOOMABLE IMAGE ===== */
.zoom-content img {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    
    /* SMOOTH TRANSITIONS */
    transition: transform 0.2s ease-out;
    transform-origin: center center;
    cursor: zoom-in;
    user-select: none;
    
    /* Animated entrance */
    animation: smoothZoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        50px 100%,
        0 calc(100% - 50px)
    );
}

@keyframes smoothZoomIn {
    from { 
        transform: scale(0.95); 
        opacity: 0;
    }
    to { 
        transform: scale(1); 
        opacity: 1;
    }
}

/* When zoomed in, show grab cursor */
.zoom-content img[style*="scale(1"] {
    cursor: grab;
}

/* Grabbing state */
.zoom-content img.grabbing {
    cursor: grabbing !important;
}

/* ===== CLOSE BUTTON - SMOOTH ROTATION ===== */
.zoom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #000;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* SMOOTH TRANSITIONS */
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    z-index: 100001;
    line-height: 1;
    padding: 0;
    backdrop-filter: blur(10px);
    
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        8px 100%,
        0 calc(100% - 8px)
    );
}

.zoom-close:hover {
    background: #fff;
    border-color: #fff;
    transform: rotate(90deg) scale(1.15);
}

.zoom-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* ===== ZOOM LEVEL INDICATOR ===== */
.zoom-level-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    z-index: 100001;
    min-width: 70px;
    text-align: center;
    backdrop-filter: blur(10px);
    
    /* Smooth fade in */
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ZOOM INSTRUCTIONS ===== */
.zoom-instructions {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.85);
    color: #000;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 100001;
    max-width: 220px;
    line-height: 1.6;
    backdrop-filter: blur(10px);
    
    /* Smooth fade in */
    animation: fadeInUp 0.4s ease 0.1s both;
}

/* ===== ZOOM CONTROL BUTTONS ===== */
.zoom-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 100001;
    animation: fadeInDown 0.4s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zoom-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* SMOOTH TRANSITIONS */
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    backdrop-filter: blur(10px);
}

.zoom-btn:hover {
    background: #fff;
    border-color: #fff;
    transform: scale(1.1);
}

.zoom-btn:active {
    transform: scale(0.95);
}

/* ===== RESET BUTTON ===== */
.reset-zoom-btn {
    position: absolute;
    top: 70px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #000;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
    z-index: 100001;
    
    /* SMOOTH TRANSITIONS */
    transition: all 0.2s ease;
    
    backdrop-filter: blur(10px);
}

.reset-zoom-btn:hover {
    background: #fff;
    border-color: #fff;
    transform: scale(1.05);
}

.reset-zoom-btn:active {
    transform: scale(0.95);
}

/* ===== KEYBOARD SHORTCUTS HINT ===== */
.keyboard-shortcuts {
    position: absolute;
    top: 75px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    z-index: 100001;
    max-width: 150px;
    line-height: 1.5;
    backdrop-filter: blur(10px);
    
    animation: fadeInUp 0.4s ease 0.2s both;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .image-zoom-overlay {
        padding: 10px;
    }
    
    .zoom-content {
        max-width: 100%;
        max-height: 100vh;
    }
    
    .zoom-content img {
        max-height: 100vh;
    }
    
    .zoom-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .zoom-controls {
        top: 15px;
        left: 15px;
        gap: 8px;
    }
    
    .zoom-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .reset-zoom-btn {
        top: 60px;
        left: 15px;
        font-size: 10px;
        padding: 6px 10px;
    }
    
    .zoom-level-indicator {
        bottom: 15px;
        right: 15px;
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .zoom-instructions {
        bottom: 15px;
        left: 15px;
        font-size: 10px;
        padding: 10px 12px;
        max-width: 180px;
    }
    
    .keyboard-shortcuts {
        display: none;
    }
}

@media (max-width: 480px) {
    .zoom-controls,
    .keyboard-shortcuts {
        display: none;
    }
    
    .zoom-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .reset-zoom-btn {
        font-size: 9px;
        padding: 5px 8px;
    }
    
    .zoom-level-indicator {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* ===== SMOOTH SCROLL BEHAVIOR ===== */
html {
    scroll-behavior: smooth;
}

/* ===== DISABLE SELECTION DURING ZOOM =====  */
.image-zoom-overlay {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Hide logo and navigation ONLY when zoom is active */
body.zoom-active .page-header,
body.zoom-active header,
body.zoom-active nav {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Desktop only - clickable images with hover */
@media (min-width: 821px) {
    .scroll-content img {
        cursor: zoom-in;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .scroll-content img:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
}

/* =============================================
   RESPONSIVE - TABLET (max 820px)
============================================= */
@media (max-width: 820px) {
    :root { --side-width: 0px; }

    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    body { overflow-y: auto; }

    .page-header { padding: 30px 20px 10px; }
    .page-header img { width: 180px; }

    .container {
        flex-direction: column;
        height: auto;
        gap: 0;
        overflow: visible;
        width: 100%;
        max-width: 100%;
    }

    .side {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 20px 16px;
        pointer-events: all;
        display: block;
    }

    .card-wrap {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        pointer-events: all;
    }

    /* ORDER: carousel → left info → right size */
    .middle {
        order: 1;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0;
        overflow: hidden;
    }
    .left-side { order: 2; }
    .right-side { order: 3; }

    /* Hide desktop scroll, show carousel */
    .scroll-content { display: none; }
    .carousel-container {
        display: block;
        width: 100%;
        max-width: 100%;
        background: var(--bg-page);
        padding-bottom: 10px;
        overflow: hidden;
    }

    /* Carousel wrapper */
    .carousel-wrapper {
        width: 100%;
        max-width: 100%;
        height: 100vw;
        max-height: 360px;
        min-height: 420px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background: #eee9e3;
    }
    .carousel-track {
        display: flex;
        height: 100%;
        width: 100%;
        transition: transform 0.35s ease;
        will-change: transform;
    }
    .carousel-slide {
        min-width: 100%;
        max-width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
        flex-shrink: 0;
        overflow: hidden;
    }
    .carousel-slide img {
        width: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
        margin: auto;
    }

    /* Carousel nav arrows */
    .carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.9);
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    .carousel-nav.prev { left: 12px; }
    .carousel-nav.next { right: 12px; }

    /* Carousel dots */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 14px 0 6px;
    }
    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ccc;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }
    .carousel-dot.active {
        width: 24px;
        border-radius: 6px;
        background: #111;
    }

    .left-side { padding: 16px 16px 8px; }
    .right-side { padding: 8px 16px 24px; }

    .sizes { gap: 8px; margin-top: 10px; }
    .sizes button {
        padding: 10px 16px;
        font-size: 12px;
    }
    .choose-row { margin-top: 14px; gap: 10px; }
    .btn-primary,
    .btn-secondary {
        flex: 1;
        justify-content: center;
        padding: 12px 10px;
        font-size: 11px;
    }

    .acc-header { padding: 14px 0; font-size: 11px; }

    /* ===== KEY ELEMENTS - TABLET RESPONSIVE ===== */
    .key-elements-section {
        padding: 50px 0 60px;
    }
    
    .section-header {
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    /* Tablet: 2 columns grid */
    .h-scroll-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .key-card {
        clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            20px 100%,
            0 calc(100% - 20px)
        );
    }
    
    .key-card-image { 
        height: 220px;
        padding: 30px 20px 10px 20px;
    }
    
    .key-card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    
    .key-card-body { 
        padding: 12px 14px 16px; 
    }
    
    .key-card-tag {
        font-size: 7px;
    }
    
    .key-card-title { 
        font-size: 10px; 
    }
    
    .key-card-desc { 
        font-size: 9px;
        line-height: 1.4;
    }

    .acc-modal-card {
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        padding: 28px 22px;
        max-height: 85vh;
        max-width: 90%;
    }
    
    .acc-modal-overlay.active .acc-modal-card {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .acc-modal-close {
        width: 32px;
        height: 32px;
        top: 16px;
        right: 16px;
    }

    .modal-content {
        padding: 40px 30px;
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    /* Image zoom modal - tablet */
    .zoom-close {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    
    .zoom-content {
        max-width: 95%;
        max-height: 85vh;
    }
}

/* =============================================
   RESPONSIVE - MOBILE (max 480px)
============================================= */
@media (max-width: 480px) {
    .page-header img { width: 150px; }

    .carousel-wrapper {
        height: 65vw;
        max-height: 280px;
    }

    .card-wrap { padding: 16px; }

    .sizes button {
        padding: 9px 13px;
        font-size: 11px;
    }

    /* ===== KEY ELEMENTS - MOBILE RESPONSIVE ===== */
    .key-elements-section { 
        padding: 40px 0 50px; 
    }
    
    .section-header {
        margin-bottom: 25px;
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 10px;
    }

    /* Mobile: 1 column grid */
    .h-scroll-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .key-card {
        clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            15px 100%,
            0 calc(100% - 15px)
        );
    }
    
    /* Mobile: proper image container */
    .key-card-image { 
        height: 200px;
        padding: 25px 30px 10px 30px;
    }
    
    .key-card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    
    .key-card-body { 
        padding: 10px 12px 14px; 
    }
    
    .key-card-tag {
        font-size: 7px;
    }
    
    .key-card-title {
        font-size: 10px;
        margin-bottom: 5px;
    }
    
    .key-card-desc {
        font-size: 9px;
        line-height: 1.4;
    }
    
    .modal-close {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .modal-content {
        padding: 30px 20px;
    }
}

/* =============================================
   RESPONSIVE - VERY SMALL MOBILE (max 360px)
============================================= */
@media (max-width: 360px) {
    .key-elements-section { 
        padding: 30px 0 40px; 
    }
    
    .h-scroll-container {
        gap: 16px;
        padding: 0 12px;
    }
    
    .key-card-image { 
        height: 180px;
        padding: 20px 25px 10px 25px;
    }
    
    .key-card-tag {
        font-size: 6px;
    }
    
    .key-card-title {
        font-size: 9px;
    }
    
    .key-card-desc {
        font-size: 8px;
    }
}

/* ===== KEY CARD CAROUSEL STYLES ===== */

/* Carousel container inside card */
.key-card-carousel {
    width: 100%;
    position: relative;
}

/* Wrapper for carousel */
.carousel-wrapper-card {
    width: 100%;
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 30px 20px 0px 20px;
}

/* Track that moves */
.carousel-track-card {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

/* Individual slide */
.carousel-slide-card {
    min-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Image in carousel */
.carousel-slide-card img {
/*    width: 100%;
*/   width: 70%; 
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

/* Hover effect on image */
.key-card:hover .carousel-slide-card img {
    transform: scale(1.05);
}

/* Dots container */
.carousel-dots-card {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 0 0;
    background: #fff;
    padding-bottom: 10px;
}

/* Individual dot */
.carousel-dot-card {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

/* Active dot */
.carousel-dot-card.active {
    width: 16px;
    background: #111;
    border-radius: 3px;
}

/* Dot hover */
.carousel-dot-card:hover:not(.active) {
    background: #999;
}

/* ===== RESPONSIVE - TABLET ===== */
/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 820px) {
    .carousel-wrapper-card {
        height: 220px;
        padding: 25px 15px 0px 15px;
    }
    
    .carousel-dots-card {
        padding: 10px 0 0 0;
        padding-bottom: 8px;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 480px) {
   .carousel-wrapper {
    padding: 0 !important;    /* NO padding */
    margin: 0 !important;     /* NO margin */
}

.carousel-slide {
    padding: 0 !important;    /* NO padding */
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Covers full area */
    max-width: none;
    max-height: none;
}
}




/* ===== HOLD OBJECT MODAL - COMPLETE STYLES ===== */
        
        #holdModal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 9999;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow-y: auto;
        }
 
        #holdModal.show {
            display: flex;
        }
 
        .hold-modal-content {
            background: white;
            width: 100%;
            max-width: 550px;
            padding: 50px 40px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
/*            border-radius: 8px;
*/            animation: slideUp 0.4s ease;
            clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        30px 100%,
        0 calc(100% - 30px)
    );
        }
 
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
 
        .hold-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: #f5f5f5;
            border: none;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            color: #666;
            z-index: 10000;
        }
 
        .hold-modal-close:hover {
            transform: rotate(90deg);
        }
 
        .hold-modal-header {
            text-align: center;
            margin-bottom: 35px;
        }
 
        .hold-modal-header h2 {
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 2px;
            margin-bottom: 12px;
            color: #000;
            text-transform: uppercase;
        }
 
        .hold-modal-header p {
            font-size: 11px;
            color: #999;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
 
        .hold-form-group {
            margin-bottom: 28px;
        }
 
        .hold-form-label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            color: #666;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }
 
        /* ===== PRODUCTS GRID ===== */
        .hold-products-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 20px;
        }
 
        .hold-product-option {
            position: relative;
        }
 
        .hold-product-option input[type="checkbox"] {
            display: none;
        }
 
        .hold-product-option label {
            display: flex;
            flex-direction: column;
            padding: 16px;
            border: 1px dashed #9D9688;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }
 
        .hold-product-option label:hover {
            border-color: #999;
            background: #fafafa;
        }
 
        .hold-product-option input[type="checkbox"]:checked + label {
            border-color: #000;
            background: #000;
            color: white;
        }
 
        .hold-product-name {
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }
 
        .hold-product-price {
            font-size: 11px;
            opacity: 0.7;
            display: none;
        }
 
        .hold-product-option input[type="checkbox"]:checked + label .hold-product-price {
            opacity: 0.9;
        }
 
        /* ===== SELECTED SUMMARY ===== */
        .hold-selected-summary {
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            border: 1px dashed #9D9688;
            padding: 20px;
            margin-bottom: 25px;
            display: none;
            animation: fadeIn 0.3s ease;
        }
 
        .hold-selected-summary.show {
            display: block;
        }
 
        .hold-summary-title {
            font-size: 11px;
            font-weight: 600;
            color: #666;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
 
        .hold-summary-items {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 12px;
        }
 
        .hold-summary-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            padding: 6px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
 
        .hold-summary-item:last-child {
            border-bottom: none;
        }
 
        .hold-item-name {
            color: #333;
            font-weight: 500;
        }
 
        .hold-item-price {
            color: #000;
            font-weight: 600;
            display: none;
        }
 
        .hold-summary-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            border-top: 2px solid #000;
            margin-top: 12px;
            font-size: 13px;
            font-weight: 600;
            display: none;
        }
 
        .hold-total-label {
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
 
        .hold-total-value {
            color: #000;
            font-size: 15px;
        }
 
        /* ===== FORM INPUTS ===== */
        .hold-form-input {
            width: 100%;
            padding: 14px 14px;
            border: 1px dashed #9D9688;
            font-size: 13px;
            font-family: inherit;
            transition: all 0.3s ease;
            background: white;
            box-sizing: border-box;
        }
 
        .hold-form-input:focus {
            outline: none;
            border-color: #000;
            background: #fafafa;
        }
 
        .hold-form-input::placeholder {
            color: #bbb;
        }
 
        /* ===== SUBMIT BUTTON ===== */
        .hold-modal-submit {
            width: 100%;
            padding: 14px;
            background: #000;
            color: white;
            border: none;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
 
        .hold-modal-submit:hover:not(:disabled) {
            background: #333;
            letter-spacing: 2px;
        }
 
        .hold-modal-submit:disabled {
            background: #ccc;
            cursor: not-allowed;
        }
 
        .hold-spinner {
            display: none;
            width: 14px;
            height: 14px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
 
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
 
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
 
        /* ===== SUCCESS MESSAGE ===== */
        .hold-success-message {
            display: none;
            text-align: center;
            animation: fadeIn 0.4s ease;
        }
 
        .hold-success-message.show {
            display: block;
        }
 
        .hold-success-icon {
            width: 60px;
            height: 60px;
            background: #f5f5f5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: #000;
        }
 
        .hold-success-message h3 {
            font-size: 22px;
            font-weight: 400;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
 
        .hold-success-message p {
            font-size: 13px;
            color: #999;
            line-height: 1.6;
        }
 
        @media (max-width: 600px) {
            .hold-modal-content {
                padding: 35px 25px;
            }
            .hold-modal-header h2 {
                font-size: 22px;
            }
            .hold-products-grid {
                grid-template-columns: 1fr;
            }
        }




        /* ========== KEY CARD CAROUSEL - ARROW FIXES ========== */

/* Carousel Container */
.key-card-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Carousel Wrapper */
.carousel-wrapper-card {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Carousel Track */
.carousel-track-card {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease;
}

/* Carousel Slides */
.carousel-slide-card {
    flex: 0 0 100%;
    width: 100%;
}



/* ========== CAROUSEL ARROWS - CRITICAL FIX ========== */

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.7;
}


.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

/* Arrow Previous */
.carousel-arrow-prev {
    left: 10px;
}

/* Arrow Next */
.carousel-arrow-next {
    right: 10px;
}


/* ========== CAROUSEL DOTS ========== */

.carousel-dots-card {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.carousel-dot-card {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-dot-card:hover {
    background: #999;
}

.carousel-dot-card.active {
    background: #000;
    width: 24px;
    border-radius: 4px;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .carousel-arrow-prev {
        left: 5px;
    }
    
    .carousel-arrow-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .carousel-arrow-prev {
        left: 2px;
    }
    
    .carousel-arrow-next {
        right: 2px;
    }
}