/* assets/css/style.css */
/* Luxury Toast Notification */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.luxury-toast {
    background: rgba(10, 15, 25, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-accent);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(100px) translateZ(0);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    will-change: transform, opacity;
}
.luxury-toast.active {
    transform: translateY(0) translateZ(0);
    opacity: 1;
}
.luxury-toast i {
    color: var(--gold-accent);
}

/* Heart Blink Animation */
@keyframes heartBlink {
    0% { transform: scale(1); filter: drop-shadow(0 0 0 red); }
    50% { transform: scale(1.4); color: #ff3366; filter: drop-shadow(0 0 10px red); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0 red); }
}
.heart-blink {
    animation: heartBlink 0.6s ease-out;
}

@keyframes pageOverlayFadeOut { from { opacity: 1; } to { opacity: 0; pointer-events: none; } }
body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #070b14; z-index: 10000; pointer-events: none; opacity: 0; animation: pageOverlayFadeOut 0.6s ease-out 0s forwards; transition: opacity 0.4s ease-in-out; }
body.page-loaded::before { opacity: 0; pointer-events: none; animation: none; }
body.page-transitioning::before { opacity: 1; pointer-events: all; animation: none; }

:root {
    --bg-dark: #070b14;
    --bg-light: #101a2b;
    --bg-cream: #f5f8ff;
    --text-main: #edf3ff;
    --text-muted: #aab4c8;
    --gold-accent: #d8b36a;
    --gold-light: #f2dfb0;
    --ink: #151c2d;
    --diamond-blue: #7bc4ff;
    --diamond-glow: rgba(123, 196, 255, 0.22);
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.14);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Manrope', sans-serif;
    scroll-behavior: smooth;
}


/* Site Loader (Multi-Page Brand) */
.loader-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    background: radial-gradient(circle at center, #0a0f1d 0%, #000 70%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s;
    will-change: opacity, visibility;
}

.loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}

.loader-brand.active {
    opacity: 1;
    transform: scale(1);
}

.loader-text {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 25px rgba(123, 196, 255, 0.4);
    white-space: nowrap;
}

.diamond-loader-wrapper {
    width: 160px;
    height: 136px;
    position: relative;
    transition: filter 0.8s ease-in-out;
    will-change: filter;
}

.diamond-loader-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.diamond-fills polygon {
    opacity: 0;
    animation: fillReveal 0.6s ease-in-out forwards;
}

/* Staggered fills to look like coloring */
.diamond-fills polygon:nth-child(1) { animation-delay: 1.8s; }
.diamond-fills polygon:nth-child(2) { animation-delay: 1.85s; }
.diamond-fills polygon:nth-child(3) { animation-delay: 1.9s; }
.diamond-fills polygon:nth-child(4) { animation-delay: 1.95s; }
.diamond-fills polygon:nth-child(5) { animation-delay: 2.0s; }
.diamond-fills polygon:nth-child(6) { animation-delay: 2.05s; }
.diamond-fills polygon:nth-child(7) { animation-delay: 2.1s; }
.diamond-fills polygon:nth-child(8) { animation-delay: 2.15s; }
.diamond-fills polygon:nth-child(9) { animation-delay: 2.2s; }
.diamond-fills polygon:nth-child(10) { animation-delay: 2.25s; }
.diamond-fills polygon:nth-child(11) { animation-delay: 2.3s; }
.diamond-fills polygon:nth-child(12) { animation-delay: 2.35s; }
.diamond-fills polygon:nth-child(13) { animation-delay: 2.4s; }
.diamond-fills polygon:nth-child(14) { animation-delay: 2.45s; }

@keyframes fillReveal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.diamond-lines polygon,
.diamond-lines line,
.diamond-lines path {
    fill: none;
    stroke: var(--diamond-blue);
    stroke-width: 1.5;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLines 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes drawLines {
    0% { stroke-dashoffset: 400; opacity: 1; }
    80% { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 0.1; } /* keep a slight outline */
}

/* Glow effect matching the left picture */
.diamond-loader-wrapper.glow .diamond-loader-svg {
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.6)) drop-shadow(0 0 10px rgba(0, 200, 255, 0.8));
}

/* Fast track for internal navigation */
.fast-track.diamond-loader-wrapper .diamond-fills polygon {
    animation-delay: 0s !important;
    animation-duration: 0.3s !important;
}
.fast-track.diamond-loader-wrapper .diamond-lines polygon,
.fast-track.diamond-loader-wrapper .diamond-lines line {
    animation: none;
    opacity: 0.1;
}

.loader-welcome {
    position: absolute;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.loader-welcome.active {
    opacity: 1;
    transform: scale(1);
}

.welcome-text {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: 4px;
    background: linear-gradient(to bottom, #fff, var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

@media (max-width: 768px) {
    .loader-text { font-size: 1.4rem; letter-spacing: 6px; }
    .welcome-text { font-size: 1.6rem; letter-spacing: 3px; }
    .loader-bar-container { width: 150px; }
}
.reveal-danger {
    opacity: 0;
    transform: translateY(50px) scale(0.9) rotateX(10deg) translateZ(0);
    filter: blur(10px) brightness(0.5);
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1.2s ease, filter 1.2s ease;
    will-change: transform, opacity;
}

.reveal-danger.active {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0) translateZ(0);
    filter: blur(0) brightness(1.2);
}

@media (max-width: 768px) {
    .reveal-danger {
        filter: none !important; /* Remove expensive filter on mobile scroll */
    }
    .reveal-danger.active {
        filter: none !important;
    }
}

/* Luxury Modal / Lightbox */
.luxury-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
    will-change: opacity, visibility;
}

.luxury-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--gold-accent);
}

.modal-content {
    max-width: 90%;
    max-height: 85%;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.luxury-modal.active .modal-content {
    transform: translateY(0);
}

.modal-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.modal-title {
    margin-top: 25px;
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.modal-video-placeholder {
    width: 800px;
    aspect-ratio: 16/9;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    max-width: 100%;
}

.modal-video-placeholder i {
    font-size: 4rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background:
        radial-gradient(circle at 12% -10%, rgba(216, 179, 106, 0.16), transparent 42%),
        radial-gradient(circle at 85% 8%, rgba(123, 196, 255, 0.18), transparent 34%),
        linear-gradient(145deg, #070b14, #0b1322 52%, #111d31 100%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Performance Overrides for Mobile */
@media (max-width: 768px) {
    * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .gem-card, .vedic-block, .gem-advisor-card, .gem-advisor-results {
        backdrop-filter: none !important;
        background: rgba(12, 21, 37, 0.9) !important;
    }
}

body:not(.home-page) main {
    padding-top: 80px; /* Global header offset */
}

/* Page Hero Styles */
.page-hero {
    padding-top: 100px; /* Reduced from 180px because main adds 80px */
    padding-bottom: 80px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(7, 11, 20, 0.8), transparent);
}

.hero-description {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Gem Advisor System */
.gem-advisor-section {
    position: relative;
    overflow: hidden;
}

.gem-advisor-hero {
    min-height: 320px;
    padding: 48px;
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: flex-end;
    margin-bottom: 32px;
}

.gem-advisor-hero-copy {
    max-width: 720px;
    background: rgba(7, 11, 20, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
}

.gem-advisor-hero-copy .section-title {
    margin-top: 10px;
    margin-bottom: 12px;
}

.gem-advisor-hero-copy p {
    color: var(--text-muted);
    max-width: 620px;
    font-size: 1.02rem;
}

.gem-advisor-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
    align-items: stretch;
}

.gem-advisor-card,
.gem-advisor-results {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.gem-advisor-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    margin-top: 10px;
    color: var(--text-main);
}

.advisor-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(216,179,106,0.18), rgba(123,196,255,0.16));
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--gold-light);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gem-advisor-form {
    margin-top: 26px;
    display: grid;
    gap: 14px;
}

.calendar-toggle {
    display: inline-flex;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    gap: 6px;
    width: fit-content;
}

.calendar-toggle-btn {
    border: 0;
    background: transparent;
    color: var(--text-muted);
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.calendar-toggle-btn.active {
    background: linear-gradient(135deg, var(--gold-light), var(--diamond-blue));
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(123, 196, 255, 0.14);
}

.calendar-toggle-btn:hover {
    transform: translateY(-1px);
}

.calendar-input-group {
    display: grid;
    gap: 10px;
}

.calendar-input-group.is-active {
    display: grid;
}

.gem-advisor-form label {
    font-size: 0.92rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.gem-advisor-form input[type="date"] {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(7, 11, 20, 0.6);
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.gem-advisor-form input[type="text"] {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(7, 11, 20, 0.6);
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.gem-advisor-form input[type="date"]:focus,
.gem-advisor-form input[type="text"]:focus {
    border-color: rgba(123, 196, 255, 0.65);
    box-shadow: 0 0 0 4px rgba(123, 196, 255, 0.12);
    transform: translateY(-1px);
}

.advisor-submit {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
    margin-top: 4px;
}

.gem-advisor-note,
.gem-advisor-disclaimer {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.gem-advisor-note {
    margin-top: 4px;
}

.gem-advisor-error {
    min-height: 1.2em;
    color: #ffb3b3;
    font-size: 0.92rem;
}

.gem-advisor-results {
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 100%;
}

.gem-advisor-placeholder {
    text-align: center;
    display: grid;
    place-items: center;
    gap: 12px;
    width: 100%;
    padding: 24px;
    border: 1px dashed rgba(255,255,255,0.16);
    border-radius: 24px;
    background: rgba(7, 11, 20, 0.28);
}

.gem-advisor-results.is-populated {
    display: block;
}

/* Premium loading state */
.gem-advisor-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    gap: 18px;
    text-align: center;
    padding: 40px;
}

.gem-loading-icon {
    font-size: 2.8rem;
    color: var(--gold-light);
    animation: gem-pulse-spin 1.8s linear infinite;
    filter: drop-shadow(0 0 18px rgba(216,179,106,0.5));
}

@keyframes gem-pulse-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.15); }
    100% { transform: rotate(360deg) scale(1); }
}

.gem-advisor-loading h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 0;
}

.gem-advisor-loading p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.gem-advisor-result-panel {
    display: grid;
    gap: 22px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 400px;
}

.gem-advisor-result-panel.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* â”€â”€ Vedic Analysis Grid â”€â”€ */
.vedic-analysis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.vedic-block {
    padding: 20px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.vedic-block:hover {
    background: rgba(216,179,106,0.07);
    border-color: rgba(216,179,106,0.3);
}

.vedic-block-label {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.85;
}

.vedic-block-number {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
}

.vedic-block-gem {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.4;
}


.recommendation-banner {
    padding: 24px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(216,179,106,0.2), rgba(123,196,255,0.18));
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.recommendation-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.recommendation-banner.strong {
    background: linear-gradient(135deg, rgba(216,179,106,0.22), rgba(242,223,176,0.14));
}

.recommendation-banner h3 {
    font-family: var(--font-heading);
    margin-bottom: 6px;
}

.recommendation-banner p {
    color: var(--text-muted);
}

.gem-recommendation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gem-card {
    padding: 24px;
    border-radius: 28px;
    background: rgba(12, 21, 37, 0.6);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    display: grid;
    gap: 16px;
    backdrop-filter: blur(12px);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.gem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(123,196,255,0.3);
}

.gem-card.primary {
    background: linear-gradient(180deg, rgba(123,196,255,0.12), rgba(7,11,20,0.55));
}

.gem-card.secondary {
    background: linear-gradient(180deg, rgba(216,179,106,0.12), rgba(7,11,20,0.55));
}

.gem-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.gem-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.4rem;
    flex: 0 0 auto;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.gem-icon.ruby { background: linear-gradient(135deg, #e04d5a, #8c1431); }
.gem-icon.emerald { background: linear-gradient(135deg, #4ed69b, #0f6a47); }
.gem-icon.agate { background: linear-gradient(135deg, #c8a97b, #7d5330); }
.gem-icon.pearl { background: linear-gradient(135deg, #f5f0e7, #b8b1a0); color: #172033; }
.gem-icon.diamond { background: linear-gradient(135deg, #e6f4ff, #88bfff); color: #0f172a; }
.gem-icon.sapphire { background: linear-gradient(135deg, #64a8ff, #153e94); }
.gem-icon.opal { background: linear-gradient(135deg, #f3c7ff, #6b77ff); }
.gem-icon.garnet { background: linear-gradient(135deg, #ff7a7a, #8c1631); }
.gem-icon.turquoise { background: linear-gradient(135deg, #65e4d2, #158697); }
.gem-icon.amethyst { background: linear-gradient(135deg, #d7a8ff, #6e3dd1); }
.gem-icon.aquamarine { background: linear-gradient(135deg, #86f0e8, #1985b5); }

.gem-card h4 {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.gem-subline {
    color: var(--gold-light);
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gem-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.gem-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gem-pill {
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.82rem;
    border: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 0.03em;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.gem-pill:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(216,179,106,0.3);
}

.gem-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--ink);
    background: linear-gradient(135deg, var(--gold-light), var(--diamond-blue));
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
    margin-top: auto;
}

.gem-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(123,196,255,0.28), 0 4px 12px rgba(216,179,106,0.18);
}

.gem-advisor-disclaimer {
    margin-top: 18px;
    text-align: center;
}


.gem-advisor-empty {
    color: var(--text-muted);
    text-align: center;
    padding: 28px;
}

.gem-advisor-hidden {
    display: none !important;
}

/* Zodiac Preview / Advisor Page */
.advisor-hero-section {
    position: relative;
    padding-top: 100px; /* Reduced from 180px because main adds 80px */
    padding-bottom: 80px;
}

.zodiac-preview-section,
.advisor-mechanism-section,
.advisor-workflow {
    position: relative;
}

.zodiac-preview-shell {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    padding: 24px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(123,196,255,0.12), transparent 35%),
        radial-gradient(circle at bottom right, rgba(216,179,106,0.12), transparent 30%),
        rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.24);
}

.zodiac-preview-copy {
    padding: 32px;
    display: grid;
    align-content: center;
    gap: 18px;
}

.zodiac-preview-copy .section-title {
    margin-top: 8px;
}

.zodiac-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.zodiac-card {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 92px;
    background: rgba(7,11,20,0.55);
}

.zodiac-symbol {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    color: var(--gold-light);
    background: linear-gradient(135deg, rgba(242,223,176,0.18), rgba(123,196,255,0.16));
    border: 1px solid rgba(255,255,255,0.08);
    flex: 0 0 auto;
}

.zodiac-card-copy h3,
.mechanism-step h3,
.history-panel-header h2,
.advisor-hero-copy h1,
.advisor-form-card h2 {
    font-family: var(--font-heading);
    color: var(--text-main);
}

.zodiac-card-copy p,
.mechanism-step p,
.advisor-hero-copy p,
.advisor-form-card p,
.history-panel-header span {
    color: var(--text-muted);
}

.zodiac-preview-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    grid-column: 1 / -1;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.gem-advisor-page {
    padding-bottom: 70px;
}

.advisor-hero-shell {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
}

.advisor-hero-copy {
    padding: 34px;
}

.advisor-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.advisor-zodiac-wheel {
    position: relative;
    aspect-ratio: 1;
    min-height: 420px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.wheel-ring {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: radial-gradient(circle, rgba(123,196,255,0.08), transparent 58%);
    box-shadow: inset 0 0 0 18px rgba(255,255,255,0.03);
}

.wheel-center {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(7,11,20,0.9), rgba(16,26,43,0.72));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 40px rgba(0,0,0,0.24);
}

.wheel-center span {
    display: block;
    font-size: 2.6rem;
    color: var(--gold-light);
}

.wheel-center strong {
    display: block;
    margin-top: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.wheel-chip {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--gold-light);
    font-size: 1.3rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.chip-1 { top: 6%; left: 50%; transform: translateX(-50%); }
.chip-2 { top: 12%; right: 16%; }
.chip-3 { top: 34%; right: 4%; }
.chip-4 { top: 58%; right: 8%; }
.chip-5 { bottom: 12%; right: 20%; }
.chip-6 { bottom: 4%; left: 50%; transform: translateX(-50%); }
.chip-7 { bottom: 12%; left: 20%; }
.chip-8 { top: 58%; left: 8%; }
.chip-9 { top: 34%; left: 4%; }
.chip-10 { top: 12%; left: 16%; }
.chip-11 { top: 20%; left: 50%; transform: translateX(-50%); }
.chip-12 { bottom: 22%; left: 50%; transform: translateX(-50%); }

.advisor-mechanism-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mechanism-step {
    padding: 24px;
    display: grid;
    gap: 12px;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold-light), var(--diamond-blue));
    color: var(--ink);
    font-weight: 800;
}

.advisor-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.advisor-form-card,
.advisor-results-card,
.history-panel {
    padding: 28px;
}

.advisor-form-card h2 {
    margin-top: 10px;
}

.form-row {
    display: grid;
    gap: 10px;
}

.form-row input[type="text"] {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(7,11,20,0.6);
    color: var(--text-main);
    font-size: 1rem;
}

.advisor-results-card {
    min-height: 100%;
}

.history-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 22px;
}

.history-panel {
    min-height: 220px;
}

.history-panel-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.history-list-empty {
    color: var(--text-muted);
    padding: 18px;
    border: 1px dashed rgba(255,255,255,0.12);
    border-radius: 18px;
}

.history-items {
    display: grid;
    gap: 12px;
}

.history-entry {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.history-entry-top,
.history-entry-body,
.history-entry-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.history-entry-top span,
.history-entry-body span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.history-entry-badges {
    margin-top: 12px;
    justify-content: flex-start;
}

.history-entry-badges span {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(216,179,106,0.12);
    border: 1px solid rgba(216,179,106,0.18);
    font-size: 0.82rem;
}

@media (max-width: 1024px) {
    .gem-advisor-grid {
        grid-template-columns: 1fr;
    }

    .advisor-hero-shell {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advisor-zodiac-wheel {
        width: min(100%, 420px);
        justify-self: center;
    }

    .gem-advisor-hero {
        min-height: 260px;
        padding: 24px;
    }

    .gem-recommendation-grid,
    .vedic-analysis-grid {
        grid-template-columns: 1fr;
    }

    .zodiac-preview-shell {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .zodiac-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .zodiac-card {
        padding: 12px;
        min-height: 80px;
        gap: 10px;
    }

    .zodiac-symbol {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }

    .zodiac-card-copy h3 {
        font-size: 1rem;
    }

    .zodiac-card-copy p {
        font-size: 0.75rem;
    }

    .zodiac-preview-copy {
        padding: 20px;
        text-align: center;
    }

    .advisor-form-layout {
        align-items: flex-start;
        gap: 16px;
    }

    .advisor-results-card {
        min-height: auto;
    }

    .gem-advisor-placeholder,
    .gem-advisor-loading {
        min-height: 260px;
        padding: 20px;
    }

    .gem-card {
        padding: 20px;
        border-radius: 22px;
    }

    .vedic-analysis-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 8px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        scrollbar-width: none;
    }

    .vedic-analysis-grid::-webkit-scrollbar {
        display: none;
    }

    .vedic-block {
        flex: 0 0 280px;
        scroll-snap-align: center;
        padding: 20px 16px;
    }

    .vedic-block-number {
        font-size: 1.4rem;
    }

    .advisor-zodiac-wheel {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .gem-advisor-card,
    .gem-advisor-results,
    .gem-advisor-hero-copy {
        padding: 20px;
        border-radius: 22px;
    }

    .gem-advisor-hero {
        min-height: 220px;
        padding: 16px;
    }

    .gem-card {
        padding: 18px;
    }

    .gem-history-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .gem-history-gems {
        justify-content: flex-start;
    }

    .zodiac-preview-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .zodiac-preview-grid::-webkit-scrollbar {
        display: none;
    }

    .zodiac-preview-grid .zodiac-card {
        flex: 0 0 280px !important;
        width: 280px !important;
        min-width: 280px !important;
        scroll-snap-align: center;
        padding: 15px;
        min-height: 92px !important;
    }

    .zodiac-symbol {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .zodiac-card-copy h3 {
        font-size: 1.1rem;
    }

    .zodiac-preview-footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .advisor-zodiac-wheel {
        min-height: 300px;
    }

    .wheel-center {
        width: 150px;
        height: 150px;
    }

    .wheel-chip {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

.bg-darker {
    background: rgba(0, 0, 0, 0.2);
}

/* About Us Page Grids */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--gold-light);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    text-align: center;
    padding: 40px 30px;
}

.value-card i {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Gallery Grid Styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-card {
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

/* Video Grid Styling */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0; /* Flush with top */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
    background: rgba(7, 11, 20, 0.95);
    backdrop-filter: blur(25px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    width: 100%;
    min-height: 60px; /* Reduced further from 70px */
    background: rgba(12, 21, 37, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
}

.header-center-nav {
    flex: 2;
    display: flex;
    justify-content: center;
}

.header-center-nav ul {
    display: flex;
    gap: 20px;
}

.header-center-nav a {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.7;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-center-nav a:hover,
.header-center-nav a.active {
    opacity: 1;
    color: var(--diamond-blue);
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

body.nav-open {
    overflow: hidden;
}

@media (min-width: 1151px) and (max-width: 1300px) {
    .header-inner {
        padding: 0 15px !important;
    }
    .header-center-nav ul {
        gap: 12px !important;
    }
    .header-center-nav a {
        font-size: 0.72rem !important;
        letter-spacing: 1px !important;
    }
    .header-right {
        gap: 15px !important;
    }
    .logo-mark {
        font-size: 1.4rem !important;
        letter-spacing: 3px !important;
    }
    .logo-3d-canvas {
        width: 26px !important;
        height: 28px !important;
    }
}

@media (max-width: 1150px) {
    .header-inner {
        padding: 0 24px;
    }

    .menu-toggle {
        display: flex;
    }

    .header-center-nav {
        position: fixed;
        top: 80px; /* Start below the header */
        right: -100%;
        width: 65%;
        height: calc(100vh - 80px); /* Adjust height */
        background: rgba(7, 11, 20, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 20px; /* Reduced padding since we start lower */
        align-items: flex-start;
        padding-left: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        flex: none;
        border-left: 1px solid rgba(216, 179, 106, 0.2);
    }


    .header-center-nav.active {
        right: 0;
    }

    .nav-close {
        position: absolute;
        top: 30px;
        right: 30px;
        background: none;
        border: none;
        color: var(--gold-accent);
        font-size: 1.5rem;
        cursor: pointer;
        display: block;
    }

    .header-center-nav ul {
        flex-direction: column;
        gap: 0; /* Remove gap to use separators */
        width: 100%;
        text-align: left;
    }

    .header-center-nav li {
        width: 100%;
        position: relative;
    }

    /* Diamond Cutting Separator Lines */
    .header-center-nav li::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80%;
        height: 1px;
        background: linear-gradient(to right, 
            rgba(216, 179, 106, 0.4) 0%, 
            rgba(216, 179, 106, 0.1) 50%, 
            transparent 100%);
    }

    .header-center-nav a {
        font-size: 1.1rem;
        letter-spacing: 3px;
        display: block;
        padding: 25px 0;
        text-transform: uppercase;
    }

    
    .header-right {
        flex: 1;
        gap: 20px;
    }
    
    .logo-mark {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }
    
    .logo-3d-canvas {
        width: 28px;
        height: 30px;
    }
}

.header-icon-btn {
    color: #fff;
    font-size: 1.25rem;
    position: relative;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.header-icon-btn:hover {
    opacity: 1;
    color: var(--diamond-blue);
    transform: translateY(-2px);
}

.cart-count, .wishlist-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold-light);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-inner::before {
    content: '';
    position: absolute;
    left: -10%;
    top: -75%;
    width: 36%;
    height: 230%;
    background: linear-gradient(120deg, rgba(182, 219, 255, 0.28), rgba(255, 255, 255, 0.02));
    transform: rotate(8deg);
    pointer-events: none;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-self: end;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 10;
    transition: all 0.3s ease;
}

.logo-mark {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 6px;
    color: #dbeaff;
    background: linear-gradient(95deg, #f8fbff 8%, #9cd3ff 34%, #ffffff 52%, #9cd3ff 70%, #f8fbff 94%);
    background-size: 220% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    animation: logoDiamondShine 4.2s ease-in-out infinite, logoGlowShift 3.2s ease-in-out infinite;
}

.logo-gem-container {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin: 0 4px;
    vertical-align: middle;
    position: relative;
    top: 0; /* Resetting to 0 as we fixed it in JS */
}

.logo-3d-canvas {
    width: 32px;
    height: 34px; /* Slightly reduced height to fit text better */
    display: inline-block;
    filter: 
        drop-shadow(0 0 10px rgba(123, 196, 255, 0.6))
        drop-shadow(0 0 18px rgba(216, 179, 106, 0.3));
}

.logo:hover {
    transform: scale(1.02);
}

.logo-footer {
    align-items: flex-start;
    text-align: left;
}

.logo-footer .logo-mark {
    font-size: 1.6rem;
}

.main-nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav ul li {
    opacity: 0;
    transform: translateY(-8px);
    animation: navFloatIn 0.55s ease forwards;
}

.main-nav ul li:nth-child(1) { animation-delay: 0.08s; }
.main-nav ul li:nth-child(2) { animation-delay: 0.14s; }
.main-nav ul li:nth-child(3) { animation-delay: 0.2s; }
.main-nav ul li:nth-child(4) { animation-delay: 0.26s; }

.main-nav a {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    color: #dbe7fb;
    font-weight: 400;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(126, 170, 219, 0.12);
    border: 1px solid rgba(173, 207, 245, 0.26);
    backdrop-filter: blur(8px);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-accent), var(--diamond-blue));
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    background: rgba(158, 199, 245, 0.22);
    border-color: rgba(199, 225, 255, 0.45);
}

.main-nav-left,
.main-nav-right {
    flex: 1;
}

.main-nav-left {
    justify-self: start;
}

.main-nav-right ul {
    justify-content: flex-end;
}

.main-nav-left ul {
    justify-content: flex-start;
}

.cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(125deg, rgba(13, 29, 56, 0.86), rgba(21, 46, 86, 0.72));
    color: #f6deb1;
    padding: 12px 24px;
    border-radius: 28px 0 0 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(141, 190, 244, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(-8px);
    animation: navFloatIn 0.55s ease 0.3s forwards;
}

.cart-btn:hover {
    background: linear-gradient(135deg, rgba(17, 39, 74, 0.95), rgba(30, 62, 107, 0.85));
    color: #ffe6ba;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-outline-gold {
    border: 1px solid var(--ink);
    color: var(--ink);
    background: transparent;
    border-radius: 999px;
}

.btn-outline-gold:hover {
    background: var(--ink);
    color: var(--bg-cream);
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 32px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.btn-discover:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

.btn-discover .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-discover:hover .arrow {
    transform: translateX(5px);
}

.btn-primary-gold {
    background: var(--gold-accent);
    color: var(--bg-dark);
    font-weight: 700;
    border-radius: 4px;
    padding: 12px 28px;
    box-shadow: 0 4px 15px rgba(216, 179, 106, 0.3);
}

.btn-primary-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 179, 106, 0.5);
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    border-radius: 4px;
    padding: 12px 28px;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background:
        radial-gradient(circle at 50% 30%, rgba(123, 196, 255, 0.12), transparent 38%),
        radial-gradient(circle at 50% 65%, rgba(216, 179, 106, 0.16), transparent 45%),
        linear-gradient(180deg, rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.97));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/campaign_banner.jpg') center/cover no-repeat;
    opacity: 0.24;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 22% 18%, rgba(255, 255, 255, 0.55), transparent),
        radial-gradient(1.8px 1.8px at 65% 31%, rgba(255, 255, 255, 0.45), transparent),
        radial-gradient(2px 2px at 78% 64%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1.6px 1.6px at 36% 74%, rgba(216, 179, 106, 0.4), transparent);
    pointer-events: none;
    opacity: 0.7;
}

.hero-body-card {
    width: 92%;
    max-width: 1400px;
    min-height: 80vh;
    margin: 50px auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.hero-luxury-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    width: 100%;
    align-items: center;
}

.luxury-left {
    display: flex;
    justify-content: center;
}

.featured-product-image {
    width: 100%;
    max-width: 450px;
    position: relative;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
}

.featured-product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: floatingProduct 4s ease-in-out infinite;
}

@keyframes floatingProduct {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%       { transform: translateY(-15px) rotate(1deg); }
}

.luxury-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.sparkle-container {
    position: relative;
    padding: 0 40px;
}

.luxury-title {
    font-size: 5rem;
    line-height: 1.1;
    font-family: var(--font-heading);
    font-weight: 400;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    margin: 0;
    word-wrap: break-word;
}

.sparkle {
    position: absolute;
    color: #9cd3ff;
    font-size: 1.5rem;
    animation: sparklePulse 2s ease-in-out infinite;
    pointer-events: none;
}

.sparkle.s1 { top: -10px; left: 0; }
.sparkle.s2 { top: 20px; left: 10px; animation-delay: 0.5s; }
.sparkle.s3 { bottom: 10px; right: 0; animation-delay: 1s; }

@keyframes sparklePulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
    50%       { opacity: 1; transform: scale(1.2) rotate(45deg); }
}

.luxury-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    padding: 20px;
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.exclusive-set-card {
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.exclusive-set-card h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #fff;
}

.exclusive-set-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #fff;
    color: #000;
}

.model-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: auto;
    z-index: 0; /* Changed from -1 to 0 */
    opacity: 0.6; /* Reduced opacity to improve text readability */
    border-radius: 0 0 24px 0;
    pointer-events: none;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 24px 0;
}

.card-dots {
    display: flex;
    gap: 6px;
    margin-top: auto;
}

.card-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.card-dots span.active {
    background: #fff;
    box-shadow: 0 0 10px #fff;
}

.artisan-card h4 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #111;
    margin-left: -10px;
}

.avatar-group img:first-child { margin-left: 0; }

@media (max-width: 1200px) {
    .luxury-title { font-size: 4rem; }
    .hero-luxury-grid { grid-template-columns: 1fr 1fr; }
    .luxury-right { grid-column: span 2; flex-direction: row; }
}

@media (max-width: 768px) {
    .hero-body-card { padding: 30px; border-radius: 20px; }
    .hero-luxury-grid { grid-template-columns: 1fr; }
    .luxury-right { flex-direction: column; grid-column: auto; }
    .luxury-title { font-size: 3rem; }
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4.25rem;
    margin-bottom: 18px;
    letter-spacing: 1.2px;
    line-height: 1.08;
    background: linear-gradient(72deg, var(--gold-light), #ffffff 45%, var(--diamond-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 26px rgba(123, 196, 255, 0.2);
}

.hero p {
    font-size: 1.1rem;
    color: #d8e0ef;
    max-width: 720px;
    margin-bottom: 34px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* â”€â”€ Product Showcase â”€â”€ */
.hero-product-showcase {
    position: relative;
    z-index: 10;
}

.showcase-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 8px;
    width: fit-content;
}

.tab-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.showcase-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mini-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mini-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

.mini-card-info h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 5px;
}

.mini-card-info .price {
    font-size: 1.2rem;
    color: var(--gold-light);
    font-weight: 600;
}

.mini-card-img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
}

.mini-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.mini-card:hover .mini-card-img img {
    transform: scale(1.15) rotate(5deg);
}

.product-code {
    position: absolute;
    bottom: 10px;
    right: 130px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.3);
}

.hero-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Changed from flex to none */
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.hero-slide.active {
    display: flex; /* Changed from display: block to flex */
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-3d-canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* Slider Nav Dots */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.nav-dot.active {
    background: var(--diamond-blue);
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--diamond-blue);
}

.diamond-glow-ring {
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 130px;
    height: 24px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center,
        rgba(123, 196, 255, 0.55) 0%,
        rgba(216, 179, 106, 0.22) 50%,
        transparent 75%);
    filter: blur(6px);
    animation: glowRingPulse 2.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes diamondFloat {
    0%, 100% { transform: translateY(-50%) translateY(0px); }
    50%       { transform: translateY(-50%) translateY(-12px); }
}

@keyframes glowRingPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scaleX(0.9); }
    50%       { opacity: 0.9; transform: translateX(-50%) scaleX(1.1); }
}

.btn-ghost-light {
    border-color: rgba(255, 255, 255, 0.42);
    color: #ffffff;
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.68);
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--gold-light);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-accent), var(--diamond-blue));
    margin: 20px auto 0;
}

/* Featured Collections */
/* Product Slider */
.product-slider-container {
    position: relative;
    width: 100%;
    padding: 0 50px;
}

.product-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.product-slider-inner {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 30px;
}

.product-slider-inner .product-card {
    flex: 0 0 calc((100% - 60px) / 3); /* 3 cards on desktop */
    min-width: 0;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-control:hover {
    background: var(--gold-accent);
    color: var(--bg-dark);
    border-color: var(--gold-accent);
}

.slider-control.prev { left: -10px; }
.slider-control.next { right: -10px; }

@media (max-width: 1024px) {
    .product-slider-inner .product-card {
        flex: 0 0 calc((100% - 30px) / 2); /* 2 cards on tablet */
    }
}

@media (max-width: 768px) {
    .product-slider-container {
        padding: 0;
    }
    
    .product-slider-inner .product-card {
        flex: 0 0 calc((100% - 16px) / 2); /* 2 cards on mobile */

    }

    .slider-control {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .slider-control.prev { left: -5px; }
    .slider-control.next { right: -5px; }
}

.product-card {
    background: rgba(9, 19, 32, 0.8);
    border: 1px solid var(--glass-border);
    padding: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 36px rgba(10, 18, 32, 0.45), 0 0 0 1px rgba(123, 196, 255, 0.24) inset;
    border-color: rgba(123, 196, 255, 0.35);
}

.product-image {
    width: 100%;
    height: 300px;
    background: radial-gradient(circle at 28% 18%, rgba(123, 196, 255, 0.18), #0d1625 60%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card:hover .card-overlay {
    opacity: 1 !important;
}


.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.product-card .text-muted {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .product-card {
        padding: 12px;
    }
    .product-image {
        height: 130px;
        margin-bottom: 8px;
    }
    .product-info h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    .product-price {
        font-size: 0.9rem;
    }
}



.product-price, .unit-price, .subtotal, .price-row, .summary-row:not(.total), .summary-row.total {
    display: none !important;
}

/* Review Popup (Exit Intent) */
.review-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-overlay.active {
    opacity: 1;
    visibility: visible;
}

.review-card {
    background: #0f0f11;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.review-overlay.active .review-card {
    transform: translateY(0) scale(1);
}

.review-card .section-subtitle {
    display: block;
    margin-bottom: 12px;
    color: var(--gold-accent, #c9a763);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.review-card h2 {
    font-family: var(--font-heading), serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.review-card p {
    color: #8c8c9a;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 300;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 25px;
    font-size: 2rem;
    flex-direction: row-reverse;
}

.star-rating i {
    cursor: pointer;
    color: #2e2e33; /* Dark grey when inactive */
    transition: all 0.2s ease;
}

.star-rating i.active,
.star-rating i:hover,
.star-rating i:hover ~ i {
    color: var(--gold-accent, #c9a763);
    text-shadow: 0 0 15px rgba(216, 179, 106, 0.4);
}

.review-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px;
    color: #fff;
    font-family: var(--font-body), sans-serif;
    resize: none;
    margin-bottom: 25px;
    min-height: 120px;
    outline: none;
    transition: border-color 0.3s ease;
}

.review-textarea::placeholder {
    color: #555562;
}

.review-textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.submit-review-btn {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    padding: 14px 28px !important;
    border-radius: 30px !important;
    font-family: var(--font-body), sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: none !important;
    box-shadow: none !important;
}

.submit-review-btn:hover {
    background: #fff !important;
    color: #0f0f11 !important;
    border-color: #fff !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1) !important;
}

.review-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: color 0.3s ease;
}

.review-close:hover {
    color: #fff;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, rgba(9, 15, 27, 0.96), rgba(8, 12, 22, 0.98));
    padding: 80px 0 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-brand .logo-brand {
    color: rgba(245, 245, 245, 0.68);
}

.footer-brand .logo-mark {
    color: var(--text-main);
}

.footer-brand .logo-gem {
    color: var(--gold-light);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 20px;
    font-size: 0.9rem;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a, .footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Admin Styles Overlay */
.admin-login-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
}

.admin-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.admin-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--gold-accent);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.btn-full {
    width: 100%;
    background: var(--gold-accent);
    color: var(--bg-dark);
}

.btn-full:hover {
    background: var(--gold-light);
    color: var(--bg-dark);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navFloatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoDropIn {
    from {
        opacity: 0;
        transform: translateY(-18px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logoGlowShift {
    0%, 100% {
        text-shadow: 0 0 0 rgba(123, 196, 255, 0);
    }
    50% {
        text-shadow: 0 0 18px rgba(123, 196, 255, 0.32);
    }
}

@keyframes logoDiamondShine {
    0% {
        background-position: 0% 50%;
    }
    48% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes diamondSpin {
    from { transform: rotateY(0deg); }
    to   { transform: rotateY(360deg); }
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px 16px;
        min-height: auto;
    }

    .main-nav-left,
    .main-nav-right {
        order: initial;
        width: 100%;
    }

    .logo {
        order: initial;
        padding: 8px 0;
    }

    .main-nav ul {
        justify-content: center;
        gap: 18px;
    }

    .right-section {
        width: 100%;
        justify-content: center;
        gap: 16px;
    }

    .cart-btn {
        border-radius: 999px;
        padding: 10px 20px;
    }
}

@media (max-width: 640px) {
    .main-header {
        padding: 4px 0;
    }

    .logo {
        min-width: auto;
    }

    .logo-mark {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .main-nav a {
        font-size: 0.8rem;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px) translateZ(0);
    transition: transform 0.8s ease, opacity 0.8s ease;
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

/* â”€â”€ Section Subtitle â”€â”€ */
.section-subtitle {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--diamond-blue);
    margin-bottom: 16px;
    opacity: 0.85;
}

/* â”€â”€ Outline Button â”€â”€ */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 34px;
    border: 1px solid var(--gold-accent);
    color: var(--gold-light);
    border-radius: 999px;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.btn-outline:hover {
    background: var(--gold-accent);
    color: var(--bg-dark);
    transform: scale(1.04);
    box-shadow: 0 6px 22px rgba(216, 179, 106, 0.35);
}

/* â”€â”€ Art of Craftsmanship â”€â”€ */
.craftsmanship-section {
    background:
        radial-gradient(circle at 10% 50%, rgba(216, 179, 106, 0.06), transparent 50%),
        var(--bg-light);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.craft-content .section-title {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 24px;
    line-height: 1.15;
}

.craft-content .section-title::after {
    margin: 16px 0 0;
}

.craft-content > p {
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 1rem;
    margin-bottom: 32px;
}

.craft-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.craft-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.craft-features li i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(216, 179, 106, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-size: 0.8rem;
    flex-shrink: 0;
    background: rgba(216, 179, 106, 0.06);
    transition: all 0.3s ease;
}

.craft-features li:hover i {
    background: var(--gold-accent);
    color: var(--bg-dark);
    border-color: var(--gold-accent);
    box-shadow: 0 0 16px rgba(216, 179, 106, 0.4);
}

.craft-features li span {
    transition: color 0.3s ease;
}

.craft-features li:hover span {
    color: var(--text-main);
}

.craft-visual {
    position: relative;
}

.glass-image-container {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.glass-image-container img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.glass-image-container:hover img {
    transform: scale(1.04);
}

.floating-stat {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(7, 11, 20, 0.75);
    border: 1px solid rgba(216, 179, 106, 0.35);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: floatStat 4s ease-in-out infinite;
}

@keyframes floatStat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-stat .stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold-light);
    line-height: 1;
    font-weight: 600;
}

.floating-stat .stat-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
    text-align: center;
}

/* â”€â”€ Testimonials â”€â”€ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.testimonial-card {
    padding: 36px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid var(--glass-border);
}

.testimonial-card.active {
    border-color: rgba(216, 179, 106, 0.35);
    background: rgba(216, 179, 106, 0.04);
    box-shadow: 0 0 40px rgba(216, 179, 106, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 179, 106, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--gold-accent);
    opacity: 0.5;
}

.testimonial-card > p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.97rem;
    font-style: italic;
    flex: 1;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.client-info strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--diamond-blue);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* â”€â”€ Newsletter â”€â”€ */
.newsletter-section {
    padding: 0 0 100px;
}

.newsletter-card {
    border-radius: 28px;
    padding: 70px 80px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(216, 179, 106, 0.1), transparent 60%),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(216, 179, 106, 0.2);
    box-shadow: 0 0 60px rgba(216, 179, 106, 0.06);
}

.newsletter-content .section-title {
    margin-bottom: 16px;
}

.newsletter-content > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 540px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 6px 6px 6px 24px;
    backdrop-filter: blur(10px);
}

.newsletter-form input[type="email"] {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    min-width: 0;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.newsletter-form .btn-discover {
    flex-shrink: 0;
    padding: 10px 28px;
    font-size: 0.85rem;
}

/* â”€â”€ Responsive: New Sections â”€â”€ */
@media (max-width: 1024px) {
    .craftsmanship-grid {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .craftsmanship-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .craft-content .section-title {
        font-size: 2.2rem;
    }

    .glass-image-container img {
        height: 340px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-card {
        padding: 50px 30px;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 16px;
        padding: 16px;
        gap: 12px;
    }

    .newsletter-form input {
        width: 100%;
        text-align: center;
    }
}

/* Gemstone Detail Page */
.gemstone-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px; /* Restoring as main adds 80px, total 120px */
}

.gemstone-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, rgba(123, 196, 255, 0.08), rgba(216, 179, 106, 0.06));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.gemstone-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.gemstone-hero-icon {
    width: 240px;
    height: 240px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    font-weight: bold;
    color: var(--text-main);
    box-shadow: 0 20px 60px rgba(123, 196, 255, 0.2);
}

.gemstone-hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gemstone-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    background: linear-gradient(135deg, #d8b36a, #7bc4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gemstone-subtitle {
    font-size: 18px;
    color: var(--gold-accent);
    margin: 0;
    font-weight: 500;
}

.gemstone-intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

.gemstone-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.quick-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-accent);
    font-weight: 600;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.gemstone-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.gemstone-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gemstone-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold-accent);
}

.section-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.section-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-accent);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

.care-card p {
    font-size: 15px;
    line-height: 2;
    color: var(--text-muted);
}

.healing-properties-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.healing-property-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(123, 196, 255, 0.15), rgba(216, 179, 106, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    text-transform: capitalize;
}

.chakra-info {
    font-size: 16px;
    font-weight: 600;
    color: var(--diamond-blue);
    margin: 0;
    padding: 12px;
    background: rgba(123, 196, 255, 0.1);
    border-left: 4px solid var(--diamond-blue);
    border-radius: 4px;
}

/* Sidebar */
.gemstone-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-accent);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zodiac-badges,
.numerology-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zodiac-badge,
.numerology-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(216, 179, 106, 0.2), rgba(123, 196, 255, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
    min-width: 60px;
}

.properties-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.properties-list li {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.properties-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.properties-list strong {
    color: var(--text-main);
    font-weight: 600;
}

.cta-widget {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(135deg, rgba(216, 179, 106, 0.1), rgba(123, 196, 255, 0.08));
    border: 1px solid var(--gold-accent);
}

.btn-primary-full {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #d8b36a, #f2dfb0);
    color: #000;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(216, 179, 106, 0.3);
}

.widget-note {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-style: italic;
}

/* History Links in Advisor */
.history-gem-link {
    display: inline-block;
    padding: 4px 8px;
    background: linear-gradient(135deg, rgba(216, 179, 106, 0.2), rgba(123, 196, 255, 0.1));
    border-radius: 4px;
    color: var(--diamond-blue);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.history-gem-link:hover {
    background: linear-gradient(135deg, rgba(216, 179, 106, 0.3), rgba(123, 196, 255, 0.15));
    color: var(--gold-accent);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-glass-card {
        margin-top: 95px;
        padding: 30px 24px;
        border-radius: 24px;
    }
    .hero-diamond-3d {
        right: 50%;
        top: auto;
        bottom: -20px;
        transform: translateX(50%);
        width: 150px;
        height: 160px;
    }
    .hero h1 { font-size: 2.4rem; }
    .hero p { font-size: 1rem; }
    .main-nav { display: none; } /* Mobile menu needed later */
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   COLLECTIONS PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.collections-hero {
    position: relative;
    padding: 100px 0 100px; /* Reduced top from 180px because main adds 80px */
    overflow: hidden;
    text-align: center;
}

.collections-hero-bg {
    position: absolute;
    inset: 0;
    background:
        url('../images/gallery_bridal.jpg') center/cover no-repeat;
    opacity: 0.08;
    z-index: -1;
}

.collections-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(123, 196, 255, 0.14), transparent 55%),
        radial-gradient(circle at 50% 80%, rgba(216, 179, 106, 0.1), transparent 45%),
        linear-gradient(180deg, rgba(7,11,20,0.7) 0%, rgba(7,11,20,0.95) 100%);
    z-index: -1;
}

.collections-hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.collections-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.05;
    margin: 12px 0 20px;
    background: linear-gradient(72deg, var(--gold-light), #fff 45%, var(--diamond-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.collections-subtitle {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 50px;
}

.collections-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 28px 50px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    backdrop-filter: blur(15px);
    width: fit-content;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold-light);
    font-weight: 600;
    line-height: 1;
}

.stat-desc {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--glass-border);
}

.collections-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(123, 196, 255, 0.05), transparent 40%),
        var(--bg-dark);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 36px;
}

.collection-card {
    background: linear-gradient(160deg, rgba(16,26,43,0.95), rgba(12,20,36,0.8));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-12px);
    border-color: rgba(216, 179, 106, 0.3);
    box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(216,179,106,0.15) inset;
}

.collection-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.collection-card:hover .collection-card-image img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,11,20,0.8), transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection-card:hover .card-overlay {
    opacity: 1;
}

.btn-enquire {
    background: var(--gold-accent);
    color: var(--bg-dark);
    border: none;
    padding: 10px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.collection-card:hover .btn-enquire {
    transform: translateY(0);
}

.btn-enquire:hover {
    background: var(--gold-light);
    box-shadow: 0 5px 20px rgba(216,179,106,0.4);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
}

.card-badge span {
    background: rgba(7, 11, 20, 0.75);
    border: 1px solid rgba(216,179,106,0.4);
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.collection-card-info {
    padding: 24px;
}

.card-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 14px;
    font-weight: 500;
}

.card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.spec-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

.spec-tag i {
    color: var(--diamond-blue);
    font-size: 0.65rem;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.card-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--gold-light);
    font-weight: 500;
}

.btn-card-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--diamond-blue);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-card-action:hover {
    color: #fff;
    gap: 12px;
}

.btn-card-action i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-card-action:hover i {
    transform: translateX(4px);
}

.empty-state {
    text-align: center;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.empty-icon {
    font-size: 4rem;
    color: var(--gold-accent);
    opacity: 0.3;
    margin-bottom: 10px;
}

.empty-state h2 {
    font-size: 1.8rem;
    color: var(--text-main);
}

.empty-state p {
    color: var(--text-muted);
    max-width: 420px;
    line-height: 1.7;
}

.bespoke-cta-section {
    padding: 0 0 100px;
}

.bespoke-cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(216,179,106,0.2) !important;
    background: rgba(255,255,255,0.03) !important;
    min-height: 340px;
}

.bespoke-cta-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.bespoke-cta-content .section-title {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.bespoke-cta-content .section-title::after {
    margin: 12px 0 0;
}

.bespoke-cta-content > p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.98rem;
    max-width: 400px;
}

.bespoke-cta-visual {
    overflow: hidden;
}

.bespoke-cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bespoke-cta-card:hover .bespoke-cta-visual img {
    transform: scale(1.06);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ENHANCED FOOTER SOCIAL LINKS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
    background: rgba(216,179,106,0.08);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .collections-title { font-size: 2.8rem; }
    .collections-stats { gap: 16px; padding: 16px 24px; flex-wrap: nowrap; white-space: nowrap; }
    .stat-number { font-size: 1.3rem; }
    .stat-desc { font-size: 0.6rem; letter-spacing: 1px; }
    .collections-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 8px;
    }
    .collection-card-info {
        padding: 8px;
    }
    .card-name {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    .collection-card-image {
        height: 140px;
    }
    .card-desc {
        display: none;
    }
    .card-footer {
        padding-top: 10px;
    }

    .bespoke-cta-card { grid-template-columns: 1fr; }
    .bespoke-cta-visual { height: 240px; }
    .bespoke-cta-content { padding: 40px 30px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STATS BANNER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.stats-banner {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-banner-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.banner-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 60px;
    flex: 1;
    min-width: 160px;
    text-align: center;
}

.stat-num-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.banner-stat-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-light), var(--diamond-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.banner-stat-label {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.banner-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--glass-border);
    flex-shrink: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PHOTO GALLERY / LOOKBOOK
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.gallery-section {
    background:
        radial-gradient(circle at 20% 50%, rgba(216, 179, 106, 0.05), transparent 45%),
        var(--bg-dark);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 240px);
    gap: 16px;
}

/* Layout assignments */
.gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }   /* tall */
.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
.gallery-item:nth-child(4) { grid-column: 3 / 5; grid-row: 1; }   /* wide */
.gallery-item:nth-child(5) { grid-column: 3; grid-row: 2; }
.gallery-item:nth-child(6) { grid-column: 4; grid-row: 2; }
.gallery-item:nth-child(7) { grid-column: 1 / 3; grid-row: 3; }   /* wide */
.gallery-item:nth-child(8) { grid-column: 3; grid-row: 3; }

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: border-color 0.3s ease;
}

.gallery-item:hover {
    border-color: rgba(216, 179, 106, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(7,11,20,0.85), transparent);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.35s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BRAND STORY SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.brand-story-section {
    width: 100%;
}

.brand-story-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.brand-story-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 1.2s ease;
}

.brand-story-section:hover .brand-story-image > img {
    transform: scale(1.04);
}

.brand-story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(7, 11, 20, 0.88) 0%,
        rgba(7, 11, 20, 0.5) 55%,
        rgba(7, 11, 20, 0.1) 100%
    );
    display: flex;
    align-items: center;
}

.brand-story-content {
    max-width: 540px;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.brand-story-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--gold-light) 30%, #fff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-story-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GALLERY & BRAND STORY RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 1024px) {
    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 220px);
    }
    .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
    .gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
    .gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
    .gallery-item:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
    .gallery-item:nth-child(5) { grid-column: 1; grid-row: 3; }
    .gallery-item:nth-child(6) { grid-column: 2; grid-row: 3; }
    .gallery-item:nth-child(7) { grid-column: 3; grid-row: 3; }
    .gallery-item:nth-child(8) { grid-column: 1 / 3; grid-row: 4; }
    .brand-story-content { padding: 0 50px; }
    .brand-story-content h2 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .stats-banner-grid { flex-wrap: wrap; gap: 0; }
    .banner-stat { padding: 14px 20px; min-width: 130px; }
    .banner-stat-divider { display: none; }
    .banner-stat-num { font-size: 1.8rem; }
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gallery-item,
    .gallery-item:nth-child(n) {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 200px;
    }
    .brand-story-image { height: 460px; }
    .brand-story-content { padding: 0 30px; max-width: 100%; }
    .brand-story-content h2 { font-size: 2.2rem; }
    .brand-story-overlay {
        background: linear-gradient(to top, rgba(7,11,20,0.95) 40%, rgba(7,11,20,0.4) 100%);
        align-items: flex-end;
        padding-bottom: 40px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PAGINATION STYLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn,
.pagination-number {
    padding: 10px 14px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.35s ease;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.pagination-btn:hover:not(.disabled),
.pagination-number:hover {
    background: rgba(216, 179, 106, 0.15);
    border-color: var(--gold-accent);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.pagination-number.active {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--ink);
    font-weight: 600;
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-btn.disabled:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--glass-border);
    color: var(--text-main);
    transform: none;
}

.pagination-ellipsis {
    color: var(--text-muted);
    padding: 0 4px;
}

.pagination-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .pagination {
        gap: 8px;
    }
    
    .pagination-btn,
    .pagination-number {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .pagination-info {
        font-size: 0.85rem;
    }
}

/* Testimonial Slider */
.testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding-bottom: 20px;
}

.testimonial-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.testimonial-slider-inner {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-slider-inner .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.testimonial-slider-inner .testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.t-dot.active {
    background: var(--gold-accent);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--gold-accent);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GLOBAL RESPONSIVE ADJUSTMENTS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 991px) {
    .hero-body-card {
        padding: 40px;
        min-height: auto;
    }

    .hero-luxury-grid {
        grid-template-columns: 1.2fr 1fr; /* Image and Text side-by-side */
        gap: 20px;
        align-items: center;
    }

    .luxury-left {
        display: none; /* Hide photo on tablets and mobile */
    }

    .luxury-center {
        order: 1;
        grid-column: span 2;
        text-align: center;
        align-items: center;
    }

    .luxury-title {
        font-size: 3rem;
        text-align: center;
    }

    .luxury-right {
        order: 3;
        grid-column: span 2;
        display: flex;
        flex-direction: row;
        gap: 15px;
    }

    .glass-card {
        flex: 1;
        min-width: 0; /* Remove min-width to prevent 2x2 grid overflow */
    }

    .craftsmanship-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .craft-visual {
        order: -1;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hero-body-card {
        padding: 30px 20px;
        margin: 80px auto 30px; /* Increased top margin from 30px to 80px */
        border-radius: 20px;
    }

    .hero-luxury-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }

    .luxury-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
        text-align: center;
    }

    .luxury-center {
        grid-column: auto;
    }

    .btn-discover {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .luxury-right {
        flex-direction: column; /* Stack cards on mobile to maintain readability */
        grid-column: span 2;
        width: 100%;
    }

    .exclusive-set-card {
        min-height: 220px; /* Reduced height for mobile */
    }

    .model-image {
        width: 130px; /* Smaller image on mobile */
    }

    .glass-card {
        width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-form input {
        width: 100%;
        border-radius: 999px;
    }

    .newsletter-form button {
        width: 100%;
    }

    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-links a, .footer-contact p {
        margin-bottom: 8px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand, .footer-links, .footer-contact {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }
    
    .logo-footer {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .luxury-title {
        font-size: 1.2rem;
    }

    .hero-body-card {
        padding: 25px 15px;
        margin: 70px auto 20px; /* Increased top margin for small mobile */
    }

    .section-title {
        font-size: 2rem;
    }
    
    .banner-stat {
        flex: 0 0 100%;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INTERACTION BUTTONS (LIKES/WISHLIST)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.card-interaction-btns {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.collection-card:hover .card-interaction-btns,
.product-card:hover .card-interaction-btns,
.gallery-card:hover .card-interaction-btns {
    opacity: 1;
    transform: translateX(0);
}

.interaction-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 15, 25, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.interaction-btn:hover {
    background: var(--gold-accent);
    color: #000;
    border-color: var(--gold-accent);
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.interaction-btn.active {
    background: var(--gold-accent);
    color: #000;
    border-color: var(--gold-accent);
}

.interaction-btn.active i {
    color: #000;
}

.interaction-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.interaction-btn:active i {
    transform: scale(0.8);
}

.count-badge {
    position: absolute;
    top: -15px;
    right: -10px;
    background: var(--gold-accent);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    pointer-events: none;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: badgePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.4s ease;
}

@keyframes badgePop {
    0% { transform: scale(0) translateY(10px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LUXURY POPUP (MODAL)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.pop-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 20px;
}

.pop-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.pop-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-width: 900px;
    width: 100%;
    min-height: 500px;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transform: translateY(40px) scale(0.95);
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pop-overlay.active .pop-card {
    transform: translateY(0) scale(1);
}

.pop-image {
    position: relative;
    overflow: hidden;
}

.pop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pop-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 26, 43, 0.95), rgba(11, 18, 30, 0.98));
}

.pop-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.pop-close:hover {
    color: var(--gold-accent);
}

.pop-content h2 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.pop-content p {
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
}

.pop-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pop-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 999px;
    color: #fff;
    font-family: var(--font-body);
}

.pop-form input:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.pop-footer {
    margin-top: 30px;
    font-size: 0.8rem !important;
    text-align: center;
    font-style: italic;
    opacity: 0.6;
}

.success-msg {
    color: var(--gold-accent) !important;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .pop-card {
        grid-template-columns: 1fr;
    }
    .pop-image {
        display: none;
    }
    .pop-content {
        padding: 40px 30px;
    }
    .pop-content h2 {
        font-size: 1.8rem;
    }

    /* Gemstone Detail Page Responsive */
    .gemstone-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .gemstone-title {
        font-size: 36px;
    }

    .gemstone-quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .gemstone-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gemstone-sidebar {
        position: static;
        gap: 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .gemstone-hero-icon {
        width: 180px;
        height: 180px;
        font-size: 90px;
    }
}

@media (max-width: 480px) {
    .gemstone-detail-container {
        padding: 20px 16px;
    }

    .gemstone-hero {
        gap: 20px;
        padding: 20px;
    }

    .gemstone-title {
        font-size: 28px;
    }

    .gemstone-quick-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-value {
        font-size: 16px;
    }

    .section-title {
        font-size: 18px;
    }

    .section-card {
        padding: 16px;
    }

    .gemstone-hero-icon {
        width: 140px;
        height: 140px;
        font-size: 70px;
    }

    .sidebar-widget {
        padding: 16px;
    }

    .properties-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}


/* Fix for Craftsmanship Badge on Mobile */
@media (max-width: 768px) {
    .floating-stat.glass-card {
        width: 110px !important;
        height: 110px !important;
        min-width: 110px !important;
        flex: none !important;
        border-radius: 50% !important;
    }
}


/* Product Detail Modal Styles */
.product-detail-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: linear-gradient(135deg, rgba(16, 26, 43, 0.98), rgba(7, 11, 20, 0.99)) !important;
}

.carat-badge {
    background: linear-gradient(135deg, var(--gold-light), var(--diamond-blue));
    color: var(--ink);
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(216, 179, 106, 0.2);
}

.card-interaction-btns { position: absolute; top: 20px; right: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 5; }
.interaction-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(7, 11, 20, 0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.15); color: #fff; display: grid; place-items: center; font-size: 1.1rem; cursor: pointer; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.interaction-btn:hover { background: var(--gold-accent); color: var(--ink); transform: scale(1.1) translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.interaction-btn.active { background: var(--gold-accent); color: var(--ink); border-color: var(--gold-accent); }
.interaction-btn i { pointer-events: none; }

.product-modal-image {
    width: 100%;
    height: 100%;
    background: #000;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-modal-content h2 {
    font-size: 2.2rem;
    color: var(--gold-light);
}

.modal-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-specs span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.product-modal-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.modal-actions {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .product-detail-card {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .product-modal-image {
        height: 300px;
    }
    
    .product-modal-content {
        padding: 24px;
    }
    
    .product-modal-content h2 {
        font-size: 1.8rem;
    }

    /* Gem Advisor Mobile Adjustments */
    .advisor-hero-shell {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .advisor-zodiac-wheel {
        min-height: 300px;
        max-width: 300px;
        margin: 0 auto;
    }

    .wheel-center {
        width: 140px;
        height: 140px;
    }

    .wheel-center span {
        font-size: 2rem;
    }

    .wheel-chip {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .advisor-hero-actions {
        justify-content: center;
    }

    .advisor-mechanism-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advisor-form-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   Premium Filter Styles
   ========================================================================== */

.collections-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 992px) {
    .collections-layout {
        grid-template-columns: 1fr;
    }
}

.collections-sidebar {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: var(--neon-glow);
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 35px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gold-accent);
    display: inline-block;
}

/* Search Input */
.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-accent);
    opacity: 0.8;
}

.search-input-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.05);
}

.search-input-wrapper input::placeholder {
    color: var(--text-muted);
}

/* Filter Options (Radio & Checkbox) */
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
}

.filter-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.option-label {
    color: var(--text-muted);
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.filter-option:hover .option-label,
.filter-option input:checked ~ .option-label {
    color: var(--gold-accent);
}

/* Custom Checkbox/Radio Styling */
.filter-option input[type="radio"] ~ .option-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid var(--gold-accent);
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.filter-option input[type="radio"]:checked ~ .option-label::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--gold-accent);
    border-radius: 50%;
}

.filter-option input[type="checkbox"] ~ .option-checkbox {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid var(--text-muted);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.filter-option input[type="checkbox"]:checked ~ .option-checkbox {
    border-color: var(--gold-accent);
    background: var(--gold-accent);
}

.filter-option input[type="checkbox"]:checked ~ .option-checkbox::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--bg-main);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Top Bar Styling */
.collections-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px 25px;
    margin-bottom: 30px;
}

.results-count {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-dropdown label {
    color: var(--text-muted);
}

.sort-dropdown select {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 8px 15px;
    border-radius: 6px;
    font-family: var(--font-body);
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.sort-dropdown select:focus {
    border-color: var(--gold-accent);
}

.sort-dropdown select option {
    background: var(--bg-main);
    color: var(--text-main);
}

/* Premium "View Details" Button */
.btn-card-action.premium-btn {
    background: #f8f9fa; /* Off-white for premium feel against dark theme */
    color: #4a90e2; /* Light blue text as per user screenshot */
    border: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto;
    margin-left: auto; /* Align right */
}

.btn-card-action.premium-btn i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.btn-card-action.premium-btn:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}

.btn-card-action.premium-btn:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   Product Card Redesign (Screenshot Match)
   ========================================================================== */

.new-card-design {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.new-card-design:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f9fa; /* slightly off-white for contrast if image is transparent */
}

.card-img-wrapper img.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.new-card-design:hover .card-img-wrapper img.card-img {
    transform: scale(1.05);
}

.card-info-wrapper {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card-sku {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-likes {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-likes i {
    color: #c9a763; /* Gold */
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-price {
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 15px;
}

.btn-view-details {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1a1a1a;
    color: #ffffff;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-view-details:hover {
    background: #333;
    color: #ffffff;
}

/* ==========================================================================
   Mobile Filters
   ========================================================================== */

.btn-mobile-filters {
    display: none;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
    /* Show mobile filter button */
    .btn-mobile-filters {
        display: flex;
    }

    /* Adjust topbar */
    .collections-topbar {
        padding: 12px;
        margin-bottom: 20px;
    }

    /* 2-Column Mobile Grid */
    .collections-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    /* Filter Sidebar Off-Canvas */
    .collections-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        z-index: 1000;
        background: var(--bg-main);
        border-radius: 0;
        overflow-y: auto;
        transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        padding: 30px;
        box-shadow: 5px 0 25px rgba(0,0,0,0.5);
    }

    .collections-sidebar.active {
        left: 0;
    }
}

@media (max-width: 768px) {
    /* Make product cards smaller on mobile */
    .card-info-wrapper {
        padding: 10px;
    }
    
    .card-meta-row {
        margin-bottom: 5px;
    }

    .card-sku {
        font-size: 0.65rem;
    }

    .card-likes {
        font-size: 0.75rem;
    }

    .card-title {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .card-price {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .btn-view-details {
        padding: 8px;
        font-size: 0.75rem;
        gap: 5px;
    }
}

/* Mobile Layout Fixes */
@media (max-width: 992px) {
    /* Fix Sidebar transparent overlap */
    .collections-sidebar {
        background: #0B101E !important; /* Solid dark color */
        z-index: 99999 !important;
        border-right: 1px solid rgba(255,255,255,0.1);
    }

    /* Fix Topbar overlapping text */
    .collections-topbar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 10px 5px !important;
    }

    /* Hide results count to save space and prevent overlap */
    .collections-topbar .results-count {
        display: none !important;
    }

    /* Keep sort dropdown compact */
    .collections-topbar .sort-dropdown {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
    }

    /* Hide 'Sort by:' label to save space */
    .collections-topbar .sort-dropdown label {
        display: none !important;
    }
    
    .collections-topbar .sort-dropdown select {
        padding: 5px 10px !important;
        font-size: 0.85rem !important;
    }

    /* Mobile Filters Button */
    .btn-mobile-filters {
        padding: 6px 12px !important;
        font-size: 0.85rem !important;
        margin: 0 !important;
    }
}

/* Fix Dropdown Option Background */
.sort-dropdown select option {
    background-color: #11141A;
    color: #ffffff;
}

/* Make cards smaller on PC view by reducing minmax width */
@media (min-width: 993px) {
    .collections-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
        gap: 25px !important;
    }
    
    /* Slightly reduce padding and font size for PC to match smaller card */
    .new-card-design .card-info-wrapper {
        padding: 12px !important;
    }
    .new-card-design .card-title {
        font-size: 0.95rem !important;
    }
    .new-card-design .btn-view-details {
        padding: 10px !important;
        font-size: 0.85rem !important;
    }
}

/* App-like Scrollable Products Container for PC */
@media (min-width: 993px) {
    .collections-layout {
        align-items: stretch !important; 
    }
    
    .collections-sidebar {
        /* Sidebar stays put, no sticky needed since it matches height */
        position: static !important;
        height: 100vh !important; /* Lock height to viewport */
    }

    .collections-main {
        max-height: 100vh !important; /* Restrict height so it scrolls */
        overflow-y: auto !important;
        padding-right: 15px !important;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
    }
    
    /* Custom webkit scrollbar for sleek UI */
    .collections-main::-webkit-scrollbar {
        width: 6px;
    }
    .collections-main::-webkit-scrollbar-track {
        background: transparent;
    }
    .collections-main::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
    }
    .collections-main::-webkit-scrollbar-thumb:hover {
        background-color: rgba(255, 255, 255, 0.4);
    }
}

/* Further reduce card size on PC based on user request */
@media (min-width: 993px) {
    .collections-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
        gap: 20px !important;
    }
    
    .new-card-design {
        max-width: 280px !important; /* Cap the max width so they never stretch too big */
        margin: 0 auto; /* Center them within their grid cell if they hit max-width */
    }

    .new-card-design .card-info-wrapper {
        padding: 10px !important;
    }
    
    .new-card-design .card-title {
        font-size: 0.85rem !important;
        margin-bottom: 5px !important;
    }

    .new-card-design .btn-view-details {
        padding: 8px !important;
        font-size: 0.8rem !important;
    }

    .new-card-design .card-sku {
        font-size: 0.65rem !important;
    }

    .new-card-design .card-likes {
        font-size: 0.75rem !important;
    }
}

/* Ensure button responds like a button, not text/image */
.btn-view-details, .interaction-btn {
    cursor: pointer !important;
    user-select: none;
    -webkit-user-drag: none;
}

/* Override dark card design to light theme as requested */
.new-card-design {
    background: #ffffff !important;
    border: 1px solid #eaeaea !important;
}

.new-card-design .card-title {
    color: #0B101E !important; /* Deep Blue as requested */
}

.new-card-design .card-sku {
    color: #888888 !important;
}

.new-card-design .card-likes {
    color: #666666 !important;
}

/* Fix View Details Button Style to Gold */
.new-card-design .btn-view-details {
    background: #c9a763 !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 600 !important;
}

.new-card-design .btn-view-details:hover {
    background: #b59556 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 167, 99, 0.4) !important;
}

/* Fix Image Hover Overlay Targeting */
/* Disable the full card hover effect for the overlay */
.collection-card:hover .card-overlay,
.new-card-design:hover .card-overlay {
    opacity: 0 !important; /* Override the old global rule */
}

/* Only show overlay when hovering exactly on the image wrapper */
.card-img-wrapper:hover .card-overlay,
.card-overlay:hover {
    opacity: 1 !important;
}

/* Restyle the overlay buttons (White circles, Top Right) */
.new-card-design .card-overlay {
    background: transparent !important; /* Remove dark gradient */
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    padding: 15px !important;
}

.new-card-design .card-interaction-btns {
    flex-direction: column !important;
    gap: 10px !important;
}

.new-card-design .interaction-btn {
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    width: 40px !important;
    height: 40px !important;
}

.new-card-design .interaction-btn:hover {
    background: #f0f0f0 !important;
    transform: scale(1.1);
}

.new-card-design .interaction-btn i {
    color: #000000;
}

/* Modern Card Layout (User Requested structure) */
:root {
    --primary: #c9a763;
    --text-muted: #888888;
}

.modern-card {
    background: #ffffff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid #eaeaea !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.modern-card .img-container {
    position: relative !important;
    aspect-ratio: 1/1 !important;
    overflow: hidden !important;
    background: #f8f8f8;
}

.modern-card .img-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
}

.modern-card .img-container:hover img {
    transform: scale(1.05) !important;
}

.modern-card .card-overlays {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: 2 !important;
}

.modern-card .img-container:hover .card-overlays,
.modern-card .card-overlays:hover {
    opacity: 1 !important;
}

.modern-card .overlay-btn {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
    color: #000000 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.modern-card .overlay-btn:hover {
    background: #f5f5f5 !important;
    transform: scale(1.1) !important;
}

.modern-card .overlay-btn svg {
    width: 18px !important;
    height: 18px !important;
}

.modern-card .card-details {
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    flex-grow: 1;
}

.modern-card .card-cat {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
}

.modern-card .like-count-val {
    font-size: 0.8rem;
    font-weight: 500;
}

.modern-card .card-name {
    font-size: 1rem !important;
    color: #0B101E !important;
    margin: 0 !important;
    font-weight: 600 !important;
    line-height: 1.3;
}

.modern-card .card-price-row {
    margin-bottom: 5px;
}

.modern-card .curr-price {
    font-size: 1.1rem !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.modern-card .view-btn {
    margin-top: auto !important;
    width: 100% !important;
    padding: 12px !important;
    background: var(--primary) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: background 0.2s, box-shadow 0.2s !important;
}

.modern-card .view-btn:hover {
    background: #b59556 !important;
    box-shadow: 0 4px 15px rgba(201, 167, 99, 0.4) !important;
}

/* Make sure grid aligns them properly */
.collections-grid {
    align-items: stretch;
}

/* --- Diamond Fast CTA Banner --- */
.footer-cta-banner {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: #070b14;
}

.cta-banner-card {
    background: linear-gradient(to right, rgba(7, 11, 20, 0.85) 30%, rgba(7, 11, 20, 0.4) 60%, rgba(7, 11, 20, 0.7) 100%), url('../images/luxury_footer_banner_v2.png') center/cover no-repeat;
    border-radius: 20px;
    padding: 80px 60px;
    position: relative;
    border: 1px solid rgba(216, 179, 106, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.cta-banner-content {
    max-width: 550px;
}

.cta-subtitle {
    color: var(--gold-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-gold-solid {
    display: inline-block;
    background: var(--gold-accent);
    color: #000;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-gold-solid:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
}

/* Modal Back Button */
.btn-back-modal {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-back-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.pop-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.pop-close:hover {
    background: #ff4757;
    border-color: #ff4757;
    transform: rotate(90deg);
}

@media (max-width: 1024px) {
    .cta-title { font-size: 2.4rem; }
}

@media (max-width: 768px) {
    .cta-banner-card {
        padding: 50px 30px;
        text-align: center;
    }
    .cta-title {
        font-size: 2rem;
    }
    .footer-cta-banner {
        padding: 40px 0;
    }
}




