/* --- CSS Variables & Design System (Pro Max Tier) --- */
:root {
    /* Avoid pure #000000 for OLED smear reduction */
    --bg-deep: #020203; 
    --bg-base: #050506;
    --bg-elevated: #0a0a0c;
    
    --text-primary: #EDEDEF;
    --text-secondary: #8A8F98;
    --accent: #FFFFFF;
    
    --border-subtle: rgba(255, 255, 255, 0.08); /* Hairline elegance */
    
    --nav-height: 80px;
    --border-radius: 16px; /* Pro Max standard */
    --easing: cubic-bezier(0.16, 1, 0.3, 1); /* Modern Cinema Easing */
    --transition: all 0.5s var(--easing);
}

/* --- Base & Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    background-color: #020203 !important;
    background: linear-gradient(to bottom, var(--bg-elevated), var(--bg-deep));
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    background-color: #020203 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

ul {
    list-style: none;
}

/* --- Typography --- */
h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    line-height: 1.6;
    color: var(--text-secondary);
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 600px;
    margin: 1.5rem 0 2.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em 1.8em;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 9999px; /* Pill shape */
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(0.97);
    background-color: #e0e0e0;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
}

.btn-secondary:hover {
    color: #cccccc;
}

.btn-outline {
    border-color: var(--border-subtle);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: #000;
}

.btn-large {
    padding: 1em 2.5em;
    font-size: 1.1rem;
}

/* --- Navbar (Glassmorphism) --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    z-index: 100;
    /* BlurView intensity */
    background: rgba(5, 5, 6, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--text-primary);
}

/* --- Layout --- */
.section {
    padding: 8rem 4%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 2rem;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--nav-height) 4% 0;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Abstract white/grey ambient blobs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0) 70%);
    top: -10%;
    left: -10%;
    animation: drift 15s ease-in-out infinite alternate;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0) 70%);
    bottom: -20%;
    right: -10%;
    animation: drift 20s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10vw, 5vh) scale(1.1); }
}

/* --- Cards (Pro Max styling) --- */
.cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: var(--bg-base);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--bg-elevated);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* --- Portfolio --- */
.portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    background: #111112;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 1.5rem;
    font-weight: 600;
    transition: transform 0.8s var(--easing);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05); /* Pro smooth scaling */
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(2,2,3,0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* --- Booking Section --- */
.booking-container {
    background: var(--bg-elevated);
    border-radius: 24px;
    padding: 5rem 6%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    border: 1px solid var(--border-subtle);
}

.booking-text {
    flex: 1;
    min-width: 300px;
}

.booking-text h2 {
    margin-bottom: 1rem;
}

.booking-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.micro-text {
    font-size: 0.85rem;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--bg-dark);
    padding: 4rem 4% 2rem;
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-desc {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.cta-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-footer {
    display: inline-block;
    align-self: flex-start;
    padding: 0.8em 1.5em;
    font-size: 0.95rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s var(--easing) forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1.2s var(--easing) 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1.2s var(--easing) 0.4s forwards;
}

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

/* Scroll reveal utility */
.scroll-appear {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--easing), transform 1s var(--easing);
}

.scroll-appear.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links { gap: 1rem; }
    .nav-links a:not(.btn) { display: none; }
    .hero { min-height: 80vh; text-align: center; }
    .hero-content { margin: 0 auto; }
    .cta-group { justify-content: center; }
    .hero-bg { display: none; }
    .section { padding: 5rem 4%; }
    .booking-container { flex-direction: column; text-align: center; }
    .booking-action { align-items: center; }
}

/* --- Live Demo Modal Component --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--easing);
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: #ffffff;
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    border-radius: 12px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s var(--easing);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #333;
}

.modal-overlay.show .modal-container {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #333;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    line-height: 1;
}

.modal-content {
    flex: 1;
    overflow-y: auto;
    position: relative;
}

/* Her Diary Mock Browser & App */
.mock-browser {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mock-browser-header {
    background: #f1f1f1;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #ddd;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}
.dot:nth-child(2) { background: #ffbd2e; }
.dot:nth-child(3) { background: #27c93f; }

.mock-address-bar {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

.mock-browser-body {
    flex: 1;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    overflow-y: auto;
    font-family: 'Outfit', sans-serif;
}

/* HD Inner Styling */
.hd-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4%;
    background: #fffafa;
}

.hd-logo {
    font-family: cursive;
    font-size: 1.8rem;
    color: #ff1493;
    font-weight: bold;
}

.hd-links span {
    margin: 0 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.hd-cart {
    font-weight: bold;
}

.hd-hero {
    display: flex;
    padding: 4rem 4%;
    gap: 4rem;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    align-items: center;
    min-height: calc(100% - 80px);
}

.hd-hero-card {
    flex: 1;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hd-hero-text {
    flex: 1.5;
}

.hd-hero-text h1 {
    font-size: 4rem;
    color: #111;
    margin-bottom: 0.5rem;
}

.hd-hero-text h2 {
    font-family: cursive;
    color: #ff1493;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.hd-hero-text p {
    color: #333;
    max-width: 400px;
    margin-bottom: 2rem;
}

.hd-btn {
    background: linear-gradient(to right, #ff1493, #ff69b4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.3);
}

@media (max-width: 768px) {
    .hd-hero { flex-direction: column; text-align: center; }
    .hd-hero-card { width: 100%; max-width: 300px; margin: 0 auto; }
}

/* Her Diary Products Section */
.hd-products {
    padding: 4rem 4%;
    background: #fffafa;
}

.hd-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.hd-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.3s;
}

.hd-product-card:hover {
    transform: translateY(-5px);
}

.hd-product-img {
    height: 300px;
    width: 100%;
}

.hd-product-info {
    padding: 1rem;
    text-align: center;
}

.hd-product-info h4 {
    color: #111;
    margin-bottom: 0.5rem;
}

.hd-product-info p {
    color: #ff1493;
    font-weight: bold;
}

/* Her Diary PDP (Product Detail Page) */
.hd-breadcrumb {
    padding: 1.5rem 4%;
    font-size: 0.85rem;
    color: #db7093;
    background: #fffafa;
}

.hd-pdp {
    display: flex;
    padding: 0 4% 4rem;
    gap: 4rem;
    background: #fffafa;
    align-items: flex-start;
}

.hd-pdp-gallery {
    flex: 1;
    display: flex;
    gap: 1rem;
}

.hd-pdp-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80px;
}

.hd-thumb {
    width: 100%;
    aspect-ratio: 3/4;
    background: #ccc;
    border-radius: 8px;
    cursor: pointer;
}

.hd-thumb.active {
    border: 2px solid #ff1493;
}

.hd-pdp-main-img {
    flex: 1;
    aspect-ratio: 3/4;
    background: #333;
    border-radius: 12px;
}

.hd-pdp-details {
    flex: 1;
    color: #111;
}

.hd-pdp-details h2 {
    font-size: 2rem;
    letter-spacing: 2px;
}

.hd-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.2rem;
}

.new-price {
    color: #d1416e;
    font-size: 1.5rem;
    font-weight: bold;
}

.hd-options {
    margin: 1.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.hd-colors {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hd-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #ccc;
}

.hd-color.black { background: #111; }
.hd-color.white { background: #fff; }
.hd-color.active { box-shadow: 0 0 0 2px #fff, 0 0 0 4px #111; }

.hd-sizes {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.hd-sizes span {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    color: #999;
    cursor: pointer;
    font-size: 0.9rem;
}

.hd-sizes span.active {
    border-bottom: 2px solid #d1416e;
    color: #111;
    font-weight: bold;
}

.hd-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.hd-qty {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    background: #fff;
}

.hd-qty span {
    padding: 1rem;
    cursor: pointer;
    color: #d1416e;
    font-weight: bold;
}

.hd-qty span:nth-child(2) {
    color: #111;
    cursor: default;
    padding: 1rem 0;
}

.hd-add-cart {
    flex: 1;
    background: #d1416e;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 1px;
}

.hd-description {
    background: #fff0f5;
    padding: 1.5rem;
    border-radius: 8px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hd-pdp { flex-direction: column; }
    .hd-pdp-gallery { flex-direction: column-reverse; }
    .hd-pdp-thumbnails { flex-direction: row; width: 100%; height: 80px; }
}

/* Her Diary Footer */
.hd-footer {
    background-color: #0b0f19;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 3rem 4%;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid #1a2235;
}

.hd-footer-col {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.hd-footer-col h4 {
    font-family: cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hd-footer-col p {
    color: #a0aec0;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    max-width: 300px;
}

.hd-footer-col .hd-email {
    font-weight: bold;
    color: #fff;
    font-size: 0.95rem;
}

.hd-footer-col h5 {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}

.hd-footer-col a {
    color: #a0aec0;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.2s;
}

.hd-footer-col a:hover {
    color: #fff;
}

/* --- Azmera Demo --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

.azmera-body {
    background: #fff;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.az-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4%;
    background: #fff;
    color: #6E1013;
    border-bottom: 1px solid #f0f0f0;
}

.az-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.az-link {
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.az-hero {
    height: 70vh;
    background: url('azmera-hero.jpg') center/cover no-repeat, #FBFADC;
    display: flex;
    align-items: center;
    padding: 0 4%;
}

.az-hero-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.az-hero-content h1 {
    font-size: 3.5rem;
    color: #6E1013;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.az-hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.az-btn {
    background: #6E1013;
    color: #FBFADC;
    border: none;
    padding: 1rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.az-btn:hover {
    background: #4a0b0d;
}

.az-info {
    display: flex;
    padding: 5rem 4%;
    gap: 4rem;
    background: #FBFADC;
    align-items: center;
}

.az-info-text {
    flex: 1;
}

.az-info-text h2 {
    font-size: 2.5rem;
    color: #6E1013;
    margin-bottom: 1.5rem;
}

.az-info-text p {
    line-height: 1.8;
    color: #444;
}

.az-info-image {
    flex: 1;
    height: 500px;
    background: #6E1013;
}

.az-footer {
    background: #6E1013;
    color: #FBFADC;
    text-align: center;
    padding: 4rem 2rem;
}

.az-footer h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .az-info { flex-direction: column; }
    .az-info-image { width: 100%; height: 300px; }
    .az-hero-content h1 { font-size: 2.5rem; }
    .az-nav { flex-direction: column; gap: 1rem; }
}

/* --- Demo Site --- */
.demo-site-body {
    background: #000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #fff;
    overflow-x: hidden;
}

.ds-banner {
    background: #FF5A2A;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: bold;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.ds-banner-close {
    position: absolute;
    right: 20px;
    cursor: pointer;
    font-weight: normal;
}

.ds-nav {
    background: #fff;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4%;
}
.ds-logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
}
.ds-links {
    display: flex;
    gap: 2rem;
    font-weight: 800;
    font-size: 0.9rem;
}
.ds-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.ds-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 0.6rem;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-hero {
    position: relative;
    padding: 10rem 4%;
    text-align: left;
}
.ds-hero-bg, .ds-features-bg {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    font-size: 40rem;
    font-weight: 900;
    color: #A9A9A9;
    line-height: 0.8;
    z-index: 0;
    letter-spacing: -20px;
}
.ds-hero-text {
    position: relative;
    z-index: 1;
    max-width: 600px;
}
.ds-hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}
.ds-sub {
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #eaeaea;
}
.ds-desc {
    color: #A9A9A9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.ds-btn {
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
}

.ds-features-content {
    background: #000;
    border-radius: 20px;
    padding: 5rem 4%;
    position: relative;
    overflow: hidden;
    border: 1px solid #222;
}
.ds-launch {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: bold;
}
.ds-features-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.ds-features-text ul {
    list-style: none;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}
.ds-features-text li {
    font-size: 1.1rem;
    color: #A9A9A9;
    margin-bottom: 0.5rem;
}
.ds-btn-dark {
    position: relative;
    z-index: 1;
    background: #111;
    color: #fff;
    border: 1px solid #333;
    padding: 1rem 2rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
}

.ds-footer {
    background: #fff;
    color: #000;
    padding: 4rem 4% 2rem;
}
.ds-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
.ds-footer-grid h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.ds-footer-grid p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}
.ds-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    color: #000;
}
.ds-footer-bottom {
    background: #000;
    color: #fff;
    padding: 1rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
    margin: 0 -4% -2rem;
}
.ds-lang {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
}
.ds-footer-bottom p {
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 768px) {
    .ds-hero-text h1 { font-size: 3rem; }
    .ds-features-text h2 { font-size: 2.5rem; }
    .ds-footer-grid { grid-template-columns: 1fr; }
    .ds-hero-bg, .ds-features-bg { font-size: 20rem; right: -20%; }
    .ds-links { display: none; }
}

/* --- Gymrat Demo --- */
.gymrat-body {
    background: #080808;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    perspective: 1000px;
}

.gr-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4%;
    position: absolute;
    width: 100%;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.gr-logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    font-style: italic;
    color: #cfff04;
}

.gr-links {
    display: flex;
    gap: 2.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.gr-links span {
    cursor: pointer;
    transition: color 0.3s;
}

.gr-links span:hover {
    color: #cfff04;
}

.gr-btn-minimal {
    border: 1px solid #333;
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
}

.gr-btn-minimal:hover {
    background: #cfff04;
    color: #000;
    border-color: #cfff04;
}

.gr-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 4%;
    position: relative;
    overflow: hidden;
}

.gr-hero-content {
    max-width: 600px;
    z-index: 5;
    position: relative;
}

.gr-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-style: italic;
}

.gr-highlight {
    color: #cfff04;
    -webkit-text-stroke: 1px #cfff04;
    -webkit-text-fill-color: transparent;
}

.gr-subtitle {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 3rem;
    max-width: 450px;
}

.gr-main-btn {
    background: #cfff04;
    color: #000;
    border: none;
    padding: 1.2rem 2.5rem;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    font-style: italic;
    box-shadow: 0 10px 30px rgba(207, 255, 4, 0.2);
}

/* 3D Motion Elements */
.gr-motion-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    pointer-events: none;
}

.gr-item {
    position: absolute;
    width: 400px;
    height: auto;
    transition: transform 0.1s linear;
}

.gr-item img {
    width: 100%;
    height: auto;
    transform-style: preserve-3d;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

.item-1 {
    top: 10%;
    left: 10%;
    transform: rotate(15deg) translateZ(50px);
}

.item-2 {
    top: 40%;
    right: 15%;
    width: 280px;
    transform: rotate(-10deg) translateZ(100px);
}

.item-3 {
    bottom: 5%;
    left: 20%;
    transform: rotate(-20deg) translateZ(30px);
}

/* Scroll Ticker */
.gr-scroller {
    background: #cfff04;
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.gr-scroll-track {
    display: inline-block;
    animation: scrollText 20s linear infinite;
}

.gr-scroll-track span {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    font-style: italic;
}

@keyframes scrollText {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.gr-section {
    padding: 8rem 4%;
}

.gr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.gr-card {
    background: #111;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #222;
    transition: border-color 0.3s;
}

.gr-card:hover {
    border-color: #cfff04;
}

.gr-card-img {
    margin-bottom: 2rem;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gr-card-img img {
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.gr-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.gr-card p {
    color: #cfff04;
    font-weight: 900;
    font-size: 1.2rem;
}

.gr-footer {
    padding: 5rem 4%;
    text-align: center;
    background: #000;
    border-top: 1px solid #111;
}

.gr-footer p {
    color: #444;
    font-size: 0.8rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .gr-title { font-size: 4rem; }
    .gr-motion-container { width: 100%; opacity: 0.3; }
    .gr-grid { grid-template-columns: 1fr; }
}

/* --- Enhanced Gymrat Background Effects --- */
.gr-hero-bg-text {
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 25vw;
    font-weight: 900;
    color: rgba(207, 255, 4, 0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    font-style: italic;
    transform: translateY(-50%) skewX(-10deg);
}

.gr-fragment {
    position: absolute;
    background: #cfff04;
    border-radius: 2px;
    z-index: 2;
    opacity: 0.1;
}

.fragment-1 { width: 50px; height: 50px; top: 20%; left: 30%; border: 1px solid #cfff04; background: transparent; }
.fragment-2 { width: 100px; height: 100px; bottom: 30%; right: 10%; background: rgba(207, 255, 4, 0.05); }
.fragment-3 { width: 20px; height: 20px; top: 60%; left: 5%; background: #cfff04; }

.gymrat-body {
    perspective-origin: center center;
}

.gr-hero-content {
    animation: grContentIn 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes grContentIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- Luxwatches Demo --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

.lux-body {
    background: #f9f8f6;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
}

.lux-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: #f9f8f6;
    border-bottom: 1px solid #eee;
}

.lux-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.lux-links {
    display: flex;
    gap: 3rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.lux-icons {
    display: flex;
    gap: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.lux-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
    background: #fdfcfb;
}

.lux-hero-text {
    max-width: 500px;
}

.lux-tag {
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #c5a059;
    font-weight: 700;
}

.lux-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.lux-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

.lux-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.lux-btn:hover {
    background: #333;
}

.lux-hero-img img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.1));
}

.lux-showcase {
    padding: 8rem 5%;
    background: #f9f8f6;
}

.lux-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.lux-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.lux-section-header p {
    color: #c5a059;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.lux-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.lux-card {
    background: #fff;
    padding: 3rem;
    text-align: center;
    transition: transform 0.4s ease;
}

.lux-card:hover {
    transform: translateY(-10px);
}

.lux-card-img {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.lux-card-img img {
    max-width: 80%;
    max-height: 100%;
}

.lux-card-info h3 {
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.lux-card-info p {
    color: #c5a059;
    font-weight: 700;
}

.lux-philosophy {
    padding: 10rem 5%;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.lux-philo-content {
    max-width: 700px;
    margin: 0 auto;
}

.lux-philo-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    color: #c5a059;
}

.lux-philo-content p {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 3rem;
}

.lux-more {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.lux-footer {
    padding: 5rem 5% 3rem;
    background: #f4f1ea;
}

.lux-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.lux-footer-col h4 {
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.lux-footer-col a, .lux-footer-col p {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.8rem;
    text-decoration: none;
}

.lux-footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    text-align: center;
}

.lux-footer-bottom p {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .lux-hero { grid-template-columns: 1fr; text-align: center; }
    .lux-grid { grid-template-columns: 1fr; }
    .lux-footer-grid { grid-template-columns: 1fr; }
    .lux-links { display: none; }
}

/* --- Footer Socials --- */
.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-link {
    color: #888;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #fff;
    transform: translateY(-3px);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.social-link svg {
    width: 22px;
    height: 22px;
}

/* --- Insights Slideshow Section --- */
.insights {
    background: var(--bg-deep);
}

.slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-elevated);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.slideshow {
    display: flex;
    transition: transform 0.8s var(--easing);
    width: 500%; /* 5 slides */
}

.slide {
    width: 20%; /* 1/5th of the slideshow width */
    display: flex;
    align-items: center;
    padding: 4rem;
    gap: 4rem;
    min-height: 500px;
    opacity: 0.3;
    transition: opacity 1s var(--easing), transform 1s var(--easing);
    transform: scale(0.95);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-content {
    flex: 1;
}

.slide-tagline {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.slide-content h2.arabic {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 1.5rem;
    direction: rtl;
    text-align: right;
}

.arabic-small {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    direction: rtl;
    text-align: right;
    display: block;
}

.slide-content p:not(.arabic) {
    font-size: 1.1rem;
    max-width: 500px;
}

.slide-image {
    flex: 1;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid var(--border-subtle);
}

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

/* Controls */
.slideshow-controls {
    position: absolute;
    bottom: 2rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.ss-prev, .ss-next {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-subtle);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.ss-prev:hover, .ss-next:hover {
    background: var(--accent);
    color: #000;
}

.ss-dots {
    display: flex;
    gap: 0.75rem;
}

.ss-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
}

.ss-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 968px) {
    .slide {
        flex-direction: column-reverse;
        padding: 3rem 2rem 8rem;
        gap: 2.5rem;
        text-align: center;
    }
    
    .slide-content h2.arabic {
        text-align: center;
    }
    
    .arabic-small {
        text-align: center;
    }
    
    .slide-image {
        width: 100%;
        height: 250px;
    }
    
    .slideshow-controls {
        left: 50%;
        transform: translateX(-50%);
        bottom: 2rem;
    }
}

/* --- EGY Perfumes Demo Styles --- */
.egy-body {
    background: #0a0a0b !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    position: relative;
    overflow: hidden !important;
    height: 100%;
}

.egy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.egy-intro-content {
    text-align: center;
    z-index: 2;
}

.egy-intro-logo {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    letter-spacing: 0.5em;
    margin-bottom: 2rem;
    color: #fff;
}

.egy-enter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 1rem 3rem;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.5s ease;
}

.egy-enter-btn:hover {
    border-color: #c5a059;
    color: #c5a059;
    background: rgba(197, 160, 89, 0.05);
}

.egy-intro-footer {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.4);
    margin-top: 3rem;
}

.egy-overlay-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
}

.egy-main {
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    display: flex;
    flex-direction: column;
}

.egy-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 11, 0.4);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.egy-logo-small {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}

.egy-links {
    display: flex;
    gap: 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
}

.egy-shop-btn {
    background: #c5a059;
    color: #000;
    border: none;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
}

.egy-hero {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.egy-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.egy-parallax-img {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, #1a1a1c 0%, #050505 100%);
}

.egy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0a0a0b 20%, transparent 80%);
}

.egy-hero-content {
    max-width: 500px;
}

.egy-tag {
    color: #c5a059;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    margin-bottom: 1rem;
}

.egy-hero-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.egy-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

.egy-btn-gold {
    background: #c5a059;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
}

/* --- EGY Perfumes Modal Visuals --- */
.egy-intro-visual {
    margin-top: 1.5rem;
    perspective: 800px;
    opacity: 0;
    transform: translateY(20px);
    animation: egy-fade-in 1.5s ease-out 0.8s forwards;
}

.egy-floating-perfume {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.8));
    animation: egy-float 6s ease-in-out infinite;
}

@keyframes egy-fade-in {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes egy-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Update EGY Bottle size for OZ Agency */
.egy-floating-perfume {
    width: 350px !important; /* Slightly smaller for modal but still big */
}

/* Refined Portal Zoom Styles for EGY Demo */
.egy-floating-perfume {
    width: 450px !important;
    transform-origin: center center;
}

.egy-intro-content {
    transform-origin: center center;
}

/* Overlay text and button on the bottle for agency modal */
.egy-intro-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.egy-intro-overlay-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.egy-enter-btn {
    pointer-events: all !important;
}

.egy-intro-logo {
    margin-bottom: 1rem !important; /* Tighter for modal */
    font-size: 1.5rem !important;
}

/* Agency Modal - New Hero & Collections Styles */
.egy-hero-visual {
    position: absolute;
    right: 5%;
    top: 55%;
    transform: translateY(-50%);
    width: 300px;
    z-index: 5;
}

.egy-hero-bottle {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(197, 160, 89, 0.2));
}

.egy-collections {
    padding: 4rem 5%;
    background: #050505;
}

.egy-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.egy-p-card {
    background: rgba(255,255,255,0.03);
    padding: 2rem 1rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.egy-p-img {
    height: 150px;
    margin-bottom: 1rem;
}

.egy-p-img img {
    height: 100%;
}

.egy-p-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.egy-p-price {
    color: #c5a059;
    font-weight: 600;
}

/* CRITICAL FIX: Hero Visibility & Button Size */
.egy-hero {
    min-height: 700px !important;
    height: auto !important;
    padding: 100px 5% 5rem !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
}

.egy-hero-content {
    max-width: 550px !important;
    z-index: 10 !important;
}

.egy-hero-content h2 {
    font-size: 5rem !important; /* Massive title */
    margin-bottom: 1.5rem !important;
}

.egy-btn-gold {
    padding: 1.5rem 4rem !important; /* Massive button */
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.4) !important;
}

.egy-p-card {
    min-height: 400px !important;
}

.egy-p-img {
    height: 250px !important;
}

/* SCROLL FIX for EGY Demo */
.egy-body {
    overflow-y: auto !important; /* Allow internal scrolling in the mock browser */
    overflow-x: hidden !important;
}

.egy-main {
    height: auto !important; /* Allow content to expand */
    min-height: 100%;
}

/* Final Hero Height and Scroll Tweaks */
.egy-hero {
    min-height: 800px !important; /* Match standalone */
}

.egy-main {
    overflow: visible !important;
}

/* LUXWATCHES MOBILE POLISH */
@media (max-width: 768px) {
    .lux-hero-text h1 {
        font-size: 2.2rem !important; /* Scale down for mobile screens */
        line-height: 1.2;
    }
    
    .lux-hero {
        padding: 3rem 1.5rem !important;
    }

    .lux-desc {
        font-size: 0.9rem !important;
        margin-bottom: 2rem !important;
    }

    .modal-container {
        width: 100% !important;
        height: 100% !important;
        border-radius: 0 !important;
    }

    .close-modal {
        top: 20px !important;
        right: 20px !important;
        background: rgba(255,255,255,0.8) !important;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .lux-grid {
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }
}

/* ==========================================================================
   OZ ULTIMATE SHOPIFY THEME SPOTLIGHT & MODAL SHOWCASE STYLES
   ========================================================================== */

/* --- Homepage Theme Spotlight Section --- */
.theme-spotlight {
    position: relative;
    padding: 6rem 4%;
    margin: 4rem auto;
    max-width: 1400px;
}

.theme-spotlight-container {
    background: linear-gradient(135deg, rgba(15, 17, 26, 0.9) 0%, rgba(8, 9, 14, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(59, 130, 246, 0.1);
}

.theme-spotlight-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.theme-spotlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #a78bfa;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.theme-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.theme-spotlight-media {
    cursor: pointer;
    perspective: 1000px;
}

.theme-box-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s var(--easing);
}

.theme-box-wrapper:hover {
    transform: translateY(-8px) rotateY(-5deg) scale(1.02);
}

.theme-box-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 16px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
    position: relative;
    z-index: 2;
}

.theme-box-glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, rgba(59, 130, 246, 0.2) 50%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.click-hint {
    position: absolute;
    bottom: -35px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.theme-spotlight-wrapper:hover .click-hint {
    color: #fff;
    border-color: #a78bfa;
}

.theme-spotlight-info {
    display: flex;
    flex-direction: column;
}

.theme-tag {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #38bdf8;
    margin-bottom: 0.5rem;
}

.theme-title {
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.badge-v3 {
    background: linear-gradient(135deg, #a78bfa, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.theme-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.theme-price-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.2rem 1.8rem;
    margin-bottom: 1.8rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

.price-amount .currency {
    font-size: 1.2rem;
    color: #38bdf8;
    font-weight: 600;
    margin-left: 4px;
}

.price-tagline {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 4px;
}

.payment-methods-badge {
    margin-bottom: 2rem;
}

.pay-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.pay-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pay-chip {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid transparent;
}

.pay-chip.instapay {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.3);
}

.pay-chip.vodafone {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
}

.theme-spotlight-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-gold {
    background: linear-gradient(135deg, #a78bfa 0%, #3b82f6 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 25px rgba(167, 139, 250, 0.3) !important;
}

.btn-gold:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(167, 139, 250, 0.4) !important;
}

.btn-whatsapp {
    background: #25D366 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3) !important;
    padding: 0.8em 1.5em;
    border-radius: 9999px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #20ba59 !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4) !important;
}

/* --- Dedicated Theme Showcase Page Modal --- */
.theme-modal-container {
    background: #090a0f !important;
    color: #f8fafc !important;
    max-width: 1250px !important;
    height: 90vh !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9), 0 0 100px rgba(139, 92, 246, 0.2) !important;
    border-radius: 20px !important;
}

.theme-modal-body {
    padding: 2.5rem 3.5rem !important;
}

.theme-modal-container .close-modal {
    color: #cbd5e1 !important;
    background: rgba(255, 255, 255, 0.08) !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 25px;
    transition: var(--transition);
}

.theme-modal-container .close-modal:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

.theme-page-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.5rem;
}

.theme-page-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.brand-tag {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #38bdf8;
}

.rating-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    font-weight: 600;
}

.rating-num {
    color: #94a3b8;
    font-weight: 500;
    margin-left: 6px;
}

.theme-page-title {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.v3-pill {
    color: #a78bfa;
    font-family: monospace;
}

.theme-page-subtitle {
    font-size: 1.05rem;
    color: #94a3b8;
    max-width: 900px;
    line-height: 1.6;
}

.theme-page-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.theme-gallery-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-preview-frame {
    background: radial-gradient(circle at center, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

.main-preview-frame img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumb-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.thumb-item:hover, .thumb-item.active {
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.08);
}

.thumb-item img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.thumb-item span {
    font-size: 0.75rem;
    color: #cbd5e1;
    font-weight: 600;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.client-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #3b82f6;
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f1f5f9;
}

.client-role {
    font-size: 0.75rem;
    color: #64748b;
}

.testimonial-quote {
    font-size: 0.88rem;
    font-style: italic;
    color: #cbd5e1;
    line-height: 1.5;
}

.theme-details-col {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.5rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.currency-symbol {
    font-size: 1.2rem;
    font-weight: 700;
    color: #38bdf8;
}

.price-val {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1.5px;
}

.price-period {
    font-size: 1rem;
    font-weight: 600;
    color: #94a3b8;
}

.badge-one-time {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: auto;
}

.price-sub {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 8px;
}

.payment-method-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
}

.payment-method-box h4 {
    font-size: 0.95rem;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.pay-methods-list {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.pay-method-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
}

.instapay-badge {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.vodafone-badge {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.pay-note {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.5;
}

.theme-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-large-cta {
    width: 100%;
    padding: 1.1em 1.5em !important;
    font-size: 1.1rem !important;
    justify-content: center !important;
}

.btn-demo-view {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    color: #f1f5f9;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    padding: 0.9em 1.5em;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
}

.btn-demo-view:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #38bdf8;
    color: #38bdf8;
}

.theme-features-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
}

.theme-features-box h3 {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.features-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.4;
}

.features-checklist b {
    color: #f1f5f9;
}

.check-icon {
    color: #10b981;
    font-weight: 900;
}

/* ==========================================================================
   EXACT REPLICA STYLES FOR ALTER & OZ THEME BANNER (MATCHING USER SCREENSHOT)
   ========================================================================== */

.alter-hero-banner {
    background: #020203;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 4rem 4% 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.alter-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 6px 18px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
}

.alter-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
}

.alter-media-col {
    cursor: pointer;
}

.alter-mockup-stage {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.5s var(--easing);
}

.alter-mockup-stage:hover {
    transform: scale(1.02);
}

.alter-stage-img {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    height: auto;
    display: block;
    border-radius: 16px;
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.9));
}

.stage-overlay-hint {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    pointer-events: none;
    transition: var(--transition);
}

.alter-info-col {
    display: flex;
    flex-direction: column;
}

.alter-hero-title {
    font-size: clamp(2.8rem, 4.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 0.4rem;
}

.alter-hero-slogan {
    font-size: 1.15rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.alter-hero-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 560px;
}

.alter-hero-desc b {
    color: #ffffff;
}

.alter-features-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.alter-feat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    color: #e2e8f0;
}

.alter-feat-item svg {
    margin-bottom: 4px;
    color: #ffffff;
}

.feat-name {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.feat-sub {
    font-size: 0.62rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
}

.alter-price-box-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
}

.payment-type {
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.price-tag-big {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-tag-big .num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1;
}

.price-tag-big .curr {
    font-size: 1.2rem;
    font-weight: 700;
    color: #94a3b8;
}

.price-bullets-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.price-bullets-list li {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-bullets-list .chk {
    color: #ffffff;
    font-weight: 900;
}

.alter-ctas-row {
    display: flex;
    gap: 14px;
    align-items: center;
}

.btn-buy-pill {
    background: #ffffff !important;
    color: #000000 !important;
    font-weight: 800 !important;
    font-size: 0.98rem !important;
    letter-spacing: 0.5px !important;
    padding: 0.95em 2.2em !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-buy-pill:hover {
    background: #25D366 !important;
    color: #ffffff !important;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45) !important;
    transform: translateY(-3px) scale(1.02) !important;
}

.btn-demo-pill {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    letter-spacing: 1px !important;
    padding: 0.95em 2em !important;
    border-radius: 999px !important;
    transition: var(--transition) !important;
}

.btn-demo-pill:hover {
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-2px) !important;
}

.alter-proof-bar {
    margin-top: 3.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.2rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-item:last-child {
    border-right: none;
}

.proof-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
}

.proof-val {
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
}

.proof-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Responsive adjustments for alter hero banner */
@media (max-width: 1024px) {
    .alter-main-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .alter-hero-banner {
        padding: 3rem 1.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .theme-spotlight {
        padding: 2.5rem 3% 1rem;
        margin: 1.5rem auto;
    }
    .alter-hero-banner {
        padding: 2rem 1.2rem 1.5rem;
        border-radius: 18px;
    }
    .alter-badge-top {
        margin: 0 auto 1.2rem;
        display: flex;
        justify-content: center;
        width: max-content;
        font-size: 0.7rem;
    }
    .alter-media-col {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    .alter-stage-img {
        max-width: 250px !important;
    }
    .alter-info-col {
        text-align: center;
        align-items: center;
    }
    .alter-hero-title {
        font-size: 2.2rem !important;
        text-align: center;
    }
    .alter-hero-slogan {
        font-size: 0.82rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 1rem !important;
    }
    .alter-hero-desc {
        font-size: 0.92rem !important;
        text-align: center;
        margin-bottom: 1.5rem !important;
    }
    .alter-features-row {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 4px !important;
        padding: 0.8rem 0 !important;
        width: 100%;
    }
    .alter-feat-item svg {
        width: 18px;
        height: 18px;
    }
    .feat-name {
        font-size: 0.55rem !important;
        letter-spacing: 0px !important;
    }
    .feat-sub {
        font-size: 0.5rem !important;
        letter-spacing: 0px !important;
    }
    .alter-price-box-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 1.2rem 1rem !important;
        gap: 1rem !important;
        width: 100%;
    }
    .price-bullets-list {
        align-items: center;
    }
    .price-bullets-list li {
        font-size: 0.85rem;
    }
    .alter-ctas-row {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .btn-buy-pill, .btn-demo-pill {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.9em 1em !important;
        font-size: 0.95rem !important;
    }
    .alter-proof-bar {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 1rem 0.8rem !important;
        margin-top: 2rem !important;
    }
    .proof-item:nth-child(5) {
        grid-column: span 2;
        border-bottom: none;
    }
}

/* ==========================================================================
   STANDALONE FULL THEME PAGE STYLES (theme.html)
   ========================================================================== */

.full-page-gallery-container {
    background: #050507;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    margin-bottom: 3rem;
}

.full-gallery-viewport {
    width: 100%;
    min-height: 480px;
    max-height: 700px;
    background: radial-gradient(circle at center, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.full-gallery-viewport img {
    max-width: 100%;
    max-height: 650px;
    object-fit: contain;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

.full-gallery-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.page-thumb {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.page-thumb:hover, .page-thumb.active {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.page-thumb img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.page-thumb span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #cbd5e1;
}

.alter-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.alter-details-card {
    background: #08090e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
}

.alter-details-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
}

/* Lightbox Zoom Modal Styles */
.zoom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.zoom-modal-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.zoom-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.2rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2002;
    transition: all 0.2s ease;
}

.zoom-close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.zoom-controls {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2002;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.zoom-controls button {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.zoom-controls button:hover {
    background: #ffffff;
    color: #000000;
}

.zoom-modal-content {
    max-width: 90vw;
    max-height: 85vh;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-modal-content img {
    max-width: 88vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.2s ease;
    cursor: zoom-in;
}

.zoom-hint-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.gallery-tabs-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.gallery-tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #94a3b8;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

/* ==========================================================================
   PERFECT MOBILE RESPONSIVENESS POLISH FOR THEME PAGE (theme.html)
   ========================================================================== */

@media (max-width: 768px) {
    /* Navbar Mobile Polish */
    .navbar {
        padding: 0.75rem 4% !important;
    }
    .navbar .logo span {
        font-size: 1rem !important;
    }
    .navbar .nav-links {
        gap: 0.5rem !important;
    }
    .navbar .nav-links a:not(.btn) {
        display: none !important;
    }

    /* Hero Spotlight Mobile Decluttering */
    .alter-hero-banner {
        padding: 2rem 1.2rem 1.5rem !important;
        border-radius: 18px !important;
        margin-bottom: 2.5rem !important;
    }
    .alter-hero-title {
        font-size: 2.2rem !important;
        letter-spacing: -0.5px !important;
    }
    .alter-hero-slogan {
        font-size: 0.8rem !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 0.8rem !important;
    }
    .alter-hero-desc {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }
    .alter-stage-img {
        max-width: 310px !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 1rem !important;
    }

    /* Hide heavy Feature Icons Row on mobile to remove clutter */
    .alter-features-row {
        display: none !important;
    }

    /* Pricing Box Mobile - Clean Minimalist */
    .alter-price-box-container {
        padding: 1rem 1.2rem !important;
        border-radius: 14px !important;
        justify-content: center !important;
        text-align: center !important;
        margin-bottom: 1.2rem !important;
    }
    .price-left-side {
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .price-right-side {
        display: none !important;
    }
    .price-tag-big .num {
        font-size: 2.4rem !important;
    }
    .price-tag-big .curr {
        font-size: 1.1rem !important;
    }

    /* Full Width CTAs */
    .alter-ctas-row {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .btn-buy-pill, .btn-demo-pill {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.9em 1em !important;
        font-size: 0.92rem !important;
    }

    /* Proof Bar Mobile - Clean 1-Line Strip */
    .alter-proof-bar {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px 16px !important;
        padding: 0.8rem 0.5rem !important;
        border-radius: 14px !important;
        margin-top: 1.5rem !important;
    }
    .proof-item {
        border-right: none !important;
        padding: 0 !important;
        flex-direction: row !important;
        gap: 6px !important;
        align-items: center !important;
    }
    .proof-val {
        font-size: 0.95rem !important;
    }
    .proof-sub {
        font-size: 0.65rem !important;
        margin-top: 0 !important;
    }

    /* Previews Gallery Mobile Polish */
    .section {
        padding-top: 2.5rem !important;
        padding-bottom: 2rem !important;
    }
    .full-page-gallery-container {
        padding: 1.2rem 0.8rem !important;
        border-radius: 18px !important;
        margin-bottom: 2rem !important;
    }
    .full-gallery-viewport {
        min-height: 240px !important;
        max-height: 420px !important;
        padding: 0.5rem !important;
        border-radius: 14px !important;
        margin-bottom: 1rem !important;
    }
    .zoom-hint-badge {
        font-size: 0.7rem !important;
        padding: 5px 12px !important;
        top: 12px !important;
        right: 12px !important;
    }
    .full-gallery-thumbs-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
    .page-thumb {
        padding: 8px !important;
        border-radius: 12px !important;
    }
    .page-thumb img {
        height: 65px !important;
        border-radius: 8px !important;
    }
    .page-thumb span {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
        text-align: center;
    }

    /* Details Cards Mobile Stacking & Breathing Room */
    .alter-details-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    .alter-details-card {
        padding: 1.8rem 1.2rem !important;
        border-radius: 18px !important;
    }
    .alter-details-card:nth-child(1) {
        order: 1 !important;
    }
    .alter-details-card:nth-child(2) {
        order: 2 !important;
    }

    /* Order Steps Mobile Stacking */
    .order-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
    }
    .step-card {
        padding: 1rem 0.8rem !important;
    }
}

/* Non-Sticky Header Navigation on Theme Page */
.theme-page-body .navbar {
    position: absolute !important;
}

/* Floating Mobile Sticky CTA Bar - Strictly for Mobile Screens Only */
@media (max-width: 768px) {
    .mobile-sticky-cta {
        position: fixed;
        bottom: -100px;
        left: 0;
        width: 100%;
        background: rgba(18, 18, 24, 0.94) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px)) 16px !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 1000;
        transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
    }

    .mobile-sticky-cta.active {
        bottom: 0;
    }
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
        opacity: 0 !important;
    }
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.sticky-price {
    font-size: 1.05rem;
    font-weight: 900;
    color: #25D366;
}

.sticky-buy-btn {
    padding: 0.6em 1.3em !important;
    font-size: 0.85rem !important;
    border-radius: 99px !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none !important;
    }
}

/* Mobile High-Converting Trust Badges Grid */
.mobile-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 2rem 0;
}

.trust-badge-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.06);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-text b {
    display: block;
    font-size: 0.82rem;
    color: #ffffff;
    margin-bottom: 2px;
}

.trust-text span {
    display: block;
    font-size: 0.68rem;
    color: #94a3b8;
    line-height: 1.2;
}

@media (max-width: 500px) {
    .mobile-trust-grid {
        grid-template-columns: 1fr;
    }
}

    /* Lightbox Modal Mobile */
    .zoom-close-btn {
        top: 12px !important;
        right: 15px !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 1.6rem !important;
    }
    .zoom-controls {
        bottom: 15px !important;
        padding: 6px 12px !important;
        gap: 6px !important;
    }
    .zoom-controls button {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 420px) {
    .alter-features-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .full-gallery-thumbs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}





