/** Shopify CDN: Minification failed

Line 2889:0 All "@import" rules must come first

**/
/* =========================================================
   SteelandShine — Premium Jewelry Website
   Dark Luxury Aesthetic · Multilingual
   ========================================================= */

/* ---------- CSS Reset & Root ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Colours - Light Luxury (Aurelian Nocturne) */
    --black: #FAFAF8; /* Main body background */
    --near-black: #FFFFFF; /* Card background */
    --dark: #F5F3EE; /* Alternate background */
    --dark-mid: #EEEEEC;
    --mid: #E8E8E6;
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.15);
    --white: #1A1C1B; /* Text that was white becomes dark */
    --true-white: #ffffff;
    --off-white: #e2e3e1;
    --cream: #dadad8;
    --gold: #C9A84C;
    --gold-light: #FFDF8F;
    --gold-dark: #755B00;
    --silver: #B8C4CC;
    --text: #1A1C1B;
    --text-muted: #65636A;
    --accent: #C9A84C;

    /* Type */
    --font-sans: 'Manrope', sans-serif;
    --font-serif: 'Epilogue', sans-serif;

    /* Spacing */
    --section-py: clamp(60px, 8vw, 120px);
    --section-px: clamp(20px, 5vw, 80px);
    --max-w: 1280px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.rte, .rte p, .rte h1, .rte h2, .rte h3, .rte h4, .rte h5, .rte h6, .rte span, .rte a, .rte li, .shopify-policy__title, .shopify-policy__body, .main-page-title, .title, .page-title, .h0, .h1, .h2 {
    color: var(--text) !important;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
    background: var(--gold);
    color: var(--black);
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    position: relative;
    z-index: 200;
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ann-sep {
    opacity: .5;
    font-size: 10px;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: background .4s var(--ease), box-shadow .4s var(--ease), top .3s var(--ease);
    padding: 0;
}

/* Shifted down by announcement bar height on load */
.navbar {
    top: 37px;
}

.navbar.scrolled {
    top: 0;
    background: rgba(250, 250, 248, .96);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 20px var(--section-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: 0;
    transition: text-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.nav-logo:hover {
    text-shadow: 0 0 16px rgba(201, 169, 110, 0.5);
    transform: scale(1.02);
}

.nav-logo:hover .logo-steel,
.nav-logo:hover .logo-shine {
    color: var(--gold-light);
    transition: color 0.3s var(--ease);
}

.nav-logo:hover .logo-amp {
    color: var(--white);
    transition: color 0.3s var(--ease);
}

.logo-steel {
    color: var(--white);
    font-weight: 700;
    transition: color 0.3s var(--ease);
}

.logo-amp {
    color: var(--gold);
    margin: 0 2px;
    transition: color 0.3s var(--ease);
}

.logo-shine {
    color: var(--gold);
    font-weight: 700;
    transition: color 0.3s var(--ease);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .75);
    transition: color .25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s var(--ease);
}

.nav-links a:hover {
    color: var(--white);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, .75);
    border-radius: 50%;
    transition: color .25s, background .25s;
    position: relative;
}

.nav-icon:hover {
    color: var(--white);
    background: rgba(0, 0, 0, .08);
}

.cart-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 16px;
    height: 16px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Language Switcher ---------- */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    color: rgba(0, 0, 0, .8);
    border: 1px solid var(--border-light);
    transition: background .25s, border-color .25s, color .25s;
    cursor: pointer;
}

.lang-current:hover {
    background: rgba(0, 0, 0, .08);
    color: var(--white);
    border-color: var(--gold);
}

.lang-flag {
    font-size: 16px;
}

.lang-code {
    font-size: 11px;
    font-weight: 700;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--dark-mid);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 6px;
    width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
    z-index: 200;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    border-radius: 6px;
    transition: background .2s, color .2s;
    text-align: left;
}

.lang-option span {
    font-size: 18px;
}

.lang-option:hover {
    background: rgba(201, 169, 110, .15);
    color: var(--gold);
}

.lang-option.active {
    color: var(--gold);
    background: rgba(201, 169, 110, .1);
}

/* ---------- Mobile Menu ---------- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(250, 250, 248, .97);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 40px 24px;
    text-align: center;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 500;
    color: var(--white);
    letter-spacing: .04em;
    transition: color .25s;
}

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

.mobile-langs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
}

.mobile-langs .lang-option {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 6px 14px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 37px;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-image {
    transition: transform 8s ease;
}

.hero:hover .hero-image {
    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250, 250, 248, .75) 0%, rgba(250, 250, 248, .3) 60%, rgba(250, 250, 248, .6) 100%);
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, var(--black), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--section-px);
    padding-top: 80px;
}

.hero-eyebrow {
    font-family: var(--font-serif);
    font-size: 13px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-style: italic;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 700px;
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 17px);
    color: rgba(0, 0, 0, .75);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--black);
    padding: 14px 32px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: background .25s, transform .25s, box-shadow .25s;
    box-shadow: 0 4px 20px rgba(201, 169, 110, .3);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, .45);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 0, 0, .35);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: border-color .25s, background .25s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, .1);
    color: var(--gold);
}

.hero-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, .65);
    letter-spacing: .04em;
}

.hero-badge svg {
    color: var(--gold);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .4);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {

    0%,
    100% {
        opacity: .4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* ---------- Animations ---------- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp .9s var(--ease-out) forwards;
}

.delay-1 {
    animation-delay: .1s;
}

.delay-2 {
    animation-delay: .25s;
}

.delay-3 {
    animation-delay: .4s;
}

.delay-4 {
    animation-delay: .55s;
}

.delay-5 {
    animation-delay: .7s;
}

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
    background: var(--near-black);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px var(--section-px);
}

.trust-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 32px;
    flex: 1;
    min-width: 200px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
    flex-shrink: 0;
}

.trust-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.trust-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ---------- Sections shared ---------- */
.section-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--section-py) var(--section-px);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 70px);
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.section-label.light {
    color: rgba(201, 169, 110, .7);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
}

/* ---------- Filter Tabs ---------- */
.filter-tabs {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    transition: all .25s;
}

.filter-tab:hover {
    color: var(--white);
    border-color: var(--gold);
}

.filter-tab.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* ---------- Product Grid ---------- */
.featured {
    background: var(--dark);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 52px;
}

.product-card {
    background: var(--near-black);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5), 0 0 0 1px rgba(201, 169, 110, .2);
}

.product-card.hidden {
    display: none;
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.product-image-placeholder.gold {
    background: linear-gradient(135deg, #1a1510 0%, #2d2415 50%, #1a1510 100%);
    color: var(--gold);
}

.product-image-placeholder.silver {
    background: linear-gradient(135deg, #12151a 0%, #1e242d 50%, #12151a 100%);
    color: var(--silver);
}

.product-image-placeholder.bronze {
    background: linear-gradient(135deg, #1a1612 0%, #2a2018 50%, #1a1612 100%);
    color: #c8a87c;
}

.product-image-placeholder.dark {
    background: linear-gradient(135deg, #111111 0%, #1e1e1e 50%, #111111 100%);
    color: var(--text-muted);
}

.placeholder-icon {
    font-size: 40px;
    opacity: .6;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-badge.bestseller {
    background: var(--gold);
    color: var(--black);
}

.product-badge.new {
    background: #5b21b6;
    color: white;
}

.product-badge.sale {
    background: #dc2626;
    color: white;
}

.product-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gold);
    color: var(--black);
    padding: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform .3s var(--ease);
}

.product-card:hover .product-quick-add {
    transform: translateY(0);
}

.product-info {
    padding: 18px 20px 20px;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.product-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: .04em;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-current {
    font-size: 17px;
    font-weight: 700;
    color: var(--gold);
}

.price-compare {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.view-all-btn {
    display: block;
    text-align: center;
    padding: 14px 40px;
    border: 1px solid var(--border-light);
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text);
    transition: all .3s;
    width: fit-content;
    margin: 0 auto;
}

.view-all-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, .08);
}

/* ---------- Brand Story ---------- */
.brand-story {
    background: var(--near-black);
    padding: var(--section-py) var(--section-px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.story-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 8px;
    overflow: visible;
    aspect-ratio: .85;
}

.story-image img {
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.story-image-frame {
    position: absolute;
    inset: -12px -12px 12px 12px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    z-index: 1;
    opacity: .4;
}

.story-title {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 24px;
}

.story-text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 14px;
    font-weight: 300;
}

.story-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
    flex-shrink: 0;
}

.story-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid transparent;
    transition: border-color .25s;
    display: inline-block;
}

.story-link:hover {
    border-color: var(--gold);
}

/* ---------- Categories ---------- */
.categories {
    background: var(--black);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: .8;
    cursor: pointer;
    border: 1px solid var(--border);
}

.category-card.large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.category-bg {
    position: absolute;
    inset: 0;
    transition: transform .6s var(--ease);
}

.category-bg.necklaces {
    background: linear-gradient(135deg, #1a1510, #2d2415, #3d3020);
}

.category-bg.earrings {
    background: linear-gradient(135deg, #12151a, #1e242d, #252e3d);
}

.category-bg.rings {
    background: linear-gradient(135deg, #1a1612, #2a2018, #3a2e24);
}

.category-bg.bracelets {
    background: linear-gradient(135deg, #111, #1a1a1a, #242424);
}

.category-bg.anklets {
    background: linear-gradient(135deg, #0f1410, #18201a, #202e24);
}

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

.category-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, .70) 0%, transparent 60%);
    z-index: 2;
}

.category-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.5vw, 26px);
    color: var(--white);
    font-weight: 500;
    margin-bottom: 6px;
}

.category-cta {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.category-card:hover .category-cta {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- Why Steel ---------- */
.why-steel {
    background: var(--dark);
    border-top: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--near-black);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 28px;
    transition: border-color .3s, transform .3s;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.feature-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(201, 169, 110, .1);
    border: 1px solid rgba(201, 169, 110, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* ---------- Testimonials ---------- */
.testimonials {
    background: var(--near-black);
    border-top: 1px solid var(--border);
}

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

.testimonial-card {
    background: var(--dark-mid);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 28px;
    transition: border-color .3s;
}

.testimonial-card.featured-test {
    border-color: var(--gold);
    background: linear-gradient(135deg, #1a1612, #23200f);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.author-location {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ---------- Email Capture ---------- */
.email-capture {
    background: linear-gradient(135deg, #0e0b06 0%, #1a1510 40%, #0e0b06 100%);
    border-top: 1px solid var(--border);
    padding: var(--section-py) var(--section-px);
    position: relative;
    overflow: hidden;
}

.email-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.email-decoration {
    font-size: 18px;
    color: var(--gold);
    opacity: .3;
    flex-shrink: 0;
    font-family: var(--font-serif);
}

.email-content {
    flex: 1;
}

.email-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}

.email-subtitle {
    font-size: 14px;
    color: rgba(0, 0, 0, .6);
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 300;
}

.email-subtitle strong {
    color: var(--gold);
    font-weight: 700;
}

.email-form {
    display: flex;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    margin-bottom: 14px;
    background: rgba(0, 0, 0, .04);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    font-size: 14px;
    color: var(--white);
    outline: none;
    font-family: var(--font-sans);
    min-width: 0;
}

.email-input::placeholder {
    color: rgba(0, 0, 0, .3);
}

.email-submit {
    background: var(--gold);
    color: var(--black);
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: background .25s;
    font-family: var(--font-sans);
}

.email-submit:hover {
    background: var(--gold-light);
}

.email-disclaimer {
    font-size: 11px;
    color: rgba(0, 0, 0, .3);
}

/* ---------- FAQ ---------- */
.faq {
    background: var(--dark);
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-item {
    background: var(--near-black);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .3s;
}

.faq-item.open {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    transition: color .25s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-item.open .faq-question {
    color: var(--gold);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform .35s var(--ease);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease), padding .45s var(--ease);
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
}

.faq-answer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: opacity .25s;
}

.faq-answer a:hover {
    opacity: .8;
    text-decoration: underline;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--near-black);
    border-top: 1px solid var(--border);
    position: relative;
}

.footer-top-deco {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 60px var(--section-px) 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 36px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: border-color .25s, color .25s, background .25s;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, .08);
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(201, 169, 110, .3);
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .04em;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 300;
    transition: color .25s;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 11px;
    color: var(--text-muted);
    transition: color .25s;
    letter-spacing: .04em;
}

.footer-legal a:hover {
    color: var(--gold);
}

.payment-icons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.payment-badge {
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: .04em;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .story-container {
        grid-template-columns: 1fr;
    }

    .story-image {
        display: none;
    }

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

    .category-card.large {
        grid-row: span 1;
        aspect-ratio: .8;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 37px;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .lang-code {
        display: none;
    }

    .trust-item {
        min-width: 150px;
    }

    .trust-divider {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .email-container {
        flex-direction: column;
        gap: 8px;
    }

    .email-decoration {
        display: none;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-badges {
        gap: 12px;
    }

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

    .filter-tabs {
        gap: 6px;
    }

    .filter-tab {
        padding: 7px 14px;
        font-size: 11px;
    }

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

    .email-form {
        flex-direction: column;
    }

    .email-submit {
        width: 100%;
    }

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--mid);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ─── Product Description Accordions ──────────────────────────── */

.product-description {
    margin-top: 28px;
}

.product-description p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.product-description em {
    color: var(--text);
    font-style: italic;
}

/* Accordion section — each <details> */
.product-description details {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 8px;
    background: var(--near-black);
    overflow: hidden;
    transition: border-color .25s;
}

.product-description details[open] {
    border-color: var(--gold);
}

/* Accordion header — <summary> */
.product-description details>summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    user-select: none;
    gap: 12px;
    transition: color .2s, background .2s;
}

.product-description details>summary::-webkit-details-marker {
    display: none;
}

.product-description details>summary::marker {
    display: none;
}

.product-description details>summary:hover {
    color: var(--gold);
    background: rgba(201, 169, 110, .05);
}

/* Chevron arrow after summary */
.product-description details>summary::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23c9a96e' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform .3s ease;
}

.product-description details[open]>summary::after {
    transform: rotate(180deg);
}

/* Accordion body */
.product-description details> :not(summary) {
    padding: 2px 18px 10px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
}

.product-description details ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-description details li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
}

.product-description details strong {
    color: var(--white);
    font-weight: 600;
}

/* ---------- Product Page — Microcopy & Trust ---------- */
.product-microcopy {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin: 12px 0 20px;
    letter-spacing: .04em;
    font-weight: 400;
    opacity: .7;
}

.product-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.ptrust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.ptrust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.ptrust-link {
    color: var(--gold) !important;
    text-decoration: none;
    font-weight: 500;
    transition: opacity .25s;
}

.ptrust-link:hover {
    opacity: .8;
    text-decoration: underline;
}

/* ---------- Quality & Testing Page ---------- */
.quality-page {
    padding: var(--section-py) var(--section-px);
    background: #fafaf8;
}

.quality-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.quality-section {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 32px;
    transition: border-color .3s;
}

.quality-section.featured {
    border-color: rgba(201, 169, 110, .3);
    background: linear-gradient(135deg, #ffffff, #fdfaf5);
}

.quality-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 169, 110, .1);
    border: 1px solid rgba(201, 169, 110, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
}

.quality-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 14px;
}

.quality-section p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

.quality-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
}

.spec-value {
    font-size: 13px;
    color: var(--white);
    font-weight: 500;
}

.quality-disclaimer {
    padding: 24px 28px;
    background: rgba(0, 0, 0, .03);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.quality-disclaimer p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
}

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

    .quality-section {
        padding: 28px 20px;
    }
}

/* ---------- 404 Error Page ---------- */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--section-py) var(--section-px);
}

.error-container {
    max-width: 500px;
}

.error-code {
    font-family: var(--font-serif);
    font-size: clamp(80px, 15vw, 140px);
    font-weight: 500;
    color: var(--gold);
    opacity: .3;
    line-height: 1;
    margin-bottom: 16px;
}

.error-title {
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}

.error-message {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 300;
}

/* ---------- Product Page ---------- */
.product-page {
    background: var(--black);
}

.product-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--section-py) var(--section-px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 140px;
}

.product-main-image {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.product-thumbnails {
    display: flex;
    gap: 8px;
}

.thumbnail-btn {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    transition: border-color .25s;
    cursor: pointer;
}

.thumbnail-btn.active,
.thumbnail-btn:hover {
    border-color: var(--gold);
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-type {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.product-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
}

.product-price-block {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.price-save {
    background: rgba(201, 169, 110, .15);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: .04em;
}

.product-option {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text);
}

.option-values {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.option-value-label {
    cursor: pointer;
}

.option-value-label input[type="radio"] {
    display: none;
}

.option-value-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: all .25s;
}

.option-value-label input[type="radio"]:checked+.option-value-text {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, .1);
}

.option-value-text:hover {
    border-color: var(--gold);
}

.product-quantity {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text);
    background: var(--dark-mid);
    transition: background .25s, color .25s;
}

.qty-btn:hover {
    background: var(--mid);
    color: var(--white);
}

.qty-controls input[type="number"] {
    width: 56px;
    height: 44px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--white);
    background: var(--dark);
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-controls input[type="number"]::-webkit-outer-spin-button,
.qty-controls input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add-cart {
    width: 100%;
    padding: 16px 32px;
    font-size: 14px;
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-img {
    transition: transform .5s var(--ease);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

/* ---------- Related Products ---------- */
.related-products {
    border-top: 1px solid var(--border);
}

/* ---------- Cart Notification ---------- */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--dark-mid);
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 16px 24px;
    z-index: 300;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
    animation: slideIn .3s var(--ease);
}

.cart-notification-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

/* ---------- Footer Brand ---------- */
.footer-brand {
    grid-column: 1;
}

.footer-cert {
    margin-top: 20px;
}

/* ---------- Product Description ---------- */
.product-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

.product-description h2,
.product-description h3 {
    color: var(--white);
    font-family: var(--font-serif);
    margin: 20px 0 10px;
}

/* ---------- Product Page Responsive ---------- */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-gallery {
        position: static;
    }
}

/* =========================================================
   PREMIUM VISUAL ENHANCEMENTS — March 2026
   Gold shimmer, glow effects, micro-animations, and
   editorial-grade visual polish
   ========================================================= */

/* ---------- Gold Shimmer on Product Images ---------- */
.product-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(201, 169, 110, .08) 45%,
        rgba(201, 169, 110, .15) 50%,
        rgba(201, 169, 110, .08) 55%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: none;
    pointer-events: none;
    z-index: 3;
}

.product-card:hover .product-image-wrapper::after {
    animation: goldShimmer .8s var(--ease) forwards;
}

@keyframes goldShimmer {
    to { transform: translateX(100%); }
}

/* ---------- Enhanced Product Card Hover — Gold Glow ---------- */
.product-card {
    transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.015);
    border-color: rgba(201, 169, 110, .5);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, .6),
        0 0 0 1px rgba(201, 169, 110, .25),
        0 0 40px rgba(201, 169, 110, .08);
}

/* Product image zoom — smoother and more dramatic */
.product-img {
    transition: transform .7s var(--ease), filter .7s var(--ease);
}

.product-card:hover .product-img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

/* ---------- Product Name & Price Hover Polish ---------- */
.product-name {
    transition: color .3s var(--ease);
}

.product-card:hover .product-name {
    color: var(--gold-light);
}

.price-current {
    transition: text-shadow .3s var(--ease);
}

.product-card:hover .price-current {
    text-shadow: 0 0 12px rgba(201, 169, 110, .4);
}

/* ---------- Product Quick-Add Button — Slide In + Glow ---------- */
.product-quick-add {
    transition: transform .35s var(--ease), box-shadow .35s;
    text-align: center;
}

.product-card:hover .product-quick-add {
    transform: translateY(0);
    box-shadow: 0 -8px 24px rgba(201, 169, 110, .2);
}

/* ---------- Category Cards — Parallax-Style Hover ---------- */
.category-card {
    transition: transform .5s var(--ease), box-shadow .5s;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, .5),
        inset 0 0 100px rgba(201, 169, 110, .06);
}

.category-bg {
    transition: transform .8s var(--ease), filter .8s var(--ease);
}

.category-card:hover .category-bg {
    transform: scale(1.08);
    filter: brightness(1.15) saturate(1.1);
}

.category-content h3 {
    transition: text-shadow .4s var(--ease);
}

.category-card:hover .category-content h3 {
    text-shadow: 0 2px 20px rgba(201, 169, 110, .3);
}

/* ---------- Feature Cards — Icon Glow on Hover ---------- */
.feature-card {
    transition: border-color .4s, transform .4s var(--ease), box-shadow .4s;
}

.feature-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}

.feature-icon-wrap {
    transition: background .4s, border-color .4s, box-shadow .4s;
}

.feature-card:hover .feature-icon-wrap {
    background: rgba(201, 169, 110, .18);
    border-color: rgba(201, 169, 110, .5);
    box-shadow: 0 0 24px rgba(201, 169, 110, .15);
}

/* ---------- Testimonial Cards — Gold Border Glow ---------- */
.testimonial-card {
    transition: border-color .4s, box-shadow .4s, transform .4s var(--ease);
}

.testimonial-card:hover {
    border-color: rgba(201, 169, 110, .4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4), 0 0 0 1px rgba(201, 169, 110, .15);
    transform: translateY(-4px);
}

.testimonial-stars {
    transition: text-shadow .3s;
}

.testimonial-card:hover .testimonial-stars {
    text-shadow: 0 0 10px rgba(201, 169, 110, .4);
}

/* ---------- Scroll-Reveal Stagger Animations ---------- */
.reveal-stagger {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}

.reveal-stagger.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays applied via nth-child for grids */
.product-grid .product-card:nth-child(1) { transition-delay: .05s; }
.product-grid .product-card:nth-child(2) { transition-delay: .12s; }
.product-grid .product-card:nth-child(3) { transition-delay: .19s; }
.product-grid .product-card:nth-child(4) { transition-delay: .26s; }
.product-grid .product-card:nth-child(5) { transition-delay: .33s; }
.product-grid .product-card:nth-child(6) { transition-delay: .40s; }
.product-grid .product-card:nth-child(7) { transition-delay: .47s; }
.product-grid .product-card:nth-child(8) { transition-delay: .54s; }

.features-grid .feature-card:nth-child(1) { transition-delay: .05s; }
.features-grid .feature-card:nth-child(2) { transition-delay: .15s; }
.features-grid .feature-card:nth-child(3) { transition-delay: .25s; }
.features-grid .feature-card:nth-child(4) { transition-delay: .35s; }

.category-grid .category-card:nth-child(1) { transition-delay: .05s; }
.category-grid .category-card:nth-child(2) { transition-delay: .12s; }
.category-grid .category-card:nth-child(3) { transition-delay: .19s; }
.category-grid .category-card:nth-child(4) { transition-delay: .26s; }
.category-grid .category-card:nth-child(5) { transition-delay: .33s; }

/* ---------- Product Gallery — Enhanced Zoom + Cursor ---------- */
.product-main-image {
    cursor: zoom-in;
    transition: box-shadow .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.product-main-image:hover {
    box-shadow: 0 0 0 1px rgba(201, 169, 110, .3), 0 12px 40px rgba(0, 0, 0, .4);
}

.product-main-image img {
    transition: transform .5s var(--ease);
}

.product-main-image:hover img {
    transform: scale(1.08);
}

/* Thumbnail active — gold glow */
.thumbnail-btn.active {
    box-shadow: 0 0 0 1px rgba(201, 169, 110, .5), 0 4px 12px rgba(201, 169, 110, .15);
}

/* ---------- Product Badge Pulse (Bestseller) ---------- */
.product-badge.bestseller {
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, .4); }
    50% { box-shadow: 0 0 0 6px rgba(201, 169, 110, 0); }
}

/* ---------- Buttons — Enhanced Interactions ---------- */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, .2),
        transparent
    );
    transition: left .5s var(--ease);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(0) scale(.98);
}

.btn-ghost {
    transition: border-color .3s, background .3s, color .3s, box-shadow .3s;
}

.btn-ghost:hover {
    box-shadow: 0 0 20px rgba(201, 169, 110, .1);
}

/* ---------- Hero — Enhanced Parallax & Overlay ---------- */
.hero-overlay {
    transition: opacity .5s;
}

.hero:hover .hero-overlay {
    background: linear-gradient(135deg, rgba(250, 250, 248, .7) 0%, rgba(250, 250, 248, .2) 60%, rgba(250, 250, 248, .5) 100%);
}

/* Hero CTA — subtle glow */
.hero-ctas .btn-primary {
    box-shadow: 0 4px 20px rgba(201, 169, 110, .3), 0 0 60px rgba(201, 169, 110, .08);
}

.hero-ctas .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(201, 169, 110, .45), 0 0 80px rgba(201, 169, 110, .12);
}

/* ---------- Announcement Bar — Marquee Scroll ---------- */
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.announcement-inner.marquee {
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.announcement-inner.marquee:hover {
    animation-play-state: paused;
}

/* ---------- Section Dividers — Gold Gradient Lines ---------- */
.section-gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .3;
    margin: 0;
}

/* ---------- Footer — Enhanced Social Icons ---------- */
.social-link {
    transition: border-color .3s, color .3s, background .3s, transform .3s, box-shadow .3s;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(201, 169, 110, .15);
}

/* ---------- Email Capture — Input Focus Glow ---------- */
.email-form {
    transition: border-color .3s, box-shadow .3s;
}

.email-form:focus-within {
    border-color: rgba(201, 169, 110, .5);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, .1), 0 8px 30px rgba(0, 0, 0, .3);
}

/* ---------- FAQ — Smoother Open/Close ---------- */
.faq-item {
    transition: border-color .3s, box-shadow .3s;
}

.faq-item.open {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3), 0 0 0 1px rgba(201, 169, 110, .15);
}

/* ---------- Gold Floating Particles (Hero) ---------- */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(201, 169, 110, .15), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(201, 169, 110, .1), transparent),
        radial-gradient(1px 1px at 60% 20%, rgba(201, 169, 110, .12), transparent),
        radial-gradient(2px 2px at 80% 50%, rgba(201, 169, 110, .08), transparent),
        radial-gradient(1px 1px at 10% 80%, rgba(201, 169, 110, .1), transparent),
        radial-gradient(1.5px 1.5px at 70% 85%, rgba(201, 169, 110, .12), transparent),
        radial-gradient(1px 1px at 50% 10%, rgba(201, 169, 110, .1), transparent);
    animation: floatingParticles 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatingParticles {
    0% { transform: translateY(0) translateX(0); opacity: .5; }
    33% { transform: translateY(-15px) translateX(8px); opacity: .8; }
    66% { transform: translateY(-8px) translateX(-5px); opacity: .6; }
    100% { transform: translateY(-20px) translateX(12px); opacity: .7; }
}

/* ---------- View All Button — Premium Arrow Animation ---------- */
.view-all-btn {
    position: relative;
    overflow: hidden;
    transition: all .4s var(--ease);
}

.view-all-btn::after {
    content: '→';
    display: inline-block;
    margin-left: 8px;
    transition: transform .3s var(--ease);
}

.view-all-btn:hover::after {
    transform: translateX(4px);
}

/* ---------- Cart Notification — Enhanced ---------- */
.cart-notification {
    backdrop-filter: blur(20px);
    animation: cartSlideIn .4s var(--ease);
}

@keyframes cartSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px) scale(.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* ---------- Add to Cart Button — Pulse Effect ---------- */
.btn-add-cart {
    transition: background .3s, transform .3s, box-shadow .3s;
}

.btn-add-cart:hover {
    box-shadow: 0 6px 24px rgba(201, 169, 110, .35);
}

.btn-add-cart:active {
    transform: scale(.97);
}

/* ---------- Story Image Frame — Subtle Animation ---------- */
.story-image-frame {
    transition: opacity .6s var(--ease);
    animation: frameBreath 4s ease-in-out infinite alternate;
}

@keyframes frameBreath {
    0% { opacity: .25; }
    100% { opacity: .55; }
}

/* ---------- Trust Bar — Subtle Hover Highlights ---------- */
.trust-item {
    transition: background .3s var(--ease);
    border-radius: 8px;
}

.trust-item:hover {
    background: rgba(201, 169, 110, .05);
}

.trust-icon {
    transition: transform .4s var(--ease);
}

.trust-item:hover .trust-icon {
    transform: scale(1.15);
}

/* ---------- Stat Numbers — Count Up Animation Ready ---------- */
.stat-number {
    transition: color .3s var(--ease);
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 16px rgba(201, 169, 110, .3);
}

/* ---------- Loading Skeleton (optional) ---------- */
@keyframes skeletonShimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.skeleton {
    background: linear-gradient(90deg, var(--dark-mid) 0px, var(--mid) 100px, var(--dark-mid) 200px);
    background-size: 200px 100%;
    animation: skeletonShimmer 1.5s infinite;
    border-radius: 4px;
}

/* ---------- Scroll-Reveal for Product Grid (JS-less CSS approach) ---------- */
@supports (animation-timeline: view()) {
    .product-card,
    .feature-card,
    .testimonial-card,
    .category-card {
        animation: scrollFadeIn linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 30%;
    }

    @keyframes scrollFadeIn {
        from {
            opacity: 0;
            transform: translateY(40px) scale(.97);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
}

/* ---------- Selection Styling ---------- */
::selection {
    background: rgba(201, 169, 110, .3);
    color: var(--white);
}

::-moz-selection {
    background: rgba(201, 169, 110, .3);
    color: var(--white);
}

/* ---------- Focus Styles (Accessibility) ---------- */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
/* =========================================================
   STEEL & SHINE GLOBAL TYPOGRAPHY UNIFORMITY OVERRIDE
   Injected via API to enforce luxury brand guidelines.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;600&display=swap');

:root {
    --font-luxury-sans: 'Inter', 'Helvetica Neue', sans-serif !important;
    --font-luxury-heading-weight: 300 !important;
    --font-luxury-body-weight: 400 !important;
}

/* Force headings across the ENTIRE site to be uniform, thin, and elegant */
h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5, .h6,
.title, .page-title, .section-title, .rte h1, .rte h2, .rte h3, .rte h4, .rte h5, .rte h6,
#MainContent h1, #MainContent h2, #MainContent h3, #MainContent h4, #MainContent h5, #MainContent h6,
.product-single__title, .collection-hero__title {
    font-family: var(--font-luxury-sans);
    font-weight: var(--font-luxury-heading-weight);
    letter-spacing: 0.05em !important;
}

/* Force body text across the ENTIRE site to be uniform */
body, p, span, li, a, .rte p, .rte span, .rte li, .rte a, .product-single__description p, .collection-hero__description {
    font-family: var(--font-luxury-sans);
}

/* Protect bold tags */
strong, b, .font-bold {
    font-weight: 600 !important;
}

/* Specific Article Overrides to defeat WYSIWYG garbage */
#MainContent .ss-article .ss-art-content h2,
#MainContent .ss-article .ss-art-content h3,
#MainContent .ss-article .ss-art-content h4,
#MainContent .ss-article .ss-art-content h5 {
    font-family: var(--font-luxury-sans) !important;
    font-weight: var(--font-luxury-heading-weight) !important;
    color: #fff !important;
    margin-top: 3rem !important;
    margin-bottom: 1.5rem !important;
    border-bottom: 1px solid rgba(181,147,52,0.3) !important;
    padding-bottom: 0.5rem !important;
    line-height: 1.3 !important;
}

/* The article title itself */
#MainContent .ss-art-title {
    font-family: var(--font-luxury-sans) !important;
    font-weight: 200 !important; /* Even thinner for the main title */
    letter-spacing: -0.02em !important;
}


/* =========================================================
   STEEL & SHINE: TAILWIND PRODUCT MEDIA RATIO ENFORCEMENT
   Força o rácio 1:1 neutralizando as classes utilitárias
   do tema (como aspect-[4/5]) apenas na página de produto
   ========================================================= */
/* Alvos genéricos da galeria e contentores com dados de media */
div[data-media-id], 
div[data-media-id] > div.aspect-\[4\/5\],
.product-media .aspect-\[4\/5\],
.media-gallery .aspect-\[4\/5\] {
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
}

/* Alvo direto para vídeos ou imagens carregados dentro do contentor */
div[data-media-id] video,
div[data-media-id] img,
div[data-media-id] iframe {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: 1 / 1 !important;
}
