/* ==========================================================
   CSS SYSTEM - ROYAL SANDAL INFOGRAPHIC LANDING PAGE (V2)
   ========================================================== */

/* 1. Global Variables & Color System */
:root {
    --bg-main: #07080a;          /* أسود أعمق */
    --bg-card: rgba(20, 22, 26, 0.75); /* رمادي غامق شفاف لتأثير الزجاج */
    --bg-card-solid: #14161a;
    --bg-card-alt: #1d2026;      
    --color-primary: #d4af37;    /* لون ذهبي ملكي فاخر */
    --color-primary-hover: #b89428;
    --color-text-main: #ffffff;  
    --color-text-sub: #b0b5c0;   
    --color-success: #1abc9c;    
    --color-error: #ff4d4d;      
    --font-arabic: 'Cairo', sans-serif;
    --font-numeric: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 20px;
    --border-radius-sm: 10px;
    --border-glow: 0 0 25px rgba(212, 175, 55, 0.25);
    --glass-blur: blur(12px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --gold-border: 1px solid rgba(212, 175, 55, 0.3);
}

/* 2. Reset & Base Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--color-text-main);
    font-family: var(--font-arabic);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

input, select, textarea, button {
    font-family: inherit;
}

/* 3. Navigation Header & Footer */
.main-header {
    background-color: rgba(7, 8, 10, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-smooth);
}

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

.logo {
    font-family: var(--font-numeric);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--color-primary);
}

/* 4. Visual Slide System (Full-screen infographics) */
.visual-slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

@media (min-width: 993px) {
    .visual-slide {
        background-attachment: fixed; /* Parallax effect only on desktop */
    }
}

/* Dark overlay for readability, heavier on the right for Arabic RTL text */
.visual-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(7, 8, 10, 0.95) 0%, rgba(7, 8, 10, 0.7) 50%, rgba(7, 8, 10, 0.4) 100%);
    z-index: 1;
}

.slide-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 650px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards ease-out;
}

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

/* Slide Specific Backgrounds */
.slide-hero {
    background-image: url('product/uranus-footwear-ad-1781556880766.png');
}

.slide-leather {
    background-image: url('product/uranus-footwear-ad-1781557046196.png');
}

.slide-comfort {
    background-image: url('product/uranus-footwear-ad-1781556906026.png');
}

.slide-durability {
    background-image: url('product/uranus-footwear-ad-1781553129499.png');
}

.slide-style {
    background-image: url('product/uranus-footwear-ad-1781556902773.png');
}

/* Infographic Panels (Glassmorphism) */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.glass-panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background-color: var(--color-primary);
}

.tagline {
    background-color: rgba(212, 175, 55, 0.12);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: inline-block;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(to left, #ffffff, #eaeaea, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-text {
    font-size: 1.1rem;
    color: var(--color-text-sub);
    margin-bottom: 30px;
}

/* Infographic features checklist */
.info-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-icon-wrapper {
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.info-icon-wrapper svg {
    width: 14px;
    height: 14px;
}

.info-item-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 4px;
}

.info-item-text p {
    font-size: 0.9rem;
    color: var(--color-text-sub);
}

/* Hotspots Pointer Effects (Infographic elements overlaying image) */
.hotspot-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 12;
    pointer-events: none;
}

.hotspot {
    position: absolute;
    pointer-events: auto;
    cursor: pointer;
    z-index: 10;
}

.hotspot-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.4);
    animation: ripple 2s infinite ease-out;
    position: relative;
}

@keyframes ripple {
    0% { box-shadow: 0 0 0 0px rgba(212, 175, 55, 0.4), 0 0 0 0px rgba(212, 175, 55, 0.2); }
    100% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0), 0 0 0 24px rgba(212, 175, 55, 0); }
}

.hotspot-tooltip {
    position: absolute;
    background-color: rgba(7, 8, 10, 0.95);
    border: var(--gold-border);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    width: 220px;
    bottom: 35px;
    right: -100px;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: var(--border-glow);
    z-index: 100;
}

.hotspot-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 107px;
    width: 10px;
    height: 10px;
    background-color: #07080a;
    border-bottom: var(--gold-border);
    border-left: var(--gold-border);
    transform: rotate(-45deg);
}

.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hotspot-tooltip h5 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 6px;
    font-weight: 700;
}

.hotspot-tooltip p {
    font-size: 0.85rem;
    color: var(--color-text-sub);
    line-height: 1.4;
}

/* Hotspot placements based on visual center of sandals in section images */
.hotspot-1 { top: 40%; left: 75%; }
.hotspot-2 { top: 60%; left: 68%; }

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-sub);
    font-size: 0.85rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.mouse-scroll {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-sub);
    border-radius: 12px;
    position: relative;
}

.mouse-scroll::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 2px;
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% { top: 8px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* Hero Badge specific styles V2 */
.price-badge-hero-v2 {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(212, 175, 55, 0.08);
    border: var(--gold-border);
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 30px;
}

.old-price {
    font-family: var(--font-numeric);
    text-decoration: line-through;
    color: var(--color-text-sub);
    font-size: 1.1rem;
}

.current-price {
    font-family: var(--font-numeric);
    color: var(--color-primary);
    font-size: 1.8rem;
    font-weight: 800;
}

.shipping-info {
    font-size: 0.85rem;
    background-color: rgba(26, 188, 156, 0.15);
    color: var(--color-success);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
}

/* 5. Common Buttons V2 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    gap: 8px;
}

.btn-nav {
    background-color: var(--color-primary);
    color: #000000;
    padding: 10px 24px;
    font-size: 0.95rem;
}

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

.btn-large {
    background: linear-gradient(135deg, var(--color-primary) 0%, #f39c12 100%);
    color: #000000;
    padding: 18px 36px;
    font-size: 1.2rem;
    border-radius: 50px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.5);
}

.btn-pulse {
    animation: pulse 2s infinite ease-in-out;
}

.btn-glow {
    animation: glow 2.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.8); }
    100% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.4); }
}

/* 6. Checkout & Purchase Section V2 */
.checkout-section {
    padding: 100px 0;
    background-color: var(--bg-main);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-title span {
    color: var(--color-primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-sub);
}

.checkout-container {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 48px;
    align-items: start;
}

.checkout-card {
    background-color: var(--bg-card-solid);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.form-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--color-text-sub);
    font-size: 0.95rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.form-group label .required {
    color: var(--color-error);
}

.form-group input[type="text"],
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: var(--bg-card-alt);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 14px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input[type="text"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Phone input wrapper */
.input-phone-wrapper {
    display: flex;
    position: relative;
    direction: ltr; 
}

.phone-prefix {
    background-color: var(--bg-card-alt);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    color: var(--color-text-sub);
    padding: 0 16px;
    display: flex;
    align-items: center;
    font-family: var(--font-numeric);
    font-weight: 600;
    border-top-left-radius: var(--border-radius-sm);
    border-bottom-left-radius: var(--border-radius-sm);
}

.input-phone-wrapper input {
    width: 100%;
    background-color: var(--bg-card-alt);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: var(--font-numeric);
    letter-spacing: 1px;
    border-top-right-radius: var(--border-radius-sm);
    border-bottom-right-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.input-phone-wrapper input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Error message styling */
.error-msg {
    color: var(--color-error);
    font-size: 0.85rem;
    margin-top: 6px;
    font-weight: 600;
    display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: var(--color-error) !important;
}

/* Color swatches */
.swatches-container {
    display: flex;
    gap: 15px;
}

.swatch-item input[type="radio"] {
    display: none;
}

.swatch-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-card-alt);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.swatch-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.swatch-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.swatch-item input[type="radio"]:checked + .swatch-card {
    border-color: var(--color-primary);
    background-color: rgba(212, 175, 55, 0.05);
}

/* Size boxes */
.sizes-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.size-item input[type="radio"] {
    display: none;
}

.size-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    background-color: var(--bg-card-alt);
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-numeric);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.size-item input[type="radio"]:checked + .size-box {
    border-color: var(--color-primary);
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
}

/* Submit button */
.btn-submit {
    background: linear-gradient(135deg, var(--color-success) 0%, #16a085 100%);
    color: #ffffff;
    padding: 18px 30px;
    font-size: 1.3rem;
    border-radius: var(--border-radius-sm);
    width: 100%;
    box-shadow: 0 8px 16px rgba(26, 188, 156, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(26, 188, 156, 0.5);
}

.loader-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

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

.form-submit-container {
    margin-top: 30px;
    text-align: center;
}

.form-notice {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--color-text-sub);
}

/* 7. Summary Card V2 */
.checkout-summary-card {
    background-color: var(--bg-card-solid);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.summary-product-row {
    display: flex;
    gap: 15px;
    align-items: center;
    background-color: var(--bg-card-alt);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 25px;
}

.summary-product-img {
    width: 80px;
    height: 60px;
    object-fit: contain;
}

.summary-product-details h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.summary-meta {
    font-size: 0.85rem;
    color: var(--color-text-sub);
}

.summary-prices {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--color-text-sub);
}

.price-row strong {
    font-family: var(--font-numeric);
    color: var(--color-text-main);
}

.total-row {
    font-size: 1.1rem;
    color: var(--color-text-main);
    font-weight: 700;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.total-price {
    font-family: var(--font-numeric);
    color: var(--color-primary);
    font-size: 1.7rem;
    font-weight: 800;
}

/* Trust Indicators in summary */
.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-item {
    display: flex;
    gap: 15px;
}

.trust-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--color-text-sub);
}

/* Product Color Thumbnails (Required for V2 Switcher) */
.gallery-thumbnails-v2 {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    justify-content: center;
}

.thumb-btn {
    background-color: var(--bg-card-alt);
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.thumb-btn img {
    height: 35px;
    object-fit: contain;
}

.thumb-btn span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-sub);
}

.thumb-btn.active {
    border-color: var(--color-primary);
    background-color: rgba(212, 175, 55, 0.05);
}

.thumb-btn.active span {
    color: var(--color-primary);
}

/* Hidden elements matching app.js selection requirement */
#main-product-img {
    display: none;
}

/* 8. Reviews Section V2 */
.reviews-section {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--bg-card-solid);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--border-glow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    gap: 12px;
    align-items: center;
}

.user-avatar {
    width: 44px;
    height: 44px;
    background-color: var(--bg-card-alt);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.user-verified {
    font-size: 0.75rem;
    color: var(--color-success);
    font-weight: 600;
}

.stars {
    color: #f1c40f;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.review-text {
    color: var(--color-text-sub);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* 9. Success Modal V2 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-card {
    background-color: var(--bg-card-solid);
    border: 2px solid var(--color-success);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(26, 188, 156, 0.1);
    color: var(--color-success);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-check-svg {
    width: 44px;
    height: 44px;
}

.success-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-success);
    margin-bottom: 8px;
}

.success-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-card p {
    color: var(--color-text-sub);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.success-details-box {
    background-color: var(--bg-card-alt);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    text-align: right;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.success-details-box p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.success-details-box p:last-child {
    margin-bottom: 0;
}

.highlight-price {
    font-family: var(--font-numeric);
    color: var(--color-primary);
    font-weight: 700;
}

.btn-close-modal {
    background-color: var(--bg-card-alt);
    color: var(--color-text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 30px;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    width: 100%;
    margin-top: 15px;
}

.btn-close-modal:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 10. Footer */
.main-footer {
    background-color: #030405;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-sub);
}

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

.footer-links a {
    color: var(--color-text-sub);
    margin: 0 10px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* 11. Responsive Styles (Mobile Adaptability) */
@media (max-width: 992px) {
    .visual-slide {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0 0 50px 0;
        background-image: none !important;
        background-color: var(--bg-main);
    }
    
    .visual-slide::before {
        content: '';
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        height: 380px;
        width: 100%;
        display: block;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 2;
        border-bottom: 2px solid rgba(212, 175, 55, 0.15);
        background-attachment: scroll !important;
    }
    
    .slide-hero::before {
        background-image: url('product/uranus-footwear-ad-1781556880766.png');
        background-position: 25% center;
    }
    
    .slide-leather::before {
        background-image: url('product/uranus-footwear-ad-1781557046196.png');
        background-position: 50% center;
    }
    
    .slide-comfort::before {
        background-image: url('product/uranus-footwear-ad-1781556906026.png');
        background-position: 50% center;
    }
    
    .slide-durability::before {
        background-image: url('product/uranus-footwear-ad-1781553129499.png');
        background-position: 60% center;
    }
    
    .slide-style::before {
        background-image: url('product/uranus-footwear-ad-1781556902773.png');
        background-position: 50% center;
    }

    .slide-content-wrapper {
        max-width: 100%;
        margin: -35px auto 0 auto;
        z-index: 10;
        position: relative;
    }

    .scroll-indicator {
        display: none !important;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .checkout-summary-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .glass-panel {
        padding: 25px;
    }
    
    .hotspot {
        display: none; /* Hide hotspots on mobile to avoid overlapping issues */
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .swatches-container {
        flex-direction: column;
    }
}
