.playfair { font-family: "Playfair Display", serif; font-optical-sizing: auto; font-weight: normal; font-style: normal; }
@font-face { font-family: 'century_gothic'; src: url('fonts/century_gothic.woff2') format('woff2'), url('fonts/century_gothic.woff') format('woff'); font-weight: normal; font-style: normal; font-display: swap; }
@font-face { font-family: 'century_gothic_b'; src: url('fonts/century_gothic-b.woff2') format('woff2'), url('fonts/century_gothic-b.woff') format('woff'); font-weight: bold; font-style: normal; font-display: swap; }

:root {
    --playfair: 'Playfair Display', serif;
    --fc: 'century_gothic', sans-serif;
    --fc-bold: 'century_gothic_b', sans-serif;
    
    /* Core Brand Colors */
    --color-crimson: #951B1E;
    --color-white: #FFFFFF;
    --color-black: #181818;
    --color-taupe: #574944;
    --color-beige-dark: #D2C8BF;
    
    /* Semantic/Status Colors */
    --color-success: #27ae60;
    --color-danger: #e74c3c;
    --color-live: #37ff00;

    /* Sizing & Spacing */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-md: 20px;
    --font-size-lg: 24px;
    --font-size-xl: 35px;
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --wrapSize: 83px;
    --space: 80px;
}

* { box-sizing: border-box; }
body { font-family: var(--fc); margin: 0; font-size: var(--font-size-base); font-weight: 500; color: var(--color-white); background: linear-gradient(180deg, #F0E7E2 0%, rgba(255, 255, 255, 0) 100%); }
h1, h2, h3, h4, h5, h6 { font-family: var(--playfair); }
button, a { cursor: pointer; text-decoration: none; color: inherit; }
.w-100 { width: 100%; }
.flex { display: flex; }
.flex-column { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.align-end { align-items: baseline; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
ul { padding: 0; margin: 0; }
ul li { list-style-type: none; }
.center { text-align: center; }
p { margin: 0 0 15px; }
.font-sm { font-size: 12px; }
.container { width: 100%; padding: 0 var(--wrapSize); }
.container_sm { padding: 43px; }
.space { padding: var(--space) 0; }


.cursor-glow {width: 90px;height: 90px;border-radius: 50%;position: fixed;top: 0;left: 0;pointer-events: none; z-index: 999999;will-change: transform; background: radial-gradient(circle, rgba(149, 27, 30, 0.4) 0%, rgba(149, 27, 30, 0) 60%);}


@media (hover: none), (pointer: coarse) {
.cursor-glow {display: none !important;}
body, a, button, input {cursor: auto !important; /* Restore default cursor */}}

/* Color Utilities */
.color-crimson { color: var(--color-crimson); }
.bg-crimson { background-color: var(--color-crimson); }
.color-white { color: var(--color-white); }
.bg-white { background-color: var(--color-white); }
.color-black { color: var(--color-black); }
.bg-black { background-color: var(--color-black); }
.color-taupe { color: var(--color-taupe); }
.color-beige-dark { color: var(--color-beige-dark); }
.bg-opacity { background-color: rgba(255, 255, 255, 0.57); }


.sec-tag { display: inline-block; font-size: var(--font-size-xs); font-family: var(--fc); letter-spacing: 1px; margin-bottom: var(--spacing-sm); position: relative; }
.sec-tag::before { content: ''; display: inline-block; width: 25px; height: 1px; background-color: var(--color-crimson); vertical-align: middle; margin-right: 8px; }
.sec-title { font-size: var(--font-size-xl); letter-spacing: 2px; margin: 0 0 var(--spacing-lg) 0; font-weight: normal; text-transform: uppercase;font-variant-numeric: lining-nums;}

/* Header & Nav */
.site-header { position: fixed; top: 0; left: 0; width: 100%; padding-top: var(--spacing-xl); padding-bottom: 20px; z-index: 1000; transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.site-header.scrolled .minlogo { display: none; }
.site-header .stickylogo { display: none; }
.site-header.scrolled .stickylogo { display: block; }
.site-header.scrolled { background-color: var(--color-white); padding-top: 0px; padding-bottom: 0px; }
.site-header .logo img { transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); transform-origin: left center; }
.site-header.scrolled .logo img { transform: scale(0.85); }
.site-header .nav-menu { transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.site-header.scrolled .nav-menu { padding: 12px 30px; background-color: var(--color-beige-dark); margin: 30px auto;}
.site-header.scrolled .nav-menu li a:hover,
.site-header.scrolled .nav-menu li.active a { color: var(--color-crimson); }
.site-header.scrolled .nav-menu li.active::before { display: none; }
.site-header.scrolled .nav-menu li a { color: var(--color-black); }
.logo { width: 120px; }
.nav-menu { background-color: rgba(87, 73, 68, 0.6); padding: 15px 40px; border-radius: 50px; font-family: var(--playfair); }
.nav-menu ul { gap: 30px; }
.nav-menu li { font-size: var(--font-size-xs); letter-spacing: 1px; text-transform: uppercase; }
.nav-menu li a { color: var(--color-beige-dark); }
.nav-menu li a:hover, .nav-menu li.active a { color: var(--color-white); }
.nav-menu li.active { position: relative; }
.nav-menu li.active::before { content: '◆'; position: absolute; left: -15px; top: 0; font-size: 10px; color: var(--color-beige-dark); }

/* Buttons */
.btn-primary, .btn-outline { position: relative; display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 50px; font-size: var(--font-size-xs); font-family: var(--fc-bold); letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; overflow: hidden; transition: transform 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease; z-index: 1; }
.btn-icon { margin-right: 10px; }
.btn-primary { background-color: var(--color-white); color: var(--color-crimson); }
.btn-primary.variant-beige { background-color: var(--color-beige-dark); color: var(--color-crimson); border-color: var(--color-beige-dark); }
.btn-outline { background-color: transparent; color: var(--color-white); border: 1px solid rgba(255, 255, 255, 0.6); }
.btn-primary::before, .btn-outline::before { content: ''; position: absolute; top: 0; left: -150%; width: 150%; height: 100%; background: linear-gradient(120deg, transparent, rgba(206, 166, 81, 0.2) 20%, rgba(247, 217, 138, 0.9) 50%, rgba(206, 166, 81, 0.2) 80%, transparent); transform: skewX(-25deg); transition: transform 1.2s ease-in-out; z-index: -1; }
.btn-primary:hover::before, .btn-outline:hover::before { transform: skewX(-25deg) translateX(250%); }
.btn-primary:hover, .btn-outline:hover { background-color: var(--color-crimson); color: var(--color-white); }
.btn-outline:hover { border-color: var(--color-crimson); }

/* Icons & UI Elements */
.wa-icon { width: 16px; height: 16px; margin-right: 10px; }
.burger-menu { display: none; background: transparent; border: none; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; cursor: pointer; padding: 0; z-index: 101; }
.burger-bar { display: block; width: 100%; height: 2px; background-color: var(--color-beige-dark); transition: all 0.3s ease; }
.burger-menu.open .burger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); background-color: var(--color-white); }
.burger-menu.open .burger-bar:nth-child(2) { opacity: 0; }
.burger-menu.open .burger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background-color: var(--color-white); }
.vertical-line {width: 1px;height: 60px;background-color: rgba(210, 200, 191, 0.2);position: relative;overflow: hidden;}

/* The falling "light/drop" effect */
.vertical-line::after {content: '';position: absolute;top: -100%;left: 0;width: 100%;height: 100%;background: linear-gradient(to bottom, transparent, var(--color-white), transparent);animation: exploreDrop 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;}
@keyframes exploreDrop {0% { top: -100%; }50% { top: 100%; }100% { top: 100%; }}
.floating-wa { position: fixed; bottom: 40px; right: 0px; width: 60px; height: 50px; border-radius:30px 0 0 30px; z-index: 999; padding: 12px;background-color: var(--color-crimson);}

/* Hero Sections */
.hero-section { position: relative; width: 100%; height: 100vh; min-height: 700px; background-color: var(--color-black); overflow: hidden; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; opacity: 0; z-index: 1; transition: opacity 0.7s ease-in-out; pointer-events: none; }
.hero-slide.active { opacity: 1; z-index: 2; pointer-events: auto; }
.slide-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.slide-bg-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; pointer-events: none; }
.hero-container { position: relative; z-index: 2; width: 100%; }
.hero-content { width: 60%; }
.hero-title { font-size: 4.5vw; margin: 0 0 20px 0; font-weight: normal; font-variant-numeric: lining-nums;}
.hero-subtitle { font-size: var(--font-size-md); margin: 0 0 40px 0; }
.hero-buttons { gap: 20px; }
.hero-bottom-bar { position: absolute; bottom: 40px; left: 0; width: 100%; z-index: 999; pointer-events: auto; }
.explore-vertical { position: absolute; right: 0; left: 0; align-items: center; margin: auto; text-align: center; justify-content: center; display: flex; pointer-events: none; }
.explore-text { font-size: var(--font-size-xs); letter-spacing: 3px; color: var(--color-beige-dark); margin-bottom: 15px; }
.controls-wrap { gap: 15px; position: relative; z-index: 1000; pointer-events: auto; }
.circle-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--color-beige-dark); background: transparent; color: var(--color-white); font-size: var(--font-size-base); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.dots-wrap { gap: 10px; margin-left: 15px; }
.diamond-char { width: 13px; height: 13px; border: none; padding: 0; background-color: transparent; cursor: pointer; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cpath d='M5.91211 0.703125C6.11195 0.432393 6.51696 0.432392 6.7168 0.703125L8.79199 3.51953C8.88126 3.64063 8.98827 3.74764 9.10938 3.83691L11.9258 5.91211C12.1965 6.11195 12.1965 6.51696 11.9258 6.7168L9.10938 8.79199C8.98827 8.88126 8.88126 8.98827 8.79199 9.10938L6.7168 11.9258C6.51696 12.1965 6.11195 12.1965 5.91211 11.9258L3.83691 9.10938C3.74764 8.98827 3.64064 8.88126 3.51953 8.79199L0.703125 6.7168C0.432393 6.51696 0.432392 6.11195 0.703125 5.91211L3.51953 3.83691C3.64064 3.74764 3.74764 3.64064 3.83691 3.51953L5.91211 0.703125Z' stroke='%23D2C8BF'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: contain; background-position: center; transition: transform 0.3s ease; }
.diamond-char.active { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cpath d='M5.91211 0.703125C6.11195 0.432393 6.51696 0.432392 6.7168 0.703125L8.79199 3.51953C8.88126 3.64063 8.98827 3.74764 9.10938 3.83691L11.9258 5.91211C12.1965 6.11195 12.1965 6.51696 11.9258 6.7168L9.10938 8.79199C8.98827 8.88126 8.88126 8.98827 8.79199 9.10938L6.7168 11.9258C6.51696 12.1965 6.11195 12.1965 5.91211 11.9258L3.83691 9.10938C3.74764 8.98827 3.64064 8.88126 3.51953 8.79199L0.703125 6.7168C0.432393 6.51696 0.432392 6.11195 0.703125 5.91211L3.51953 3.83691C3.64064 3.74764 3.74764 3.64064 3.83691 3.51953L5.91211 0.703125Z' fill='%23FFFFFF'/%3E%3C/svg%3E"); transform: scale(1.1); }

.inner-page-hero { position: relative; width: 100%; min-height: 480px; display: flex; align-items: center; background-color: var(--color-crimson); background-repeat: no-repeat; background-size: cover; background-position: center right; padding-top: 120px; content-visibility: auto; contain-intrinsic-size: 480px; }
.breadcrumb { font-size: var(--font-size-sm); font-family: var(--fc); letter-spacing: 1px; margin-bottom: var(--spacing-sm); ;color: var(--color-white);}
.breadcrumb span {color: var(--color-beige-dark);font-size: 12px;}
.breadcrumb a { transition: color .3s ease; }
.breadcrumb a:hover { color: var(--color-white); }
.inner-hero-title { font-family: var(--playfair); font-size: 3.5vw; letter-spacing: 2px; font-weight: 400; margin: 0; text-transform: uppercase;font-variant-numeric: lining-nums;}

/* Common Sections */
.featured-section { position: relative; width: 100%; content-visibility: auto; contain-intrinsic-size: 700px; background-image: url(../images/background.webp); background-repeat: no-repeat; background-size: cover; }
.filter-tabs { gap: 12px; margin-bottom: var(--spacing-xl); flex-wrap: wrap; }
.filter-btn { padding: 6px 20px; border-radius: 20px; border: 1px solid var(--color-white); background-color: var(--color-white); color: var(--color-taupe); font-family: var(--fc); font-size: var(--font-size-sm); }
.filter-btn.active { background-color: var(--color-crimson); color: var(--color-white); border-color: var(--color-crimson); }

.tab-pane { display: none; opacity: 0; }
.tab-pane.active { display: block; animation: fadeTabIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
@keyframes fadeTabIn { to { opacity: 1; transform: translateY(0); } }

.product-grid { display: flex; gap: 20px; margin-bottom: var(--spacing-xl); }
.product-card { width: 25%; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(24, 24, 24, 0.05); background-color: var(--color-white); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.product-card:hover {box-shadow: 0 12px 30px rgba(24, 24, 24, 0.08); }
.product-img-box { position: relative; width: 100%; height: 240px; background-color: rgba(210, 200, 191, 0.35); overflow: hidden; }
.product-img-box img { height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.product-card:hover .product-img-box img { transform: scale(1.05); }
.product-badge { position: absolute; top: 10px; left: 10px; font-size: var(--font-size-xs); font-family: var(--fc-bold); padding: 3px 6px; border-radius: 2px; z-index: 9; }
.product-details { padding: 15px; }
.product-name { font-family: var(--playfair); font-size: var(--font-size-base); font-weight: normal; margin: 0 0 15px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.view-link { font-size: var(--font-size-xs); font-family: var(--fc-bold); letter-spacing: 1px; position: relative; }
.view-link::after { content: ''; width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--color-beige-dark); background-image: url(../images/icons/red-arrow.svg); background-repeat: no-repeat; background-position: center; background-size: 10px auto; display: inline-block; }

.why-section { position: relative; width: 100%; background-image: url(../images/fj-bg.webp); background-repeat: no-repeat; background-size: cover; background-position: center; content-visibility: auto; contain-intrinsic-size: 500px; }
.why-grid { gap: 25px; margin-bottom: var(--spacing-xl); }
.why-card { width: 100%; min-height: 300px; padding: 40px 20px; border-radius: 10px; box-shadow: 0 10px 25px rgba(24, 24, 24, 0.05); }
.why-icon-box { width: 75px; height: 75px; border-radius: 50%; margin-bottom: 25px; }
.why-icon { width: 32px; height: 32px; object-fit: contain; }
.why-card-title { font-family: var(--playfair); font-size: var(--font-size-md); font-weight: normal; margin: 0 0 10px 0; font-variant-numeric: lining-nums; }
.why-card-desc { font-size: var(--font-size-xs); color: var(--color-taupe); margin: 0; font-family: var(--fc); }

.collections-section { position: relative; width: 100%; padding: 0px 0 80px 0;z-index: 1; overflow: hidden;}
.collections-section .container {position: relative;z-index: 2;}
.collections-header { margin-bottom: var(--spacing-xl); }
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: var(--spacing-xl); }
.collection-card { position: relative; display: block; border-radius: 8px; overflow: hidden; aspect-ratio: 1 / 1; text-decoration: none; box-shadow: 0 4px 15px rgba(24, 24, 24, 0.08); transform: translateZ(0); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.collections-section::before,.collections-section::after {content: '';position: absolute;width: 300px;height: 300px;background-image: url(../images/watermark.png);background-repeat: no-repeat;background-size: contain;background-position: center;opacity: 0.05;z-index: -1;pointer-events: none;will-change: transform;animation: slowWatermarkSpin 80s linear infinite;}
.collections-section::before {top: -40px;left: -3vw;}
.collections-section::after {top: 40%;right: -5vw;animation-direction: reverse;}

/* Continuous Rotation Keyframes */
@keyframes slowWatermarkSpin {0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}

.collection-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.collection-card:hover img { transform: scale(1.06); }
.collection-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30, 0, 0, 0.8) 0%, rgba(30, 0, 0, 0) 50%); pointer-events: none; z-index: 1; }
.card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 25px 30px; z-index: 2; }
.collection-title { font-family: var(--playfair); font-size: var(--font-size-md); font-weight: normal; margin: 0; letter-spacing: 0.5px; }
.circle-arrow { width: 32px; height: 32px; border-radius: 50%; background-image: url(../images/icons/right-arrow.svg); background-repeat: no-repeat; background-size: contain; display: flex; align-items: center; justify-content: center; transition: background-color 0.3s ease, border-color 0.3s ease; }
.circle-arrow:hover { background-color: var(--color-crimson); }
.collection-card:hover .circle-arrow { background-color: var(--color-crimson); border-color: var(--color-white); }
.collections-action { margin-top: 50px; }

/* Live Rates */
.rates-calculator-section { position: relative; width: 100%; }
.rates-top-bar { margin-bottom: var(--spacing-xl); }
.status-badge { padding: 6px 14px; font-family: var(--fc); font-size: var(--font-size-xs); letter-spacing: .5px; border-radius: 4px; text-transform: uppercase; }
.status-left {gap:20px}
.live-badge { gap: 8px; border-radius: 4px 0 0 4px; }
.pulse-dot { width: 8px; height: 8px; background-color: var(--color-live); border-radius: 50%; animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { transform: scale(.95); opacity: 1; } 70% { transform: scale(1.3); opacity: 0.7; } 100% { transform: scale(.95); opacity: 0.5; } }
.time-badge { background-color: var(--color-taupe); border-radius: 0 4px 4px 0; }
.refresh-rates { text-align: right; display: flex; justify-content: end; position: absolute; right: 0; }
.refresh-btn { background: 0 0; border: none; font-family: var(--fc); font-size: var(--font-size-sm); gap: 6px; cursor: pointer; transition: color 0.3s ease; }
.refresh-btn:hover { color: var(--color-crimson); }
.refresh-btn svg { width: 16px; height: 16px; transition: transform .6s ease; }
.refresh-btn.spinning svg { animation: spin .8s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.rates-header { margin-bottom: var(--spacing-xl); }
.subtitle-row { gap: 20px; position: relative; }
.rates-subtitle { margin: 0; font-size: var(--font-size-sm); }
.rates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 60px; }
.rates-status-bar {margin-bottom: 20px;}
.rate-card { position: relative; top: 0; padding: 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(24, 24, 24, 0.04); transition: top 0.3s ease, box-shadow 0.3s ease; }
.rate-karat { font-family: var(--playfair); font-size: 22px; margin: 0 0 15px 0; font-weight: normal; font-variant-numeric: lining-nums; }
.rate-label { font-size: 11px; margin: 0 0 5px 0; }
.rate-price-row { margin-bottom: 20px; }
.rate-price { font-family: var(--playfair); font-size: 26px; font-variant-numeric: lining-nums; }
.rate-trend { font-size: 11px; font-family: var(--fc-bold); gap: 4px; }
.trend-up { color: var(--color-success); }
.trend-down { color: var(--color-danger); }
.rate-divider { width: 100%; height: 1px; background-color: rgba(210, 200, 191, 0.4); margin: 20px 0; }
.rate-10g-row { font-size: var(--font-size-xs); margin-bottom: 20px; }
.rate-badge { background-color: var(--color-beige-dark); padding: 10px; border-radius: 4px; font-size: 11px; margin-top: 20px; font-family: var(--fc-bold); color: var(--color-black); }

/* Calculators & Utilities */
.calc-header { margin-bottom: 40px; }
.calc-subtitle { font-size: var(--font-size-sm); }
.calc-card { border-radius: 16px; box-shadow: 0 10px 40px rgba(24, 24, 24, 0.05); overflow: hidden; display: flex; }
.calc-left, .calc-right { width: 50%; padding: 50px; }
.calc-right { border-left: 1px solid rgba(210, 200, 191, 0.4); }
.calc-group { margin-bottom: 25px; }
.calc-label { display: block; font-size: var(--font-size-sm); margin-bottom: 12px; }
.purity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.purity-btn { background-color: rgba(210, 200, 191, 0.25); border: none; border-radius: 6px; padding: 15px 5px; display: flex; flex-direction: column; align-items: center; transition: all .3s ease; }
.p-karat { font-family: var(--playfair); font-size: var(--font-size-base); color: var(--color-crimson);font-variant-numeric: lining-nums;}
.p-pct { font-size: 10px; color: var(--color-taupe); margin-top: 4px; }
.purity-btn.active { background-color: var(--color-crimson); }
.purity-btn.active .p-karat, .purity-btn.active .p-pct { color: var(--color-white); }
.weight-input-wrap { position: relative; display: flex; align-items: center; }
.weight-input { width: 100%; padding: 15px; border: 1px solid rgba(210, 200, 191, 0.6); border-radius: 6px; font-family: var(--fc); font-size: var(--font-size-base); outline: 0; }
.weight-input:focus { border-color: var(--color-crimson); }
.weight-unit { position: absolute; right: 15px; font-size: 11px; }
.current-rate-box { background-color: var(--color-beige-dark); padding: 20px; border-radius: 8px; margin-top: 30px; }
.cr-title { margin: 0 0 5px 0; font-family: var(--fc-bold); font-size: var(--font-size-sm); }
.cr-sub { margin: 0; font-size: 11px; }
.cr-value { font-family: var(--playfair); font-size: var(--font-size-md); font-weight: 700; font-variant-numeric: lining-nums;}
.breakdown-title { font-family: var(--playfair); font-size: var(--font-size-md); font-weight: 400; margin: 0 0 15px 0; }
.calc-divider { height: 1px; width: 100%; background-color: rgba(210, 200, 191, 0.3); margin-bottom: 25px; }
.est-label { font-size: var(--font-size-sm); font-family: var(--fc-bold); margin-bottom: 10px; }
.est-amount { font-family: var(--playfair); font-size: 42px; margin: 0 0 15px 0; font-variant-numeric: lining-nums;}
.est-desc { font-size: 12px; line-height: 1.5; margin-bottom: 30px; }
.breakdown-box { background-color: rgba(210, 200, 191, 0.15); padding: 25px; border-radius: 8px; }
.bd-row { font-size: var(--font-size-xs); margin-bottom: 15px; }
.wa-enquire-btn { width: 100%; padding: 15px; border: 1px solid rgba(210, 200, 191, 0.6); border-radius: 30px; font-size: 14px; font-family: var(--playfair); margin-top: 25px; gap: 8px; }

/* About Inner Sections */
.why-features-section { position: relative; width: 100%; }
.feature-row { gap: 50px; margin-bottom: 100px; display: flex; align-items: center; }
.feature-row:last-child { margin-bottom: 0; }
.feature-img-col, .feature-text-col { width: 47%; position: relative; }
.feature-img { border-radius: 8px; object-fit: cover; display: block; box-shadow: 0 4px 15px rgba(24, 24, 24, 0.05); }
.feature-desc { font-size: var(--font-size-base); line-height: 1.6; margin: 0; }
.purity-badge { position: absolute; bottom: -25px; right: -25px; padding: 20px 25px; border-radius: 8px; box-shadow: 0 10px 30px rgba(24, 24, 24, 0.08); gap: 15px; z-index: 2; }
.purity-title { display: block; font-family: var(--playfair); font-size: var(--font-size-md); line-height: 1.1; margin-bottom: 4px; }
.purity-subtitle { display: block; font-family: var(--fc); font-size: 11px; line-height: 1.3; }

.about-intro-section { position: relative; width: 100%; }
.about-intro-top { display: flex; align-items: flex-start; gap: 50px; margin-bottom: 50px; }
.about-intro-left { width: 48%; }
.about-intro-title { font-family: var(--playfair); font-size: 4vw; font-weight: 400; line-height: 1.1; margin: 0; }
.about-intro-right { width: 45%; }
.about-intro-desc { font-size: var(--font-size-base); line-height: 1.6; margin-bottom: 25px; font-family: var(--fc); }
.about-intro-image-wrap { width: 100%; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(24, 24, 24, 0.05); }
.about-banner-img { display: block; object-fit: cover; aspect-ratio: 2/1; }

.about-features-section { position: relative; width: 100%; }
.about-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.about-feature-item { display: flex; align-items: center; gap: 15px; }
.feature-icon-circle { width: 75px; height: 75px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 5px 15px rgba(24, 24, 24, 0.04); }
.feature-icon-img { width: 32px; height: 32px; object-fit: contain; }
.feature-title { font-family: var(--playfair); font-size: 16px; font-weight: 400; margin: 0 0 6px 0; line-height: 1.2; font-variant-numeric: lining-nums; }

.about-story-section { position: relative; width: 100%; }
.story-img { aspect-ratio: 4/4.5; }
.story-content p { font-size: var(--font-size-base); line-height: 1.6; margin-bottom: 20px; font-family: var(--fc); }
.story-content p:last-child { margin-bottom: 0; }

.stand-for-section { position: relative; width: 100%; background-size: cover; background-position: center top; background-repeat: no-repeat; padding: 150px 0 100px; }
.stand-for-header { margin-bottom: var(--spacing-xl); }
.stand-for-subtitle { max-width: 750px; margin: 0 auto; font-size: var(--font-size-base); line-height: 1.6; }
.stand-for-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stand-for-card { padding: 35px 25px; border-radius: 8px; box-shadow: 0 10px 25px rgba(24, 24, 24, 0.04); background-color: rgba(255, 255, 255, 0.5); }
.stand-badge { display: inline-block; font-family: var(--fc-bold); font-size: 11px; padding: 6px 12px; border-radius: 4px; margin-bottom: 75px; letter-spacing: .5px; background-color: var(--color-taupe); color: var(--color-white); }
.stand-card-title { font-family: var(--playfair); font-size: var(--font-size-md); font-weight: 400; margin: 0 0 15px 0; line-height: 1.3; font-variant-numeric: lining-nums; }
.stand-card-desc { font-size: var(--font-size-sm); font-family: var(--fc); margin: 0; line-height: 1.5; }

.leadership-section { position: relative; width: 100%; }
.leadership-header { margin-bottom: var(--spacing-xl); }
.leadership-subtitle { max-width: 780px; margin: 0 auto; font-size: var(--font-size-base); font-family: var(--fc); line-height: 1.6; }
.leadership-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.leader-img-box { border-radius: 8px; overflow: hidden; margin-bottom: 15px; background-color: rgba(210, 200, 191, 0.2); }
.leader-img { display: block; object-fit: cover; aspect-ratio: 6/6; object-position: center top; }
.leader-info { padding: 0 5px; }
.leader-name { font-family: var(--playfair); font-size: var(--font-size-md); font-weight: 400; margin: 0 0 4px 0; line-height: 1.2; }
.leader-role { font-size: var(--font-size-sm); font-family: var(--fc); margin: 0; }
.leader-social { display: flex; transition: opacity .3s ease; }
.leader-social:hover { opacity: .7; }

/* Shop Section */
.shop-section { position: relative; width: 100%; }
.shop-container { display: flex; align-items: flex-start; gap: 30px; }
.shop-sidebar { width: 280px; flex-shrink: 0; display: flex; flex-direction: column; gap: 15px; z-index: 10; position: sticky; top: 140px; max-height: calc(100vh - 160px); overflow-y: auto; }
.shop-sidebar::-webkit-scrollbar { width: 4px; }
.shop-sidebar::-webkit-scrollbar-thumb { background: var(--color-beige-dark); border-radius: 10px; }
.sidebar-header { display: flex; padding: 15px 20px; background-color: var(--color-white); border-radius: 8px; box-shadow: 0 4px 15px rgba(24, 24, 24, 0.03); }
.sidebar-actions { display: flex; align-items: center; gap: 15px; }
.clear-btn { background: 0 0; border: none; font-family: var(--fc); font-size: var(--font-size-xs); text-decoration: underline; cursor: pointer; display: none; }
.close-filter-btn { background: 0 0; border: none; font-size: 28px; line-height: 1; cursor: pointer; display: none; }
.filter-block { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(24, 24, 24, 0.03); transition: all .3s ease; }
.filter-header { padding: 20px 25px; cursor: pointer; user-select: none; }
.filter-title { font-family: var(--fc); font-size: var(--font-size-base); font-weight: 400; margin: 0; }
.accordion-icon { width: 20px; height: 20px; border: 1px solid rgba(149,27,30,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; }
.accordion-icon::after, .accordion-icon::before { content: ''; position: absolute; background-color: var(--color-crimson); transition: transform .3s ease; }
.accordion-icon::before { width: 8px; height: 1px; }
.accordion-icon::after { width: 1px; height: 8px; }
.filter-block.open .accordion-icon::after { transform: scaleY(0); }
.filter-body { max-height: 0; overflow: hidden; transition: max-height .3s cubic-bezier(0, 1, 0, 1); background-color: var(--color-white); }
.filter-block.open .filter-body { max-height: 500px; transition: max-height .5s ease-in-out; }
.filter-list { padding: 0 25px 25px 25px; display: flex; flex-direction: column; gap: 12px; }
.filter-list li { font-family: var(--fc); font-size: var(--font-size-sm); color: var(--color-taupe); display: flex; align-items: center; cursor: pointer; transition: all .2s ease; }
.filter-list li:hover { color: var(--color-black); }
.filter-list li.active { color: var(--color-black); font-weight: 700; }
.custom-radio { width: 16px; height: 16px; border-radius: 50%; background-color: rgba(210, 200, 191, 0.6); margin-right: 12px; display: inline-block; position: relative; transition: background-color .2s ease; }
.filter-list li.active .custom-radio { background-color: var(--color-crimson); }
.shop-product-grid { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.shop-card { width: 100%; transition: transform .3s ease, box-shadow .3s ease; }
.floating-filter-btn { display: none; position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); padding: 12px 30px; border-radius: 30px; border: none; font-family: var(--fc-bold); font-size: var(--font-size-sm); box-shadow: 0 10px 25px rgba(149,27,30,.4); z-index: 99; }
.sidebar-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.5); z-index: 104; opacity: 0; transition: opacity .3s ease; }
.no-results-msg { display: none; grid-column: 1/-1; padding: 60px 20px; text-align: center; background-color: var(--color-white); border-radius: 8px; }
.no-results-title { font-family: var(--playfair); font-size: var(--font-size-md); margin-bottom: 10px; }
.load-more-spinner { width: 100%; padding: 40px 0; display: none; justify-content: center; align-items: center; grid-column: 1 / -1; }
.spinner-icon { width: 30px; height: 30px; border: 3px solid rgba(149, 27, 30, 0.2); border-top-color: var(--color-crimson); border-radius: 50%; animation: spin 0.8s linear infinite; }

/* FAQ Section */
.faq-section { position: relative; width: 100%; }
.faq-header { margin-bottom: var(--spacing-xl); }
.faq-grid { display: flex; align-items: flex-start; gap: 30px; }
.faq-col { width: 48.5%; display: flex; flex-direction: column; gap: 20px; }
.faq-item { border-radius: 8px; padding: 25px 30px; box-shadow: 0 4px 15px rgba(24, 24, 24, 0.03); overflow: hidden; }
.faq-q { cursor: pointer; user-select: none; }
.faq-question { font-family: var(--playfair); font-size: 18px; font-weight: 400; margin: 0; padding-right: 15px; line-height: 1.3; font-variant-numeric: lining-nums;}
.faq-icon { width: 24px; height: 24px; border: 1px solid rgba(149,27,30,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; transition: transform .3s cubic-bezier(.4, 0, .2, 1); }
.faq-icon::after, .faq-icon::before { content: ''; position: absolute; background-color: var(--color-crimson); }
.faq-icon::before { width: 10px; height: 1px; }
.faq-icon::after { width: 1px; height: 10px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; opacity: 0; transition: max-height .4s ease, opacity .3s ease, margin-top .3s ease; }
.faq-a p { font-size: var(--font-size-sm); line-height: 1.6; margin: 0; font-family: var(--fc); }
.faq-item.open .faq-a { max-height: 200px; opacity: 1; margin-top: 15px; }

/* Footer & Visit */
.visit-section { position: relative; width: 100%; height: 80vh; background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url(../images/visit-bg.webp); background-repeat: no-repeat; background-size: cover; background-position: center; padding-top: var(--spacing-xl); content-visibility: auto; contain-intrinsic-size: 650px; }
.visit-header { margin-bottom: var(--spacing-xl); }
.visit-header .sec-title { margin-bottom: 10px; }
.visit-header .sec-tag::before { background-color: var(--color-white); }
.visit-subtitle { font-size: var(--font-size-xs); letter-spacing: 0.5px; max-width: 620px; margin: 0 auto; font-family: var(--fc); }
.store-info-card { padding: 30px 45px; border-radius: 12px; box-shadow: 0 15px 35px rgba(24, 24, 24, 0.2); width: 100%; margin-top: auto; }
.store-col { width: 47%; gap: 18px; }
.store-icon-box { width: 46px; height: 46px; border-radius: 50%; background-color: var(--color-beige-dark); flex-shrink: 0; }
.store-icon { width: 20px; height: 20px; object-fit: contain; }
.store-text-wrap { width: 100%; }
.store-heading-wrap { gap: 12px; }
.store-title { font-family: var(--playfair); font-size: var(--font-size-md); font-weight: normal; margin-bottom: 5px; margin-top: 0; }
.get-direction-link { font-family: var(--fc-bold); font-size: 10px; letter-spacing: 1px; position: relative; }
.get-direction-link::after { content: ''; width: 10px; height: 10px; background-image: url(../images/icons/get-direction.svg); background-repeat: no-repeat; background-position: center; background-size: contain; display: inline-block; margin-left: 4px; }
.store-desc { font-size: var(--font-size-xs); margin: 0; font-family: var(--fc); }
.store-desc strong { font-family: var(--fc-bold); }
.store-divider { width: 1px; height: 65px; background-color: var(--color-beige-dark); }
.disclaimer-wrap { margin-left: auto; text-align: right; }
.disclaimer-text { font-size: 10px; color: var(--color-beige-dark); font-family: var(--fc); letter-spacing: 0.5px; }
/* --- Back to Top Button (Luxury Theme) --- */
.back-to-top {
    position: absolute;
    bottom: 41px;    right: 0px;
    width: 48px;
    height: 48px;
    background-color: var(--color-white);
    color: var(--color-crimson);
    border: 1px solid var(--color-beige-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
margin-right: 10px;
    z-index: 9998;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(24, 24, 24, 0.08);
}

/* On hover, fills with brand red and lifts up */
.back-to-top:hover {
    background-color: var(--color-crimson);
    color: var(--color-white);
    border-color: var(--color-crimson);

}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 132px;
        right: 0px; 
    }
}
.site-footer { position: relative; width: 100%; min-height: auto; background-image: url(../images/footer-bg.png); background-repeat: no-repeat; background-size: cover; background-position: center top; padding-top: 100px; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 60px; position: relative; z-index: 2; }
.footer-line { width: 100%; height: 1px; background-color: rgba(210, 200, 191, 0.2); margin-bottom: 20px; z-index: 2; position: relative; }
.footer-bottom { padding-bottom: 30px; font-size: 11px; z-index: 2; position: relative; }
.footer-col-brand { padding-right: 30px; }
.footer-logo { width: 130px; height: auto; margin-bottom: 25px; display: block; }
.footer-brand-text { font-size: var(--font-size-xs); font-family: var(--fc); line-height: 1.6; margin: 0; }
.footer-heading { font-family: var(--fc-bold); font-size: var(--font-size-sm); letter-spacing: 1px; text-transform: capitalize; margin: 0 0 25px 0; }
.footer-links li { margin-bottom: 14px; }
.footer-links a { font-size: var(--font-size-xs); font-family: var(--fc); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--color-white); }
.footer-info-text { font-size: var(--font-size-xs); font-family: var(--fc); margin-bottom: 14px; line-height: 1.5; }
.footer-info-text strong { font-family: var(--fc-bold); }
.copyright-text { letter-spacing: 0.5px; font-family: var(--fc); }
.trust-text { letter-spacing: 0.5px; text-transform: lowercase; font-family: var(--fc); }
.watermark {position: relative;}
.watermark::after{content:'';position: absolute; bottom: -120px; right: -120px; width: 400px; height: 400px; opacity: 0.08; pointer-events: none; z-index: 0;background-image: url(../images/watermark.png); background-repeat: no-repeat;background-size: cover;animation: slowWatermarkSpin 70s linear infinite; will-change: transform;}


/* Animations */
.fade-classic { opacity: 0; position: relative; top: 60px; transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), top 1.2s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-classic.is-visible { opacity: 1; top: 0; }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.60s; }
.delay-5 { transition-delay: 0.75s; }
.delay-6 { transition-delay: 0.90s; }

/* ==================================================
   CONTACT PAGE SPECIFIC STYLES
   ================================================== */
.contact-section {
    position: relative;
    width: 100%;
}

.contact-card {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(24, 24, 24, 0.05);
    overflow: hidden;
    width: 100%;
    align-items: stretch;
}

.contact-left, .contact-right {
    width: 100%;
    padding: 30px 40px;
}

.contact-divider {
    width: 1.5px;
    background-color: rgba(210, 200, 191, 0.4);
    margin: 40px 0;
}

/* Left Info Column */
.contact-info-item {
    gap: 25px;
    margin-bottom: 40px;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(210, 200, 191, 0.25);
    flex-shrink: 0;
}

.contact-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.contact-detail-title {
    font-family: var(--playfair);
    font-size: 26px;
    font-weight: normal;
    margin: 0 0 5px 0;
}

.contact-detail-val {
    font-family: var(--fc);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

a.contact-detail-val:hover {
    color: var(--color-black); /* Hover effect for email link */
}

/* Right Form Column */
.contact-form-title {
    font-family: var(--playfair);
    font-size: 28px;
    font-weight: normal;
    margin: 0 0 30px 0;
    letter-spacing: 0.5px;
}

.contact-form {
    width: 100%;
    gap: 15px;
}

.contact-input {
    width: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 6px;
    background-color: rgba(210, 200, 191, 0.15); /* Match the subtle beige background */
    font-family: var(--fc);
    font-size: var(--font-size-sm);
    outline: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-input::placeholder {
    color: var(--color-taupe);
    opacity: 0.7;
}

.contact-input:focus {
    background-color: rgba(210, 200, 191, 0.25);
    box-shadow: 0 0 0 1px var(--color-crimson);
}

.spam-notice {
    font-size: 10px;
    color: var(--color-taupe);
    margin-top: 15px;
    font-family: var(--fc);
    text-transform: lowercase; /* Exact match to design */
    opacity: 0.8;
}
/* ==================================================
   404 ERROR PAGE STYLES
   ================================================== */


.error-code {
    font-family: var(--playfair);
    font-size: 50px; 
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
    font-variant-numeric: lining-nums;
}

.error-title {
    font-family: var(--playfair);
    font-size: var(--font-size-base);
    margin: 20px 0 20px 0; 
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.error-desc {
    max-width: 500px;
    margin-bottom: 30px;

}




/* ==================================================
   CONSOLIDATED MEDIA QUERIES (1024px, 768px, 480px)
   ================================================== */

@media (max-width: 1024px) {
    :root { --wrapSize: 40px; }
    
    .inner-page-hero { min-height: 400px; }
    .inner-hero-title { font-size: 5vw; }
    .hero-title { font-size: 6vw; }
    .hero-content { width: 70%; }
    .nav-menu { padding: 12px 25px; }
    .nav-menu ul { gap: 15px; }
    .btn-primary { padding: 12px 20px; }
    
    .feature-row { gap: 30px; margin-bottom: 70px; }
    .purity-badge { right: -10px; bottom: -15px; padding: 15px 20px; }
    
    .about-intro-top { gap: 30px; }
    .about-intro-title { font-size: 5vw; }
    .about-features-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .stand-for-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .leadership-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 25px; }
    
    .shop-product-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-sidebar { width: 240px; }
    
    .product-grid { flex-wrap: wrap; }
    .product-card { width: 48%; }
    
    .why-grid { flex-wrap: wrap; }
    .why-card { width: 100%; min-height: auto; padding: 30px 15px; }
    
    .rates-grid { grid-template-columns: repeat(2, 1fr); }
    .subtitle-row { flex-direction: column; text-align: center; }
    
    .calc-card { flex-direction: column; }
    .calc-left, .calc-right { width: 100%; padding: 30px; }
    .calc-right { border-left: none; border-top: 1px solid rgba(210, 200, 191, 0.4); }
    
    .site-footer { padding-top: 80px; }
    .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px; }

    .store-info-card { padding: 25px 20px; }
    .store-col { gap: 15px; }
    .store-divider { height: 60px; }
    .collections-section { background-size: 120px auto; }
    .contact-left, .contact-right {padding: 40px;}
    .contact-detail-title {font-size: 22px;}
}

@media (max-width: 768px) {
    :root { --wrapSize: 20px; }
    
    .hero-section { align-items: flex-end; padding-bottom: 120px; }
    .hero-content { width: 100%; text-align: center; position: absolute; left: 0; bottom: 20px; }
    .hero-title { font-size: 9vw; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-bottom-bar { bottom: 20px; }
    .refresh-rates { position: inherit; }
    .explore-vertical { display: none; }
    .floating-wa { bottom: 130px; }
    
    .inner-page-hero { min-height: 350px; padding-top: 90px; background-position: center; }
    .inner-hero-title { font-size: 8vw; }
    .sec-title { font-size: var(--font-size-lg); }
    
    .burger-menu { display: flex; }
    .header-action { display: none; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 77%; background-color: rgba(87, 73, 68, 0.6); border-radius: 20px; padding: 30px 20px; box-shadow: 0 10px 20px rgba(24, 24, 24, 0.3); right: 0;margin: auto;}
    .nav-menu.open { display: block; }
    .nav-menu ul { flex-direction: column; gap: 20px; align-items: center; }
    .nav-menu li.active::before { display: none; }
    
    .feature-row { flex-direction: column; gap: 40px; margin-bottom: 60px; }
    .feature-row.reverse-row { flex-direction: column-reverse; }
    .feature-img-col, .feature-text-col { width: 100%; }
    .purity-badge { right: 15px; bottom: -15px; }
    .feature-desc { font-size: var(--font-size-sm); }
    
    .about-intro-top { flex-direction: column; gap: 20px; margin-bottom: 35px; }
    .about-intro-left, .about-intro-right { width: 100%; }
    .about-intro-title { font-size: 9vw; }
    .about-intro-title br { display: none; }
    .about-intro-desc { font-size: var(--font-size-sm); }
    .about-banner-img { aspect-ratio: 16/9; }
    
    .about-features-grid { grid-template-columns: 1fr; gap: 30px; }
    .feature-icon-circle { width: 65px; height: 65px; }
    .feature-title { font-size: var(--font-size-base); }
    
    .story-content p { font-size: var(--font-size-sm); }
    .story-img { aspect-ratio: 1/1.1; }
    
    .stand-for-grid { grid-template-columns: 1fr; gap: 20px; }
    .stand-for-subtitle { font-size: var(--font-size-sm); }
    .stand-for-card { padding: 30px 20px; }
    
    .leadership-grid { grid-template-columns: 1fr; gap: 35px; }
    .leadership-subtitle { font-size: var(--font-size-sm); }
    
    .shop-container { display: block; }
    .floating-filter-btn { display: flex; }
    .shop-sidebar { position: fixed; top: 0; left: -100%; width: 85%; max-width: 350px; height: 100vh; background-color: rgba(210, 200, 191, 0.15); padding: 0; overflow-y: auto; z-index: 105; transition: left 0.3s ease; box-shadow: 5px 0 25px rgba(24, 24, 24, 0.1); gap: 0; }
    .shop-sidebar.active { left: 0; }
    .sidebar-header { border-radius: 0; border-bottom: 1px solid rgba(24, 24, 24, 0.05); }
    .close-filter-btn { display: block; }
    .filter-block { box-shadow: none; border-radius: 0; margin-bottom: 2px; }
    .sidebar-overlay.active { display: block; opacity: 1; }
    .shop-card:hover { transform: none; box-shadow: 0 4px 15px rgba(24, 24, 24, 0.05); }
    .shop-card:hover .product-img-box img { transform: none; }
    .product-card { width: 100%; }
    .why-card { width: 100%; }
    
    .rates-grid { grid-template-columns: 1fr; }
    .rates-top-bar { flex-direction: column; gap: 15px; margin-bottom: 30px; }
    .rate-card { padding: 25px 20px; }
    
    .calc-left, .calc-right { padding: 25px 20px; }
    .est-amount { font-size: 32px; }
    
    .faq-grid { flex-direction: column; gap: 20px; }
    .faq-col { width: 100%; }
    .faq-item { padding: 20px; }
    .faq-question { font-size: var(--font-size-base); }
    
    .visit-section { height: auto; padding: 40px 0; }
    .store-info-card { flex-direction: column; gap: 25px; align-items: flex-start; padding: 25px 20px; }
    .store-col { width: 100%; }
    .store-divider { width: 100%; height: 1px; }
    .disclaimer-wrap { text-align: center; }
    
    .site-footer { padding-top: 60px; }
  
    .footer-top { grid-template-columns: 1fr; gap: 35px; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .footer-col-brand { padding-right: 0; }
    .footer-col { text-align: center; }
    .footer-col a { text-align: center; margin: auto; display: flex; align-items: center; justify-content: center; }
    .footer-links li { margin-bottom: 6px; }
    .footer-heading { margin-bottom: 15px; }
    .store-title { margin-top: 0; }
    
    .collections-section { background-image: none; }
    .card-overlay { padding: 20px; }

    .contact-card {flex-direction: column;}
    .contact-left, .contact-right {width: 100%;padding: 40px 30px;}
    .contact-divider {width: 100%;height: 1px;margin: 0;}
    .contact-form-title {font-size: 24px;margin-top: 10px;}
    .contact-info-item {gap: 15px;margin-bottom: 30px;}
    .contact-icon-box {width: 40px;height: 40px;}
    .contact-icon {width: 18px;height: 18px;}
    .collections-section::before,
    .collections-section::after {display: none;}
        .not-found-hero {
        min-height: 70vh;
    }
    .error-title {
        font-size: var(--font-size-lg);
        margin: 25px 0 20px 0;
    }
    .error-desc {
        font-size: var(--font-size-sm);
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .watermark::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -40px;
    width: 200px;
    height: 200px;}
}

@media (max-width: 480px) {
    .shop-product-grid { grid-template-columns: 1fr; }
}