@import 'variables.css';
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Cinzel:wght@400;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Neue+Haas+Grotesk:wght@300;400;500;600;700&display=swap');

/* Base Variables are now managed in variables.css */

/* Global Utility Classes */
.text-gold {
    color: var(--gem-gold);
}

.bg-gold {
    background-color: var(--gem-gold);
}

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted);
}

.font-heading {
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.font-body {
    font-family: var(--font-body);
}

.font-luxury {
    font-family: var(--font-luxury);
}

.gem-shimmer {
    color: var(--text-primary);
}


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

body {
    background-color: var(--bg-main);
    background-image: var(--gradient-black);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

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

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.main-header.scrolled {
    background: var(--primary-color) !important;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    padding: 0 10rem;
    transition: var(--transition-smooth);
}

header.main-header.scrolled .header-container {
    padding: 0.5rem 10rem;
}

.nav-links {
    display: flex;
    gap: 3.5rem;
    margin-left: auto;
    margin-right: 8.5rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 4rem;
}

.nav-link {
    font-family: var(--font-new-add);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    transition: var(--transition-smooth);
}

header.main-header.scrolled .nav-link {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px var(--white);
}

/* .nav-link:hover {
    color: var(--gem-gold);
} */

.nav-link:hover::after {
    width: 100%;
}

.header-logo img {
    height: 80px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.header-logo:hover img {
    transform: scale(1.02);
    filter: brightness(1.2);
}



.action-icon {
    color: var(--white);
    /* Initial White */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

header.main-header.scrolled .action-icon {
    color: var(--white);
}

.action-icon:hover {
    color: var(--white);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.hero-luxury {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('../images/emerald_hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-dual {
    padding: 120px 0;
    background: var(--black-alt);
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.hero-dual-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.hero-dual-content {
    flex: 1;
    max-width: 550px;
}

.hero-badge-minimal {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    background: var(--accent-glow);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 100px;
    color: var(--gem-gold);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.hero-dual-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    /* Faceted Gemstone Gradient */
    background: linear-gradient(135deg,
            var(--white) 0%,
            var(--gem-gold) 25%,
            var(--white) 50%,
            var(--gem-gold) 75%,
            var(--gem-gold-dark) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gem-prism 8s linear infinite;
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.1);
}

.hero-dual-title em {
    font-style: italic;
    display: inline-block;
    position: relative;
    /* Crystalline Reflection */
    background: linear-gradient(90deg,
            var(--gem-gold) 0%,
            var(--white) 20%,
            var(--white) 30%,
            var(--gem-gold) 50%,
            var(--white) 70%,
            var(--white) 80%,
            var(--gem-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gem-sparkle 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.hero-dual-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3.5rem;
}

.hero-dual-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.hero-dual-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(197, 160, 89, 0.25));
    animation: float 8s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-luxury-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-luxury-content {
    max-width: 900px;
    text-align: center;
    color: #fff;
    padding: 0 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section 1: Hero Entry Indicator */
.hero-luxury-wrapper::before {
    content: "01";
    position: absolute;
    left: 4vw;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--glass-bg);
    pointer-events: none;
    z-index: 1;
}

.luxury-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.luxury-title em {
    font-size: 1.1em;
}

.luxury-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3.5rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

@keyframes gem-prism {
    0% {
        background-position: 0% 50%;
        filter: brightness(1) contrast(1);
    }

    50% {
        background-position: 100% 50%;
        filter: brightness(1.2) contrast(1.1);
    }

    100% {
        background-position: 0% 50%;
        filter: brightness(1) contrast(1);
    }
}

@keyframes gem-sparkle {

    0%,
    100% {
        background-position: 200% center;
        filter: brightness(1) contrast(1);
    }

    50% {
        background-position: 0% center;
        filter: brightness(1.3) contrast(1.2);
    }
}

@keyframes shine-text {
    to {
        background-position: 200% center;
    }
}


.luxury-button {
    display: inline-block;
    padding: 1.2rem 4rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    /* Emerald Cut Shape */
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.luxury-button::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.8) 0%, var(--primary-color) 50%, #002521 100%);
    z-index: -1;
    clip-path: inherit;
}

.luxury-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: button-glint 4s infinite;
}

@keyframes button-glint {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}


.cta-button:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #e6d5b8 0%, var(--gem-gold) 100%);
    box-shadow: 0 15px 45px rgba(197, 160, 89, 0.5);
    filter: brightness(1.05);
}

/* Integrated Luxury Footer */
footer {
    padding: 40px 0 40px;
    background: var(--primary-color);
    /* Glass effect like header */
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border);
}

footer .container {
    max-width: 1400px;
    /* Expansive width */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 6rem;
    /* Wider gap for wider container */
    margin-bottom: 40px;
}

.footer-col {
    margin-top: 1rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1.5px;
    background: var(--white);
    opacity: 0.6;
}

/* Branding & Contact Column */
.footer-logo img {
    height: 120px;
    width: auto;
    margin-top: -1.2rem;
    margin-bottom: 2rem;
    display: block;
    transition: var(--transition-smooth);
}

.footer-logo:hover img {
    filter: brightness(1.1);
}

.brand-story {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.9;
    max-width: 280px;
    margin-bottom: 2.5rem;
}

.footer-contact-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0px;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.contact-bar-item svg {
    color: var(--white);
}

.contact-bar-divider {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.8);
}

.newsletter-desc {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: center;
    opacity: 0.9;
}

.footer-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    margin-top: 15px;
}

.footer-input {
    background: transparent;
    border: none;
    padding: 10px 0;
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    flex: 1;
}

.footer-submit {
    background: transparent;
    border: none;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding-left: 15px;
    transition: var(--transition-smooth);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto;
}

.footer-col ul li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-col ul li a {
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-col ul li::before {
    content: "\f219";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--white);
    font-size: 0.8rem;
    margin-right: 12px;
    opacity: 0.8;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

/* Contact Styles */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item svg {
    color: var(--gem-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

/* Bottom Bar */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    color: var(--white);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--white);
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--white);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-right {
    animation: fadeInRight 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Impact Reveal Classes */
.reveal-1 {
    animation: fadeInUpImpact 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
    opacity: 0;
}

.reveal-2 {
    animation: fadeInUpImpact 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
    opacity: 0;
}

.reveal-3 {
    animation: fadeInUpImpact 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards;
    opacity: 0;
}

.reveal-4 {
    animation: fadeInUpImpact 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s forwards;
    opacity: 0;
}

@keyframes fadeInUpImpact {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Scroll Discover Indicator */
.scroll-discover {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.6em;
    animation: fadeIn 2s ease-out 1.2s forwards;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gem-gold), transparent);
    animation: scrollLineAnim 2.5s infinite;
    transform-origin: top;
}

@keyframes scrollLineAnim {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Category Section */
.category-section {
    padding: 110px 0 160px;
    background: var(--white);
}

.category-section .section-header {
    text-align: center;
    margin-bottom: 32px;
}

.category-section .section-title {
    color: var(--primary-color);
    /* New Global Brand Color */
    font-size: 3.4rem;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 42px 20px;
}

.category-section .category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border-radius: 20rem 20rem 0 0 !important;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: none;
    aspect-ratio: 0.85 !important;
    height: auto !important;
    /* Override legacy fixed heights */
}

.category-section .category-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20rem 20rem 0 0 !important;
    z-index: 1;
}

.category-section .category-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: var(--transition-smooth);
}

.category-section .category-card:hover img {
    transform: scale(1.05);
}

.category-section .category-overlay-content {
    position: absolute;
    width: 100%;
    z-index: 2;
    text-align: center;
    padding: 20px;
    pointer-events: none;
}

.category-section .category-overlay-content.top {
    top: 40px;
}

.category-section .category-overlay-content.bottom {
    bottom: 40px;
}

.category-section .category-title {
    font-family: var(--font-luxury) !important;
    font-size: 2.2rem !important;
    font-weight: 500 !important;
    margin-bottom: 5px !important;
    opacity: 1 !important;
    transform: none !important;
}

.category-section .category-subtitle {
    font-family: var(--font-luxury) !important;
    font-size: 1rem !important;
    font-style: italic !important;
    color: var(--text-secondary) !important;
    opacity: 1 !important;
    transform: none !important;
    margin: 0 !important;
}

.category-section .category-description {
    font-family: var(--font-luxury) !important;
    font-size: 0.9rem !important;
    color: var(--text-secondary) !important;
    max-width: 80%;
    margin: 0 auto !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Specific Card Styles */
.ruby-text {
    color: #b04b5c !important;
}

.sapphire-text {
    color: #3b5b8c !important;
}

.emerald-text {
    color: #4b7c5c !important;
}

.emerald-inline-text {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.emerald-inline-text .category-subtitle {
    font-size: 0.9rem !important;
    font-style: normal !important;
    max-width: 150px;
    text-align: left;
}

/* Responsiveness for 1024px */
@media (max-width: 1024px) {
    .category-section .category-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
        padding: 20px !important;
    }

    .category-section .category-title {
        font-size: 1.8rem !important;
    }

    .category-section .category-subtitle {
        font-size: 0.85rem !important;
    }

    .category-section .category-description {
        font-size: 0.8rem !important;
    }

    .category-section .category-overlay-content.top {
        top: 20px;
    }

    .category-section .category-overlay-content.bottom {
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .category-section .category-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px;
        margin: 0 auto;
    }

    .category-section .category-card {
        aspect-ratio: 0.9 !important;
    }
}

/* Bespoke Creation Section */
/* Cinematic Bespoke Section */
.cinematic-bespoke {
    position: relative;
    height: 100vh;
    /* Full viewport height */
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 !important;
}

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

.bg-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-luxury {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(var(--primary-color-rgb), 0.1) 50%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.bespoke-content-layered {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1600px !important;
    text-align: center;
}

.cinematic-bespoke .section-title {
    color: #ffffff !important;
    font-size: 4rem !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.bespoke-overlay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding: 0 60px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.glass-luxury {
    background: rgba(20, 20, 20, 0.4) !important;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px !important;
    padding: 50px 40px !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden;
}

.glass-luxury:hover {
    background: rgba(30, 30, 30, 0.5) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5) !important;
}

.glass-luxury h4 {
    color: #ffffff !important;
    font-size: 1.6rem !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
    position: relative;
    z-index: 2;
}

.glass-luxury p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem !important;
    line-height: 1.6;
    max-width: 85%;
    position: relative;
    z-index: 2;
}

.bespoke-number {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 7.5rem;
    font-family: var(--font-luxury);
    color: rgba(255, 255, 255, 0.08);
    font-weight: 700;
    pointer-events: none;
    z-index: 1;
    line-height: 1;
}

@media (max-width: 1200px) {
    .bespoke-overlay-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
        padding: 0 30px;
    }

    .cinematic-bespoke .section-title {
        font-size: 3.2rem !important;
    }

    .glass-luxury {
        padding: 40px 30px !important;
    }

    .bespoke-number {
        font-size: 6rem;
    }
}

.bespoke-section {
    padding: 80px 0;
}

.bespoke-grid {
    min-height: 600px;
    padding: 0 40px;
}

.bespoke-image-wrapper,
.bespoke-video {
    width: 70%;
}

.bespoke-card {
    width: 250px;
    height: 250px;
    padding: 30px;
}

.bespoke-number {
    font-size: 5rem;
}

.checkout-main-grid {
    grid-template-columns: 1fr;
    gap: 50px;
}

.checkout-right .summary-card {
    position: static;
}
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

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

    .bespoke-overlay-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
        padding: 0 20px !important;
    }

    .glass-luxury {
        padding: 35px 20px !important;
    }

    .bespoke-number {
        font-size: 5rem !important;
        right: 10px !important;
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .bespoke-section {
        padding: 60px 0 80px;
    }

    .bespoke-grid {
        min-height: 500px;
        padding: 0 20px;
    }

    .bespoke-image-wrapper,
    .bespoke-video {
        width: 75%;
        max-width: 400px;
    }

    .bespoke-card {
        width: 220px;
        height: 220px;
        padding: 25px;
    }

    .bespoke-card h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .bespoke-card p {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .bespoke-number {
        font-size: 4rem;
    }

    .bespoke-card.top-left {
        top: 2%;
        left: 0;
    }

    .bespoke-card.top-right {
        top: 2%;
        right: 12;
    }

    .bespoke-card.bottom-center {
        bottom: 3%;
        left: 50%;
        transform: translateX(-50%);
    }

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

    .contact-form-card {
        padding: 2.5rem;
    }

    .contact-hero {
        padding: 140px 0 80px;
    }
}

@media (max-width: 900px) {
    .pill-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-text {
        font-size: 1.6rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 850px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 110px 20px;
    }
}

@media (max-width: 768px) {
    .cinematic-bespoke {
        height: auto;
        padding: 100px 0 !important;
    }

    .bespoke-overlay-grid {
        grid-template-columns: 1fr;
    }

    .footer-contact-bar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2.5rem 2rem;
        padding: 40px 1rem;
    }

    .contact-bar-divider {
        display: none;
    }

    .contact-bar-item {
        flex: 0 1 auto;
        min-width: 200px;
        justify-content: center;
    }

    .bespoke-section {
        padding: 60px 0;
    }

    .bespoke-grid {
        flex-direction: column;
        min-height: auto;
        gap: 50px;
    }

    .bespoke-image-wrapper,
    .bespoke-video {
        width: 100%;
        max-width: 400px;
    }

    .bespoke-card {
        position: static;
        width: 260px;
        height: 260px;
        padding: 30px;
        border-radius: 12px;
        margin: 0 auto;
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .bespoke-number {
        display: none;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 120px 0;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Signature Gemstone Vault */
.signature-vault {
    padding: 40px 0 60px;
    background: radial-gradient(circle at center, #ffffff 0%, #f4f2f0 100%);
    position: relative;
    overflow: hidden;
}

.signature-vault .section-header {
    text-align: center;
    /* Centered for symmetrical balance */
    margin-top: 30px;
    margin-bottom: 70px;
}

.signature-vault .section-title {
    color: var(--primary-color);
    /* New Global Brand Color */
    font-size: 3.4rem;
    /* Grand Scale Title */
    letter-spacing: 0.05em;
}

.signature-vault .container.gallery-container {
    width: 100%;
    /* Full screen width */
    max-width: none;
    margin: 0;
    padding: 0 60px;
}

.vault-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 6 Stones in one line */
    gap: 80px;
    /* Reduced gap for better fit */
    width: 100%;
    max-width: 1600px;
    margin: 40px auto 0;
    padding: 25px 40px;
}

.vault-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.vault-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #fff;
    /* White background for the circle */
    border-radius: 50%;
    /* Perfect Round Shape */
    overflow: hidden;
    padding: 0;
    /* Zero padding for full round look */
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Stronger definition for full circles */
}

.vault-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fills the entire circle */
    transition: var(--transition-smooth);
}

.vault-card:hover img {
    transform: scale(1.1);
}

.vault-info {
    margin-top: 5px;
}

.vault-name {
    font-family: var(--font-body);
    /* Clean Sans-Serif */
    color: #444;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.vault-price {
    display: block;
    /* Price Restored */
    font-family: var(--font-body);
    color: var(--primary-color);
    /* matching Forest Green */
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 4px;
}

/* Quote Gallery Spacing Fix */
.quote-gallery-section {
    padding-top: 100px;
}

.bespoke-card.top-left {
    top: 7%;
    left: 2%;
}

.bespoke-card.top-right {
    top: 5%;
    right: 2%;
}

.bespoke-card.bottom-center {
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
}


/* Quote Gallery Section */
.quote-gallery-section {
    padding: 150px 0;
    background: var(--bg-main);
    /* Warm boutique charcoal */
    text-align: center;
    position: relative;
}

.quote-gallery-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-main), transparent);
}

.quote-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3.5rem;
    text-shadow: 0 2px 15px var(--black);
}

.quote-separator {
    width: 60px;
    height: 1px;
    background: var(--gem-gold);
    margin: 0 auto 40px;
    opacity: 0.5;
}

.quote-text {
    font-size: 4rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    margin-top: 0.5rem;
}

.pill-gallery-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 100px auto 0;
    padding: 0 40px;
}

.pill-item {
    position: relative;
    flex: 1;
    min-width: 280px;
    aspect-ratio: 0.72;
    overflow: hidden;
    border-radius: 500px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #000;
    border: 1px solid rgba(var(--secondary-color-rgb), 0.15);
}

.pill-caption {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    z-index: 3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 1);
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.pill-item:hover .pill-caption {
    opacity: 1;
    letter-spacing: 0.35em;
    color: var(--white);
}

.pill-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: 2;
}

.pill-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.pill-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.pill-item:hover img {
    transform: scale(1.1);
}

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

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

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

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

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary-color);
    border-radius: 50%;
    border: 1px solid var(--white);
}

.feature-item h4 {
    color: black;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}



/* Boutique Reviews Section */
.reviews-section {
    padding: 95px 0;
    background: #e7eddf;
    /* Slightly warmer white */
    text-align: center;
    font-size: 2.4rem;

}

.reviews-section .section-title {
    color: var(--primary-color);
    font-size: 3.4rem;
    margin-bottom: 30px;
}

.client-reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 12%;
}

.review-card {
    text-align: center;
    position: relative;
    padding: 80px 40px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    transition: var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    background: var(--white);
    border-color: var(--gem-gold);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.client-avatar-wrapper {
    width: 120px;
    height: 120px;
    margin: -140px auto 30px;
    position: relative;
}

.client-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid var(--gem-gold);
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.35);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-rating {
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.review-text {
    font-family: var(--font-luxury);
    font-style: italic;
    color: black;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 300;
}

.review-info h5 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 5px;
}

.review-info span {
    color: black;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Page Header & Common Page Styles */
.bg-main-page {
    background: var(--bg-main);
    min-height: 80vh;
}

.page-header {
    padding: 180px 0 60px;
    text-align: center;
}

.page-header h1 {
    /* font-size: 3.5rem; */
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.page-header .subtitle {
    font-family: var(--font-luxury);
    font-size: 1.2rem;
    color: var(--gem-gold);
    font-style: italic;
}

.py-20 {
    padding: 5rem 0;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 1rem;
}

/* Grid Utilities */
.grid {
    display: grid;
    gap: 2rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.max-w-4xl {
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

/* Components */
.image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 10px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--border-radius) - 10px);
}

.bg-gold-gradient {
    background: linear-gradient(135deg, var(--gem-gold-light) 0%, var(--gem-gold) 50%, var(--gem-gold-dark) 100%);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gem-gold);
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 1s ease-out forwards;
}

.text-gold {
    color: var(--gem-gold);
}

.text-gray-400 {
    color: var(--text-secondary);
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.rounded-lg {
    border-radius: 12px;
}

.p-8 {
    padding: 2rem;
}

.p-6 {
    padding: 1.5rem;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Contact Us Page Styles */
.contact-hero {
    padding: 180px 0 100px;
    position: relative;
    background: var(--bg-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(var(--primary-color-rgb), 0.03), transparent 70%);
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.contact-info-card {
    padding: 3rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(var(--secondary-color-rgb), 0.08), transparent 60%);
    pointer-events: none;
}

.contact-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(var(--secondary-color-rgb), 0.1);
    border: 1px solid rgba(var(--secondary-color-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gem-gold);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-detail:hover .contact-icon {
    background: var(--gem-gold);
    color: var(--black);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(var(--secondary-color-rgb), 0.3);
}

.contact-detail-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.contact-detail-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form-card {
    padding: 4rem;
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    margin-bottom: 3rem;
    text-align: center;
}

.luxury-input-group {
    position: relative;
    margin-bottom: 2rem;
}

.luxury-input {
    width: 100%;
    background: #f9f9f9;
    border: 1px solid var(--border-color);
    padding: 1.2rem 1.5rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    outline: none;
}

.luxury-input:focus {
    border-color: var(--gem-gold);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(var(--secondary-color-rgb), 0.15);
}

.luxury-input::placeholder {
    color: var(--text-muted);
}

textarea.luxury-input {
    min-height: 150px;
    resize: vertical;
}

.submit-btn-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    text-align: center;
    cursor: pointer;
    display: block;
    font-size: 0.9rem;
}

.contact-subtitle-text {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 1rem;
}

.contact-section-heading {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
}

.contact-form-heading {
    color: var(--text-primary);
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.contact-form-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* FAQ Page Styles */
.faq-hero {
    padding: 180px 0 100px;
    position: relative;
    background: var(--bg-main);
    min-height: 100vh;
}

.faq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(var(--primary-color-rgb), 0.03), transparent 70%);
}

.faq-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item-card {
    padding: 2.5rem;
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.faq-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(var(--primary-color-rgb), 0.05), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-smooth);
}

.faq-item-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-color-rgb), 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.faq-item-card:hover::before {
    opacity: 1;
}

.faq-question {
    color: var(--gem-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--gem-gold);
    opacity: 0.8;
}

.faq-item-card:hover .faq-question svg {
    opacity: 1;
    transform: scale(1.1);
    transition: var(--transition-smooth);
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 36px;
    /* Offset for the icon */
}

.faq-subtitle-text {
    max-width: 650px;
    margin: 0 auto;
    padding-top: 1rem;
}

/* Color Overrides for White Background Pages */
.faq-hero .luxury-title,
.contact-hero .luxury-title {
    color: var(--text-primary);
    text-shadow: none;
    font-size: 3rem;
}

.faq-hero .luxury-subtitle,
.contact-hero .luxury-subtitle {
    color: var(--text-secondary);
    text-shadow: none;
}

.faq-hero .hero-badge-minimal,
.contact-hero .hero-badge-minimal {
    background: rgba(var(--primary-color-rgb), 0.05);
    border-color: rgba(var(--primary-color-rgb), 0.1);
}

.faq-hero .gem-shimmer,
.contact-hero .gem-shimmer {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .faq-hero {
        padding: 140px 0 80px;
    }

    .faq-item-card {
        padding: 2rem;
    }

    .faq-answer {
        padding-left: 0;
    }

    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Footer Page Specific Utilities to Replace Inline Styles */
.image-wrapper-padded {
    padding: 1.5rem;
}

.faq-answer-no-pad {
    padding-left: 0;
}

.faq-card-padded {
    padding: 2.5rem 1.5rem;
}

.four-cs-letter {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gem-gold);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.icon-box-lg {
    width: 80px;
    height: 80px;
}

/* Premium Toast Notifications */
#toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.gem-toast {
    background: rgba(18, 18, 22, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gem-gold);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    font-family: var(--font-body);
    font-size: 0.9rem;
    min-width: 250px;
}

.gem-toast.show {
    transform: translateX(0);
}

.gem-toast-icon {
    color: var(--white);
    display: flex;
    align-items: center;
}

.gem-toast-success {
    border-left: 4px solid var(--white);
}

/* Header Action Badges */
/* Colorful Gemstone Icons */
.action-icon {
    position: relative;
    padding: 10px;
    border-radius: 50%;
    transition: var(--transition-smooth);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-icon svg {
    transition: all 0.3s ease;
    stroke: currentColor;
    fill: none;
}

/* Golden Premium Icons */
.action-icon.wishlist:hover,
.action-icon.cart:hover,
.action-icon.compare:hover,
.action-icon.login:hover {
    background: var(--accent-glow);
    border-color: var(--white);
    box-shadow: 0 0 20px var(--accent-glow);
}

.action-icon.wishlist:hover svg,
.action-icon.cart:hover svg,
.action-icon.compare:hover svg,
.action-icon.login:hover svg {
    color: var(--white);
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--white));
}

.action-icon .badge {
    position: absolute;
    top: -2px;
    right: -4px;
    background: var(--gem-gold);
    color: var(--black);
    font-size: 0.62rem;
    font-weight: 800;
    font-family: var(--font-new-add);
    min-width: 17px;
    height: 17px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--white);
    z-index: 10;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.action-icon .badge.badge-pop {
    animation: badgePop 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgePop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

.action-icon .badge:empty,
.action-icon .badge[style*="display: none"] {
    display: none !important;
}

@media (min-width: 0px) {

    /* User Menu Dropdown */
    .user-menu-wrapper {
        border-color: rgba(var(--secondary-color-rgb), 0.3);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .faq-item-card:hover::before {
        opacity: 1;
    }

    .faq-question {
        color: var(--gem-gold);
        font-size: 1.3rem;
        margin-bottom: 1rem;
        letter-spacing: 0.05em;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .faq-question svg {
        flex-shrink: 0;
        color: var(--gem-gold);
        opacity: 0.8;
    }

    .faq-item-card:hover .faq-question svg {
        opacity: 1;
        transform: scale(1.1);
        transition: var(--transition-smooth);
    }

    .faq-answer {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.8;
        padding-left: 36px;
        /* Offset for the icon */
    }

    .faq-subtitle-text {
        max-width: 650px;
        margin: 0 auto;
        padding-top: 1rem;
    }

    @media (max-width: 992px) {
        .faq-hero {
            padding: 140px 0 80px;
        }

        .faq-item-card {
            padding: 2rem;
        }

        .faq-answer {
            padding-left: 0;
        }

        .faq-question {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }
    }

    /* Footer Page Specific Utilities to Replace Inline Styles */
    .image-wrapper-padded {
        padding: 1.5rem;
    }

    .faq-answer-no-pad {
        padding-left: 0;
    }

    .faq-card-padded {
        padding: 2.5rem 1.5rem;
    }

    .four-cs-letter {
        font-family: var(--font-heading);
        font-size: 3rem;
        color: var(--gem-gold);
        margin-bottom: 1rem;
        opacity: 0.3;
    }

    .icon-box-lg {
        width: 80px;
        height: 80px;
    }

    /* Premium Toast Notifications */
    #toast-container {
        position: fixed;
        top: 90px;
        right: 20px;
        z-index: 10001;
        display: flex;
        flex-direction: column;
        gap: 10px;
        pointer-events: none;
    }

    .gem-toast {
        background: rgba(18, 18, 22, 0.9);
        backdrop-filter: blur(10px);
        border: 1px solid var(--gem-gold);
        color: var(--white);
        padding: 12px 24px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        transform: translateX(120%);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        pointer-events: auto;
        font-family: var(--font-body);
        font-size: 0.9rem;
        min-width: 250px;
    }

    .gem-toast.show {
        transform: translateX(0);
    }

    .gem-toast-icon {
        color: var(--gem-gold);
        display: flex;
        align-items: center;
    }

    .gem-toast-success {
        border-left: 4px solid var(--gem-gold);
    }

    /* Header Action Badges */
    /* Colorful Gemstone Icons */
    .action-icon {
        position: relative;
        padding: 10px;
        border-radius: 50%;
        transition: var(--transition-smooth);
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .action-icon svg {
        transition: all 0.3s ease;
        stroke: currentColor;
    }

    /* Golden Premium Icons */
    .action-icon.wishlist:hover,
    .action-icon.cart:hover,
    .action-icon.compare:hover,
    .action-icon.login:hover {
        background: var(--accent-glow) !important;
        border-color: var(--white) !important;
        box-shadow: 0 0 20px var(--accent-glow) !important;
    }

    .action-icon.wishlist:hover svg,
    .action-icon.cart:hover svg,
    .action-icon.compare:hover svg,
    .action-icon.login:hover svg {
        color: var(--white) !important;
        transform: scale(1.1) !important;
        filter: drop-shadow(0 0 8px var(--white)) !important;
    }

    .action-icon .badge {
        position: absolute;
        top: 1px;
        right: -3px;
        /* background: var(--gem-gold); */
        background: white;
        color: var(--black);
        font-size: 0.65rem;
        font-weight: 800;
        min-width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        border: 1px solid var(--bg-main);
        z-index: 10;
        transition: var(--transition-smooth);
    }

    .action-icon .badge:empty {
        display: none;
    }

    /* User Menu Dropdown - Premium Dark Design */
    .user-dropdown-container {
        position: relative;
        display: flex;
        align-items: center;
        /* padding-left: 0.8rem; */
        /* margin-left: 0.2rem; */
    }

    .user-trigger {
        padding: 0.5rem;
        transition: var(--transition-smooth);
    }

    .user-dropdown-menu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 220px;
        background: var(--primary-color) !important;
        backdrop-filter: blur(20px);
        border-top: 2px solid var(--white) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 0 0 12px 12px;
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1100;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .user-dropdown-container:hover .user-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 14px 20px;
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.9rem;
        font-family: var(--font-body);
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
        background: transparent !important;
        position: relative;
    }

    .dropdown-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--white);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
        padding-left: 25px;
    }

    .dropdown-item:hover::before {
        transform: scaleY(1);
    }

    .item-icon {
        width: 18px;
        height: 18px;
        color: var(--white);
        opacity: 0.6;
        transition: all 0.3s ease;
    }

    .dropdown-item:hover .item-icon {
        opacity: 1;
        transform: scale(1.1);
        filter: drop-shadow(0 0 5px var(--white));
    }

    .logout-item:hover {
        background: rgba(220, 38, 38, 0.05) !important;
    }

    .logout-item:hover .item-icon {
        color: #ef4444;
        filter: drop-shadow(0 0 5px rgba(239, 68, 68, 0.5));
    }

    /* Header Action Consistency */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

/* Checkout Page Styles */
.checkout-page {
    padding: 160px 0 100px;
    background: var(--bg-main);
    min-height: 100vh;
}

.checkout-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.checkout-main-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: flex-start;
}

.checkout-section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 500;
}

/* Address Grid */
.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.address-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: var(--transition-smooth);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.address-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(var(--secondary-color-rgb), 0.3);
}

.address-card.active {
    border: 1.5px solid var(--gem-gold);
    background: rgba(var(--secondary-color-rgb), 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(var(--secondary-color-rgb), 0.1);
}

.address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.address-type {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.address-type svg {
    color: var(--gem-gold);
}

.check-badge {
    width: 24px;
    height: 24px;
    background: var(--gem-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    box-shadow: 0 4px 10px rgba(var(--secondary-color-rgb), 0.3);
}

.address-details {
    margin-bottom: 25px;
}

.customer-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.address-details p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.address-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn:hover {
    background: var(--gem-gold);
    color: var(--black);
    border-color: var(--gem-gold);
    transform: scale(1.05);
}

/* Add New Card */
.address-card.add-new {
    border: 2px dashed rgba(255, 255, 255, 0.1);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.add-new-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.address-card.add-new:hover {
    border-color: var(--gem-gold);
    background: rgba(var(--secondary-color-rgb), 0.02);
}

.address-card.add-new:hover .add-new-content {
    color: var(--gem-gold);
    transform: scale(1.05);
}

.plus-icon {
    width: 44px;
    height: 44px;
    background: rgba(var(--secondary-color-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gem-gold);
    border: 1px solid rgba(var(--secondary-color-rgb), 0.2);
}

/* Summary Sidebar */
.checkout-right .summary-card {
    background: #141417;
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    position: sticky;
    top: 120px;
}

.summary-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 35px;
}

.summary-items {
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
}

.item-thumb {
    width: 70px;
    height: 70px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-info {
    flex: 1;
}

.item-name {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.item-sku {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.item-price {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1rem;
    white-space: nowrap;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

.summary-row .text-gold {
    color: var(--gem-gold);
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 -40px 30px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.total-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
}

.total-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: var(--gem-gold);
}

.currency-symbol {
    font-size: 1.2rem;
    font-weight: 400;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
}

.confirm-order-btn {
    width: 100%;
    padding: 20px;
    background: var(--gem-gold);
    border: none;
    border-radius: 12px;
    color: var(--black);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.confirm-order-btn:hover {
    background: var(--gem-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

@media (max-width: 480px) {
    .checkout-wrapper {
        padding: 0 20px;
    }

    .checkout-section-title {
        font-size: 2.2rem;
    }

    .address-grid {
        grid-template-columns: 1fr;
    }
}

/* Add New Address Form */
.address-form-container {
    background: rgba(20, 20, 23, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    margin-top: 30px;
    display: none;
    /* Hidden by default */
    animation: fadeInSlideUp 0.5s ease-out;
}

.address-form-container.active {
    display: block;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gem-gold);
    margin-bottom: 35px;
    letter-spacing: 0.05em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--gem-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.premium-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 20px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.premium-input:focus {
    outline: none;
    border-color: var(--gem-gold);
    background: rgba(197, 160, 89, 0.05);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

.premium-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.premium-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 40px;
}

.btn-cancel {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-save-address {
    background: linear-gradient(135deg, var(--gem-gold), #8a7352);
    border: none;
    color: var(--black);
    padding: 16px 50px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(197, 168, 124, 0.2);
}

.btn-save-address:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(197, 168, 124, 0.4);
    background: linear-gradient(135deg, #dfc092, var(--gem-gold));
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}

/* International Input Overrides - Checkout Page */
.address-form-container .iti {
    width: 100%;
}

.address-form-container .iti__country-list {
    background-color: #0f0f12 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    backdrop-filter: blur(20px);
    border-radius: 12px;
    z-index: 100;
}

.address-form-container .iti__selected-flag {
    background: rgba(255, 255, 255, 0.04) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px 0 0 12px !important;
    width: 75px !important;
    justify-content: center;
}

/* .address-form-container #country {
    padding-left: 85px !important;
} */

/* Global Address Card Refinements */
.address-card {
    position: relative;
    overflow: hidden;
}

/* Golden Check Badge from User Image */
.check-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    background: var(--gem-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.address-card.active .check-badge {
    opacity: 1;
    transform: scale(1);
}

/* Hide tick on Add New even if active, unless form is open (show-tick class) */
.address-card.add-new.active .check-badge {
    opacity: 0;
    transform: scale(0.5);
}

.address-card.add-new.active.show-tick .check-badge {
    opacity: 1;
    transform: scale(1);
}

.address-card.active {
    border: 1.5px solid var(--gem-gold) !important;
    background: rgba(197, 160, 89, 0.05) !important;
}

/* Updated Saved Address Card Header */
.address-card-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
}

.address-card-header svg {
    color: var(--white);
    opacity: 0.9;
}

/* Action Buttons in Bottom Right */
.address-actions-bottom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.mini-action-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mini-action-btn:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--gem-gold);
    color: var(--gem-gold);
}

.address-card.add-new {
    border: 1.5px dashed rgba(197, 160, 89, 0.3);
}

.address-card.add-new:hover {
    border-color: var(--gem-gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    color: var(--white);
    cursor: pointer;
    margin-left: 1rem;
    padding: 0.5rem;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
    color: var(--white);
}

/* Fix for horizontal scroll (black space on right) */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}


/*----------------------------------------------------midia css-----------------------------------------*/


/* Category Cards Hover Text Always Visible on Touch/Responsive */
@media (max-width: 1870px) {
    .category-card p {
        opacity: 1;
        transform: translateY(0);
        margin-top: 8px;
    }

    .category-card .category-card-overlay {
        padding-bottom: 40px;
    }

    .category-card h3 {
        margin-bottom: 5px !important;
    }
}

@media (max-width: 1750px) {
    .luxury-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 1600px) {
    .header-container {
        padding: 0 7rem;
    }

    .footer-grid {
        gap: 3rem;
    }
}

@media (max-width: 1550px) {
    .header-container {
        padding: 0 4rem !important;
    }

    .nav-links {
        gap: 2rem !important;
        margin-right: 3rem !important;
    }

    .vault-grid {
        gap: 40px !important;
        max-width: 1350px !important;
    }

    .footer-grid {
        gap: 3rem !important;
    }
}

@media (max-width: 1400px) {
    .header-container {
        padding: 0 5rem;
    }

    .nav-links {
        gap: 2.5rem;
    }

    .luxury-title {
        font-size: 3.3rem;
    }
}

@media (max-width: 1366px) {
    .footer-grid {
        margin-bottom: 55px;
    }
}

@media (max-width: 1350px) {
    .section-title {
        font-size: 3.5rem;
    }

    .footer-grid {
        margin-bottom: 30px;
    }
}

@media (max-width: 1300px) {
    .header-container {
        padding: 0 4rem;
    }

    .nav-links {
        gap: 2rem;
    }

    .category-grid {
        gap: 20px;
    }

    .category-card {
        height: 350px;
    }

    .reviews-section {
        padding: 100px 0 60px;
    }

    .luxury-title {
        font-size: 3.2rem;
    }

    .bespoke-section {
        padding: 75px 0;
    }
}

@media (max-width: 1250px) {
    .feature-item h4 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    .footer-grid {
        gap: 2rem;
    }
}


@media (max-width: 1200px) {
    .header-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .category-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0px;
    }

    .section-title {
        margin-top: -1.5rem;
    }

    .category-section {
        padding: 80px 0;
    }

    .client-reviews-container {
        margin: 0 auto;
    }

    .reviews-section {
        padding: 100px 0 60px;
    }

    .reviews-grid {
        margin-top: 130px;
    }

    .luxury-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 3.1rem;
    }

    .section-title {
        margin-top: 0.5rem;
    }
}

@media (max-width: 1150px) {
    .header-container {
        padding: 0 1.5rem !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .mobile-menu-toggle {
        display: block !important;
        margin-left: 0 !important;
        margin-right: 8.5rem !important;
        order: 1;
    }

    .header-logo {
        order: 2;
        margin-right: auto !important;
    }

    .header-logo img {
        height: 60px !important;
    }

    .header-actions {
        order: 3;
        margin-left: 0 !important;
        gap: 1.2rem !important;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 3rem 0;
        gap: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        opacity: 0;
        z-index: 1000;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        pointer-events: auto;
        opacity: 1;
    }

    .nav-links .nav-link {
        color: var(--white) !important;
        font-size: 1rem !important;
        font-family: var(--font-heading) !important;
        letter-spacing: 0.15em !important;
        font-weight: 500 !important;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        transition: all 0.3s ease;
    }

    .nav-links .nav-link:hover {
        color: var(--gem-gold) !important;
        transform: scale(1.05);
    }

    .footer-grid {
        gap: 1rem;
    }

    .bespoke-section {
        padding: 60px 0;
    }

    .category-section {
        padding: 70px 0;
    }

    .vault-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px !important;
        max-width: 900px !important;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 4rem !important;
    }

    .luxury-title {
        font-size: 3.5rem !important;
    }
}

@media (max-width: 1050px) {
    .review-rating {
        color: var(--gem-gold);
        font-size: 0.9rem;
        letter-spacing: 4px;
        margin-bottom: 5px;
    }

    .client-avatar-wrapper {
        margin: -170px auto 30px;
    }

    .review-info h5 {
        margin-bottom: -2px;
    }

    .review-text {
        margin-bottom: 18px;
    }

    .reviews-grid {
        margin-top: 150px;
    }

    .footer-grid {
        gap: 3rem;
    }
}

@media (max-width: 1050px) {
    .footer-grid {

        gap: 5rem;
    }
}

@media (max-width: 1100px) {
    footer {
        padding-top: 0px;
    }

    .branding-col {
        order: -1;
    }

    .footer-col {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 25px;
    }

    .footer-col:last-child {
        margin-bottom: 0;
    }

    .footer-logo img {
        height: 80px;
        margin: 0 auto 1rem;
    }

    .brand-story {
        margin: 0 auto 1.5rem;
        max-width: 85%;
        font-size: 0.9rem;
    }

    .footer-col ul {
        display: inline-block;
        text-align: left;
        margin-top: 2px;
    }

    .footer-col ul li {
        margin-bottom: 1px;
    }

    .footer-col ul li a {
        font-size: 0.85rem;
    }

    .footer-col h4 {
        margin-bottom: 12px;
        font-size: 0.90rem;
    }

    .footer-col h4::after {
        width: 30px;
    }

    .contact-bar-item {
        flex-direction: row;
        text-align: left;
        gap: 12px;
        justify-content: center;
        align-items: center;
    }

    .contact-bar-item span {
        max-width: 280px;
        line-height: 1.6;
    }

    .footer-contact-bar {
        padding: 5px 0;
        margin-bottom: 5px;
    }

    .footer-bottom {
        padding-top: 15px;
    }
}

@media (max-width: 1040px) {
    .footer-grid {
        gap: 4rem;
    }
}

/* Hero Luxury Responsive */
@media (max-width: 1024px) {
    .luxury-title {
        font-size: 3.5rem;
    }

    .hero-luxury-wrapper::before {
        font-size: 6rem;
        left: 2vw;
    }

    .footer-grid {
        gap: 2rem;
    }

    .header-container {
        padding: 0 2rem !important;
    }
}

@media (max-width: 1018px) {
    .luxury-title {
        font-size: 3.1rem;
    }


    .page-header h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    /* .category-grid {
            grid-template-columns: repeat(2, 1fr);
        } */

    .category-card {
        height: 320px;
    }

    .category-section {
        padding: 100px 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .category-section .section-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 950px) {

    /* Inherits footer from 1000px */
    .contact-bar-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .contact-bar-item span {
        text-align: center;
        max-width: 100%;
        font-size: 0.9rem;
    }
}

@media (max-width: 924px) {
    .category-card .category-card-overlay {
        padding-bottom: 10px;
    }

    .review-text {

        font-size: 1.18rem;

    }

    .review-info h5 {

        font-size: 0.75rem;

        margin-bottom: 5px;
    }

    .review-info {
        margin: -4px;
    }

    .luxury-title {
        font-size: 3.1rem;
    }
}

@media (max-width: 900px) {

    /* Inherits footer from 950px */
    .category-card h3 {
        font-size: 1rem;
        margin-bottom: -35px;
    }

    .luxury-title {
        font-size: 3.1rem;
    }
}

@media (max-width: 815px) {
    .category-card h3 {
        font-size: 0.85rem;
    }

    .category-card p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .client-reviews-container {
        margin: -25px auto;
    }

    .footer-grid {
        gap: 0rem;
    }

    .brand-story {
        font-size: 0.87rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 800px) {
    /* Inherits footer from 900px */
}


@media (max-width: 768px) {
    .category-section {
        padding: 40px 0;
    }

    .hero-luxury {
        padding: 120px 0 60px;
    }

    .luxury-title {
        font-size: 2.8rem;
    }

    .luxury-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .hero-luxury-wrapper::before {
        display: none;
    }

    .hero-luxury-content {
        padding: 0 20px;
    }

    .header-logo img {
        height: 55px;
    }

    .header-container {
        padding: 0 10px;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .mobile-menu-toggle {
        margin-left: 0;
        padding: 4px;
    }

    .mobile-menu-toggle svg {
        width: 24px;
        height: 24px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .category-card {
        height: 280px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .client-avatar-wrapper {
        width: 110px;
        height: 110px;
    }

    .header-container {
        padding: 0 15px !important;
    }

    .header-actions {
        gap: 5px !important;
    }

    .footer-form {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }

    .footer-submit {
        width: 100% !important;
    }

    .category-section .section-title {
        font-size: 2.3rem;
    }

    .category-section {
        padding: 55px 0;
    }

    .category-grid {
        padding: 4px 20px;
    }

    /* Bespoke Section Mobile Refinements */
    .cinematic-bespoke {
        height: auto !important;
        min-height: auto !important;
        padding: 60px 0 !important;
    }

    .cinematic-bespoke .section-title {
        font-size: 2.2rem !important;
    }

    .bespoke-overlay-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 20px !important;
        margin-top: 40px !important;
    }

    .glass-luxury {
        padding: 30px 20px !important;
        border-radius: 20px !important;
    }

    .bespoke-number {
        font-size: 3.5rem !important;
        top: -15px !important;
        right: 15px !important;
    }

    /* Signature Vault Mobile Refinements */
    .signature-vault {
        padding: 60px 0 !important;
    }

    .signature-vault .section-header {
        margin-bottom: 40px !important;
    }

    .signature-vault .section-title {
        font-size: 2.2rem !important;
    }

    .signature-vault .container.gallery-container {
        padding: 0 20px !important;
    }

    .vault-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 20px !important;
        margin-top: 20px !important;
    }

    .vault-card {
        margin: 0 auto !important;
        max-width: 280px !important;
    }
}

@media (max-width: 764px) {
    .features-grid {
        gap: 40px;
    }

    .features-section {
        padding: 85px 0;
    }
}

@media (max-width: 755px) {
    .header-logo img {
        height: 70px;
    }
}

@media (max-width: 620px) {
    /* Inherits footer from 800px */
}

@media (max-width: 597px) {
    .footer-col h4 {
        margin-bottom: 60px;
    }
}

@media (max-width: 550px) {
    .luxury-title {
        font-size: 2.5rem;
    }

    .luxury-subtitle {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 2.2rem !important;
        margin-bottom: 30px !important;
    }

    .header-logo img {
        height: 50px !important;
    }

    .header-actions {
        gap: 8px !important;
    }

    .vault-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }

    .vault-card {
        padding: 15px !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .category-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 40px !important;
    }

    .footer-col {
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }

    .footer-logo img {
        height: 90px !important;
        margin: 0 auto 1.5rem !important;
    }

    .brand-story {
        max-width: 400px !important;
        margin: 0 auto 2rem !important;
        font-size: 0.9rem !important;
    }

    .footer-col ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: max-content !important;
        margin: 0 auto !important;
    }

    .footer-col ul li {
        justify-content: flex-start !important;
        margin-bottom: 0.8rem !important;
    }

    .footer-contact-bar {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 30px 20px !important;
    }

    .contact-bar-item {
        justify-content: center !important;
        gap: 12px !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center !important;
    }
}

@media (max-width: 520px) {
    /* Inherits footer from 620px */
}

@media (max-width: 480px) {
    .luxury-title {
        font-size: 2.2rem;
    }

    .luxury-button {
        padding: 1rem 2.5rem;
        font-size: 0.75rem;
    }

    .header-logo img {
        height: 38px;
    }

    .action-icon svg {
        width: 18px;
        height: 18px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .category-card {
        height: 250px;
    }

    .brand-story {
        margin-bottom: 0.8rem;
    }

    .footer-col {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 475px) {
    .header-logo img {
        height: 65px;
    }
}

@media (max-width: 470px) {
    .luxury-title br {
        display: none;
    }
}

@media (max-width: 442px) {
    .section-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 436px) {
    .luxury-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 430px) {
    .footer-contact-bar {
        border-top: none !important;
    }
    header.main-header {
        height: 65px !important;
        background: var(--primary-color) !important;
        display: flex !important;
        align-items: center !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    }

    .header-container {
        padding: 0 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
    }

    .header-logo {
        position: absolute !important;
        left: 33% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        z-index: 5 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .header-logo img {
        height: 65px !important;
        width: auto !important;
        max-width: 150px !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: var(--white) !important;
        z-index: 10 !important;
        cursor: pointer !important;
        width: 40px !important;
        height: 40px !important;
    }

    .mobile-menu-toggle svg {
        width: 26px !important;
        height: 26px !important;
    }

    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
        z-index: 10 !important;
        margin-left: auto !important;
    }

    .action-icon {
        padding: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: var(--white) !important;
    }

    .action-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .action-icon .badge {
        min-width: 15px !important;
        height: 15px !important;
        font-size: 0.65rem !important;
        top: -3px !important;
        right: -3px !important;
    }

    .nav-links.active {
        display: flex !important;
        position: fixed !important;
        top: 85px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(36vh - 95px) !important;
        background: var(--primary-color) !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        z-index: 1000 !important;
        margin: 0 !important;
        padding: 40px !important;
    }

    .nav-links.active .nav-link {
        color: white !important;
    }
}

@media (max-width: 420px) {
    .luxury-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .luxury-subtitle {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    .luxury-button {
        padding: 1rem 1.4rem;
    }

    .header-actions {
        gap: 0.1rem;
    }

    .header-container {
        padding: 0 13px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-top: -0.5rem;
    }

    .client-reviews-container {
        margin: -40px auto;
    }

    .client-avatar-wrapper {
        width: 100px;
        height: 100px;
        margin: -138px auto 30px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .reviews-grid {
        gap: 110px 0;
        margin-top: 100px;
    }
}

/* Header Responsive 414px */
@media (max-width: 414px) {
    header.main-header {
        height: 65px !important;
        background: var(--primary-color) !important;
        display: flex !important;
        align-items: center !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    }

    .header-container {
        padding: 0 15px !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
    }

    .header-logo {
        position: absolute !important;
        left: 33% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        z-index: 5 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .header-logo img {
        height: 58px !important;
        width: auto !important;
        max-width: 140px !important;
        object-fit: contain !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: var(--white) !important;
        z-index: 10 !important;
        cursor: pointer !important;
        width: 40px !important;
        height: 40px !important;
    }

    .mobile-menu-toggle svg {
        width: 28px !important;
        height: 28px !important;
    }

    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        z-index: 10 !important;
        margin-left: auto !important;
    }

    .action-icon {
        padding: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: var(--white) !important;
    }

    .action-icon svg {
        width: 16px !important;
        height: 16px !important;
    }

    .action-icon .badge {
        min-width: 16px !important;
        height: 16px !important;
        font-size: 0.70rem !important;
        top: -4px !important;
        right: -4px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: whitesmoke !important;
        color: var(--primary-color) !important;
        border: 1px solid var(--primary-color) !important;
        padding: 0 !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-links.active {
        display: flex !important;
        position: fixed !important;
        top: 85px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(36vh - 95px) !important;
        background: var(--primary-color) !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        z-index: 1000 !important;
        margin: 0 !important;
        padding: 40px !important;
    }

    .nav-links.active .nav-link {
        font-size: 1rem !important;
        color: var(--white) !important;
        padding: 15px 0 !important;
        letter-spacing: 0.15em !important;
        width: 100% !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .nav-links.active .nav-link:last-child {
        border-bottom: none !important;
    }

    /* Reviews Section Responsive 414px */
    .reviews-section {
        padding: 60px 0 !important;
    }

    .client-reviews-container {
        padding: 0 15px !important;
    }

    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 80px 0 !important;
        margin-top: 100px !important;
    }

    .review-card {
        padding: 70px 25px 35px !important;
        border-radius: 35px !important;
        width: 90% !important;
        margin: 0 auto !important;
    }

    .client-avatar-wrapper {
        width: 110px !important;
        height: 110px !important;
        margin: -125px auto 25px !important;
    }

    .review-rating {
        justify-content: center !important;
        display: flex !important;
        gap: 5px !important;
        margin-bottom: 25px !important;
        font-size: 0.85rem !important;
    }

    .review-text {
        font-size: 1.2rem !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
    }

    .review-info h5 {
        font-size: 0.85rem !important;
    }

    .review-info span {
        font-size: 0.75rem !important;
    }

    .footer-grid {
        gap: 0px !important;
    }

    .footer-col h4 {
        margin-bottom: 32px;
    }

    /* About Us / FAQ Page Responsive 414px */
    .faq-hero {
        padding: 120px 0 60px !important;
        text-align: center !important;
        min-height: auto !important;
    }

    .hero-badge-minimal {
        margin-bottom: 20px !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.2em !important;
        display: inline-block !important;
    }

    .faq-hero .luxury-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
        padding: 0 15px !important;
    }

    .faq-hero .luxury-subtitle {
        font-size: 1rem !important;
        padding: 0 20px !important;
        line-height: 1.5 !important;
        margin-bottom: 30px !important;
    }

    .faq-hero .grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        margin-top: 40px !important;
        padding: 0 15px !important;
    }

    .faq-item-card {
        padding: 35px 25px !important;
        width: 100% !important;
        margin: 0 auto !important;
        border-radius: 24px !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
        text-align: center !important;
    }

    .faq-item-card h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
        color: var(--primary-color) !important;
    }

    .faq-item-card p {
        font-size: 0.95rem !important;
        line-height: 1.8 !important;
        color: var(--text-secondary) !important;
        margin-bottom: 15px !important;
    }

    .image-wrapper.glass {
        padding: 12px !important;
        border-radius: 20px !important;
    }

    /* Contact Us Page Responsive 414px */
    .contact-hero {
        padding: 120px 0 60px !important;
        text-align: center !important;
        min-height: auto !important;
    }

    .contact-hero .luxury-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
        padding: 0 15px !important;
    }

    .contact-hero .luxury-subtitle {
        font-size: 1rem !important;
        padding: 0 20px !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
    }

    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        padding: 0 15px !important;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 35px 25px !important;
        width: 100% !important;
        border-radius: 24px !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05) !important;
        background: white !important;
    }

    .contact-section-heading,
    .contact-form-heading {
        font-size: 1.8rem !important;
        margin-bottom: 25px !important;
        text-align: center !important;
        color: var(--primary-color) !important;
    }

    .contact-detail {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
        margin-bottom: 30px !important;
    }

    .contact-icon {
        margin: 0 auto !important;
        width: 50px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(var(--primary-color-rgb), 0.05) !important;
        border-radius: 50% !important;
        color: var(--primary-color) !important;
    }

    .contact-detail-content h4 {
        font-size: 0.75rem !important;
        margin-bottom: 5px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
        color: var(--text-muted) !important;
    }

    .contact-detail-content p {
        font-size: 1rem !important;
        color: var(--text-primary) !important;
        font-weight: 600 !important;
    }

    .luxury-input {
        padding: 16px 20px !important;
        font-size: 0.95rem !important;
        border-radius: 12px !important;
        border: 1px solid #f0f0f0 !important;
        background: #fafafa !important;
    }

    .submit-btn {
        width: 100% !important;
        padding: 18px !important;
        font-weight: 700 !important;
        letter-spacing: 0.1em !important;
        border-radius: 12px !important;
    }
}

@media (max-width: 400px) {
    .header-logo img {
        height: 50px;
    }

    .mobile-menu-toggle {
        margin-top: 12px;
    }

    .action-icon svg {
        width: 16px;
        height: 16px;
    }

    .mobile-menu-toggle svg {
        width: 18px;
        height: 18px;
    }

    .features-section {
        padding: 55px 0;
    }
}

@media (max-width: 390px) {
    .footer-contact-bar {
        border-top: none !important;
        margin-top: -36px;
    }

}

.footer-form {
    padding-bottom: 30px;
}

/* Home Page: Client Reflections Responsive 375px */
@media (max-width: 375px) {
    .reviews-section {
        padding: 60px 0 !important;
    }

    .client-reviews-container {
        padding: 0 !important;
    }

    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 100px 0 !important;
        margin-top: 100px !important;
        padding-right: 0 !important;
    }

    .review-card {
        width: 85% !important;
        margin: 0 auto !important;
        padding: 70px 25px 35px !important;
        border-radius: 40px !important;
        text-align: center !important;
        background: #ffffff !important;
        border: none !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05) !important;
    }

    .client-avatar-wrapper {
        width: 100px !important;
        height: 100px !important;
        margin: -120px auto 25px !important;
        position: relative !important;
        z-index: 10 !important;
    }

    .client-avatar {
        border: 2px solid #ffffff !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    }

    .review-rating {
        justify-content: center !important;
        display: flex !important;
        gap: 4px !important;
        margin-bottom: 25px !important;
        color: #000000 !important;
        font-size: 0.8rem !important;
    }

    .review-text {
        font-size: 1.2rem !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
        color: #555555 !important;
        font-style: italic !important;
    }

    .review-info h5 {
        font-size: 0.8rem !important;
    }

    .review-info span {
        font-size: 0.7rem !important;
    }

    header.main-header {
        height: 60px !important;
        background: var(--primary-color) !important;
        display: flex !important;
        align-items: center !important;
    }

    .header-container {
        padding: 0 15px !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
    }

    .header-logo {
        position: absolute !important;
        left: 35% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        z-index: 5 !important;
    }

    .header-logo img {
        height: 50px !important;
        width: auto !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        color: var(--white) !important;
        z-index: 10 !important;
        cursor: pointer !important;
    }

    .mobile-menu-toggle svg {
        width: 24px !important;
        height: 24px !important;
    }

    .header-actions {
        margin-left: auto !important;
        gap: 5px !important;
        z-index: 10 !important;
        display: flex !important;
        align-items: center !important;
    }

    .action-icon {
        padding: 4px !important;
    }

    .action-icon svg {
        width: 14px !important;
        height: 14px !important;
    }

    .action-icon .badge {
        min-width: 11px !important;
        height: 11px !important;
        font-size: 0.6rem !important;
        top: -2px !important;
        right: -2px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-links.active {
        display: flex !important;
        position: fixed !important;
        top: 90px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(30vh - 19px) !important;
        background: var(--primary-color) !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        z-index: 1000 !important;
        margin: 0 !important;
        padding: 40px !important;
    }

    .nav-links.active .nav-link {
        font-size: 0.85rem !important;
        color: var(--white) !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 10px 0 !important;
        letter-spacing: 0.1em !important;
    }

    /* About Us / FAQ Page Responsive 375px */
    .faq-hero {
        padding: 100px 0 60px !important;
        text-align: center !important;
        min-height: auto !important;
    }

    .faq-hero .luxury-title {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 20px !important;
    }

    .faq-hero .luxury-subtitle {
        font-size: 0.9rem !important;
        padding: 0 10px !important;
    }

    .faq-hero .grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        margin-top: 40px !important;
        padding: 0 15px !important;
    }

    .faq-item-card {
        padding: 30px 20px !important;
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        border-radius: 20px !important;
    }

    .faq-item-card h2 {
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }

    .faq-item-card p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    .image-wrapper.glass {
        padding: 10px !important;
        margin-top: 0 !important;
    }

    /* Contact Us Page Responsive 375px */
    .contact-hero {
        padding: 100px 0 60px !important;
        text-align: center !important;
    }

    .contact-hero .luxury-title {
        font-size: 2.1rem !important;
        line-height: 1.1 !important;
        margin-bottom: 20px !important;
        padding: 0 10px !important;
    }

    .contact-hero .luxury-subtitle {
        font-size: 0.9rem !important;
        padding: 0 15px !important;
        line-height: 1.6 !important;
    }

    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        margin-top: 40px !important;
        padding: 0 15px !important;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px !important;
        width: 100% !important;
        border-radius: 20px !important;
        text-align: center !important;
    }

    .contact-section-heading,
    .contact-form-heading {
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }

    .contact-detail {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px !important;
    }

    .contact-detail-content h4 {
        font-size: 1rem !important;
        margin-bottom: 5px !important;
    }

    .contact-detail-content p {
        font-size: 0.85rem !important;
    }

    .contact-form-header {
        margin-bottom: 25px !important;
    }

    .contact-form-desc {
        font-size: 0.85rem !important;
    }

    .luxury-input {
        padding: 1rem !important;
        font-size: 0.9rem !important;
    }

    .submit-btn {
        padding: 1rem !important;
        font-size: 0.85rem !important;
    }

    .footer-grid {
        gap: 0px !important;
    }

    .footer-col {
        margin-bottom: 20px !important;
    }

    .footer-col h4 {
        margin-bottom: 30px;
    }

    .footer-contact-bar {
        border-top: none !important;
        margin-top: 30px !important;
    }

    .reviews-section {
        padding: 95px 0 !important;
    }

    .footer-form {

        padding-bottom: 20px;
    }

    .footer-contact-bar {
        margin-top: -45px !important;
    }
}

@media (max-width: 360px) {
    .header-logo {
        left: 35% !important;
    }

    .header-logo img {
        height: 60px !important;
    }
}

@media (max-width: 350px) {
    .footer-grid {
        gap: 0px !important;
    }

    .header-logo img {
        height: 50px;
    }

    .action-icon {
        padding: 6px;
    }

    .action-icon svg {
        width: 12px;
        height: 12px;
    }

    .action-icon .badge {
        min-width: 14px;
        height: 14px;
        font-size: 0.55rem;
        top: -2px;
        right: -2px;
    }

    .mobile-menu-toggle {
        padding: 4px;
        margin-left: 0;
        margin-top: 12px;
    }

    .mobile-menu-toggle svg {
        width: 14px;
        height: 14px;
    }

    .header-container {
        padding: 0 6px;
    }

    .header-actions {
        gap: 4px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .review-card {
        padding: 50px 20px 25px;
        border-radius: 20px;
    }

    .client-avatar-wrapper {
        width: 80px;
        height: 80px;
        margin: -90px auto 15px;
    }

    .review-rating {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .review-text {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .review-info h5 {
        font-size: 0.75rem;
    }

    .review-info span {
        font-size: 0.65rem;
    }

    .reviews-grid {
        gap: 70px 0;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .feature-item h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .feature-item p {
        font-size: 0.8rem;
    }

    .features-grid {
        gap: 25px;
    }

    .features-section {
        margin-top: 25px;
        padding: 40px 0;
    }

    .brand-story {
        margin-bottom: 0.5rem;
    }

    .footer-col {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .footer-logo img {
        margin-bottom: 0.5rem;
    }

    .contact-bar-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .contact-bar-item svg {
        margin-top: 3px;
        flex-shrink: 0;
    }

    .contact-bar-item span {
        text-align: left;
        line-height: 1.5;
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    .header-logo img {
        height: 57px;
    }

    .nav-links {
        padding: 1.5rem 0 !important;
        gap: 0.8rem !important;
    }

    .nav-links .nav-link {
        font-size: 0.8rem !important;
        padding: 5px 0 !important;
        color: var(--white) !important;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        color: var(--gem-gold);
    }

    .action-icon {
        color: var(--gem-gold);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition-smooth);
    }

    .action-icon:hover {
        color: var(--gem-gold);
        transform: translateY(-2px);
        filter: drop-shadow(0 0 8px var(--accent-glow));
    }

    .header-actions {
        gap: 0.5rem;
    }

    .mobile-menu-toggle {
        padding: 4px;
        margin-left: 0;
        margin-top: 12px;
    }

    .mobile-menu-toggle svg {
        width: 14px;
        height: 14px;
    }

    .header-container {
        padding: 0 6px;
    }

    .header-actions {
        gap: 4px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .review-card {
        padding: 50px 20px 25px;
        border-radius: 20px;
    }

    .client-avatar-wrapper {
        width: 80px;
        height: 80px;
        margin: -90px auto 15px;
    }

    .review-rating {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .review-text {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .review-info h5 {
        font-size: 0.75rem;
    }

    .review-info span {
        font-size: 0.65rem;
    }

    .reviews-grid {
        gap: 70px 0;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .feature-item h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .feature-item p {
        font-size: 0.8rem;
    }

    .features-grid {
        gap: 25px;
    }

    .features-section {
        margin-top: 0px;
        padding: 40px 0;
    }

    .brand-story {
        margin-bottom: 0.5rem;
    }

    .footer-col {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .footer-logo img {
        margin-bottom: 0.5rem;
    }

    .contact-bar-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .contact-bar-item svg {
        margin-top: 3px;
        flex-shrink: 0;
    }

    .contact-bar-item span {
        text-align: left;
        line-height: 1.5;
        font-size: 0.85rem;
    }




    .header-container {
        padding: 0 8px !important;
        justify-content: space-between !important;
    }

    .header-logo {
        margin-left: 12px !important;
        margin-right: 0 !important;
    }

    .header-logo img {
        height: 38px !important;
        max-width: 120px !important;
        object-fit: contain;
    }

    .header-actions {
        gap: 6px !important;
        margin-left: auto !important;
    }

    .action-icon {
        padding: 4px !important;
        color: #ffffff !important;
    }

    .action-icon svg {
        width: 17px !important;
        height: 17px !important;
    }

    .action-icon .badge {
        min-width: 14px !important;
        height: 14px !important;
        font-size: 0.55rem !important;
        line-height: 14px !important;
        top: -3px !important;
        right: -3px !important;
    }

    .mobile-menu-toggle {
        margin-right: 8px !important;
    }

    .mobile-menu-toggle svg {
        width: 20px !important;
        height: 20px !important;
    }

    .signature-vault {
        padding: 25px 0 !important;
    }

    .reviews-section {
        padding: 70px 0 60px;
    }

    .reviews-section .section-title {

        margin-bottom: -28px;
        font-size: 2.2rem;
    }

    .features-section {
        padding: 50px 0 !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 0 20px !important;
    }

    .feature-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 15px !important;
    }

    .feature-item {
        margin-bottom: 20px;
    }

    .feature-item:last-child {
        margin-bottom: 0;
    }

    .feature-item h4 {
        font-size: 1.2rem !important;
        margin-bottom: 8px !important;
    }

    .feature-item p {
        font-size: 0.9rem !important;
        padding: 0 10px !important;
        line-height: 1.5;
    }

    footer {
        padding: 40px 0 20px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        text-align: center !important;
    }

    .footer-col {
        margin-top: 0 !important;
        margin-bottom: 10px !important;
    }

    .footer-logo img {
        height: 80px !important;
        margin: 0 auto 1.5rem !important;
    }

    .brand-story {
        margin: 0 auto 1.5rem !important;
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

    .footer-col ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: max-content !important;
        margin: 0 auto !important;
        text-align: left !important;
    }

    .footer-col ul li {
        justify-content: flex-start !important;
        width: auto !important;
        margin-bottom: 0.8rem !important;
        display: flex !important;
        align-items: center !important;
    }

    .footer-col ul li a {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        text-align: left !important;
    }

    .footer-col ul li::before {
        margin-right: 8px !important;
        font-size: 0.7rem !important;
    }

    .footer-contact-bar {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 20px 40px !important;
        border-top: none !important;
        margin-top: 30px !important;
    }

    .contact-bar-item {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 260px !important;
        margin: 0 auto 12px !important;
    }

    .contact-bar-item:last-child {
        align-items: flex-start !important;
        margin-bottom: 0 !important;
    }

    .contact-bar-item span {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        font-weight: 500 !important;
    }

    .contact-bar-item svg {
        flex-shrink: 0 !important;
        width: 16px !important;
        height: 16px !important;
        color: var(--white) !important;
    }

    .contact-bar-item:last-child svg {
        margin-top: 3px !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 15px !important;
        padding-top: 20px !important;
    }

    .footer-copy {
        font-size: 0.75rem !important;
    }

    .signature-vault .section-title {
        font-size: 2rem !important;
        margin-top: -20px;
    }
}


/* Status Badges on Images */
.gem-status-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
    pointer-events: none;
}

.status-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-badge.active {
    opacity: 1;
    transform: scale(1);
}

.status-badge-wishlist {
    background: rgba(201, 166, 107, 0.9);
    /* Gold with transparency */
}

.status-badge-cart {
    background: rgba(var(--primary-color-rgb), 0.9);
    /* Teal with transparency */
}

.status-badge i,
.status-badge svg {
    font-size: 14px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* ==========================================================================
   PREMIUM TOAST NOTIFICATIONS
   ========================================================================== */
#toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.gem-toast {
    pointer-events: auto;
    min-width: 250px;
    background: var(--primary-color);
    border: 1px solid var(--white);
    /* Transparent Gold */
    /* border-left: 4px solid var(--gem-gold); */
    border-radius: 6px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(8px);
}

.gem-toast.show {
    transform: translateX(0);
}

.gem-toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.gem-toast-message {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.gem-toast-error {
    border-left-color: #ff4d4d;
}

.gem-toast-warning {
    border-left-color: #ffcc00;
}