@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --iv-bg: #06080d;
    --iv-bg-secondary: #0b0e17;
    --iv-bg-elevated: #111522;
    --iv-card: #151a2a;
    --iv-card-hover: #1b2236;
    --iv-card-glass: rgba(21, 26, 42, 0.75);
    
    --iv-border: rgba(255, 255, 255, 0.08);
    --iv-border-subtle: rgba(255, 255, 255, 0.04);
    --iv-border-gold: rgba(226, 185, 71, 0.35);
    --iv-border-gold-glow: rgba(226, 185, 71, 0.6);
    
    --iv-text: #f8fafc;
    --iv-text-secondary: #cbd5e1;
    --iv-text-muted: #818cf8;
    --iv-text-sub: #7b88a1;
    
    --iv-gold: #e2b947;
    --iv-gold-light: #fbe69b;
    --iv-gold-dark: #b88d23;
    --iv-gold-glow: rgba(226, 185, 71, 0.25);
    --iv-gold-gradient: linear-gradient(135deg, #fce588 0%, #e2b947 50%, #9e7512 100%);
    --iv-gold-gradient-hover: linear-gradient(135deg, #fff0aa 0%, #f0c95c 50%, #b88d23 100%);
    
    --iv-radius-sm: 8px;
    --iv-radius: 14px;
    --iv-radius-lg: 22px;
    --iv-radius-full: 9999px;
    
    --iv-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --iv-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.75);
    --iv-shadow-lg: 0 24px 60px -12px rgba(0, 0, 0, 0.9);
    --iv-shadow-glow: 0 0 35px rgba(226, 185, 71, 0.22);
    --iv-shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    --iv-font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --iv-font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --iv-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --iv-transition-slow: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
    background: var(--iv-bg);
    color: var(--iv-text);
    font-family: var(--iv-font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Luxury Background Ambient Glows */
body::before {
    content: '';
    position: fixed;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 550px;
    background: radial-gradient(ellipse, rgba(226, 185, 71, 0.07) 0%, rgba(130, 90, 250, 0.03) 40%, rgba(6, 8, 13, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(226, 185, 71, 0.03) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

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

h1, h2, h3, h4, h5 {
    font-family: var(--iv-font-display);
    color: var(--iv-text);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

/* ==========================================================================
   TOPBAR & NAVIGATION (Floating Glass Header)
   ========================================================================== */
.iv-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: rgba(11, 14, 23, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--iv-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.iv-brand-group {
    display: flex;
    align-items: center;
    gap: 32px;
}

.iv-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--iv-font-display);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.iv-brand-icon {
    width: 36px;
    height: 36px;
    background: var(--iv-gold-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06080d;
    box-shadow: var(--iv-shadow-glow);
    transition: var(--iv-transition);
}
.iv-brand:hover .iv-brand-icon {
    transform: rotate(6deg) scale(1.06);
    box-shadow: 0 0 30px rgba(226, 185, 71, 0.5);
}

.iv-brand-text {
    background: linear-gradient(135deg, #ffffff 40%, var(--iv-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.iv-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.iv-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--iv-radius-full);
    color: var(--iv-text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--iv-transition);
}
.iv-nav-link:hover {
    color: var(--iv-text);
    background: rgba(255, 255, 255, 0.05);
}
.iv-nav-link.active {
    background: rgba(226, 185, 71, 0.12);
    color: var(--iv-gold-light);
    border: 1px solid rgba(226, 185, 71, 0.25);
}

.iv-topbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.iv-user-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--iv-bg-elevated);
    border: 1px solid var(--iv-border);
    padding: 6px 16px 6px 8px;
    border-radius: var(--iv-radius-full);
    box-shadow: var(--iv-shadow-inner);
}

.iv-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1e2538, #303a56);
    color: var(--iv-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    border: 1px solid rgba(226, 185, 71, 0.3);
}

.iv-user-details {
    display: flex;
    flex-direction: column;
}

.iv-user-name {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--iv-text);
    line-height: 1.2;
}

.iv-user-status {
    font-size: 0.72rem;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}
.iv-user-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.iv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 22px;
    border-radius: var(--iv-radius);
    font-weight: 700;
    font-size: 0.94rem;
    font-family: inherit;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--iv-transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.iv-btn:active { transform: scale(0.97); }

.iv-btn-primary {
    background: var(--iv-gold-gradient);
    color: #06080d;
    box-shadow: 0 6px 22px rgba(226, 185, 71, 0.28), var(--iv-shadow-inner);
}
.iv-btn-primary:hover {
    background: var(--iv-gold-gradient-hover);
    box-shadow: 0 8px 30px rgba(226, 185, 71, 0.45);
    transform: translateY(-2px);
    color: #000;
}

.iv-btn-secondary {
    background: var(--iv-bg-elevated);
    border: 1px solid var(--iv-border);
    color: var(--iv-text);
    box-shadow: var(--iv-shadow-inner);
}
.iv-btn-secondary:hover {
    border-color: var(--iv-border-gold);
    color: var(--iv-gold-light);
    transform: translateY(-1px);
    background: var(--iv-card);
}

.iv-btn-ghost {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--iv-border);
    color: var(--iv-text-secondary);
}
.iv-btn-ghost:hover {
    border-color: var(--iv-border-gold);
    color: var(--iv-gold-light);
    background: rgba(226, 185, 71, 0.08);
}

.iv-btn-sm {
    padding: 7px 14px;
    font-size: 0.84rem;
    border-radius: var(--iv-radius-sm);
}

.iv-btn-lg {
    padding: 15px 30px;
    font-size: 1.05rem;
    border-radius: var(--iv-radius);
}

.iv-btn-block { width: 100%; }

/* ==========================================================================
   MAIN CONTAINER & HERO
   ========================================================================== */
.iv-main {
    flex: 1;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 28px 100px;
    position: relative;
    z-index: 1;
}

.iv-hero-card {
    background: linear-gradient(135deg, rgba(21, 26, 42, 0.9) 0%, rgba(11, 14, 23, 0.95) 100%);
    border: 1px solid var(--iv-border-gold);
    border-radius: var(--iv-radius-lg);
    padding: 44px 48px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--iv-shadow-lg), 0 0 40px rgba(226, 185, 71, 0.06);
}

.iv-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 185, 71, 0.6), transparent);
}

.iv-hero-card::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(226, 185, 71, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.iv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(226, 185, 71, 0.12);
    border: 1px solid rgba(226, 185, 71, 0.35);
    color: var(--iv-gold-light);
    padding: 5px 14px;
    border-radius: var(--iv-radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.iv-hero-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #ffffff 40%, var(--iv-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.iv-hero-desc {
    color: var(--iv-text-secondary);
    max-width: 740px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================================================
   FILTER TOOLBAR & SEARCH
   ========================================================================== */
.iv-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
    background: rgba(17, 21, 34, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--iv-border);
    padding: 14px 20px;
    border-radius: var(--iv-radius);
    box-shadow: var(--iv-shadow);
}

.iv-search-box {
    position: relative;
    flex: 1;
    min-width: 260px;
    max-width: 480px;
}

.iv-search-box svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--iv-text-sub);
    pointer-events: none;
}

.iv-search-input {
    width: 100%;
    padding: 11px 18px 11px 44px;
    background: rgba(11, 14, 23, 0.8);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius-sm);
    color: var(--iv-text);
    font-family: inherit;
    font-size: 0.94rem;
    transition: var(--iv-transition);
}
.iv-search-input:focus {
    outline: none;
    border-color: var(--iv-gold);
    background: rgba(11, 14, 23, 1);
    box-shadow: 0 0 0 3px rgba(226, 185, 71, 0.18);
}

.iv-toolbar-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.iv-select {
    padding: 10px 16px;
    background: rgba(11, 14, 23, 0.8);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius-sm);
    color: var(--iv-text);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--iv-transition);
}
.iv-select:focus { outline: none; border-color: var(--iv-gold); }

.iv-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    background: rgba(11, 14, 23, 0.8);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius-sm);
    color: var(--iv-text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--iv-transition);
}
.iv-filter-btn:hover { border-color: var(--iv-border-gold); color: var(--iv-text); }
.iv-filter-btn.active {
    background: rgba(226, 185, 71, 0.16);
    border-color: var(--iv-gold);
    color: var(--iv-gold-light);
}

.iv-grid-toggles {
    display: flex;
    background: rgba(11, 14, 23, 0.8);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius-sm);
    padding: 3px;
}
.iv-grid-toggle-btn {
    background: transparent;
    border: none;
    color: var(--iv-text-sub);
    padding: 7px 9px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--iv-transition);
}
.iv-grid-toggle-btn:hover { color: var(--iv-text); }
.iv-grid-toggle-btn.active {
    background: var(--iv-card);
    color: var(--iv-gold);
    box-shadow: var(--iv-shadow-sm);
}

/* ==========================================================================
   CATEGORY & ITEM GRIDS
   ========================================================================== */
.iv-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 26px;
    margin-bottom: 50px;
}

.iv-cat-card {
    background: var(--iv-card);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--iv-shadow);
    transition: var(--iv-transition-slow);
    position: relative;
}
.iv-cat-card:hover {
    transform: translateY(-6px);
    border-color: var(--iv-border-gold);
    box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.85), 0 0 25px rgba(226, 185, 71, 0.15);
}

.iv-cat-thumb-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--iv-bg-elevated);
}

.iv-cat-thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.iv-cat-card:hover .iv-cat-thumb {
    transform: scale(1.08);
}

.iv-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 14, 23, 0.95) 0%, rgba(11, 14, 23, 0.2) 60%, transparent 100%);
}

.iv-cat-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--iv-card);
}
.iv-cat-info h2 {
    font-size: 1.3rem;
    font-weight: 700;
}
.iv-cat-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--iv-text-sub);
    font-size: 0.88rem;
    font-weight: 500;
}

/* Item Grid */
.iv-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
}
.iv-item-grid.iv-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 16px;
}

.iv-item-card {
    background: var(--iv-card);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--iv-transition-slow);
    position: relative;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.6);
}
.iv-item-card:hover {
    transform: translateY(-5px);
    border-color: var(--iv-border-gold-glow);
    box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.85), 0 0 25px rgba(226, 185, 71, 0.18);
}

.iv-item-thumb-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--iv-bg-elevated);
}

.iv-item-thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.iv-item-card:hover .iv-item-thumb {
    transform: scale(1.08);
}

.iv-item-hover-actions {
    position: absolute;
    inset: 0;
    background: rgba(6, 8, 13, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px;
    transition: var(--iv-transition);
}
.iv-item-card:hover .iv-item-hover-actions {
    opacity: 1;
}

.iv-item-action-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.iv-item-action-center {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.iv-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(17, 21, 34, 0.9);
    border: 1px solid var(--iv-border);
    color: var(--iv-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--iv-transition);
    box-shadow: var(--iv-shadow-sm);
}
.iv-icon-btn:hover {
    background: var(--iv-gold);
    color: #06080d;
    transform: scale(1.12);
    border-color: var(--iv-gold);
}
.iv-icon-btn.active {
    background: #f43f5e;
    color: #fff;
    border-color: #f43f5e;
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.4);
}

.iv-provider-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--iv-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(11, 14, 23, 0.9);
    border: 1px solid var(--iv-border);
    color: var(--iv-text-secondary);
    box-shadow: var(--iv-shadow-sm);
}

.iv-provider-badge.provider-gdrive {
    border-color: rgba(66, 133, 244, 0.5);
    background: rgba(26, 43, 76, 0.85);
    color: #93c5fd;
}
.iv-provider-badge.provider-mega {
    border-color: rgba(217, 39, 46, 0.5);
    background: rgba(77, 21, 23, 0.85);
    color: #fca5a5;
}
.iv-provider-badge.provider-dropbox {
    border-color: rgba(0, 97, 255, 0.5);
    background: rgba(18, 38, 77, 0.85);
    color: #93c5fd;
}

.iv-item-info {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--iv-card);
}
.iv-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.iv-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--iv-text-sub);
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.iv-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 0.92rem;
    color: var(--iv-text-sub);
}
.iv-breadcrumb a:hover {
    color: var(--iv-gold-light);
}
.iv-breadcrumb-sep {
    color: var(--iv-border);
    display: flex;
    align-items: center;
}
.iv-breadcrumb-current {
    color: var(--iv-text);
    font-weight: 700;
}

/* ==========================================================================
   ITEM DETAIL PAGE
   ========================================================================== */
.iv-detail-layout {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 48px;
    margin-bottom: 70px;
}

.iv-detail-preview-box {
    background: var(--iv-card);
    border: 1px solid var(--iv-border-gold);
    border-radius: var(--iv-radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--iv-shadow-lg), 0 0 35px rgba(226, 185, 71, 0.08);
}

.iv-detail-preview-img {
    max-width: 100%;
    max-height: 560px;
    object-fit: contain;
    border-radius: var(--iv-radius);
    box-shadow: var(--iv-shadow);
}

.iv-detail-panel {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.iv-detail-header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.iv-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    background: var(--iv-bg-secondary);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius);
    padding: 20px 24px;
    box-shadow: var(--iv-shadow-inner);
}

.iv-spec-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.iv-spec-label {
    font-size: 0.76rem;
    color: var(--iv-text-sub);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}
.iv-spec-value {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--iv-text);
}

.iv-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.iv-detail-secondary-actions {
    display: flex;
    gap: 14px;
}

/* ==========================================================================
   LIGHTBOX MODAL (Cinema Backdrop)
   ========================================================================== */
.iv-modal {
    position: fixed;
    inset: 0;
    background: rgba(3, 5, 8, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.iv-modal.active {
    display: flex;
    opacity: 1;
}

.iv-modal-container {
    width: 100%;
    max-width: 960px;
    background: var(--iv-card);
    border: 1px solid var(--iv-border-gold);
    border-radius: var(--iv-radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 50px rgba(226, 185, 71, 0.15);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 92vh;
}

.iv-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    border-bottom: 1px solid var(--iv-border);
    background: var(--iv-bg-secondary);
}

.iv-modal-title-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.iv-modal-body {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #04060a;
    overflow: auto;
    flex: 1;
    min-height: 380px;
}

.iv-modal-img {
    max-width: 100%;
    max-height: 62vh;
    object-fit: contain;
    border-radius: var(--iv-radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.iv-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    border-top: 1px solid var(--iv-border);
    background: var(--iv-bg-secondary);
    flex-wrap: wrap;
    gap: 14px;
}

.iv-modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(17, 21, 34, 0.9);
    border: 1px solid var(--iv-border);
    color: var(--iv-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--iv-transition);
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}
.iv-modal-nav-btn:hover {
    background: var(--iv-gold);
    color: #06080d;
    transform: translateY(-50%) scale(1.1);
}
.iv-modal-nav-prev { left: 20px; }
.iv-modal-nav-next { right: 20px; }

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.iv-toast-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.iv-toast {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    background: rgba(17, 21, 34, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--iv-border-gold);
    border-radius: var(--iv-radius);
    color: var(--iv-text);
    box-shadow: var(--iv-shadow-lg), 0 0 25px rgba(226, 185, 71, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    pointer-events: auto;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.iv-toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================================================
   AUTH / LOGIN PAGE
   ========================================================================== */
.iv-auth-wrap {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 24px;
}

.iv-auth-card {
    width: 100%;
    max-width: 460px;
    background: linear-gradient(135deg, rgba(21, 26, 42, 0.92) 0%, rgba(11, 14, 23, 0.98) 100%);
    border: 1px solid var(--iv-border-gold);
    border-radius: var(--iv-radius-lg);
    padding: 48px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(226, 185, 71, 0.12);
    position: relative;
}

.iv-auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.iv-auth-header h1 {
    font-size: 2rem;
    margin: 14px 0 6px;
    background: linear-gradient(135deg, #ffffff 40%, var(--iv-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.iv-features-pill-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.iv-feature-mini-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(226, 185, 71, 0.08);
    border: 1px solid rgba(226, 185, 71, 0.25);
    border-radius: var(--iv-radius-full);
    font-size: 0.78rem;
    color: var(--iv-gold-light);
    font-weight: 600;
}

.iv-field {
    display: block;
    margin-bottom: 22px;
}
.iv-field-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--iv-text-secondary);
    margin-bottom: 8px;
}
.iv-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.iv-field input, .iv-field textarea {
    width: 100%;
    padding: 13px 18px;
    background: rgba(11, 14, 23, 0.85);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius-sm);
    color: var(--iv-text);
    font-family: inherit;
    font-size: 0.96rem;
    transition: var(--iv-transition);
}
.iv-field input:focus, .iv-field textarea:focus {
    outline: none;
    border-color: var(--iv-gold);
    background: rgba(11, 14, 23, 1);
    box-shadow: 0 0 0 3px rgba(226, 185, 71, 0.18);
}

.iv-password-toggle {
    position: absolute;
    right: 14px;
    background: transparent;
    border: none;
    color: var(--iv-text-sub);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px;
}
.iv-password-toggle:hover { color: var(--iv-gold-light); }

.iv-alert {
    padding: 14px 20px;
    border-radius: var(--iv-radius-sm);
    font-size: 0.92rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.iv-alert-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fca5a5;
}
.iv-alert-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #86efac;
}

/* ==========================================================================
   FOOTER & TERMS
   ========================================================================== */
.iv-terms {
    margin-top: 70px;
    padding: 36px 40px;
    background: linear-gradient(135deg, rgba(17, 21, 34, 0.7) 0%, rgba(11, 14, 23, 0.8) 100%);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius-lg);
    color: var(--iv-text-sub);
    font-size: 0.9rem;
    box-shadow: var(--iv-shadow);
}
.iv-terms h2 {
    font-size: 1.2rem;
    color: var(--iv-text);
    margin-bottom: 14px;
}
.iv-terms ol { padding-left: 22px; }
.iv-terms li { margin-bottom: 10px; }

.iv-footer {
    border-top: 1px solid var(--iv-border);
    background: var(--iv-bg-secondary);
    padding: 36px 28px;
    margin-top: auto;
    text-align: center;
    color: var(--iv-text-sub);
    font-size: 0.88rem;
}

/* ==========================================================================
   RESPONSIVE (MOBILE & TABLET OPTIMIZATION)
   ========================================================================== */
@media (max-width: 920px) {
    .iv-topbar { padding: 14px 20px; }
    .iv-detail-layout { grid-template-columns: 1fr; gap: 28px; }
    .iv-hero-title { font-size: 1.8rem; }
    .iv-hero-card { padding: 28px 20px; }
    .iv-pricing-title { font-size: 1.85rem; }
    .iv-faq-section, .iv-showcase-section, .iv-terms { padding: 32px 20px; }
}

@media (max-width: 640px) {
    .iv-brand-group { gap: 10px; }
    .iv-nav-links { display: none; }
    .iv-user-name { display: none; }
    .iv-cat-grid { grid-template-columns: 1fr; }
    .iv-item-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .iv-pricing-grid { grid-template-columns: 1fr; gap: 20px; }
    .iv-pricing-card { padding: 28px 20px; }
    .iv-pricing-card.featured { transform: none; }
    .iv-pricing-card.featured:hover { transform: translateY(-3px); }
    .iv-testimonials-grid { grid-template-columns: 1fr; }
    .iv-showcase-grid { grid-template-columns: 1fr; }
    .iv-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .iv-stat-card { padding: 14px; gap: 10px; }
    .iv-stat-icon-wrap { width: 42px; height: 42px; }
    .iv-stat-number { font-size: 1.15rem; }
    .iv-stat-label { font-size: 0.75rem; }
    .iv-price-amount { font-size: 2.2rem; }
}

@media (max-width: 380px) {
    .iv-item-grid { grid-template-columns: 1fr; }
    .iv-stats-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   LANGUAGE SWITCHER BUTTON
   ========================================================================== */
.iv-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: rgba(226, 185, 71, 0.08);
    border: 1px solid rgba(226, 185, 71, 0.3);
    border-radius: var(--iv-radius-full);
    color: var(--iv-gold-light);
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--iv-transition);
}
.iv-lang-btn:hover {
    background: rgba(226, 185, 71, 0.2);
    border-color: var(--iv-gold);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(226, 185, 71, 0.25);
}

/* ==========================================================================
   NATIVE ARABIC RTL STYLES (dir="rtl")
   ========================================================================== */
body.iv-rtl {
    font-family: 'Cairo', 'Tajawal', var(--iv-font-body);
    direction: rtl;
    text-align: right;
}

body.iv-rtl h1,
body.iv-rtl h2,
body.iv-rtl h3,
body.iv-rtl h4,
body.iv-rtl .iv-brand {
    font-family: 'Cairo', 'Outfit', sans-serif;
}

body.iv-rtl .iv-search-box svg {
    left: auto;
    right: 15px;
}

body.iv-rtl .iv-search-input {
    padding: 11px 44px 11px 18px;
    text-align: right;
}

body.iv-rtl .iv-password-toggle {
    right: auto;
    left: 14px;
}

body.iv-rtl .iv-breadcrumb-sep svg {
    transform: rotate(180deg);
}

body.iv-rtl .iv-terms ol {
    padding-left: 0;
    padding-right: 24px;
}

body.iv-rtl .iv-user-status {
    flex-direction: row-reverse;
}

body.iv-rtl .iv-modal-nav-prev {
    left: auto;
    right: 20px;
}

body.iv-rtl .iv-modal-nav-next {
    right: auto;
    left: 20px;
}

body.iv-rtl .iv-modal-nav-prev svg,
body.iv-rtl .iv-modal-nav-next svg {
    transform: rotate(180deg);
}

/* ==========================================================================
   PROMOTIONAL STATS GRID
   ========================================================================== */
.iv-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 36px;
}

.iv-stat-card {
    background: var(--iv-card);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--iv-shadow);
    transition: var(--iv-transition);
}
.iv-stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--iv-border-gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(226, 185, 71, 0.1);
}

.iv-stat-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.iv-stat-number {
    font-family: var(--iv-font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--iv-text);
    line-height: 1.2;
}

.iv-stat-label {
    font-size: 0.82rem;
    color: var(--iv-text-sub);
    font-weight: 600;
    margin-top: 2px;
}

/* ==========================================================================
   INTERACTIVE FAQ ACCORDION
   ========================================================================== */
.iv-faq-section {
    margin-top: 70px;
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(21, 26, 42, 0.75) 0%, rgba(11, 14, 23, 0.95) 100%);
    border: 1px solid var(--iv-border-gold);
    border-radius: var(--iv-radius-lg);
    box-shadow: var(--iv-shadow-lg), 0 0 35px rgba(226, 185, 71, 0.08);
}

.iv-faq-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 36px;
}
.iv-faq-header h2 {
    font-size: 2rem;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #ffffff 50%, var(--iv-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.iv-faq-header p {
    color: var(--iv-text-sub);
    font-size: 0.96rem;
    line-height: 1.6;
}

.iv-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 860px;
    margin: 0 auto;
}

.iv-faq-item {
    background: rgba(11, 14, 23, 0.8);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius);
    overflow: hidden;
    transition: var(--iv-transition);
}
.iv-faq-item:hover {
    border-color: var(--iv-border-gold);
}
.iv-faq-item.active {
    border-color: var(--iv-gold);
    background: rgba(17, 21, 34, 0.95);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.iv-faq-question {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--iv-text);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: var(--iv-transition);
}
body.iv-rtl .iv-faq-question {
    text-align: right;
}

.iv-faq-question:hover {
    color: var(--iv-gold-light);
}

.iv-faq-icon {
    flex-shrink: 0;
    color: var(--iv-gold);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.iv-faq-item.active .iv-faq-icon {
    transform: rotate(180deg);
}

.iv-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--iv-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.iv-faq-item.active .iv-faq-answer {
    max-height: 250px;
    padding: 0 24px 20px;
}

/* ==========================================================================
   SECTION NAVIGATION TABS (CATEGORIES / UNIVERSES)
   ========================================================================== */
.iv-section-tabs {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    padding: 6px 2px 14px;
    margin-bottom: 24px;
    scrollbar-width: none;
}
.iv-section-tabs::-webkit-scrollbar { display: none; }

.iv-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    background: rgba(17, 21, 34, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius-full);
    color: var(--iv-text-secondary);
    font-size: 0.94rem;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: var(--iv-transition);
}
.iv-tab-btn:hover {
    border-color: var(--iv-border-gold);
    color: var(--iv-text);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.iv-tab-btn.active {
    background: linear-gradient(135deg, rgba(226, 185, 71, 0.22) 0%, rgba(199, 154, 43, 0.12) 100%);
    border-color: var(--iv-gold);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(226, 185, 71, 0.25);
}

.iv-tab-badge {
    background: rgba(11, 14, 23, 0.8);
    border: 1px solid var(--iv-border);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
    color: var(--iv-gold-light);
}
.iv-tab-btn.active .iv-tab-badge {
    background: var(--iv-gold);
    color: #06080d;
    border-color: var(--iv-gold);
}

/* ==========================================================================
   PAGINATION CONTROLS
   ========================================================================== */
.iv-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 48px 0 20px;
    flex-wrap: wrap;
}

.iv-page-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
}

.iv-page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: var(--iv-radius-sm);
    background: rgba(17, 21, 34, 0.8);
    border: 1px solid var(--iv-border);
    color: var(--iv-text-secondary);
    font-size: 0.92rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--iv-transition);
}
.iv-page-btn:hover {
    border-color: var(--iv-border-gold);
    color: var(--iv-text);
    transform: translateY(-2px);
}
.iv-page-btn.active {
    background: var(--iv-gold);
    color: #06080d;
    border-color: var(--iv-gold);
    box-shadow: 0 0 15px rgba(226, 185, 71, 0.35);
}

.iv-page-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
}

.iv-page-dots {
    color: var(--iv-text-sub);
    padding: 0 6px;
    font-weight: 700;
}

body.iv-rtl .iv-page-nav svg {
    transform: rotate(180deg);
}

/* ==========================================================================
   PRICING & OFFERS PAGE STYLES
   ========================================================================== */
.iv-pricing-hero {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 44px;
}
.iv-pricing-title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 12px 0 16px;
    background: linear-gradient(135deg, #ffffff 40%, var(--iv-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.iv-pricing-sub {
    color: var(--iv-text-sub);
    font-size: 1.05rem;
    line-height: 1.65;
}

.iv-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 26px;
    margin-bottom: 48px;
    align-items: stretch;
}

.iv-pricing-card {
    background: var(--iv-card);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius-lg);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--iv-shadow);
    transition: var(--iv-transition);
}
.iv-pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--iv-border-gold);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(226, 185, 71, 0.12);
}

.iv-pricing-card.featured {
    background: linear-gradient(180deg, rgba(22, 28, 46, 0.95) 0%, rgba(13, 17, 28, 0.98) 100%);
    border: 2px solid var(--iv-gold);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65), 0 0 35px rgba(226, 185, 71, 0.2);
    transform: scale(1.03);
}
.iv-pricing-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.iv-featured-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--iv-gold) 0%, var(--iv-gold-dark) 100%);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 4px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 15px rgba(226, 185, 71, 0.4);
    white-space: nowrap;
}

.iv-pricing-header {
    text-align: center;
    margin-bottom: 20px;
}
.iv-pricing-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.iv-pricing-header h3 {
    font-size: 1.35rem;
    margin: 0 0 6px;
}
.iv-pricing-header p {
    color: var(--iv-text-sub);
    font-size: 0.86rem;
    margin: 0;
}

.iv-pricing-price-box {
    text-align: center;
    padding: 16px 0;
    border-top: 1px dashed var(--iv-border);
    border-bottom: 1px dashed var(--iv-border);
    margin-bottom: 24px;
}
.iv-price-old {
    font-size: 0.95rem;
    color: var(--iv-text-muted);
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
    direction: ltr !important;
    unicode-bidi: isolate;
}
.iv-price-current {
    font-family: var(--iv-font-heading);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    direction: ltr !important;
    unicode-bidi: isolate;
}
.iv-price-amount {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}
.iv-price-currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--iv-gold-light);
}
.iv-price-tag {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--iv-text-muted);
    margin-top: 6px;
    padding: 2px 10px;
    border-radius: 999px;
    border: 1px solid var(--iv-border);
}

.iv-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}
.iv-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--iv-text-secondary);
    line-height: 1.45;
}
.iv-pricing-features li svg {
    flex-shrink: 0;
    color: #34d399;
    margin-top: 2px;
}

.iv-pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* WhatsApp Button */
.iv-btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    transition: var(--iv-transition) !important;
}
.iv-btn-whatsapp:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45) !important;
    color: #ffffff !important;
}

/* Messenger Button */
.iv-btn-messenger {
    background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(0, 132, 255, 0.3) !important;
    transition: var(--iv-transition) !important;
}
.iv-btn-messenger:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.45) !important;
    color: #ffffff !important;
}

/* Payment Methods Card */
.iv-payment-methods-card {
    background: var(--iv-card);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius-lg);
    padding: 36px;
    margin-bottom: 40px;
    box-shadow: var(--iv-shadow);
}

.iv-payment-badges-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.iv-pay-badge {
    background: rgba(11, 14, 23, 0.6);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.iv-pay-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.iv-pay-badge strong {
    display: block;
    font-size: 0.95rem;
    color: var(--iv-text);
}
.iv-pay-badge small {
    color: var(--iv-text-sub);
    font-size: 0.8rem;
}

/* Pricing Section Subheaders (Digital vs Physical) */
.iv-pricing-section-title-wrap {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--iv-border);
}
.iv-pricing-section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: var(--iv-radius-full);
    color: #60a5fa;
    font-size: 0.85rem;
    font-weight: 700;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (STICKY WIDGET)
   ========================================================================== */
.iv-floating-wa {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
body.iv-rtl .iv-floating-wa {
    right: auto;
    left: 26px;
}
.iv-floating-wa:hover {
    transform: scale(1.08) translateY(-3px);
}
.iv-floating-wa-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    padding: 12px 20px 12px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 20px rgba(37, 211, 102, 0.25);
    font-weight: 800;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}
.iv-floating-wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25d366;
    border-radius: 999px;
    opacity: 0.6;
    animation: wa-pulse 2.2s infinite ease-out;
    z-index: 1;
}
@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(1.25); opacity: 0; }
}
@media (max-width: 600px) {
    .iv-floating-wa-label { display: none; }
    .iv-floating-wa-btn { padding: 14px; }
}

/* ==========================================================================
   TESTIMONIALS & REVIEWS SECTION
   ========================================================================== */
.iv-testimonials-section {
    margin-top: 60px;
    margin-bottom: 50px;
}
.iv-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.iv-testimonial-card {
    background: var(--iv-card);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--iv-transition);
    box-shadow: var(--iv-shadow);
}
.iv-testimonial-card:hover {
    border-color: var(--iv-border-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(226, 185, 71, 0.1);
}
.iv-testi-stars {
    color: #e2b947;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.iv-testi-text {
    color: var(--iv-text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}
.iv-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--iv-border);
    padding-top: 14px;
}
.iv-testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--iv-gold) 0%, var(--iv-accent) 100%);
    color: #000;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.iv-testi-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--iv-text);
}
.iv-testi-city {
    font-size: 0.78rem;
    color: var(--iv-gold-light);
}

/* ==========================================================================
   PRINTED SHOWCASE / REAL RENDERING GALLERY
   ========================================================================== */
.iv-showcase-section {
    margin-top: 60px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, rgba(22, 28, 46, 0.7) 0%, rgba(11, 14, 23, 0.95) 100%);
    border: 1px solid var(--iv-border-gold);
    border-radius: var(--iv-radius-lg);
    padding: 40px 32px;
}
.iv-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.iv-showcase-card {
    background: rgba(11, 14, 23, 0.85);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius);
    padding: 20px;
    text-align: center;
    transition: var(--iv-transition);
}
.iv-showcase-card:hover {
    border-color: var(--iv-gold);
    transform: translateY(-3px);
}
.iv-showcase-card-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.iv-showcase-card h4 {
    font-size: 1.1rem;
    margin: 0 0 8px;
    color: var(--iv-text);
}
.iv-showcase-card p {
    font-size: 0.85rem;
    color: var(--iv-text-sub);
    margin: 0;
    line-height: 1.5;
}






