/*
Theme Name: Royal Comfort Theme
Theme URI: https://royalcomfortfurniture.uk/
Author: Royal Comfort Furniture Team
Author URI: https://royalcomfortfurniture.uk/
Description: Ultra-premium bespoke furniture boutique theme.
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Royal Comfort Furniture
*/

/* === PREMIUM PRELOADER === */
#royal-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0D0D0D;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s;
}

#royal-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.preloader-active {
    overflow: hidden !important;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-logo-wrap {
    position: relative;
    width: 80px;
    height: 100px;
    animation: preloaderBounce 2s ease-in-out infinite;
}

.preloader-logo-wrap svg {
    width: 100%;
    height: 100%;
}

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

.preloader-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    animation: preloaderTextIn 0.8s ease forwards 0.3s;
}

.preloader-subtitle {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: #B89355;
    opacity: 0;
    transform: translateY(10px);
    animation: preloaderTextIn 0.8s ease forwards 0.5s;
}

.preloader-bar-wrap {
    width: 180px;
    height: 2px;
    background: rgba(184, 147, 85, 0.1);
    border-radius: 1px;
    overflow: hidden;
    margin-top: 1rem;
}

.preloader-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #B89355, #F3E5AB, #B89355);
    background-size: 200% auto;
    animation: preloaderProgress 2s cubic-bezier(0.65, 0, 0.35, 1) forwards,
               gradientShift 3s ease infinite;
}

@keyframes preloaderBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

@keyframes preloaderProgress {
    0% { width: 0; }
    30% { width: 40%; }
    60% { width: 65%; }
    100% { width: 100%; }
}

/* === KEYFRAMES === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes shimmerText {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50%       { transform: translateY(-16px) rotate(1deg); }
}
@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184,147,85,0.5); }
    50%       { box-shadow: 0 0 0 20px rgba(184,147,85,0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes particleFloat {
    0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0.6; }
    25%  { transform: translateY(-30px) translateX(10px) scale(1.1); opacity: 0.9; }
    50%  { transform: translateY(-15px) translateX(-10px) scale(0.9); opacity: 0.7; }
    75%  { transform: translateY(-45px) translateX(5px) scale(1.05); opacity: 0.5; }
    100% { transform: translateY(-80px) translateX(0) scale(0.8); opacity: 0; }
}
@keyframes lineGrow {
    from { width: 0; }
    to   { width: 60px; }
}
@keyframes counterUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealMask {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0% 0 0); }
}

/* === LOGO ANIMATIONS === */
.logo-crown {
    animation: logoFloat 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.royal-svg-logo {
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.group:hover .royal-svg-logo {
    transform: translateY(-2px);
    filter: drop-shadow(0 10px 15px rgba(184,147,85,0.3));
}

/* === PREMIUM NAVBAR COMPONENTS === */
.nav-link {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #6B7280;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.4s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: #B89355;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #1A1A1A;
}

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

.cart-trigger:hover .cart-icon-wrap {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.cart-badge-jewel {
    background: linear-gradient(135deg, #B89355, #8B6914);
    color: white;
    font-size: 9px;
    font-weight: 900;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #F9F8F6;
    box-shadow: 0 4px 10px rgba(184,147,85,0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-trigger:hover .cart-badge-jewel {
    transform: scale(1.2) rotate(10deg);
}

.search-input::placeholder {
    color: #9CA3AF;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.search-input:focus::placeholder {
    opacity: 0;
}

/* === PREMIUM FOOTER COMPONENTS === */
.footer-title {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #F9F8F6;
    margin-bottom: 2rem;
    display: block;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    font-size: 13px;
    color: #9CA3AF;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: #B89355;
    padding-left: 5px;
}

.social-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    color: #9CA3AF;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-btn:hover {
    background: #B89355;
    border-color: #B89355;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(184,147,85,0.3);
}

.footer-newsletter {
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(184, 147, 85, 0.3);
    padding-bottom: 0.85rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    margin-top: 1.5rem;
    position: relative;
}

.footer-newsletter:focus-within {
    border-color: #B89355;
    transform: translateY(-2px);
}

.footer-newsletter input {
    background: transparent;
    border: none;
    color: white;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    flex: 1;
    outline: none;
    padding: 8px 0;
    min-width: 0; /* Prevents flex items from overflowing */
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.2em;
}

.footer-newsletter button {
    color: #B89355;
    background: transparent;
    border: none;
    padding: 0 0 0 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-newsletter button svg,
.footer-newsletter button i {
    width: 18px !important;
    height: 18px !important;
    stroke-width: 2.5px;
}

.footer-newsletter button:hover {
    transform: translateX(5px);
    color: #F3E5AB;
}

.footer-newsletter.success {
    border-color: #10B981;
}

.footer-newsletter.success input {
    color: #10B981;
    font-weight: 800;
}

.footer-newsletter.success button {
    color: #10B981;
}

.footer-subtitle {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: #4B5563;
    margin-bottom: 1rem;
}

.footer-legal {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4B5563;
    transition: color 0.3s ease;
}

.footer-legal:hover {
    color: #B89355;
}

.footer-status {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-pulse {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px rgba(16,185,129,0.5);
}

.status-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: statusRing 2s infinite;
}

@keyframes statusRing {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* === REVEAL SYSTEM === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.delay-100 { transition-delay: 100ms !important; }
.delay-200 { transition-delay: 200ms !important; }
.delay-300 { transition-delay: 300ms !important; }
.delay-400 { transition-delay: 400ms !important; }
.delay-500 { transition-delay: 500ms !important; }
.delay-600 { transition-delay: 600ms !important; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F9F8F6; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #B89355, #8B6914); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #A68249; }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* === PRODUCT CARDS === */
.product-card {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease;
}
.product-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(184, 147, 85, 0.12);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, .font-serif { letter-spacing: -0.02em; }
.tracking-widest { letter-spacing: 0.2em; }

/* === SHIMMER TEXT === */
.shimmer-text {
    background: linear-gradient(90deg,
        #B89355 0%,
        #F0D090 30%,
        #B89355 50%,
        #F0D090 70%,
        #B89355 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s linear infinite;
}

/* === PREMIUM ANNOUNCEMENT LINK === */
.premium-announce-link {
    text-decoration: none;
    position: relative;
}

.premium-announce-link .shimmer-text {
    text-shadow: 0 0 10px rgba(184, 147, 85, 0.2);
    transition: all 0.5s ease;
}

.premium-announce-link:hover .shimmer-text {
    text-shadow: 0 0 20px rgba(184, 147, 85, 0.5);
    animation-duration: 2s;
}

.premium-announce-link i {
    filter: drop-shadow(0 0 5px rgba(184, 147, 85, 0.3));
}

/* === GOLD GRADIENT LINE === */
.gold-line {
    display: inline-block;
    height: 2px;
    background: linear-gradient(90deg, #B89355, #F0D090, #B89355);
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
}

/* === MARQUEE TICKER === */
.ticker-wrap {
    overflow: hidden;
    background: #1A1A1A;
    border-top: 1px solid rgba(184,147,85,0.2);
    border-bottom: 1px solid rgba(184,147,85,0.2);
}
.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2.5rem;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.ticker-item .ticker-dot {
    width: 4px;
    height: 4px;
    background: #B89355;
    border-radius: 50%;
    flex-shrink: 0;
}
.ticker-item span.gold { color: #B89355; }

/* === OUR BRANDS SECTION === */
.brands-ticker-wrap {
    overflow: hidden;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.brands-ticker-track {
    display: flex;
    white-space: nowrap;
    animation: brandsMarquee 60s linear infinite;
    width: max-content;
    align-items: center;
}
.brand-logo-item {
    padding: 0 1.5rem;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-logo-item img {
    height: 80px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.brand-logo-item:hover img {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

@keyframes brandsMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .brand-logo-item { padding: 0 0.75rem; }
    .brand-logo-item img { height: 60px; }
    .brands-ticker-wrap { padding: 1.5rem 0; }
}

/* === SUBCATEGORY CARDS === */
.shadow-text {
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.light-gold-shadow {
    box-shadow: 0 10px 30px rgba(184, 147, 85, 0.1);
}

.premium-glow {
    box-shadow: 0 0 20px rgba(184, 147, 85, 0.15);
}

.text-glow {
    text-shadow: 0 0 10px rgba(184, 147, 85, 0.4);
}

.coll-toolbar-wrap {
    background: #ffffff;
}

.cat-grid-item, .product-card, .group {
    -webkit-tap-highlight-color: transparent;
}

/* === HERO SECTION (STATIC from HTML) === */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-section img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero-section:hover img { transform: scale(1); }
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}
.hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 1rem;
}

/* === PREMIUM HERO (SPA HomeView) === */
.premium-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 10s ease;
    opacity: 1 !important;
    display: block !important;
    background: #111; /* Fallback */
}
.hero-slide.active img {
    transform: scale(1);
}

.hero-dots {
    position: absolute;
    bottom: 140px;
    left: 3rem;
    z-index: 10;
    display: flex;
    gap: 12px;
}
.hero-dot {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 2px;
}
.hero-dot.active {
    background: #B89355;
    width: 80px;
    box-shadow: 0 0 15px rgba(184,147,85,0.5);
}

.premium-hero__overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 40%, transparent 100%),
        radial-gradient(circle at 20% 50%, rgba(184, 147, 85, 0.12) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}
.premium-hero__content {
    position: relative;
    z-index: 3;
    padding: 3rem 0;
    max-width: 850px;
    background: transparent;
    margin-left: 3rem;
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (max-width: 768px) {
    .premium-hero__content {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 2.5rem 2rem;
        background: rgba(0,0,0,0.35);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 4px;
    }
}

.premium-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #B89355;
    margin-bottom: 1.5rem;
    animation: fadeInLeft 1s ease 0.2s both;
    text-shadow: 0 0 15px rgba(184,147,85,0.4);
}
.premium-hero__eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #B89355;
}
.premium-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    transition: opacity 0.6s ease, transform 0.6s ease;
    animation: fadeInLeft 1s ease 0.4s both;
    text-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.3);
}
.premium-hero__title em {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
    filter: drop-shadow(0 0 10px rgba(184,147,85,0.3));
}
.premium-hero__subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 500px;
    animation: fadeInUp 1s ease 0.6s both;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.premium-hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInLeft 1s ease 0.8s both;
}
.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #B89355, #8B6914);
    color: white;
    padding: 1rem 2rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.btn-primary-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F0D090, #B89355);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.btn-primary-gold:hover::before { opacity: 1; }
.btn-primary-gold span { position: relative; z-index: 1; }
.btn-primary-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(184,147,85,0.4); }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
    border-color: #B89355;
    color: #B89355;
    transform: translateY(-3px);
    background: rgba(184,147,85,0.08);
}

/* === REVIEWS SLIDER === */
.reviews-slider-viewport {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin: 0 -15px; /* Offset slide padding */
}
.reviews-slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.review-slide {
    flex: 0 0 100%;
    padding: 0 15px;
    height: auto;
}
@media (min-width: 768px) {
    .review-slide {
        flex: 0 0 50%;
    }
}
@media (min-width: 1024px) {
    .review-slide {
        flex: 0 0 33.333%;
    }
}

.testimonial-card {
    background: white;
    border: 1px solid rgba(184,147,85,0.1);
    padding: 2.5rem;
    position: relative;
    transition: all 0.5s ease;
    border-radius: 4px;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: #B89355;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 5rem;
    font-family: serif;
    color: rgba(184,147,85,0.05);
    line-height: 1;
}

.review-dot {
    cursor: pointer;
    outline: none;
}
.review-dot:hover {
    background: #B89355;
    opacity: 0.5;
}

/* === REDESIGNED PREMIUM TRUST STRIP === */
.trust-strip {
    background: #ffffff;
    border-top: 1px solid rgba(184,147,85,0.08);
    border-bottom: 1px solid rgba(184,147,85,0.08);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.trust-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(184,147,85,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.trust-strip__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 768px) {
    .trust-strip__grid {
        display: grid;
        grid-template-cols: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184,147,85,0.05);
    border-radius: 50%;
    color: #B89355;
    transition: all 0.4s ease;
    border: 1px solid rgba(184,147,85,0.1);
}

.trust-item:hover .trust-item__icon {
    background: #B89355;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(184,147,85,0.25);
    border-color: #B89355;
}

.trust-item__text {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #1A1A1A;
    text-align: center;
}

/* === BENTO GOOGLE RATING SECTION === */
.google-rating-section {
    padding: 8rem 0;
    background: #F9F8F6;
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .bento-grid {
        display: flex;
        flex-direction: column;
    }
}

.bento-item {
    background: #ffffff;
    border: 1px solid rgba(184,147,85,0.05);
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.02);
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(184,147,85,0.08);
    border-color: rgba(184,147,85,0.15);
}

.bento-item--main {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bento-item--stat {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bento-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(184,147,85,0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B89355;
    margin-bottom: 2rem;
}

.bento-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.bento-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1A1A1A;
    letter-spacing: -0.02em;
    line-height: 1;
}

.bento-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #B89355;
    margin-top: 1rem;
}

.google-stars {
    display: flex;
    gap: 4px;
    color: #FBBC05;
    margin: 1.5rem 0;
}

.verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    color: #15803d;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    border: 1px solid #dcfce7;
}

/* Enhanced Testimonial Card */
.testimonial-card--google {
    border: none;
    border-top: 5px solid #B89355;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.testimonial-card__google-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 20px;
    height: 20px;
    opacity: 0.9;
}




/* === HERO STATS BAR === */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
    animation: fadeInUp 1s ease 1s both;
}
.hero-stat {
    flex: 1;
    padding: 1.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s ease;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(184,147,85,0.08); }
.hero-stat__number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #B89355;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat__label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInRight 1s ease 1.2s both;
    writing-mode: vertical-rl;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
}
.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, #B89355, transparent);
    flex-shrink: 0;
}

/* === CATEGORIES GRID SECTION === */
.categories-section {
    padding: 6rem 0;
    background: #F9F8F6;
    position: relative;
}
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 0 3rem;
}
.section-eyebrow {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #B89355;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-eyebrow::before {
    content: '';
    width: 20px;
    height: 1px;
    background: #B89355;
}

/* === CATEGORY GRID LAYOUT === */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1px;
    background: #f0f0f0;
    border: 1px solid #f0f0f0;
}
.cat-grid-item {
    position: relative;
    overflow: hidden;
    background: #000;
}
.cat-grid-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.cat-grid-item:nth-child(2) { grid-column: 3 / 5; grid-row: 1 / 2; }
.cat-grid-item:nth-child(3) { grid-column: 5 / 7; grid-row: 1 / 2; }
.cat-grid-item:nth-child(4) { grid-column: 3 / 4; grid-row: 2 / 3; }
.cat-grid-item:nth-child(5) { grid-column: 4 / 6; grid-row: 2 / 3; }
.cat-grid-item:nth-child(6) { grid-column: 6 / 7; grid-row: 2 / 3; }

.cat-grid-image-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.cat-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0, 0.2, 1), filter 0.8s ease;
    filter: saturate(0.8) brightness(0.9);
}
.cat-grid-item:hover .cat-grid-img {
    transform: scale(1.1);
    filter: saturate(1) brightness(1);
}
.cat-grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(0,0,0,0.92) 0%, 
        rgba(0,0,0,0.4) 35%, 
        rgba(0,0,0,0.1) 60%,
        transparent 100%
    );
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat-grid-item:hover .cat-grid-overlay {
    background: linear-gradient(to top, 
        rgba(184,147,85,0.4) 0%, 
        rgba(0,0,0,0.4) 60%, 
        transparent 100%
    );
}
.cat-grid-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 2;
    color: white;
}
.cat-grid-tag {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #B89355;
}
.cat-grid-count {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.cat-grid-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: block;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
    transition: transform 0.5s ease;
}
.cat-grid-item:hover .cat-grid-name {
    transform: translateY(-8px);
    color: #B89355;
}
.cat-grid-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: white;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat-grid-link::after {
    content: '';
    width: 0;
    height: 1px;
    background: #B89355;
    transition: width 0.4s ease;
}
.cat-grid-item:hover .cat-grid-link {
    opacity: 1;
    transform: translateY(0);
}
.cat-grid-item:hover .cat-grid-link::after {
    width: 25px;
}
.cat-grid-corner-badge {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all 0.4s ease;
}
.cat-grid-item:hover .cat-grid-corner-badge {
    border-color: #B89355;
    background: #B89355;
    transform: rotate(360deg);
}
.cat-grid-item:hover .cat-grid-corner-badge i {
    color: white !important;
}

/* For large first item */
.cat-grid-item:nth-child(1) .cat-grid-name { font-size: 2.2rem; }

/* === WHY US / VALUE PROPS === */
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(0,0,0,0.06);
}
.value-card {
    padding: 3rem 2rem;
    border-right: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
}
.value-card:last-child { border-right: none; }
.value-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B89355, #F0D090);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { background: #FDFCFA; }
.value-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(184,147,85,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.4s ease, transform 0.4s ease;
}
.value-card:hover .value-card__icon {
    background: rgba(184,147,85,0.15);
    transform: scale(1.1);
}

/* === FEATURED PRODUCTS STRIP === */
.featured-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #E8E5E0;
}

/* === TESTIMONIAL SECTION === */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.5s ease;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: rgba(184,147,85,0.2);
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(184,147,85,0.1);
    line-height: 1;
}
.star-rating { color: #B89355; font-size: 14px; letter-spacing: 2px; }

/* === BANNER CTA SECTION === */
.cta-banner {
    position: relative;
    overflow: hidden;
    background: #0D0D0D;
    padding: 6rem 3rem;
    text-align: center;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(184,147,85,0.15) 0%, transparent 65%);
}

/* === FLOATING BADGE === */
.floating-badge {
    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 10;
    background: #B89355;
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 10px 30px rgba(184,147,85,0.4);
}
.floating-badge strong { font-size: 16px; display: block; }

.uk-badge {
    position: absolute;
    top: 3rem;
    left: 3rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    padding: 10px 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.uk-badge::before {
    content: '🇬🇧';
    font-size: 14px;
}
.uk-badge:hover { 
    background: rgba(184,147,85,0.25); 
    border-color: #B89355; 
    transform: translateY(-2px);
}

/* === LEGACY HERO SECTION OVERRIDES === */
.hero-section .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.1;
}
.hero-section .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}
.hero-section .hero-content a {
    display: inline-block;
    background: linear-gradient(135deg, #B89355, #8B6914);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
    border-radius: 0;
}
.hero-section .hero-content a:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(184,147,85,0.35);
}

/* === BUTTON === */
button, .btn { transition: all 0.3s ease; }

/* === INSTAGRAM FEED ROW === */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}
.insta-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: saturate(0.8);
}
.insta-item:hover img { transform: scale(1.1); filter: saturate(1.2); }
.insta-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}
.insta-item:hover .insta-item__overlay { background: rgba(184,147,85,0.4); }

/* === PRODUCT CARD REFINEMENTS === */
.product-card {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease;
}
.product-card:hover { transform: translateY(-10px); }

/* === GOLD DIVIDER === */
.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #B89355, #F0D090, #B89355);
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .cat-grid-item:nth-child(1),
    .cat-grid-item:nth-child(2),
    .cat-grid-item:nth-child(3),
    .cat-grid-item:nth-child(4),
    .cat-grid-item:nth-child(5),
    .cat-grid-item:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
        height: 240px;
    }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { display: none; }
    .scroll-indicator { display: none; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .cat-grid { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 0 1.5rem; }
    .premium-hero__content { padding: 0 1.5rem; }
    .value-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PREMIUM COLLECTIONS PAGE — REDESIGN 2026
   ============================================================ */

/* ── COLLECTIONS HERO ─────────────────────────────────────── */
.coll-hero {
    position: relative;
    height: 70vh;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.coll-hero__bg-layer {
    position: absolute;
    inset: 0;
    background: #0D0D0D;
    z-index: 0;
}
.coll-hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.85; /* Increased from 0.45 */
    transform: scale(1.05);
    transition: transform 10s ease;
    filter: saturate(1.1) brightness(1.1); /* Increased from saturate(0.6) */
}
.coll-hero:hover .coll-hero__bg-img { transform: scale(1); }
.coll-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at 50% 50%, rgba(184, 147, 85, 0.15) 0%, transparent 70%);
}
.coll-hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 4rem 3.5rem;
    animation: fadeInUp 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
.coll-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.2rem;
}
.coll-hero__breadcrumb a { color: inherit; text-decoration: none; transition: color 0.2s; }
.coll-hero__breadcrumb a:hover { color: #B89355; }
.coll-hero__breadcrumb-sep { color: #B89355; font-size: 10px; }
.coll-hero__breadcrumb-active { color: #B89355; }
.coll-hero__eyebrow {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: #B89355;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0,0,0,0.5);
}
.coll-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.05;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-shadow: 0 8px 30px rgba(0,0,0,0.8), 0 0 60px rgba(0,0,0,0.4);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.coll-hero__subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFFFFF;
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.5);
    opacity: 1;
}
.coll-hero__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.coll-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.coll-hero__stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #B89355;
    line-height: 1;
}
.coll-hero__stat-lbl {
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.coll-hero__stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
}

/* ── CATEGORY PILL TABS ────────────────────────────────────── */
.coll-tabs-bar {
    position: sticky;
    top: 80px;
    z-index: 40;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0 3rem;
}
.coll-tabs-inner {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}
.coll-tabs-inner::-webkit-scrollbar { display: none; }
.coll-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6B7280;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
    background: transparent;
}
.coll-tab:hover {
    color: #1A1A1A;
    background: rgba(184,147,85,0.06);
    border-color: rgba(184,147,85,0.2);
}
.coll-tab--active {
    background: linear-gradient(135deg, #B89355, #8B6914);
    color: white !important;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(184,147,85,0.3);
}

/* ── TOOLBAR ──────────────────────────────────────────────── */
.coll-toolbar {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: #FDFCFA;
}
.coll-toolbar__count {
    font-size: 12px;
    color: #6B7280;
    font-weight: 400;
}
.coll-toolbar__count strong {
    color: #1A1A1A;
    font-weight: 700;
}
.coll-toolbar__count em {
    color: #B89355;
    font-style: normal;
    font-weight: 600;
}
.coll-toolbar__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.coll-view-btns {
    display: flex;
    gap: 4px;
    background: #F3F0EC;
    border-radius: 8px;
    padding: 4px;
}
.coll-view-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
}
.coll-view-btn--active,
.coll-view-btn:hover {
    background: white;
    color: #B89355;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ── PRODUCT GRID WRAPPER ──────────────────────────────────── */
.coll-grid-wrap {
    padding: 3rem 0 6rem;
    background: #FDFCFA;
}
.coll-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* ── PREMIUM PRODUCT CARD ─────────────────────────────────── */
.coll-product-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.6s cubic-bezier(0.22,1,0.36,1);
}
.coll-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.10),
                0 12px 24px rgba(0,0,0,0.06);
}

.coll-card__image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #F9F8F6;
}
.coll-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
    display: block;
}
.coll-product-card:hover .coll-card__img { transform: scale(1.07); }
.coll-card__img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.5s ease;
}
.coll-product-card:hover .coll-card__img-overlay {
    background: rgba(0,0,0,0.04);
}

/* Badges */
.coll-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 4;
}
.coll-badge {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}
.coll-badge--sale {
    background: #DC2626;
    color: white;
}
.coll-badge--top {
    background: linear-gradient(135deg, #B89355, #8B6914);
    color: white;
}

/* Wishlist button */
.coll-card__wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    opacity: 0;
    transform: translateY(-6px);
    transition: all 0.4s ease;
}
.coll-product-card:hover .coll-card__wishlist {
    opacity: 1;
    transform: translateY(0);
}
.coll-card__wishlist:hover {
    background: white;
    color: #DC2626;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Quick Add button */
.coll-card__quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.coll-product-card:hover .coll-card__quick-add { transform: translateY(0); }
.coll-card__add-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: rgba(26,26,26,0.96);
    backdrop-filter: blur(8px);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background 0.3s ease;
}
.coll-card__add-btn:hover {
    background: #B89355;
}

/* Card Info */
.coll-card__info {
    padding: 1.2rem 1.25rem 1.4rem;
}
.coll-card__category {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #B89355;
    margin-bottom: 6px;
}
.coll-card__name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
    text-decoration: none;
    line-height: 1.3;
    margin-bottom: 10px;
    transition: color 0.25s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.coll-card__name:hover { color: #B89355; }
.coll-card__pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.coll-card__price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: -0.02em;
}
.coll-card__original {
    font-size: 0.85rem;
    color: #9CA3AF;
    text-decoration: line-through;
    font-weight: 400;
}
.coll-card__saving {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #059669;
    background: rgba(5,150,105,0.08);
    border-radius: 2px;
    padding: 2px 6px;
}
.coll-card__stars {
    font-size: 10px;
    color: #B89355;
    letter-spacing: 1px;
}
.coll-card__review-count {
    font-size: 9px;
    color: #9CA3AF;
    font-weight: 500;
}

/* Empty state */
.coll-empty {
    text-align: center;
    padding: 6rem 1rem;
    color: #9CA3AF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.coll-empty p {
    font-size: 1rem;
    font-weight: 300;
}

/* ── UK TRUST STRIP ───────────────────────────────────────── */
.coll-trust {
    background: #0D0D0D;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.coll-trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(184,147,85,0.08) 0%, transparent 60%);
}
.coll-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}
.coll-trust__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background 0.4s ease;
}
.coll-trust__item:last-child { border-right: none; }
.coll-trust__item:hover { background: rgba(184,147,85,0.04); }
.coll-trust__icon-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(184,147,85,0.08);
    border: 1px solid rgba(184,147,85,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.coll-trust__title {
    font-family: 'Playfair Display', serif;
    font-size: 0.975rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 4px;
}
.coll-trust__text {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

/* ── RESPONSIVE: COLLECTIONS ──────────────────────────────── */
@media (max-width: 1280px) {
    .coll-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    .coll-trust__grid { grid-template-columns: repeat(2, 1fr); }
    .coll-trust__item { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .coll-trust__item:nth-child(2) { border-right: none; }
    .coll-trust__item:nth-child(3) { border-bottom: none; }
    .coll-trust__item:nth-child(4) { border-right: none; border-bottom: none; }
    .coll-grid { grid-template-columns: repeat(2, 1fr); }
    .coll-hero__content { padding: 3rem 2rem 2.5rem; }
    .coll-tabs-bar { padding: 0 1.5rem; }
}
@media (max-width: 640px) {
    .coll-hero { height: 60vh; }
    .coll-hero__title { font-size: 2.4rem; }
    .coll-hero__subtitle { display: none; }
    .coll-hero__stats { gap: 1rem; }
    .coll-hero__content { padding: 2rem 1.25rem 2rem; }
    .coll-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .coll-trust__grid { grid-template-columns: 1fr; }
    .coll-trust__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .coll-trust__item:last-child { border-bottom: none; }
    .coll-tabs-bar { padding: 0 1rem; }
}


/* ============================================================
   PREMIUM PRODUCT DETAIL PAGE — 2026
   ============================================================ */

@keyframes pdpFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes imageReveal {
    from { clip-path: inset(0 100% 0 0); opacity: 0; }
    to   { clip-path: inset(0 0% 0 0); opacity: 1; }
}
@keyframes shimmerLoad {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
@keyframes orderPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184,147,85,0.4); }
    50%       { box-shadow: 0 0 0 16px rgba(184,147,85,0); }
}
@keyframes successPop {
    0%   { opacity: 0; transform: scale(0.7); }
    70%  { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes checkDraw {
    from { stroke-dashoffset: 100; }
    to   { stroke-dashoffset: 0; }
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(60px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── PDP WRAPPER ───────────────────────────────────────────── */
.pdp-page {
    background: #F9F8F6;
    min-height: 100vh;
    padding-top: 0;
}

/* ── PDP HERO STRIP ────────────────────────────────────────── */
.pdp-hero-strip {
    background: linear-gradient(105deg, #1A1A1A 0%, #2C2016 60%, #1A1A1A 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.pdp-hero-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(184,147,85,0.25) 0%, transparent 60%);
}
.pdp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.pdp-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.pdp-breadcrumb a:hover { color: #B89355; }
.pdp-breadcrumb-sep { color: rgba(255,255,255,0.2); }
.pdp-breadcrumb-current { color: #B89355; }

/* ── PDP MAIN LAYOUT ───────────────────────────────────────── */
.pdp-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
    align-items: start;
}
@media (max-width: 1024px) {
    .pdp-main { grid-template-columns: 1fr; gap: 0; }
}

/* ── PDP IMAGE PANEL ───────────────────────────────────────── */
.pdp-image-panel {
    position: sticky;
    top: 100px;
    padding: 2rem 2rem 2rem 0;
}
@media (max-width: 1024px) {
    .pdp-image-panel { position: static; padding: 1.5rem 0; }
}

.pdp-image-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Vertical Gallery (Side) */
.pdp-vertical-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 85px;
    flex-shrink: 0;
}

/* Navigation Arrows */
.pdp-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    color: #1A1A1A;
}

.pdp-image-frame:hover .pdp-nav-btn {
    opacity: 1;
    visibility: visible;
}

.pdp-nav-btn:hover {
    background: #B89355;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.pdp-nav-btn--prev { left: 1.5rem; }
.pdp-nav-btn--next { right: 1.5rem; }

@media (max-width: 1024px) {
    .pdp-nav-btn {
        opacity: 1;
        visibility: visible;
        width: 40px;
        height: 40px;
    }
    .pdp-nav-btn--prev { left: 1rem; }
    .pdp-nav-btn--next { right: 1rem; }
}

.pdp-gallery-scroll {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 520px;
    overflow-y: auto;
    padding: 4px;
    scroll-behavior: smooth;
}

.pdp-gallery-nav {
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #F0EDE8;
    color: #AAA;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.pdp-gallery-nav:hover {
    color: #B89355;
    border-color: #B89355;
    background: #FDFBF7;
}

.pdp-gallery-nav i { width: 18px; height: 18px; }

@media (max-width: 1024px) {
    .pdp-image-layout { flex-direction: column-reverse; }
    .pdp-vertical-gallery { width: 100%; }
    .pdp-gallery-scroll { 
        flex-direction: row; 
        max-height: none; 
        width: 100%; 
        overflow-x: auto; 
        padding-bottom: 10px;
    }
    .pdp-gallery-nav { display: none; }
}

.pdp-image-frame-wrap {
    flex: 1;
    min-width: 0; /* Prevents flex items from overflowing */
}

@keyframes pdpFadeIn {
    from { opacity: 0; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}

.pdp-image-frame {
    position: relative;
    background: white;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08), 0 8px 20px rgba(0,0,0,0.04);
    border: 1px solid #F0EDE8;
    cursor: crosshair;
}

.pdp-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
    animation: pdpFadeIn 0.8s ease both;
}

.pdp-thumb {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
    background: white;
    border: 1px solid #F0EDE8;
    padding: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 2px;
}

.pdp-thumb:hover {
    border-color: #B89355;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(184, 147, 85, 0.1);
}

.pdp-thumb.active {
    border-color: #B89355;
    border-width: 2px;
    box-shadow: 0 4px 12px rgba(184, 147, 85, 0.15);
}

/* 360 Thumb Styling */
.pdp-thumb--360 {
    background: #FDFBF7;
    border-color: rgba(184, 147, 85, 0.3);
}

.pdp-thumb-360-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 2px;
}

.pdp-thumb--360 span {
    font-size: 7px;
    font-weight: 900;
    color: #B89355;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .pdp-thumb { width: 65px; height: 65px; }
}


.pdp-badge-sale {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 14px;
    z-index: 2;
}
.pdp-badge-top {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #B89355, #8B6914);
    color: white;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 14px;
    z-index: 2;
}

/* Delivery badges under image */
.pdp-image-badges {
    display: flex;
    gap: 0;
    margin-top: 1px;
}
.pdp-image-badge {
    flex: 1;
    background: white;
    border-top: 1px solid #F0EDE8;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555;
    border-right: 1px solid #F0EDE8;
}
.pdp-image-badge:last-child { border-right: none; }
.pdp-image-badge svg { color: #B89355; flex-shrink: 0; }

/* ── PDP INFO PANEL ────────────────────────────────────────── */
.pdp-info-panel {
    padding: 3rem 0 3rem 4rem;
    animation: pdpFadeIn 0.9s ease 0.1s both;
}
@media (max-width: 1024px) {
    .pdp-info-panel { padding: 0 0 3rem; }
}

.pdp-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #B89355;
    margin-bottom: 1rem;
}
.pdp-category-tag::before {
    content: '';
    width: 20px;
    height: 1px;
    background: #B89355;
}

.pdp-product-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #1A1A1A;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.pdp-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}
.pdp-stars { color: #B89355; font-size: 14px; letter-spacing: 2px; }
.pdp-review-count {
    font-size: 11px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.05em;
}

.pdp-price-block {
    background: linear-gradient(135deg, #1A1A1A 0%, #2C2016 100%);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.pdp-price-block::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #B89355, #F0D090);
}
.pdp-current-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #B89355;
    line-height: 1;
}
.pdp-original-price {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.3);
    text-decoration: line-through;
}
.pdp-savings-badge {
    margin-left: auto;
    background: rgba(184,147,85,0.15);
    border: 1px solid rgba(184,147,85,0.3);
    color: #B89355;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
}

.pdp-description {
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    border-left: 3px solid rgba(184,147,85,0.2);
    padding-left: 1.25rem;
    margin-bottom: 2rem;
}

/* ── SIZE SELECTOR ─────────────────────────────────────────── */
.pdp-option-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
    display: block;
}

/* Size Selection Cards */
.pdp-size-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
}

.pdp-size-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    text-align: left;
    position: relative;
    width: 100%;
}

.pdp-size-card:hover {
    border-color: #B89355;
    background: #F9F8F6;
    transform: translateX(4px);
}

.pdp-size-card.active {
    border-color: #B89355;
    background: #FDFBF7;
    box-shadow: 0 4px 20px rgba(184,147,85,0.08);
}

.pdp-size-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pdp-size-card.active .pdp-size-radio {
    border-color: #B89355;
}

.pdp-size-radio-inner {
    width: 0;
    height: 0;
    background: #B89355;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pdp-size-card.active .pdp-size-radio-inner {
    width: 10px;
    height: 10px;
}

.pdp-size-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pdp-size-title {
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: -0.01em;
}

.pdp-size-meta {
    font-size: 11px;
    font-weight: 500;
    color: #B89355;
    opacity: 0.8;
}

.pdp-size-card.active .pdp-size-title { color: #B89355; }

/* ── PREMIUM SIZE DROPDOWN (FOR BEDS) ────────────────────── */
.pdp-size-dropdown-container {
    position: relative;
    width: 100%;
}

.pdp-size-toggle-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 2px solid #F0EDE8;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    z-index: 2;
}

.pdp-size-toggle-btn:hover {
    border-color: #B89355;
    background: #FDFBF7;
}

.pdp-size-toggle-btn.active {
    border-color: #B89355;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pdp-size-toggle-btn i {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pdp-size-toggle-btn.active i {
    transform: rotate(180deg);
}

.pdp-size-list-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #B89355;
    border-top: none;
    z-index: 10;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
    opacity: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pdp-size-list-dropdown.show {
    max-height: 500px;
    opacity: 1;
    overflow-y: auto;
}

.pdp-size-option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #F0EDE8;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pdp-size-option:last-child {
    border-bottom: none;
}

.pdp-size-option:hover {
    background: #FDFCFA;
    padding-left: 1.75rem;
}

.pdp-size-option.active {
    background: rgba(184,147,85,0.05);
}

.pdp-size-option.active span.font-bold {
    color: #B89355;
}

/* ── COLOR SELECTOR ────────────────────────────────────────── */
.pdp-color-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2rem;
}
.pdp-color-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 1px #E0DDD8;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    padding: 0;
}
.pdp-color-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 1px #B89355;
}
.pdp-color-btn.active {
    transform: scale(1.15);
    box-shadow: 0 0 0 2px #B89355;
}
.pdp-color-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid #B89355;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.pdp-color-btn.active::after {
    opacity: 1;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ── ORDER CTA ─────────────────────────────────────────────── */
.pdp-cta-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2rem;
}

.pdp-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #B89355 0%, #8B6914 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: orderPulse 3s ease-in-out infinite;
}
.pdp-order-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F0D090 0%, #B89355 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.pdp-order-btn:hover::before { opacity: 1; }
.pdp-order-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(184,147,85,0.4); }
.pdp-order-btn span, .pdp-order-btn svg { position: relative; z-index: 1; }

.pdp-enquire-btn {
    width: 100%;
    background: transparent;
    color: #1A1A1A;
    border: 1.5px solid #D0CCC5;
    padding: 1rem 2rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}
.pdp-enquire-btn:hover {
    border-color: #B89355;
    color: #B89355;
    background: rgba(184,147,85,0.04);
}

/* ── PDP FEATURES LIST ─────────────────────────────────────── */
.pdp-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid #F0EDE8;
}
.pdp-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #555;
    line-height: 1.4;
}
.pdp-feature-item svg { color: #B89355; flex-shrink: 0; margin-top: 1px; }

/* ── PDP TRUST ROW ─────────────────────────────────────────── */
.pdp-trust-row {
    display: flex;
    gap: 0;
    border: 1px solid #F0EDE8;
    background: white;
}
.pdp-trust-item {
    flex: 1;
    padding: 1.25rem 1rem;
    text-align: center;
    border-right: 1px solid #F0EDE8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
    transition: background 0.3s ease;
}
.pdp-trust-item:last-child { border-right: none; }
.pdp-trust-item:hover { background: #FDFCFA; }
.pdp-trust-item .pdp-trust-icon {
    display: block;
    margin: 0 auto 6px;
    color: #B89355;
}

/* ── RELATED PRODUCTS SECTION ──────────────────────────────── */
.pdp-related {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid #F0EDE8;
}

/* ============================================================
   ORDER FORM MODAL — PREMIUM
   ============================================================ */

.order-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,8,6,0.75);
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}
.order-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
@media (min-width: 768px) {
    .order-modal-overlay { align-items: center; }
}

.order-modal {
    background: white;
    width: 100%;
    max-width: 680px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(60px) scale(0.96);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 0;
}
.order-modal-overlay.open .order-modal {
    transform: translateY(0) scale(1);
    animation: modalSlideUp 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
@media (max-width: 767px) {
    .order-modal { border-radius: 16px 16px 0 0; max-height: 95vh; }
}

/* Modal Header */
.order-modal__header {
    background: linear-gradient(135deg, #0D0D0D 0%, #1C1410 100%);
    padding: 2rem 2.5rem 1.75rem;
    position: relative;
    overflow: hidden;
}
.order-modal__header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(184,147,85,0.12) 0%, transparent 60%);
}
.order-modal__header-inner { position: relative; z-index: 1; }
.order-modal__product-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}
.order-modal__product-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(184,147,85,0.3);
}
.order-modal__product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}
.order-modal__product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #B89355;
}
.order-modal__product-size,
.order-modal__product-color {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

.order-modal__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}
.order-modal__close:hover {
    background: rgba(255,255,255,0.15);
    color: white;
}

.order-modal__delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,147,85,0.12);
    border: 1px solid rgba(184,147,85,0.25);
    color: #B89355;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
}

/* Modal Body / Form */
.order-modal__body {
    padding: 2rem 2.5rem 2.5rem;
}

.order-form__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 4px;
}
.order-form__subtitle {
    font-size: 12px;
    color: #888;
    margin-bottom: 1.75rem;
    font-weight: 400;
}

/* Form Fields */
.order-field {
    margin-bottom: 1.25rem;
}
.order-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 8px;
}
.order-field label .req {
    color: #B89355;
    font-size: 12px;
    line-height: 1;
}
.order-field label .opt {
    color: #AAA;
    font-size: 9px;
    font-weight: 600;
    background: #F5F3F0;
    padding: 2px 6px;
    letter-spacing: 0.08em;
}

.order-input {
    width: 100%;
    border: 1.5px solid #E8E5E0;
    background: #FDFCFA;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}
.order-input::placeholder { color: #C0BAB2; font-size: 13px; }
.order-input:focus {
    border-color: #B89355;
    background: white;
    box-shadow: 0 0 0 4px rgba(184,147,85,0.08);
}

textarea.order-input {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

/* 2-col row */
.order-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 560px) {
    .order-field-row { grid-template-columns: 1fr; }
    .order-modal__body { padding: 1.5rem; }
    .order-modal__header { padding: 1.5rem; }
}

/* Delivery notice */
.order-delivery-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #F9F8F6;
    border: 1px solid #EDE9E3;
    border-left: 4px solid #B89355;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}
.order-delivery-notice svg { color: #B89355; flex-shrink: 0; margin-top: 1px; }
.order-delivery-notice__text {
    font-size: 12px;
    line-height: 1.6;
    color: #555;
}
.order-delivery-notice__text strong {
    display: block;
    color: #1A1A1A;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* Submit Button */
.order-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #B89355 0%, #8B6914 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: inherit;
    margin-top: 1.5rem;
}
.order-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F0D090 0%, #B89355 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.order-submit-btn:hover::before { opacity: 1; }
.order-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(184,147,85,0.35); }
.order-submit-btn:active { transform: translateY(0); }
.order-submit-btn span, .order-submit-btn svg { position: relative; z-index: 1; }
.order-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Loading state */
.order-submit-btn.loading .btn-text { opacity: 0; }
.order-submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── ORDER SUCCESS SCREEN ──────────────────────────────────── */
.order-success {
    padding: 3rem 2.5rem;
    text-align: center;
    animation: successPop 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
.order-success__check {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B89355, #8B6914);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 16px 40px rgba(184,147,85,0.35);
}
.order-success__check svg {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
    animation: checkDraw 0.6s ease 0.2s both;
}
.order-success__title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}
.order-success__subtitle {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    max-width: 360px;
    margin: 0 auto 2rem;
}
.order-success__details {
    background: #F9F8F6;
    border: 1px solid #EDE9E3;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}
.order-success__detail-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
    border-bottom: 1px solid #EDE9E3;
    font-size: 13px;
    color: #555;
}
.order-success__detail-row:last-child { border-bottom: none; }
.order-success__detail-row strong { color: #1A1A1A; font-weight: 700; }
.order-success__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #B89355, #F0D090);
    margin: 0 auto 1.5rem;
}
.order-success__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.order-success__btn-primary {
    background: linear-gradient(135deg, #B89355, #8B6914);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}
.order-success__btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(184,147,85,0.35); }
.order-success__btn-secondary {
    background: transparent;
    color: #555;
    border: 1.5px solid #D0CCC5;
    padding: 0.9rem 2rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}
.order-success__btn-secondary:hover { border-color: #B89355; color: #B89355; }


/* ============================================================
   OUR STORY PAGE — PREMIUM ABOUT PAGE 2026
   ============================================================ */

@keyframes aboutHeroIn {
    from { opacity: 0; transform: translateY(60px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184,147,85,0.6); }
    50%       { box-shadow: 0 0 0 12px rgba(184,147,85,0); }
}

/* ── ABOUT HERO ─────────────────────────────────────────────── */
.about-hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.about-hero__bg {
    position: absolute;
    inset: 0;
    background: #0A0906;
    z-index: 0;
}
.about-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.65;
    transform: scale(1.08);
    transition: transform 12s ease;
    filter: saturate(1.1) brightness(1);
}
.about-hero:hover .about-hero__img { transform: scale(1); }
.about-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at 30% 50%, rgba(184, 147, 85, 0.2) 0%, transparent 70%);
}
.about-hero__content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    padding: 0 4rem;
    animation: aboutHeroIn 1s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}
.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 2rem;
}
.about-breadcrumb a { color: inherit; text-decoration: none; transition: color 0.2s; }
.about-breadcrumb a:hover { color: #B89355; }
.about-breadcrumb__sep { color: #B89355; font-size: 12px; }
.about-breadcrumb__active { color: #B89355; }
.about-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #B89355;
    margin-bottom: 1.5rem;
}
.about-hero__eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, #B89355, transparent);
}
.about-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: #FFFFFF;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4), 0 0 30px rgba(184,147,85,0.5);
}
.about-hero__title em {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.45);
}
.about-hero__subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2.5rem;
}
.about-hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.about-hero__stamp {
    position: absolute;
    top: 3rem;
    right: 4rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(184,147,85,0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.about-hero__logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.about-hero__stamp span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #B89355;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* ── STATS BAR ──────────────────────────────────────────────── */
.about-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    padding: 3rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    position: relative;
    z-index: 5;
    margin-top: -3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}
.about-stat-item {
    text-align: center;
    padding: 0 3rem;
}
.about-stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.25rem;
}
.about-stat-lbl {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #B89355;
}
.about-stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.06);
}

/* ── INTRO SECTION ──────────────────────────────────────────── */
.about-intro {
    padding: 8rem 0;
    background: #FDFCFA;
    position: relative;
    overflow: hidden;
}
.about-intro::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(184,147,85,0.05) 0%, transparent 70%);
    z-index: 0;
}
.about-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about-intro__heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1A1A1A;
}
.about-intro__body {
}
.about-intro__badges { display: flex; flex-direction: column; gap: 10px; margin-top: 2.5rem; }
.about-intro__badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #1A1A1A;
}
.about-intro__mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.about-mosaic__img { overflow: hidden; position: relative; }
.about-mosaic__img--tall { height: 440px; }
.about-mosaic__img--short { height: 220px; }
.about-mosaic__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22,1,0.36,1), filter 0.5s ease;
    filter: saturate(0.8);
}
.about-mosaic__img:hover img { transform: scale(1.07); filter: saturate(1); }
.about-mosaic__secondary { display: flex; flex-direction: column; gap: 12px; }
.about-mosaic__quote {
    background: linear-gradient(135deg, #1A1A1A 0%, #2C2016 100%);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    position: relative;
    overflow: hidden;
}
.about-mosaic__quote::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #B89355, transparent);
}
.about-mosaic__quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: rgba(184,147,85,0.3);
    line-height: 1;
}
.about-mosaic__quote p {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    font-style: italic;
}
.about-mosaic__quote cite {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #B89355;
    font-style: normal;
}

/* ── TIMELINE SECTION ───────────────────────────────────────── */
.about-timeline-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}
.about-timeline-section__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0D0D0D 0%, #130E08 50%, #0D0D0D 100%);
    z-index: 0;
}
.about-timeline-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(184,147,85,0.08) 0%, transparent 60%);
    z-index: 1;
}
.about-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.about-timeline__line {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(184,147,85,0.4) 10%, rgba(184,147,85,0.4) 90%, transparent 100%);
    z-index: 1;
}
.about-timeline__item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3.5rem;
    z-index: 2;
}
.about-timeline__item--left { flex-direction: row; padding-right: calc(50% + 2.5rem); }
.about-timeline__item--right { flex-direction: row-reverse; padding-left: calc(50% + 2.5rem); }
.about-timeline__card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(184,147,85,0.15);
    backdrop-filter: blur(8px);
    padding: 2rem 1.75rem;
    width: 100%;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}
.about-timeline__card:hover {
    background: rgba(184,147,85,0.06);
    border-color: rgba(184,147,85,0.35);
    transform: scale(1.02);
}
.about-timeline__year {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #B89355;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.about-timeline__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
}
.about-timeline__desc {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}
.about-timeline__dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B89355, #F0D090);
    border: 3px solid #0D0D0D;
    box-shadow: 0 0 0 3px rgba(184,147,85,0.25);
    z-index: 3;
    animation: dotPulse 2.5s ease-in-out infinite;
}

/* ── CORE VALUES ────────────────────────────────────────────── */
.about-values-section { padding: 8rem 0; background: white; }
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(0,0,0,0.06);
}
.about-value-card {
    padding: 3.5rem 2.5rem;
    border-right: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}
.about-value-card:nth-child(3n) { border-right: none; }
.about-value-card:nth-child(n+4) { border-bottom: none; }
.about-value-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B89355, #F0D090, #B89355);
    background-size: 200% auto;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.about-value-card:hover::before { transform: scaleX(1); animation: gradientShift 3s ease infinite; }
.about-value-card:hover { background: #FDFCFA; }
.about-value-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(184,147,85,0.07);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: background 0.4s ease, transform 0.4s ease;
}
.about-value-card:hover .about-value-card__icon {
    background: rgba(184,147,85,0.14);
    transform: scale(1.1) rotate(3deg);
}
.about-value-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
}
.about-value-card__desc {
    font-size: 0.875rem;
    font-weight: 300;
    color: #888;
    line-height: 1.75;
}

/* ── SHOWROOM CTA ───────────────────────────────────────────── */
.about-cta {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.about-cta__img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.about-cta__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.4) brightness(0.5);
    transform: scale(1.05);
    transition: transform 10s ease;
}
.about-cta:hover .about-cta__img-wrap img { transform: scale(1); }
.about-cta__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%);
}
.about-cta__content {
    position: relative;
    z-index: 2;
    padding: 6rem 2rem;
    max-width: 680px;
}
.about-cta__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.about-cta__subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.about-cta__info { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 2.5rem; }
.about-cta__info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}
.about-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-intro__grid { grid-template-columns: 1fr; gap: 4rem; }
    .about-mosaic__img--tall { height: 320px; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-value-card:nth-child(3n) { border-right: 1px solid rgba(0,0,0,0.06); }
    .about-value-card:nth-child(2n) { border-right: none; }
    .about-value-card:nth-child(5) { border-bottom: none; }
    .about-value-card:nth-child(6) { border-bottom: none; }
    .about-timeline__item--left { padding-right: calc(50% + 1.5rem); }
    .about-timeline__item--right { padding-left: calc(50% + 1.5rem); }
}
@media (max-width: 768px) {
    .about-hero__content { padding: 0 2rem; }
    .about-hero__stamp { display: none; }
    .about-stat-sep { display: none; }
    .about-stat-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .about-intro { padding: 5rem 0; }
    .about-mosaic__img--tall { height: 260px; }
    .about-timeline__line { display: none; }
    .about-timeline__item { flex-direction: column !important; padding: 0 !important; }
    .about-timeline__dot { position: static; transform: none; margin-bottom: 1rem; }
    .about-timeline-section { padding: 5rem 0; }
    .about-values-grid { grid-template-columns: 1fr; }
    .about-value-card { border-right: none !important; }
    .about-value-card:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
    .about-hero__title { font-size: 2.8rem; }
    .about-intro__mosaic { grid-template-columns: 1fr; }
    .about-stat-item { min-width: 100%; }
}

/* === PDP ASSEMBLY OPTION === */
.pdp-assembly-option {
    margin-bottom: 2.5rem;
}
.pdp-assembly-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    user-select: none;
}
.pdp-assembly-card:hover {
    border-color: #B89355;
    background: #FFFEFB;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 147, 85, 0.08);
}
.pdp-assembly-check {
    width: 22px;
    height: 22px;
    margin-top: 0.2rem;
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: #fff;
}
.pdp-assembly-check:checked {
    background: #B89355;
    border-color: #B89355;
}
.pdp-assembly-check:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}
.pdp-assembly-content {
    flex: 1;
}
.pdp-assembly-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.pdp-assembly-title {
    font-weight: 700;
    font-size: 15px;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pdp-assembly-title svg {
    color: #B89355;
    width: 18px;
    height: 18px;
}
.pdp-assembly-price {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: #B89355;
}
.pdp-assembly-desc {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}
.pdp-assembly-card:has(.pdp-assembly-check:checked) {
    border-color: #B89355;
    background: #FFFBF5;
    box-shadow: 0 20px 40px rgba(184, 147, 85, 0.12);
}

/* Modal Summary Styles */
.order-summary-box {
    animation: fadeInOrder 0.4s ease both;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.summary-row {
    color: #6B7280;
    font-weight: 500;
}
.summary-row.total {
    color: #1A1A1A;
    border-top: 1px dashed #D1D5DB;
}
.summary-row span:last-child {
    font-variant-numeric: tabular-nums;
}

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

/* === PDP REVIEWS SECTION === */
.pdp-reviews-section {
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.pdp-review-card {
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    z-index: 1;
}

.pdp-review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(184, 147, 85, 0.05);
    line-height: 1;
    z-index: -1;
}

.pdp-review-card:hover {
    transform: translateY(-8px);
    background: #FFFFFF;
    border-color: rgba(184, 147, 85, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.pdp-stars {
    color: #B89355;
    letter-spacing: 2px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
}

.pdp-review-count {
    color: #9CA3AF;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 12px;
}

.avg-rating-number {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #B89355, #8B6914);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #10B981;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Collection Card Stars override */
.coll-card__stars {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 11px;
}

.coll-card__review-count {
    color: #9CA3AF;
    font-weight: 500;
}

/* === ENHANCED COLLECTIONS TOOLBAR === */
.coll-toolbar {
    background: white;
    border-bottom: 1px solid #F3F4F6;
    padding: 2.5rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.coll-toolbar__count {
    font-size: 13px;
    color: #9CA3AF;
    font-weight: 400;
}

.coll-toolbar__count strong {
    color: #1A1A1A;
    font-weight: 700;
}

.coll-search-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #F9F8F6;
    border: 1px solid #E5E7EB;
    padding: 0 1.25rem;
    height: 52px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.coll-search-box:focus-within {
    background: white;
    border-color: #B89355;
    box-shadow: 0 10px 25px rgba(184,147,85,0.08);
}

.coll-search-input {
    background: transparent;
    border: none;
    outline: none;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    color: #1A1A1A;
}

.coll-search-input::placeholder {
    color: #9CA3AF;
    letter-spacing: 0.05em;
}

.coll-sort-select {
    height: 52px;
    background: #F9F8F6;
    border: 1px solid #E5E7EB;
    padding: 0 1.5rem;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #1A1A1A;
    cursor: pointer;
    outline: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23B89355' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.coll-sort-select:hover, .coll-sort-select:focus {
    border-color: #B89355;
    background-color: white;
}

/* Empty State Styling */
.coll-empty i {
    filter: drop-shadow(0 10px 20px rgba(184,147,85,0.2));
    animation: float 4s ease-in-out infinite;
}

/* Category Tab Enhancement */
.coll-tabs-bar {
    background: #F9F8F6;
    border-bottom: 1px solid #E5E7EB;
    padding: 1.5rem 0;
    overflow-x: auto;
}

.coll-tab {
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #9CA3AF;
    border-radius: 100px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coll-tab:hover {
    color: #B89355;
}

.coll-tab--active {
    background: white;
    color: #1A1A1A;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* ============================================================
   PRODUCT REVIEWS & FEEDBACK SYSTEM
   ============================================================ */

#pdp-review-form-container {
    animation: pdpFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#pdp-review-form-container.hidden {
    display: none;
}

#star-input {
    display: flex;
    gap: 8px;
    margin: 10px 0;
}

#star-input .star {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #E5E7EB;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
    line-height: 1;
}

#star-input .star:hover {
    transform: scale(1.25) rotate(5deg);
}

#star-input .star.text-primary {
    color: #B89355;
    text-shadow: 0 0 15px rgba(184, 147, 85, 0.3);
}

.rev-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Review Form Success State */
.review-success-msg {
    text-align: center;
    padding: 3rem 1rem;
    animation: successPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Order Success Feedback Buttons */
.order-success__btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #B89355, #8B6914);
    color: white;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    border-radius: 4px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(184, 147, 85, 0.25);
    cursor: pointer;
}

.order-success__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(184, 147, 85, 0.35);
    background: linear-gradient(135deg, #C9A466, #9C7A25);
}

.order-success__btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 1rem;
    background: white;
    border: 1px solid #E5E7EB;
    color: #1A1A1A;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.order-success__btn-outline:hover {
    border-color: #B89355;
    color: #B89355;
    background: rgba(184, 147, 85, 0.03);
}

/* Animation context if missing */
@keyframes successPop {
    0% { opacity: 0; transform: scale(0.8) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============================================================
   COOKIE CONSENT BANNER & TAB — 2026
   ============================================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    visibility: hidden;
}

.cookie-banner.show {
    transform: translateY(0);
    visibility: visible;
}

.cookie-banner__inner {
    max-width: 100%;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(184, 147, 85, 0.2);
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.4);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .cookie-banner__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2rem 6rem;
    }
}

.cookie-banner__content {
    flex: 1;
    max-width: 800px;
}

.cookie-banner__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #B89355;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.cookie-banner__text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-weight: 300;
}

.cookie-banner__text a {
    color: #B89355;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cookie-banner__actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 1rem 2rem;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 0px;
}

.cookie-btn--accept {
    background: #B89355;
    color: white;
    border: none;
}

.cookie-btn--accept:hover {
    background: white;
    color: #1A1A1A;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(184, 147, 85, 0.25);
}

.cookie-btn--reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn--reject:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.cookie-btn--settings {
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    border: none;
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
    padding: 0;
    margin-left: 0.5rem;
    transition: color 0.3s;
}

.cookie-btn--settings:hover {
    color: #B89355;
}

/* Cookie Tab (Floating trigger) */
.cookie-tab {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    background: #1A1A1A;
    border: 1px solid rgba(184, 147, 85, 0.3);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
}

.cookie-tab.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.cookie-tab:hover {
    background: #B89355;
    transform: translateY(-5px) scale(1.1);
    border-color: white;
}

.cookie-tab:hover svg {
    color: white;
}

.cookie-tab svg {
    width: 20px;
    height: 20px;
    color: #B89355;
    transition: all 0.3s ease;
}

/* --- CONTACT HERO OVERLAY --- */
.contact-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at 50% 50%, rgba(184, 147, 85, 0.2) 0%, transparent 70%);
}

.contact-hero h1 {
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}


/* ============================================================
   TRUST & AWARD BADGES — 2026
   ============================================================ */

.trust-badge-uk {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(184, 147, 85, 0.2);
    animation: fadeInDown 1s ease both;
}

.trust-badge-uk__flag {
    width: 24px;
    height: 16px;
    background: linear-gradient(90deg, #00247D 33%, #FFFFFF 33%, #FFFFFF 66%, #CF142B 66%); /* Mock UK Flag colors */
    position: relative;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* More realistic CSS Union Jack */
.union-jack {
    width: 24px;
    height: 12px;
    background-color: #00247D;
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}
.union-jack::before, .union-jack::after {
    content: '';
    position: absolute;
    background-color: #fff;
}
.union-jack::before {
    width: 100%;
    height: 20%;
    top: 40%;
}
.union-jack::after {
    width: 10%;
    height: 100%;
    left: 45%;
}

.trust-badge-uk span {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1A1A1A;
}

.award-badge-premium {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 20;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #B89355, #8B6914);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(184, 147, 85, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: scaleIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.award-badge-premium i, .award-badge-premium svg {
    width: 24px;
    height: 24px;
    margin-bottom: -2px;
}

.award-badge-premium span {
    font-size: 7px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1;
}

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

/* Founder Quote Enhancements */
.about-mosaic__quote {
    position: relative;
    overflow: hidden;
}

.about-mosaic__quote::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 100% 100%, rgba(184, 147, 85, 0.1), transparent 70%);
    pointer-events: none;
}

.trust-badge-float {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    border: 1px solid rgba(184, 147, 85, 0.1);
}

.trust-badge-float i {
    color: #B89355;
}

.trust-badge-float p {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7) !important;
    margin: 0 !important;
}

�/�*� �P�D� �D�E�T�A�I�L�S� �L�I�S�T� �-� �P�R�E�M�I�U�M� �U�P�G�R�A�D�E� �*�/�
�.�p�d�p�-�d�e�t�a�i�l�s�-�l�i�s�t� �{�
� � � � �b�a�c�k�g�r�o�u�n�d�:� �#�F�D�F�C�F�A�;�
� � � � �p�a�d�d�i�n�g�:� �2�r�e�m�;�
� � � � �b�o�r�d�e�r�-�r�a�d�i�u�s�:� �4�p�x�;�
� � � � �b�o�r�d�e�r�-�l�e�f�t�:� �3�p�x� �s�o�l�i�d� �#�B�8�9�3�5�5�;�
� � � � �m�a�r�g�i�n�-�t�o�p�:� �2�.�5�r�e�m� �!�i�m�p�o�r�t�a�n�t�;�
� � � � �m�a�r�g�i�n�-�b�o�t�t�o�m�:� �2�.�5�r�e�m� �!�i�m�p�o�r�t�a�n�t�;�
� � � � �b�o�x�-�s�h�a�d�o�w�:� �0� �1�0�p�x� �3�0�p�x� �r�g�b�a�(�1�8�4�,� �1�4�7�,� �8�5�,� �0�.�0�5�)�;�
�}�
�
�.�p�d�p�-�d�e�t�a�i�l�s�-�l�i�s�t� �u�l� �l�i� �{�
� � � � �p�o�s�i�t�i�o�n�:� �r�e�l�a�t�i�v�e�;�
� � � � �p�a�d�d�i�n�g�-�l�e�f�t�:� �5�p�x�;�
� � � � �t�r�a�n�s�i�t�i�o�n�:� �t�r�a�n�s�f�o�r�m� �0�.�3�s� �e�a�s�e�;�
�}�
�
�.�p�d�p�-�d�e�t�a�i�l�s�-�l�i�s�t� �u�l� �l�i�:�h�o�v�e�r� �{�
� � � � �t�r�a�n�s�f�o�r�m�:� �t�r�a�n�s�l�a�t�e�X�(�5�p�x�)�;�
�}�
�
�.�p�d�p�-�d�e�t�a�i�l�s�-�l�i�s�t� �u�l� �l�i� �i� �{�
� � � � �c�o�l�o�r�:� �#�B�8�9�3�5�5�;�
� � � � �f�i�l�t�e�r�:� �d�r�o�p�-�s�h�a�d�o�w�(�0� �0� �5�p�x� �r�g�b�a�(�1�8�4�,� �1�4�7�,� �8�5�,� �0�.�3�)�)�;�
�}�
�
�
�