/*
 * ╔══════════════════════════════════════════════════════════════╗
 * ║   A&C ENTERPRISE — ROYAL IMPERIAL STYLESHEET                ║
 * ║   CLEAN VERSION — all duplicate rules removed               ║
 * ║   Load AFTER bootstrap.css                                  ║
 * ╚══════════════════════════════════════════════════════════════╝
 */

/* ═══════════════════════════════════════════════════════════════
   0. CSS VARIABLES
═══════════════════════════════════════════════════════════════ */
:root {
    --gold: #c9a84c;
    --gold-light: #f0d080;
    --gold-dim: #7a5c1e;
    --gold-faint: rgba(201,168,76,.12);
    --sapphire: #080e1c;
    --sapphire-mid: #0d1f3c;
    --platinum: #e8eaf0;
    --glow-gold: 0 0 10px rgba(201,168,76,.55), 0 0 35px rgba(201,168,76,.22);
    --glow-blue: 0 0 14px rgba(79,156,255,.45), 0 0 40px rgba(79,156,255,.18);
    --glass-card: rgba(10,22,48,.72);
    --glass-border: rgba(201,168,76,.18);
    --glass-border-h: rgba(201,168,76,.52);
    --ease-royal: cubic-bezier(.22,.68,0,1.2);
    --ease-silk: cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════════════════════════════
   1. CURSOR
═══════════════════════════════════════════════════════════════ */
html body,
html body *,
html body *::before,
html body *::after {
    cursor: none !important;
}

    html body a,
    html body button,
    html body [type="button"],
    html body [type="submit"],
    html body [type="reset"],
    html body [role="button"],
    html body label,
    html body select,
    html body .btn,
    html body .btn:focus,
    html body .btn:hover,
    html body .btn:active,
    html body .nav-link,
    html body .navbar-toggler,
    html body .dropdown-item,
    html body .form-check-input,
    html body .form-check-label,
    html body summary {
        cursor: none !important;
    }

#royal-cursor {
    position: fixed !important;
    top: -100px;
    left: -100px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2147483647;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 10px rgba(201,168,76,.9), 0 0 24px rgba(201,168,76,.45);
    transition: width .15s var(--ease-silk), height .15s var(--ease-silk), background .15s;
    will-change: left, top;
}

#royal-cursor-trail {
    position: fixed !important;
    top: -100px;
    left: -100px;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(201,168,76,.55);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2147483646;
    transform: translate(-50%,-50%);
    transition: width .28s var(--ease-silk), height .28s var(--ease-silk), border-color .28s;
    will-change: left, top;
}

/* ═══════════════════════════════════════════════════════════════
   2. BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background-color: var(--sapphire);
    color: var(--platinum);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

    body::after {
        content: "";
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
        opacity: .026;
        pointer-events: none;
        z-index: -1;
    }

    body::before {
        content: "\2736";
        position: fixed;
        font-family: 'Cinzel', serif;
        font-size: clamp(360px, 75vw, 860px);
        color: rgba(201,168,76,.015);
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        pointer-events: none;
        z-index: -3;
        animation: crestBreath 14s ease-in-out infinite alternate;
        line-height: 1;
    }

/* ═══════════════════════════════════════════════════════════════
   3. AURORA BLOBS
═══════════════════════════════════════════════════════════════ */
.bg-blob {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -2;
    filter: blur(110px);
    will-change: transform;
}

.bg-blob-1 {
    width: 700px;
    height: 700px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(10,60,160,.50), transparent 68%);
    animation: blobDrift1 24s ease-in-out infinite alternate;
}

.bg-blob-2 {
    width: 600px;
    height: 600px;
    bottom: -180px;
    right: -180px;
    background: radial-gradient(circle, rgba(139,0,0,.26), transparent 68%);
    animation: blobDrift2 30s ease-in-out infinite alternate;
}

.bg-blob-3 {
    width: 500px;
    height: 500px;
    top: 38%;
    left: 40%;
    background: radial-gradient(circle, rgba(201,168,76,.15), transparent 68%);
    animation: blobDrift3 20s ease-in-out infinite alternate;
}

/* ═══════════════════════════════════════════════════════════════
   4. TYPOGRAPHY
═══════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    letter-spacing: .07em;
}

h1 {
    font-size: clamp(1.9rem, 5vw, 3.8rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, #fff8e1 70%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 220% auto;
    animation: shimmerText 5s linear infinite;
    filter: drop-shadow(0 0 16px rgba(201,168,76,.4));
}

h2 {
    color: var(--gold);
    font-size: clamp(1.5rem, 3.5vw, 2.6rem);
    font-weight: 600;
    text-shadow: var(--glow-gold);
}

h3, h4 {
    color: var(--gold-light);
}

p {
    line-height: 1.75;
}

.lead {
    color: rgba(232,234,240,.72);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: .03em;
}

.royal-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0 28px;
}

    .royal-divider::before, .royal-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
    }

.royal-divider-gem {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: var(--glow-gold);
    flex-shrink: 0;
}

.why-section h2, h2.text-center {
    color: var(--gold) !important;
    -webkit-text-fill-color: var(--gold) !important;
    background: none !important;
    text-shadow: var(--glow-gold);
}

/* ═══════════════════════════════════════════════════════════════
   5. NAVBAR
═══════════════════════════════════════════════════════════════ */
.navbar-custom {
    background: linear-gradient(180deg, rgba(4,10,22,.98) 0%, rgba(4,10,22,.88) 100%) !important;
    border-bottom: 1px solid rgba(201,168,76,.22);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    transition: box-shadow .4s var(--ease-silk);
}

    .navbar-custom.scrolled {
        box-shadow: 0 4px 30px rgba(0,0,0,.7), 0 1px 0 rgba(201,168,76,.3);
    }

    .navbar-custom .navbar-brand,
    .navbar-custom .nav-link {
        font-family: 'Cinzel', serif !important;
        color: var(--gold) !important;
        letter-spacing: .10em;
        font-size: .82rem;
        text-transform: uppercase;
        position: relative;
        transition: color .3s, text-shadow .3s;
    }

        .navbar-custom .navbar-brand img {
            height: 40px;
            margin-right: 10px;
        }

        .navbar-custom .nav-link::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            transition: width .4s var(--ease-silk);
        }

        .navbar-custom .nav-link:hover::after,
        .navbar-custom .nav-link.active::after {
            width: 100%;
        }

        .navbar-custom .nav-link:hover {
            color: var(--gold-light) !important;
            text-shadow: var(--glow-gold);
        }

    .navbar-custom .navbar-toggler {
        border-color: rgba(201,168,76,.38);
    }

    .navbar-custom .navbar-toggler-icon {
        filter: invert(75%) sepia(50%) saturate(400%) hue-rotate(5deg);
    }

/* ═══════════════════════════════════════════════════════════════
   6. HERO SECTION
═══════════════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border: 1px solid rgba(201,168,76,.30) !important;
    border-radius: 16px !important;
    display: flex;
    align-items: center;
    background: #080e1c !important;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(6,12,26,.55) 0%, rgba(6,12,26,.82) 100%), linear-gradient(135deg, rgba(6,12,26,.75) 0%, rgba(10,22,48,.55) 50%, rgba(6,12,26,.70) 100%);
    z-index: 1;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    filter: blur(1px);
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}

.hero-badge {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: .58rem;
    letter-spacing: .30em;
    text-transform: uppercase;
    color: var(--gold-dim);
    border: 1px solid rgba(201,168,76,.30);
    border-radius: 2px;
    padding: 4px 16px;
}

.hero-title {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(2.2rem, 5.5vw, 4rem) !important;
    font-weight: 700 !important;
    letter-spacing: .06em;
    line-height: 1.15;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 35%, #fff8e1 65%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 220% auto;
    animation: shimmerText 5s linear infinite;
    filter: drop-shadow(0 0 22px rgba(201,168,76,.5));
    margin-bottom: 0;
}

.hero-line {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

    .hero-line::before, .hero-line::after {
        content: "";
        width: 80px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
    }

.hero-line-gem {
    font-size: 8px;
    color: var(--gold);
    text-shadow: var(--glow-gold);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem) !important;
    font-style: italic;
    color: rgba(232,234,240,.82) !important;
    background: none !important;
    -webkit-text-fill-color: rgba(232,234,240,.82) !important;
    letter-spacing: .06em;
    line-height: 1.7;
    margin-bottom: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,.6);
}

/* ═══════════════════════════════════════════════════════════════
   7. BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
    font-family: 'Cinzel', serif !important;
    letter-spacing: .11em !important;
    font-size: .78rem !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    padding: 10px 28px !important;
    position: relative;
    overflow: hidden;
    transition: color .3s var(--ease-silk), border-color .3s var(--ease-silk), box-shadow .3s var(--ease-silk), transform .25s var(--ease-royal) !important;
    z-index: 1;
}

    .btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(201,168,76,.20), rgba(201,168,76,.05));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .4s var(--ease-silk);
        z-index: -1;
        border-radius: inherit;
    }

    .btn::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
        transform: translateX(-110%);
        z-index: 0;
        border-radius: inherit;
    }

    .btn:hover::before {
        transform: scaleX(1);
    }

    .btn:hover::after {
        transform: translateX(110%);
        transition: transform .55s .05s;
    }

    .btn:hover {
        transform: translateY(-3px) scale(1.04) !important;
    }

    .btn:active {
        transform: translateY(0) scale(.97) !important;
    }

.btn-warning {
    background: linear-gradient(135deg, rgba(201,168,76,.28), rgba(201,168,76,.08)) !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold-light) !important;
}

    .btn-warning:hover, .btn-warning:focus {
        background: linear-gradient(135deg, rgba(201,168,76,.48), rgba(201,168,76,.22)) !important;
        border-color: var(--gold-light) !important;
        color: #fff !important;
        box-shadow: var(--glow-gold) !important;
    }

.btn-outline-dark {
    border: 1px solid rgba(201,168,76,.32) !important;
    color: var(--gold) !important;
    background: transparent !important;
}

    .btn-outline-dark:hover, .btn-outline-dark.active, .btn-outline-dark:focus {
        background: rgba(201,168,76,.11) !important;
        border-color: var(--gold) !important;
        color: var(--gold-light) !important;
        box-shadow: var(--glow-gold) !important;
        transform: translateY(-2px) scale(1.03) !important;
    }

.btn-primary {
    background: linear-gradient(135deg, rgba(40,80,180,.42), rgba(20,50,120,.32)) !important;
    border: 1px solid rgba(79,156,255,.45) !important;
    color: #c8dfff !important;
}

    .btn-primary:hover, .btn-primary:focus {
        background: linear-gradient(135deg, rgba(60,110,220,.58), rgba(40,80,180,.42)) !important;
        border-color: #4f9cff !important;
        color: #fff !important;
        box-shadow: var(--glow-blue) !important;
    }

/* ═══════════════════════════════════════════════════════════════
   8. CATEGORY FILTER
═══════════════════════════════════════════════════════════════ */
#categoryFilter {
    background: rgba(10,22,48,.52);
    border-radius: 12px;
    border: 1px solid rgba(201,168,76,.11);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 18px;
    gap: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   9. SEARCH BAR
═══════════════════════════════════════════════════════════════ */
.search-container {
    display: flex;
    justify-content: center;
    margin: 44px 0;
}

.search-box {
    position: relative;
    width: 60%;
    max-width: 660px;
}

.search-input {
    width: 100%;
    padding: 15px 22px 15px 50px;
    border-radius: 6px;
    border: 1px solid rgba(201,168,76,.22);
    background: rgba(10,22,48,.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--platinum);
    font-size: 15px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: .04em;
    outline: none;
    box-shadow: 0 6px 28px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.04);
    transition: border-color .3s var(--ease-silk), box-shadow .3s var(--ease-silk), background .3s var(--ease-silk);
    -webkit-appearance: none;
}

    .search-input::placeholder {
        color: #4c5c74;
        font-style: italic;
    }

    .search-input:focus {
        border-color: var(--gold);
        background: rgba(13,31,60,.85);
        box-shadow: var(--glow-gold), 0 6px 28px rgba(0,0,0,.36);
    }

/*.form-control#productSearch {
    background: rgba(10,22,48,.72) !important;
    color: var(--platinum) !important;
    border: 1px solid rgba(201,168,76,.22) !important;
    border-radius: 6px !important;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: .04em;
    box-shadow: 0 6px 28px rgba(0,0,0,.36) !important;
    transition: border-color .3s, box-shadow .3s, background .3s;
}

    .form-control#productSearch:focus {
        border-color: var(--gold) !important;
        box-shadow: var(--glow-gold) !important;
        background: rgba(13,31,60,.85) !important;
    }

    .form-control#productSearch::placeholder {
        color: #4c5c74;
        font-style: italic;
    }*/


.search-icon {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-dim);
    font-size: 16px;
    pointer-events: none;
    transition: color .3s, filter .3s;
}

.search-box:focus-within .search-icon {
    color: var(--gold);
    filter: drop-shadow(0 0 5px rgba(201,168,76,.6));
}

/* ═══════════════════════════════════════════════════════════════
   10. PRODUCT CARDS
═══════════════════════════════════════════════════════════════ */
/*.product-card {
    position: relative;
    background: linear-gradient(145deg, rgba(13,31,60,.80), rgba(4,10,22,.92));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 18px !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,.55), inset 0 1px 0 rgba(201,168,76,.10);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform .4s var(--ease-royal), box-shadow .4s var(--ease-silk), border-color .3s var(--ease-silk);
    --bs-card-bg: transparent;
}

    .product-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(115deg, transparent 20%, rgba(201,168,76,.06) 40%, rgba(201,168,76,.14) 50%, rgba(201,168,76,.06) 60%, transparent 80%);
        background-size: 300% 100%;
        background-position: 160% 0;
        opacity: 0;
        transition: background-position .6s var(--ease-silk), opacity .3s;
        pointer-events: none;
        z-index: 1;
    }

    .product-card:hover::before {
        background-position: -60% 0;
        opacity: 1;
    }

    .product-card::after {
        content: "\25C8";
        position: absolute;
        bottom: 10px;
        right: 13px;
        font-size: 11px;
        color: rgba(201,168,76,.22);
        pointer-events: none;
        transition: color .3s, text-shadow .3s;
        z-index: 2;
    }

    .product-card:hover::after {
        color: rgba(201,168,76,.65);
        text-shadow: var(--glow-gold);
    }

    .product-card:hover {
        transform: translateY(-14px) scale(1.025) perspective(1200px) rotateX(3deg) rotateY(-1deg);
        box-shadow: 0 30px 70px rgba(0,0,0,.72), 0 0 40px rgba(201,168,76,.18), var(--glow-blue);
        border-color: var(--glass-border-h) !important;
    }

    .product-card .card-body {
        position: relative;
        z-index: 2;
        padding: 20px;
    }

    .product-title, .product-card .card-title {
        font-family: 'Cinzel', serif;
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: .06em;
        background: linear-gradient(135deg, #fff 0%, var(--gold-light) 50%, #fff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 220% auto;
        animation: shimmerText 6s linear infinite;
        margin-bottom: 8px;
    }

    .product-card .card-text, .product-card p {
        color: #7a8fa8;
        font-size: .9rem;
        line-height: 1.7;
    }

    .product-card .card-footer {
        background: rgba(4,10,22,.50);
        border-top: 1px solid rgba(201,168,76,.09);
        padding: 14px 20px;
    }*/
/* ═══════════════════════════════════════════════════════════
   PRODUCT CARDS — No Image Version
   Paste at the bottom of royal-styles.css
═══════════════════════════════════════════════════════════ */

/* ── Card wrapper ── */
.pc-royal {
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(13,31,60,.80), rgba(4,10,22,.95));
    border: 1px solid rgba(201,168,76,.14);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.22,.68,0,1.2), box-shadow .35s ease, border-color .3s ease;
    --bs-card-bg: transparent;
}

    /* Gold shimmer sweep on hover */
    .pc-royal::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 115deg, transparent 20%, rgba(201,168,76,.05) 45%, rgba(201,168,76,.10) 50%, rgba(201,168,76,.05) 55%, transparent 80% );
        background-size: 300% 100%;
        background-position: 160% 0;
        opacity: 0;
        transition: background-position .6s ease, opacity .3s;
        pointer-events: none;
        z-index: 1;
        border-radius: 16px;
    }

    .pc-royal:hover::before {
        background-position: -60% 0;
        opacity: 1;
    }

    /* Crest mark */
    .pc-royal::after {
        content: "\25C8";
        position: absolute;
        bottom: 10px;
        right: 12px;
        font-size: 10px;
        color: rgba(201,168,76,.18);
        pointer-events: none;
        transition: color .3s;
        z-index: 2;
    }

    .pc-royal:hover::after {
        color: rgba(201,168,76,.55);
    }

    .pc-royal:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 24px 56px rgba(0,0,0,.65), 0 0 30px rgba(201,168,76,.12);
        border-color: rgba(201,168,76,.35);
    }

/* ── Top section ── */
.pc-top {
    padding: 18px 18px 14px;
}

.pc-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Category icon circle */
.pc-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pc-icon-emoji {
    font-size: 1.3rem;
    line-height: 1;
    /* Stop emoji from inheriting large font-size from parent */
    display: block;
}

/* Category badge */
.pc-cat-badge {
    font-family: 'Cinzel', serif;
    font-size: .58rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 600;
    white-space: nowrap;
}

/* ── Body ── */
.pc-body {
    padding: 14px 18px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.pc-name {
    font-family: 'Cinzel', serif;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .05em;
    background: linear-gradient(135deg, #fff 0%, var(--gold-light, #f0d080) 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 220% auto;
    animation: shimmerText 6s linear infinite;
    margin-bottom: 2px;
    line-height: 1.35;
}

.pc-desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: .85rem;
    color: #7a8fa8;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Specs badges ── */
.pc-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 2px;
}

.pc-spec-tag {
    font-family: 'Cinzel', serif;
    font-size: .56rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6a8099;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    padding: 3px 9px;
    border-radius: 4px;
    transition: border-color .25s, color .25s;
}

.pc-royal:hover .pc-spec-tag {
    border-color: rgba(201,168,76,.18);
    color: rgba(201,168,76,.75);
}

/* ── Footer ── */
.pc-footer {
    padding: 12px 18px;
    border-top: 1px solid rgba(201,168,76,.08);
    position: relative;
    z-index: 2;
}

.pc-enquire-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: 'Cinzel', serif;
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold, #c9a84c);
    background: rgba(201,168,76,.08);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 6px;
    padding: 10px 16px;
    text-decoration: none;
    transition: background .25s, border-color .25s, color .25s, transform .25s cubic-bezier(.22,.68,0,1.2), box-shadow .25s;
}

    .pc-enquire-btn:hover {
        background: var(--gold, #c9a84c);
        border-color: var(--gold, #c9a84c);
        color: #080e1c;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(201,168,76,.35);
    }

/* ── Skeleton loader ── */
.skeleton-card {
    pointer-events: none;
}

.skeleton-img {
    height: 80px;
    background: linear-gradient(90deg, rgba(201,168,76,.04) 25%, rgba(201,168,76,.10) 50%, rgba(201,168,76,.04) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.4s ease infinite;
    border-bottom: 1px solid rgba(201,168,76,.08);
}

.skeleton-line {
    height: 10px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(201,168,76,.04) 25%, rgba(201,168,76,.10) 50%, rgba(201,168,76,.04) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.4s ease infinite;
    margin-bottom: 8px;
}

    .skeleton-line.w-70 {
        width: 70%;
    }

    .skeleton-line.w-85 {
        width: 85%;
    }

    .skeleton-line.w-100 {
        width: 100%;
    }

/* ── Empty box ── */
.royal-empty-box {
    text-align: center;
    padding: 60px 24px;
    background: rgba(10,22,48,.55);
    border: 1px solid rgba(201,168,76,.14);
    border-radius: 14px;
    margin: 20px 0;
}

.royal-empty-icon {
    display: block;
    font-size: 36px;
    margin-bottom: 14px;
    opacity: .5;
}

.royal-empty-box p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    color: #5e6e86;
    font-style: italic;
    margin: 0;
}

/* ── Keyframes (if not already in royal-styles.css) ── */
@keyframes skeletonShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ── SINGLE DEFINITIVE product-image-area ──
   (replaces the two conflicting versions that were in the old file) */
.product-image-area {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    max-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Dark radial — match for mix-blend-mode multiply */
    background: radial-gradient( ellipse at 50% 55%, rgba(255,255,255,.08) 0%, rgba(13,25,50,.95) 60%, rgba(6,12,24,.98) 100% );
    border-bottom: 1px solid rgba(201,168,76,.10);
    cursor: none !important;
}
    /* Rotating ray burst */
    .product-image-area::before {
        content: "";
        position: absolute;
        inset: 0;
        background: conic-gradient( from 0deg at 50% 50%, transparent 0deg, rgba(201,168,76,.03) 45deg, transparent 90deg, rgba(201,168,76,.03) 135deg, transparent 180deg, rgba(201,168,76,.03) 225deg, transparent 270deg, rgba(201,168,76,.03) 315deg, transparent 360deg );
        animation: rotateRays 32s linear infinite;
        pointer-events: none;
    }

/* ── SINGLE DEFINITIVE .product-img ──
   (replaces conflicting .product-image-area img AND .product-img rules) */
.product-img {
    position: relative;
    z-index: 1;
    max-height: 160px;
    width: auto;
    max-width: 85%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    /* KEY: removes white background on dark surface */
    /* mix-blend-mode: multiply;
    background: transparent;*/
    filter: drop-shadow(0 6px 18px rgba(0,0,0,.55)) contrast(1.05) brightness(1.0);
    /* NO animation:floatProduct here — it caused layout conflict */
    transition: transform .45s var(--ease-royal), filter .4s;
}

.product-card:hover .product-img {
    transform: scale(1.08) translateY(-6px);
    filter: drop-shadow(0 12px 26px rgba(201,168,76,.30)) contrast(1.05) brightness(1.05);
}

/* Hover zoom hint */
.img-zoom-hint {
    position: absolute;
    inset: 0;
    background: rgba(8,14,28,.70);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: .68rem;
    letter-spacing: .12em;
    color: var(--gold);
    opacity: 0;
    transition: opacity .3s;
    z-index: 3;
    backdrop-filter: blur(3px);
}

.product-image-area:hover .img-zoom-hint {
    opacity: 1;
}

/* Count badge */
.img-count-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: 'Cinzel', serif;
    font-size: .58rem;
    letter-spacing: .12em;
    color: var(--gold);
    background: rgba(8,14,28,.88);
    border: 1px solid rgba(201,168,76,.3);
    padding: 3px 10px;
    border-radius: 2px;
    z-index: 2;
}

/* No-image fallback */
.product-no-image {
    flex-direction: column;
    gap: 8px;
}

.product-placeholder-icon {
    font-size: 44px;
    opacity: .14;
}

.product-placeholder-text {
    font-family: 'Cinzel', serif;
    font-size: .58rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(201,168,76,.28);
}

/* Card body extras */
.product-category-tag {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: .58rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,.25);
    padding: 2px 10px;
    border-radius: 2px;
    background: rgba(201,168,76,.06);
    margin-bottom: 10px;
}

.product-desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: .9rem;
    color: #7a8fa8;
    line-height: 1.65;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-enquire-btn {
    width: 100%;
    font-size: .75rem !important;
    letter-spacing: .12em !important;
    padding: 9px 20px !important;
}

/* Skeleton */
.skeleton-card {
    pointer-events: none;
}

.skeleton-img {
    height: 190px;
    background: linear-gradient(90deg, rgba(201,168,76,.04) 25%, rgba(201,168,76,.10) 50%, rgba(201,168,76,.04) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.4s ease infinite;
    border-bottom: 1px solid rgba(201,168,76,.08);
}

.skeleton-line {
    height: 10px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(201,168,76,.04) 25%, rgba(201,168,76,.10) 50%, rgba(201,168,76,.04) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.4s ease infinite;
    margin-bottom: 8px;
}

    .skeleton-line.w-70 {
        width: 70%;
    }

    .skeleton-line.w-85 {
        width: 85%;
    }

    .skeleton-line.w-100 {
        width: 100%;
    }

/* Empty / error */
.royal-empty-box {
    text-align: center;
    padding: 48px 24px;
    background: rgba(10,22,48,.55);
    border: 1px solid rgba(201,168,76,.14);
    border-radius: 14px;
    margin: 20px 0;
}

.royal-empty-icon {
    display: block;
    font-size: 36px;
    margin-bottom: 14px;
    opacity: .5;
}

.royal-empty-box p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    color: #5e6e86;
    font-style: italic;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   11. WHY / FEATURE SECTION
═══════════════════════════════════════════════════════════════ */
.why-section {
    background: linear-gradient(180deg, var(--sapphire) 0%, var(--sapphire-mid) 50%, var(--sapphire) 100%);
    padding: 90px 0;
    position: relative;
}

    .why-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(1px 1px at 15% 25%, rgba(201,168,76,.26), transparent), radial-gradient(1px 1px at 55% 45%, rgba(201,168,76,.16), transparent), radial-gradient(1px 1px at 80% 70%, rgba(201,168,76,.20), transparent), radial-gradient(1px 1px at 35% 80%, rgba(201,168,76,.14), transparent), radial-gradient(1px 1px at 90% 15%, rgba(201,168,76,.16), transparent);
        pointer-events: none;
    }

.feature-card {
    position: relative;
    background: linear-gradient(145deg, rgba(13,31,60,.72), rgba(6,14,30,.88));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(201,168,76,.14);
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    overflow: hidden;
    transition: transform .4s var(--ease-royal), box-shadow .4s var(--ease-silk), border-color .35s var(--ease-silk);
}

    .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        opacity: 0;
        transition: opacity .4s;
    }

    .feature-card:hover::before {
        opacity: 1;
    }

    .feature-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 0%, rgba(201,168,76,.06), transparent 60%);
        opacity: 0;
        transition: opacity .4s;
        pointer-events: none;
    }

    .feature-card:hover::after {
        opacity: 1;
    }

    .feature-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 24px 58px rgba(0,0,0,.58), 0 0 28px rgba(201,168,76,.10);
        border-color: rgba(201,168,76,.38);
    }

    .feature-card h4 {
        font-family: 'Cinzel', serif;
        font-size: .95rem;
        font-weight: 600;
        letter-spacing: .07em;
        color: var(--gold-light);
        margin-bottom: 12px;
    }

    .feature-card p {
        color: #7a8fa8;
        font-size: .93rem;
        line-height: 1.78;
        margin-bottom: 0;
    }

.icon {
    font-size: 38px;
    margin-bottom: 16px;
    display: inline-block;
    animation: iconFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px currentColor);
}

.precision-icon {
    color: var(--gold);
}

.performance-icon {
    color: #00e5c0;
    filter: drop-shadow(0 0 9px rgba(0,229,192,.55));
}

.progress-icon {
    color: #ff9f43;
    filter: drop-shadow(0 0 9px rgba(255,159,67,.55));
}

/* ═══════════════════════════════════════════════════════════════
   12. FOOTER
═══════════════════════════════════════════════════════════════ */
.royal-footer {
    background: linear-gradient(180deg, rgba(6,10,20,.97) 0%, #030610 100%) !important;
    border-top: 1px solid rgba(201,168,76,.18);
    color: #5e6e86;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    padding-top: 56px;
}

.footer-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--gold);
    text-shadow: var(--glow-gold);
    margin: 12px 0 4px;
}

.footer-tagline {
    font-style: italic;
    color: #3e4e62;
    font-size: .9rem;
    letter-spacing: .04em;
    margin-bottom: 0;
}

.footer-col-title {
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.footer-col-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.footer-body-text {
    color: #4e5e72;
    font-size: .92rem;
    line-height: 1.75;
}

.footer-gst {
    font-size: .8rem;
    color: #3e4e60;
    letter-spacing: .06em;
}

.footer-label {
    color: var(--gold-dim);
    font-family: 'Cinzel', serif;
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-right: 6px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: #4e5e72;
        font-size: .9rem;
        line-height: 1.6;
    }

.footer-icon {
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    filter: grayscale(30%);
}

.footer-contact-list a {
    color: #4e6080;
    text-decoration: none;
    transition: color .3s, text-shadow .3s;
}

    .footer-contact-list a:hover {
        color: var(--gold-light);
        text-shadow: var(--glow-gold);
    }

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .footer-links-list a {
        color: #4a5a70;
        text-decoration: none;
        font-size: .9rem;
        letter-spacing: .04em;
        transition: color .3s, padding-left .3s;
        display: inline-block;
        position: relative;
    }

        .footer-links-list a::before {
            content: "›";
            color: var(--gold-dim);
            margin-right: 8px;
            transition: color .3s;
        }

        .footer-links-list a:hover {
            color: var(--gold-light);
            padding-left: 4px;
        }

            .footer-links-list a:hover::before {
                color: var(--gold);
            }

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 4px;
    border: 1px solid rgba(201,168,76,.18);
    background: rgba(201,168,76,.05);
    color: #6a7a90;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: .62rem;
    letter-spacing: .10em;
    text-transform: uppercase;
    transition: all .3s var(--ease-silk);
}

    .social-btn svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    .social-btn:hover {
        transform: translateY(-3px);
        color: #fff;
    }

.social-fb:hover {
    background: rgba(24,119,242,.18);
    border-color: rgba(24,119,242,.45);
    box-shadow: 0 0 14px rgba(24,119,242,.25);
    color: #7ab3ff;
}

.social-ig:hover {
    background: rgba(193,53,132,.18);
    border-color: rgba(193,53,132,.45);
    box-shadow: 0 0 14px rgba(193,53,132,.25);
    color: #f794c8;
}

.social-im:hover {
    background: rgba(0,153,68,.18);
    border-color: rgba(0,153,68,.45);
    box-shadow: 0 0 14px rgba(0,153,68,.25);
    color: #5de0a0;
}

.social-yt:hover {
    background: rgba(255,0,0,.18);
    border-color: rgba(255,0,0,.40);
    box-shadow: 0 0 14px rgba(255,0,0,.22);
    color: #ff7070;
}

.footer-bottom-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,.20), transparent);
}

.footer-copy {
    font-size: .78rem;
    color: #2e3e52;
    letter-spacing: .06em;
}

.footer-gst-inline {
    color: var(--gold-dim);
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    letter-spacing: .08em;
}

footer, .footer {
    background: linear-gradient(180deg, rgba(4,8,18,.96) 0%, #020510 100%) !important;
    border-top: 1px solid rgba(201,168,76,.15);
    color: #5e6e86;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
}

    footer::before, .footer::before {
        content: "";
        position: absolute;
        top: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 180px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        filter: blur(1px);
    }

    footer a, .footer a {
        color: var(--gold-dim);
        text-decoration: none;
        transition: color .3s, text-shadow .3s;
    }

        footer a:hover, .footer a:hover {
            color: var(--gold-light);
            text-shadow: var(--glow-gold);
        }

    footer .text-muted, .footer .text-muted {
        color: #3e4e62 !important;
    }

/* ═══════════════════════════════════════════════════════════════
   13. SCROLL REVEAL
═══════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s var(--ease-silk), transform .7s var(--ease-silk);
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-group > *:nth-child(1) {
    transition-delay: .05s;
}

.reveal-group > *:nth-child(2) {
    transition-delay: .15s;
}

.reveal-group > *:nth-child(3) {
    transition-delay: .25s;
}

.reveal-group > *:nth-child(4) {
    transition-delay: .35s;
}

/* ═══════════════════════════════════════════════════════════════
   14. UTILITY
═══════════════════════════════════════════════════════════════ */
.badge-royal {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: .62rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 4px 13px;
    border: 1px solid rgba(201,168,76,.36);
    border-radius: 2px;
    color: var(--gold);
    background: rgba(201,168,76,.07);
}

.badge.bg-warning {
    background: rgba(201,168,76,.18) !important;
    color: var(--gold-light) !important;
    border: 1px solid rgba(201,168,76,.32);
    font-family: 'Cinzel', serif;
    letter-spacing: .08em;
    font-size: .64rem;
}

.table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--platinum);
    --bs-table-border-color: rgba(201,168,76,.12);
    --bs-table-striped-bg: rgba(201,168,76,.04);
    --bs-table-hover-bg: rgba(201,168,76,.08);
}

.alert {
    background: rgba(10,22,48,.75);
    border-color: rgba(201,168,76,.22);
    color: var(--platinum);
    backdrop-filter: blur(10px);
    border-radius: 6px;
}

.alert-success {
    border-color: rgba(0,229,192,.28);
    background: rgba(0,50,40,.58);
}

.alert-danger {
    border-color: rgba(200,30,30,.32);
    background: rgba(60,8,8,.52);
}

.modal-content {
    background: var(--sapphire-mid);
    border: 1px solid rgba(201,168,76,.22);
    color: var(--platinum);
    border-radius: 12px;
}

.modal-header, .modal-footer {
    border-color: rgba(201,168,76,.13);
}

.modal-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
}

.form-control {
    background: rgba(10,22,48,.68) !important;
    color: var(--platinum) !important;
    border: 1px solid rgba(201,168,76,.20) !important;
    border-radius: 5px !important;
}

    .form-control:focus {
        background: rgba(13,31,60,.80) !important;
        border-color: var(--gold) !important;
        box-shadow: var(--glow-gold) !important;
        color: var(--platinum) !important;
    }

    .form-control::placeholder {
        color: #4c5c74;
        font-style: italic;
    }

.form-select {
    background-color: rgba(10,22,48,.72) !important;
    color: var(--platinum) !important;
    border: 1px solid rgba(201,168,76,.20) !important;
}

    .form-select:focus {
        border-color: var(--gold) !important;
        box-shadow: var(--glow-gold) !important;
    }

/* ═══════════════════════════════════════════════════════════════
   15. IMAGE GALLERY MODAL
═══════════════════════════════════════════════════════════════ */
#imgModalOverlay {
    position: fixed;
    inset: 0;
    background: rgba(2,5,14,.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s;
}

    #imgModalOverlay.imc-show {
        opacity: 1;
        visibility: visible;
    }

#imgModal {
    position: relative;
    background: linear-gradient(160deg, #0d1f3c, #080e1c 60%, #0a1628);
    border: 1px solid rgba(201,168,76,.28);
    border-radius: 18px;
    max-width: 560px;
    width: 100%;
    padding: 44px 36px 32px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.85), inset 0 1px 0 rgba(201,168,76,.12);
    transform: translateY(24px) scale(.97);
    transition: transform .4s cubic-bezier(.22,.68,0,1.2);
    overflow: hidden;
}

#imgModalOverlay.imc-show #imgModal {
    transform: translateY(0) scale(1);
}

#imgModal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,transparent,#c9a84c,#f0d080,#c9a84c,transparent);
    background-size: 200% auto;
    animation: barShimmer 3s linear infinite;
}

.imc-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: rgba(201,168,76,.38);
    border-style: solid;
}

.imc-tl {
    top: 12px;
    left: 12px;
    border-width: 1px 0 0 1px;
}

.imc-tr {
    top: 12px;
    right: 12px;
    border-width: 1px 1px 0 0;
}

.imc-bl {
    bottom: 12px;
    left: 12px;
    border-width: 0 0 1px 1px;
}

.imc-br {
    bottom: 12px;
    right: 12px;
    border-width: 0 1px 1px 0;
}

.imc-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: 1px solid rgba(201,168,76,.28);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 13px;
    color: var(--gold);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none !important;
    transition: background .3s, border-color .3s;
}

    .imc-close:hover {
        background: rgba(201,168,76,.12);
        border-color: var(--gold);
    }

.imc-name {
    font-family: 'Cinzel', serif;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
/* Modal image wrap — DARK background required for mix-blend-mode to work */
.imc-img-wrap {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(201,168,76,.12);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
/* Modal main image — also remove white bg */
.imc-img {
    max-height: 260px;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    background: transparent;
    /*filter: drop-shadow(0 8px 20px rgba(0,0,0,.5));
    transition: opacity .15s;*/
    display: block;
    margin: 0 auto;
}

.imc-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 14px;
}

.imc-nav {
    background: rgba(10,22,48,.75);
    border: 1px solid rgba(201,168,76,.28);
    border-radius: 4px;
    color: var(--gold);
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none !important;
    transition: background .3s, border-color .3s, opacity .3s;
}

    .imc-nav:hover:not(:disabled) {
        background: rgba(201,168,76,.12);
        border-color: var(--gold);
    }

    .imc-nav:disabled {
        opacity: .3;
    }

.imc-counter {
    font-family: 'Cinzel', serif;
    font-size: .7rem;
    letter-spacing: .1em;
    color: #5e6e86;
    min-width: 50px;
    text-align: center;
}

.imc-thumbs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4px;
}

.imc-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(201,168,76,.15);
    cursor: none !important;
    transition: border-color .3s, transform .25s, opacity .3s;
    opacity: .55;
}

    .imc-thumb:hover {
        opacity: .85;
        transform: scale(1.05);
    }

    .imc-thumb.active {
        border-color: var(--gold);
        opacity: 1;
        box-shadow: 0 0 10px rgba(201,168,76,.4);
    }

/* ═══════════════════════════════════════════════════════════════
   16. KEYFRAMES  (each defined ONCE)
═══════════════════════════════════════════════════════════════ */
@keyframes crestBreath {
    from {
        transform: translate(-50%,-50%) scale(1) rotate(0deg);
    }

    to {
        transform: translate(-50%,-50%) scale(1.06) rotate(3deg);
    }
}

@keyframes shimmerText {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 220% center;
    }
}

@keyframes barShimmer {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}

@keyframes blobDrift1 {
    from {
        transform: translate( 0px, 0px) scale(1);
    }

    to {
        transform: translate( 80px, 70px) scale(1.18);
    }
}

@keyframes blobDrift2 {
    from {
        transform: translate( 0px, 0px) scale(1.05);
    }

    to {
        transform: translate(-70px, -60px) scale(1);
    }
}

@keyframes blobDrift3 {
    from {
        transform: translate( 0px, 0px) scale(1);
    }

    to {
        transform: translate(50px,-55px) scale(1.1);
    }
}

@keyframes rotateRays {
    to {
        transform: rotate(360deg);
    }
}

@keyframes iconFloat {
    0%,100% {
        transform: translateY( 0px) rotate(0deg);
    }

    50% {
        transform: translateY(-7px) rotate(2deg);
    }
}

@keyframes skeletonShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes rippleOut {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes floatA {
    from {
        transform: translate( 0px, 0px) scale(1);
    }

    to {
        transform: translate( 60px, 80px) scale(1.15);
    }
}

@keyframes floatB {
    from {
        transform: translate( 0px, 0px) scale(1.05);
    }

    to {
        transform: translate(-70px, -60px) scale(1);
    }
}

@keyframes floatC {
    from {
        transform: translate( 0px, 0px);
    }

    to {
        transform: translate(40px,-50px) scale(1.1);
    }
}

/* ═══════════════════════════════════════════════════════════════
   17. RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    .navbar-custom .navbar-collapse {
        background: rgba(4,10,22,.97);
        border: 1px solid rgba(201,168,76,.16);
        border-radius: 8px;
        padding: 12px 16px;
        margin-top: 8px;
    }

    .navbar-custom .nav-link::after {
        display: none;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col-title, .footer-body-text,
    .footer-contact-list, .footer-links-list {
        text-align: center;
    }

    .footer-col-line {
        margin: 0 auto;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-links-list a::before {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .search-box {
        width: 90%;
    }

    .search-input {
        font-size: 14px;
        padding: 13px 16px 13px 44px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 26px 20px;
    }

    #categoryFilter {
        padding: 10px 12px;
    }

    .product-card:hover {
        transform: translateY(-8px) scale(1.015);
    }

    .hero-section {
        min-height: 400px;
    }

    .hero-content {
        padding: 60px 16px;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    #imgModal {
        padding: 38px 20px 26px;
    }

    .imc-img-wrap {
        min-height: 200px;
    }

    .imc-img {
        max-height: 200px;
    }

    .imc-thumb {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 340px;
        border-radius: 10px !important;
    }

    .hero-content {
        padding: 48px 12px;
    }

    section.bg-dark {
        border-radius: 10px !important;
        padding: 2rem 1.2rem !important;
    }

    .why-section {
        padding: 56px 0;
    }

    .royal-divider {
        margin-bottom: 20px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   18. PRODUCT CARD — ICON EDITION (overrides section 10)
   All image-related rules replaced with icon-stage design.
   Card body forced dark to match theme.
═══════════════════════════════════════════════════════════════ */

/* ── Card must be position:relative for ::before/::after ── */
.pc-royal {
    position: relative !important;
    background: linear-gradient(160deg, rgba(10,22,48,.92) 0%, rgba(4,10,22,.98) 100%) !important;
    border: 1px solid rgba(201,168,76,.22) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    --bs-card-bg: transparent !important;
}

    /* ── Kill Bootstrap white card bg on any inner .card ── */
    .pc-royal .card,
    .pc-royal.card,
    .pc-royal .card-body {
        background: transparent !important;
        border: none !important;
        color: var(--platinum) !important;
    }

/* ── ICON STAGE — replaces the broken image area ── */
.pc-icon-stage {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(201,168,76,.12);
    /* Deep radial spotlight */
    background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(201,168,76,.10) 0%, rgba(10,20,50,.85) 55%, rgba(4,10,22,.98) 100%);
}

    /* Rotating conic ray burst behind icon */
    .pc-icon-stage::before {
        content: "";
        position: absolute;
        inset: 0;
        background: conic-gradient( from 0deg at 50% 50%, transparent 0deg, rgba(201,168,76,.04) 30deg, transparent 60deg, rgba(201,168,76,.04) 90deg, transparent 120deg, rgba(201,168,76,.04) 150deg, transparent 180deg, rgba(201,168,76,.04) 210deg, transparent 240deg, rgba(201,168,76,.04) 270deg, transparent 300deg, rgba(201,168,76,.04) 330deg, transparent 360deg );
        animation: rotateRays 28s linear infinite;
        pointer-events: none;
    }

    /* Gold ring halo behind icon */
    .pc-icon-stage::after {
        content: "";
        position: absolute;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        border: 1px solid rgba(201,168,76,.18);
        box-shadow: 0 0 0 16px rgba(201,168,76,.04), 0 0 0 32px rgba(201,168,76,.02), 0 0 40px rgba(201,168,76,.15);
        pointer-events: none;
        animation: haloBreath 4s ease-in-out infinite alternate;
    }

@keyframes haloBreath {
    from {
        transform: scale(1);
        opacity: .7;
    }

    to {
        transform: scale(1.12);
        opacity: 1;
    }
}

/* The icon itself */
.pc-stage-icon {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    line-height: 1;
    display: block;
    filter: drop-shadow(0 0 18px rgba(201,168,76,.55)) drop-shadow(0 0 40px rgba(201,168,76,.20));
    animation: iconFloat 5s ease-in-out infinite;
    transition: transform .4s cubic-bezier(.22,.68,0,1.2), filter .35s;
}

.pc-royal:hover .pc-stage-icon {
    transform: scale(1.18) translateY(-5px);
    filter: drop-shadow(0 0 28px rgba(201,168,76,.80)) drop-shadow(0 0 60px rgba(201,168,76,.30));
}

/* Category-coloured stage tint on hover */
.pc-royal:hover .pc-icon-stage {
    background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(201,168,76,.16) 0%, rgba(10,20,50,.85) 55%, rgba(4,10,22,.98) 100%);
}

/* ── Card header strip (icon-wrap + badge row) ── */
.pc-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 8px;
    border-bottom: 1px solid rgba(201,168,76,.07);
}

.pc-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.pc-badge {
    font-family: 'Cinzel', serif;
    font-size: .54rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 100px;
    font-weight: 600;
    white-space: nowrap;
}

/* ── Body ── */
.pc-body {
    padding: 12px 16px 14px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    position: relative;
    z-index: 2;
    background: transparent !important;
}

/* ── Product name — shimmer gold text ── */
.pc-name {
    font-family: 'Cinzel', serif !important;
    font-size: .88rem !important;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 45%, #ffffff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    background-size: 220% auto !important;
    animation: shimmerText 6s linear infinite !important;
    line-height: 1.3 !important;
    margin: 0 !important;
}

/* ── Description ── */
.pc-desc {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: .84rem !important;
    color: #7a8fa8 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    -webkit-text-fill-color: #7a8fa8 !important;
}

/* ── Spec pills ── */
.pc-specs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
    margin-top: 2px !important;
}

.pc-spec {
    font-family: 'Cinzel', serif;
    font-size: .52rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #7a9ab8;
    background: rgba(79,156,255,.05);
    border: 1px solid rgba(79,156,255,.16);
    padding: 3px 9px;
    border-radius: 4px;
    white-space: nowrap;
    transition: border-color .25s, color .25s;
}

.pc-royal:hover .pc-spec {
    border-color: rgba(201,168,76,.22);
    color: rgba(201,168,76,.85);
}

/* ── Footer ── */
.pc-ftr {
    padding: 11px 16px;
    border-top: 1px solid rgba(201,168,76,.09);
    position: relative;
    z-index: 2;
    background: transparent !important;
}

/* ── Enquire button — fully self-contained, no Bootstrap bleed ── */
.pc-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    font-family: 'Cinzel', serif !important;
    font-size: .68rem !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    color: var(--gold) !important;
    -webkit-text-fill-color: var(--gold) !important;
    background: rgba(201,168,76,.08) !important;
    border: 1px solid rgba(201,168,76,.30) !important;
    border-radius: 6px !important;
    padding: 10px 16px !important;
    text-decoration: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    transition: background .25s, border-color .25s, color .25s, transform .25s cubic-bezier(.22,.68,0,1.2), box-shadow .25s !important;
}

    .pc-btn:hover {
        background: var(--gold) !important;
        border-color: var(--gold) !important;
        color: #080e1c !important;
        -webkit-text-fill-color: #080e1c !important;
        transform: translateY(-2px) scale(1.01) !important;
        box-shadow: 0 6px 20px rgba(201,168,76,.40) !important;
    }

    /* Block global .btn shimmer/sweep from bleeding onto pc-btn */
    .pc-btn::before,
    .pc-btn::after {
        display: none !important;
    }

/* ── Hover lift ── */
.pc-royal:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 28px 60px rgba(0,0,0,.70), 0 0 32px rgba(201,168,76,.14) !important;
    border-color: rgba(201,168,76,.42) !important;
}

/* ── Shimmer sweep on hover ── */
.pc-royal::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(115deg, transparent 20%, rgba(201,168,76,.06) 45%, rgba(201,168,76,.11) 50%, rgba(201,168,76,.06) 55%, transparent 80%) !important;
    background-size: 300% 100% !important;
    background-position: 160% 0 !important;
    opacity: 0 !important;
    transition: background-position .6s ease, opacity .3s !important;
    pointer-events: none !important;
    z-index: 1 !important;
    border-radius: 16px !important;
}

.pc-royal:hover::before {
    background-position: -60% 0 !important;
    opacity: 1 !important;
}

/* Crest mark */
.pc-royal::after {
    content: "\25C8" !important;
    position: absolute !important;
    bottom: 10px !important;
    right: 12px !important;
    font-size: 10px !important;
    color: rgba(201,168,76,.18) !important;
    pointer-events: none !important;
    transition: color .3s !important;
    z-index: 2 !important;
}

.pc-royal:hover::after {
    color: rgba(201,168,76,.55) !important;
}

/* ── h5 inside card must not pick up global h1 gradient ── */
h5.pc-name {
    color: unset !important;
}

/* ── Kill Bootstrap default link blue globally (non-nav anchors) ── */
a:not(.nav-link):not(.navbar-brand):not(.dropdown-item):not(footer a):not(.footer a):not(.btn) {
    color: inherit;
    text-decoration: none;
}
