/* ============================================
   NTX SHOP - E-COMMERCE PRO
   ============================================ */

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.6rem 2rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-dark);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.announcement-content i { font-size: 0.9rem; }

.announcement-close {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--bg-dark);
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    padding: 0.25rem;
}

.announcement-close:hover { opacity: 1; }

body.has-announcement .header { top: 0; }
body.has-announcement .shop-header { top: 34px; }

/* ============================================
   SHOP HEADER / NAV
   ============================================ */
.shop-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.7rem 5%;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.shop-header .navbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-header .logo { margin-right: auto; }
.shop-header .logo img { height: 40px; width: auto; border-radius: 6px; }

.shop-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.shop-nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem;
    transition: var(--transition);
    border-radius: 6px;
}

.shop-nav-link:hover { color: var(--gold); background: rgba(201, 162, 39, 0.08); }
.shop-nav-link.active { color: var(--gold); }

.shop-nav-socials {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.shop-nav-socials a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    border-radius: 6px;
}

.shop-nav-socials a:hover { color: var(--gold); background: rgba(201, 162, 39, 0.08); }

.shop-nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shop-cart-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 10px;
    color: var(--text-gray);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.shop-cart-btn:hover {
    color: var(--gold);
    border-color: rgba(201, 162, 39, 0.4);
    background: rgba(201, 162, 39, 0.08);
}

.cart-nav-total {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 999px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-badge.visible { display: flex; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 100px 5% 0;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

body.has-announcement .breadcrumb { padding-top: 134px; }

.breadcrumb a { color: var(--text-gray); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.5rem; color: var(--text-muted); }
.breadcrumb span { color: var(--text-white); }

/* ============================================
   SHOP SECTION
   ============================================ */
.shop-section {
    padding: 2rem 5% 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-section-header {
    margin-bottom: 2.5rem;
}

.shop-section-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.shop-section-header h1 span {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-section-header p {
    font-size: 1rem;
    color: var(--text-gray);
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* Product Image */
.product-image {
    position: relative;
    width: 100%;
    padding-top: 110%;
    background: var(--bg-dark);
    overflow: hidden;
    cursor: pointer;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img { transform: scale(1.05); }
.product-out-of-stock:hover .product-image img { transform: none; }

.product-image-placeholder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    gap: 0.5rem;
}

.product-image-placeholder i { font-size: 3rem; color: rgba(201, 162, 39, 0.15); }

/* Quick View Overlay */
.product-image-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-card:not(.product-out-of-stock):hover .product-image-hover { opacity: 1; }
.product-image-hover i { color: var(--gold); }

/* Tags & Badges */
.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.3rem 0.7rem;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
    border-radius: 4px;
}

.tag-out-of-stock { background: rgba(255, 255, 255, 0.1); color: var(--text-gray); }
.tag-promo { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--bg-dark); }
.tag-limited { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--bg-dark); }

.product-discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.6rem;
    background: var(--bg-dark);
    color: var(--gold);
    border: 1px solid var(--gold);
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 2;
    border-radius: 4px;
}

/* Out of Stock */
.product-out-of-stock { }
.product-out-of-stock:hover { transform: none; box-shadow: none; }
.product-out-of-stock .product-image img { opacity: 0.75; }
.product-out-of-stock:hover .product-image img { transform: none; }

.out-of-stock-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.6rem;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.out-of-stock-overlay span {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Product Info */
.product-info {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.3rem;
    cursor: pointer;
    transition: color 0.2s;
}

.product-name:hover { color: var(--gold); }

.product-desc {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.product-original-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Size Selector */
.size-selector { margin-bottom: 0.8rem; }

.size-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
    display: block;
}

.size-options { display: flex; gap: 0.4rem; }

.size-btn {
    width: 40px;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-gray);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    border-radius: 4px;
    padding: 0.25rem;
    line-height: 1.2;
}

.size-btn:hover { border-color: var(--gold); color: var(--gold); }
.size-btn.active { background: var(--gold); border-color: var(--gold); color: var(--bg-dark); }
.size-btn.out-of-stock { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* Add to Cart */
.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none;
    color: var(--bg-dark);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    border-radius: 6px;
}

.btn-add-cart:hover { box-shadow: 0 6px 20px var(--gold-glow); transform: translateY(-1px); }
.btn-add-cart:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-add-cart.added { background: #28a745; }
.btn-add-cart.btn-sold-out {
    background: var(--bg-elevated);
    color: var(--text-muted);
    opacity: 0.7;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-add-cart.btn-coming-soon {
    background: var(--bg-elevated);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--gold);
    opacity: 0.8;
}

.stock-low {
    display: block;
    font-size: 0.45rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    margin-top: 1px;
}

.size-btn.active .stock-low { color: var(--bg-dark); }

.tag-coming-soon {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-dark);
}

/* ============================================
   PRODUCT MODAL
   ============================================ */
.product-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-modal-overlay.open { opacity: 1; visibility: visible; }

.product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--bg-main);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    z-index: 10001;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-modal.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

/* Modal Gallery */
.modal-gallery { background: var(--bg-dark); position: relative; }

.modal-main-image-wrap {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.modal-main-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transition: opacity 0.3s ease;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
    font-size: 0.8rem;
}

.modal-nav:hover { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }
.modal-nav-prev { left: 0.75rem; }
.modal-nav-next { right: 0.75rem; }

.modal-thumbs {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    justify-content: center;
}

.modal-thumb {
    width: 56px;
    height: 56px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    padding: 0;
    background: none;
}

.modal-thumb:hover { opacity: 0.8; }
.modal-thumb.active { border-color: var(--gold); opacity: 1; }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }

.modal-out-of-stock-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-gray);
    padding: 0.6rem;
    background: rgba(0, 0, 0, 0.85);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 5;
}

/* Modal Details */
.modal-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modal-tag {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

.modal-product-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.modal-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.modal-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.modal-original-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.modal-discount {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: #ff4444;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.modal-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.modal-separator {
    height: 1px;
    background: rgba(201, 162, 39, 0.15);
    margin-bottom: 1.25rem;
}

.modal-unavailable {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.modal-unavailable i { font-size: 1.2rem; color: var(--gold); }

/* Modal Size & Quantity */
.modal-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.modal-size-section { margin-bottom: 1.25rem; }

.modal-size-options { display: flex; gap: 0.5rem; }

.modal-size-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 6px;
    font-family: var(--font-body);
}

.modal-size-btn {
    position: relative;
    flex-direction: column;
    height: auto;
    min-height: 48px;
    padding: 0.35rem 0.5rem;
    line-height: 1.2;
}

.modal-size-btn:hover { border-color: var(--gold); color: var(--gold); }
.modal-size-btn.active { background: var(--gold); border-color: var(--gold); color: var(--bg-dark); }

.modal-size-oos {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

.modal-size-oos-label {
    display: block;
    font-size: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1;
    margin-top: 2px;
}

.modal-stock-low {
    display: block;
    font-size: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    margin-top: 2px;
}

.modal-size-btn.active .modal-stock-low { color: var(--bg-dark); }

.modal-qty-section { margin-bottom: 1.5rem; }

.modal-qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    overflow: hidden;
}

.modal-qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: none;
    color: var(--text-gray);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-qty-btn:hover { color: var(--gold); background: rgba(201, 162, 39, 0.1); }

.modal-qty-value {
    width: 48px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    background: var(--bg-elevated);
    height: 40px;
    line-height: 40px;
}

.modal-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none;
    color: var(--bg-dark);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

.modal-add-cart:hover { box-shadow: 0 8px 30px var(--gold-glow); transform: translateY(-2px); }
.modal-add-cart:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

.modal-shipping-info,
.modal-payment-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.modal-shipping-info i,
.modal-payment-info i { color: var(--gold); font-size: 0.85rem; }

.modal-payment-icons {
    display: flex;
    gap: 0.4rem;
    margin-left: auto;
}

.modal-payment-icons i { font-size: 1.2rem; opacity: 0.5; }

/* Zoom Hint on Modal Image */
.modal-main-image { cursor: zoom-in; }

.modal-zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 0.75rem;
    pointer-events: none;
    z-index: 4;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.modal-main-image-wrap:hover .modal-zoom-hint { opacity: 1; }

/* ============================================
   CHECKOUT RECAP PAGE
   ============================================ */
.checkout-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-main);
    z-index: 15000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.checkout-overlay.open { opacity: 1; visibility: visible; }

.checkout-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-height: 100vh;
}

.checkout-back {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 0;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.checkout-back:hover { color: var(--gold); }

.checkout-recap { width: 100%; }

.recap-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.recap-left, .recap-right {
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
}

.recap-section-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-loading {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 2rem;
}

.payment-message {
    padding: 0.6rem 1rem;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 6px;
    color: #ff4444;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.checkout-email-field { margin-bottom: 1.25rem; }

.checkout-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.checkout-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #0f0e0c;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.checkout-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.checkout-input::placeholder { color: var(--text-muted); }

.checkout-email-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.checkout-email-note i { color: var(--gold); font-size: 0.65rem; }

#payment-element-container { margin-bottom: 1.25rem; min-height: 100px; }

@media (max-width: 768px) {
    .recap-columns { grid-template-columns: 1fr; gap: 1rem; }
}

.recap-items { display: flex; flex-direction: column; gap: 0.85rem; }

.recap-item { display: flex; align-items: center; gap: 0.85rem; }

.recap-item-img {
    width: 56px; height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-dark);
    border: 1px solid rgba(201, 162, 39, 0.1);
    flex-shrink: 0;
}

.recap-item-img img { width: 100%; height: 100%; object-fit: cover; }
.recap-item-info { flex: 1; min-width: 0; }

.recap-item-name {
    font-size: 0.85rem; font-weight: 600; color: var(--text-white);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.recap-item-details { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.15rem; }

.recap-item-price { font-size: 0.9rem; font-weight: 700; color: var(--gold); white-space: nowrap; }

.recap-separator { height: 1px; background: rgba(201, 162, 39, 0.1); margin: 1.25rem 0; }

.recap-line {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.85rem; color: var(--text-gray); margin-bottom: 0.4rem;
}

.recap-line i { font-size: 0.75rem; color: var(--gold); margin-right: 0.3rem; }

.recap-total {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 700; color: var(--gold);
    margin-bottom: 0; padding-top: 0.5rem;
}

.recap-pay-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    width: 100%; padding: 1.1rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none; color: var(--bg-dark);
    font-family: var(--font-display); font-size: 1rem; font-weight: 700;
    letter-spacing: 0.03em; cursor: pointer; border-radius: 8px;
    transition: all 0.3s; margin-top: 1.5rem;
}

.recap-pay-btn:hover { box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4); transform: translateY(-2px); }
.recap-pay-btn:disabled { opacity: 0.6; cursor: wait; transform: none; box-shadow: none; }

.recap-trust-badges {
    display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap;
    margin-top: 1.25rem; padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.recap-trust-item {
    display: flex; align-items: center; gap: 0.35rem;
    font-size: 0.7rem; color: var(--text-muted);
}

.recap-trust-item i { color: var(--gold); font-size: 0.8rem; }

/* Footer Legal */
.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s;
}

.footer-legal a:hover { color: var(--gold); }
.footer-legal span { color: var(--text-muted); font-size: 0.6rem; }

.footer-company {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-align: center;
}

/* ============================================
   ZOOM OVERLAY (fullscreen)
   ============================================ */
.zoom-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: zoom-in;
}

.zoom-overlay.open { opacity: 1; visibility: visible; }

.zoom-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20001;
    transition: var(--transition);
}

.zoom-close:hover { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }

.zoom-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.zoom-image.zoomed {
    cursor: grab;
    transition: none;
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100%;
    background: var(--bg-main);
    border-left: 1px solid rgba(201, 162, 39, 0.2);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    flex-shrink: 0;
}

.cart-drawer-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-close {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-gray);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-close:hover { color: var(--text-white); border-color: rgba(255, 255, 255, 0.3); }

.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

.cart-empty {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 100%; text-align: center; gap: 1rem; color: var(--text-muted);
}

.cart-empty i { font-size: 3rem; opacity: 0.3; }
.cart-empty p { font-size: 0.9rem; }
.cart-empty a { color: var(--gold); text-decoration: none; }

.cart-item {
    display: flex; gap: 1rem; padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-image {
    width: 65px; height: 65px; flex-shrink: 0;
    background: var(--bg-dark);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 6px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}

.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-image i { font-size: 1.3rem; color: var(--text-muted); }
.cart-item-details { flex: 1; min-width: 0; }

.cart-item-name {
    font-size: 0.85rem; font-weight: 600; color: var(--text-white);
    margin-bottom: 0.15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.cart-item-size { font-size: 0.7rem; color: var(--text-gray); margin-bottom: 0.4rem; }

.cart-item-bottom { display: flex; justify-content: space-between; align-items: center; }

.cart-item-qty { display: flex; align-items: center; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 4px; overflow: hidden; }

.qty-btn {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-dark); border: none;
    color: var(--text-gray); font-size: 0.85rem;
    cursor: pointer; transition: var(--transition);
}

.qty-btn:hover { color: var(--gold); background: rgba(201, 162, 39, 0.1); }

.qty-value {
    width: 30px; text-align: center;
    font-size: 0.8rem; font-weight: 600;
    color: var(--text-white); background: var(--bg-elevated);
    height: 28px; line-height: 28px;
}

.cart-item-price { font-weight: 700; color: var(--gold); font-size: 0.9rem; }

.cart-item-remove {
    background: none; border: none; color: var(--text-muted);
    font-size: 0.75rem; cursor: pointer; padding: 0.2rem;
    transition: var(--transition); margin-top: 0.2rem;
}

.cart-item-remove:hover { color: var(--red); }

/* Cart Footer */
.cart-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    background: var(--bg-dark);
    flex-shrink: 0;
}

.cart-shipping-zone { margin-bottom: 0.75rem; }

.shipping-zone-label {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.75rem; font-weight: 600; color: var(--text-white);
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem;
}

.shipping-zone-label i { color: var(--gold); font-size: 0.8rem; }
.shipping-options { display: flex; flex-direction: column; gap: 0.3rem; }

.shipping-option {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 0.7rem; background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-gray); font-size: 0.75rem;
    font-family: var(--font-body); cursor: pointer;
    transition: var(--transition); border-radius: 4px;
}

.shipping-option:hover { border-color: rgba(201, 162, 39, 0.3); color: var(--text-white); }
.shipping-option.active { border-color: var(--gold); background: rgba(201, 162, 39, 0.1); color: var(--text-white); }
.shipping-option.active .shipping-zone-price { color: var(--gold); font-weight: 700; }
.shipping-zone-price { font-weight: 600; }

.cart-subtotal, .cart-shipping-line {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.3rem;
}

.cart-subtotal-label, .cart-shipping-label { font-size: 0.85rem; color: var(--text-gray); }
.cart-subtotal-price { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--gold); }
.cart-shipping-price { font-size: 0.9rem; font-weight: 600; color: var(--text-gray); }

.cart-total {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 0.75rem; padding-top: 0.5rem;
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.cart-total-label { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-white); }
.cart-total-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gold); }

.btn-checkout {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    width: 100%; padding: 1rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none; color: var(--bg-dark);
    font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
    letter-spacing: 0.05em; cursor: pointer;
    transition: var(--transition); border-radius: 6px;
}

.btn-checkout:hover { box-shadow: 0 6px 24px var(--gold-glow); transform: translateY(-1px); }
.btn-checkout:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.cart-trust { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-top: 0.75rem; flex-wrap: wrap; }
.cart-trust-text { font-size: 0.65rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; }
.cart-trust-text i { color: #28a745; font-size: 0.75rem; }
.payment-icons { display: flex; align-items: center; gap: 0.4rem; }
.payment-icons i { font-size: 1.2rem; color: var(--text-muted); opacity: 0.5; }

/* ============================================
   MERCI PAGE
   ============================================ */
.merci-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.merci-content { max-width: 520px; }

.merci-icon {
    width: 90px; height: 90px;
    margin: 0 auto 2rem;
    display: flex; align-items: center; justify-content: center;
    background: rgba(201, 162, 39, 0.15);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 2.2rem;
    color: var(--gold);
    animation: merciPulse 2s ease infinite;
}

@keyframes merciPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.3); }
    50% { box-shadow: 0 0 0 15px rgba(201, 162, 39, 0); }
}

.merci-content h1 { font-family: var(--font-display); font-size: 1.8rem; color: var(--text-white); margin-bottom: 1rem; }
.merci-content h1 span { color: var(--gold); }

.merci-message { font-size: 1rem; color: var(--text-gray); line-height: 1.7; margin-bottom: 2rem; }
.merci-message strong { color: var(--text-white); }

.merci-info { text-align: left; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.merci-info-item {
    display: flex; align-items: flex-start; gap: 1rem; padding: 1rem;
    background: var(--bg-card); border: 1px solid rgba(201, 162, 39, 0.1); border-radius: 8px;
}

.merci-info-item > i { font-size: 1.2rem; color: var(--gold); margin-top: 0.2rem; flex-shrink: 0; }
.merci-info-item strong { display: block; font-size: 0.9rem; color: var(--text-white); margin-bottom: 0.25rem; }
.merci-info-item p { font-size: 0.8rem; color: var(--text-gray); line-height: 1.5; }
.merci-info-item a { color: var(--gold); text-decoration: none; }
.merci-info-item a:hover { text-decoration: underline; }

.merci-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.merci-btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--bg-dark);
    text-decoration: none; font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
    border-radius: 8px; transition: all 0.3s;
}

.merci-btn-primary:hover { box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4); transform: translateY(-2px); }

.merci-btn-secondary {
    display: inline-flex; align-items: center; padding: 0.9rem 2rem;
    background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); color: var(--text-white);
    text-decoration: none; font-family: var(--font-display); font-size: 0.85rem; border-radius: 8px; transition: all 0.3s;
}

.merci-btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-content { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .announcement-bar { font-size: 0.7rem; padding: 0.5rem 2.5rem 0.5rem 1rem; }
    body.has-announcement .shop-header { top: 30px; }
    body.has-announcement .breadcrumb { padding-top: 120px; }

    .shop-header { padding: 0.6rem 4%; }
    .shop-nav-links { display: none; }
    .shop-nav-socials { gap: 0.2rem; }
    .shop-nav-socials a { width: 38px; height: 38px; font-size: 0.95rem; }

    .shop-cart-btn .cart-nav-total { display: none; }
    .shop-cart-btn { padding: 0.5rem 0.75rem; }

    .breadcrumb { padding-top: 80px; }

    .products-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .cart-drawer { width: 100%; max-width: 100vw; }

    .product-modal {
        width: 96%; max-height: 95vh;
        top: 50%; left: 50%;
    }

    .modal-content { grid-template-columns: 1fr; }
    .modal-details { padding: 1.5rem; }
    .modal-product-name { font-size: 1.3rem; }
    .modal-price { font-size: 1.5rem; }

    .flip-hint { display: none; }

    .out-of-stock-overlay span { font-size: 0.95rem; padding: 0.35rem 0.8rem; }
}

@media (max-width: 480px) {
    .shop-section { padding: 1.5rem 4% 3rem; }
    .shop-section-header h1 { font-size: 1.5rem; }
    .product-info { padding: 1rem; }
    .product-name { font-size: 0.9rem; }
    .product-price { font-size: 1.1rem; }
    .size-btn { width: 36px; height: 36px; font-size: 0.7rem; }
    .btn-add-cart { padding: 0.75rem; font-size: 0.75rem; }
    .modal-details { padding: 1.25rem; }
    .modal-size-btn { width: 44px; height: 44px; }
}

@media (max-width: 360px) {
    .products-grid { max-width: 100%; }
    .product-desc { font-size: 0.75rem; }
    .out-of-stock-overlay span { font-size: 0.8rem; border-width: 1px; }
}
