/*
Theme Name: Saffron Gold Signature V24.6 - Premium Angle
Theme URI: https://saffrongold.dk
Author: Saffron Gold
Author URI: https://saffrongold.dk
Description: Skandinavisk luksustema med forbedret Professional-emballage i skrå vinkel, tydeligere brandundertitel og afbalancerede produktstørrelser.
Version: 24.0.6
Text Domain: saffrongold
*/

:root {
    --color-bg: #F7F3EC;
    --color-surface: #EEE7DC;
    --color-surface-card: #FFFFFF;
    --color-primary: #651421;
    --color-primary-dark: #451017;
    --color-gold: #B58A32;
    --color-gold-light: #D4AF37;
    --color-text-main: #252321;
    --color-text-muted: #5C554E;
    --color-border: #D9CFC1;
    
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --container-max: 1200px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-soft: 0 10px 30px rgba(37, 35, 33, 0.05);
    --shadow-hover: 0 15px 35px rgba(101, 20, 33, 0.12);
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Trust Bar */
.trust-bar {
    background-color: var(--color-primary-dark);
    color: var(--color-bg);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 1px solid rgba(181, 138, 50, 0.3);
}
.trust-bar-items {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-bar-item span.dot {
    color: var(--color-gold);
}

/* Header */
.site-header {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-primary-dark);
}
.brand-title {
    font-family: var(--font-serif);
    font-size: 24px;
    letter-spacing: 0.12em;
    font-weight: 600;
    text-transform: uppercase;
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}
.main-nav a {
    text-decoration: none;
    color: var(--color-text-main);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}
.main-nav a:hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.hero-tag {
    display: inline-block;
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-heading {
    font-family: var(--font-serif);
    font-size: 54px;
    line-height: 1.15;
    color: var(--color-primary-dark);
    margin-bottom: 24px;
    font-weight: 500;
}
.hero-lead {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    cursor: pointer;
}
.btn-primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border: 1px solid var(--color-primary);
}
.btn-primary:hover {
    background-color: var(--color-primary-dark);
    box-shadow: var(--shadow-hover);
}
.btn-secondary {
    background-color: transparent;
    color: var(--color-primary-dark);
    border: 1px solid var(--color-primary-dark);
}
.btn-secondary:hover {
    background-color: rgba(101, 20, 33, 0.05);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Hero Image & SVG Glass Container */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.jar-mockup-wrapper {
    position: relative;
    max-width: 420px;
    width: 100%;
}
.jar-image {
    width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}
.jar-svg-label {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62%;
    pointer-events: none;
}

/* Pillars Section */
.pillars-section {
    padding: 80px 0;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pillar-card {
    background-color: var(--color-surface-card);
    border: 1px solid var(--color-border);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}
.pillar-num {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--color-gold);
    margin-bottom: 12px;
}
.pillar-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}
.pillar-card p {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: var(--color-surface);
}
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.section-tag {
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: 38px;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}
.section-subtitle {
    color: var(--color-text-muted);
    font-size: 16px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.product-card {
    background-color: var(--color-surface-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.product-card-image {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.product-card-image img {
    max-height: 100%;
    object-fit: contain;
}
.product-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}
.product-batch-tag {
    font-size: 12px;
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.product-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}
.product-price {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--color-text-main);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Origin Section */
.origin-section {
    padding: 100px 0;
    background-color: var(--color-bg);
}
.origin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.origin-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.origin-img-box {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}
.origin-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* B2B / Chef Section */
.b2b-section {
    padding: 100px 0;
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
}
.b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.b2b-image-box {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
}
.b2b-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.b2b-checklist {
    list-style: none;
    margin: 24px 0 32px;
}
.b2b-checklist li {
    font-size: 15px;
    color: var(--color-text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.b2b-checklist li::before {
    content: "✓";
    color: var(--color-gold);
    font-weight: bold;
}

/* Order Form / Checkout Prototype */
.order-section {
    padding: 100px 0;
    background-color: var(--color-bg);
}
.order-form-container {
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--color-surface-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 48px;
    box-shadow: var(--shadow-soft);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--color-text-main);
    background-color: var(--color-bg);
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
}
.form-help {
    display: block;
    margin-top: 7px;
    color: var(--color-text-muted);
    font-size: 10.5px;
    line-height: 1.45;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Footer */
.site-footer {
    background-color: var(--color-primary-dark);
    color: #FFFFFF;
    padding: 60px 0 30px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--color-gold);
    margin-bottom: 16px;
}
.footer-col p, .footer-col li {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}
.footer-col ul {
    list-style: none;
}
.footer-col a {
    color: inherit;
    text-decoration: none;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .origin-grid, .b2b-grid {
        grid-template-columns: 1fr;
    }
    .pillars-grid, .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-heading {
        font-size: 42px;
    }
}
@media (max-width: 600px) {
    .pillars-grid, .products-grid, .form-row, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    .order-form-container {
        padding: 24px;
    }
}

/* V23 Nordic Polish ------------------------------------------------------- */
html {
    scroll-padding-top: 126px;
}
body {
    overflow-x: hidden;
}
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Restored V21 emblem and wordmark */
.brand-logo {
    gap: 14px;
    min-width: max-content;
}
.brand-mark {
    width: 48px;
    height: 52px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}
.brand-mark svg {
    width: 48px;
    height: 50px;
    fill: none;
    overflow: visible;
}
.sg-emblem-ring {
    stroke: var(--color-gold);
    stroke-width: 1.25;
}
.sg-emblem-petals {
    stroke: var(--color-primary);
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.sg-emblem-stigma {
    stroke: #C94137;
    stroke-width: 2.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.sg-emblem-stigma circle {
    fill: var(--color-gold-light);
    stroke: var(--color-primary);
    stroke-width: .75;
}
.sg-emblem-gold-accent {
    stroke: var(--color-gold);
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.brand-title {
    display: block;
    font-size: 25px;
    line-height: 1;
    letter-spacing: .105em;
    font-weight: 500;
}
.brand-title em {
    color: var(--color-gold);
    font-style: normal;
}
.brand-title small {
    display: block;
    margin-top: 8px;
    color: #504942;
    font-family: var(--font-sans);
    font-size: 9.5px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: .075em;
    text-transform: none;
    white-space: nowrap;
}

/* Calmer, more tactile header */
.trust-bar {
    padding: 8px 0;
    font-size: 10px;
    letter-spacing: .12em;
}
.trust-bar-items {
    gap: 25px;
}
.site-header {
    background: rgba(247, 243, 236, .94);
    box-shadow: 0 9px 30px rgba(52, 26, 22, .05);
    backdrop-filter: blur(16px);
}
.header-wrapper {
    height: 92px;
}
.main-nav ul {
    gap: 28px;
    align-items: center;
}
.main-nav a {
    position: relative;
    font-size: 12.5px;
}
.main-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 1px;
    background: var(--color-primary);
    transition: right .24s ease;
}
.main-nav a:not(.btn):hover::after,
.main-nav a:not(.btn):focus-visible::after {
    right: 0;
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(101, 20, 33, .22);
    border-radius: 50%;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle > span:not(.screen-reader-text) {
    width: 18px;
    height: 1px;
    background: var(--color-primary-dark);
    transition: transform .22s ease, opacity .22s ease;
}
.menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
}

/* Livelier section rhythm without visual noise */
.hero-section,
.pillars-section,
.products-section,
.origin-section,
.b2b-section,
.order-section {
    position: relative;
    isolation: isolate;
}
.hero-section > .container,
.pillars-section > .container,
.products-section > .container,
.origin-section > .container,
.b2b-section > .container,
.order-section > .container {
    position: relative;
    z-index: 2;
}
.hero-section {
    padding: 72px 0 84px;
    background:
        radial-gradient(circle at 81% 28%, rgba(181, 138, 50, .12), transparent 25%),
        linear-gradient(180deg, #FBF7F0 0%, var(--color-surface) 100%);
}
.hero-section::before,
.products-section::before,
.origin-section::before,
.order-section::before {
    content: "";
    position: absolute;
    width: 310px;
    height: 310px;
    background: url("assets/images/saffron-watermark.svg") center / contain no-repeat;
    opacity: .055;
    pointer-events: none;
    z-index: 0;
}
.hero-section::before {
    left: -145px;
    bottom: -55px;
}
.products-section::before {
    right: -145px;
    top: 86px;
    transform: rotate(18deg);
}
.origin-section::before {
    right: -165px;
    bottom: -75px;
    transform: rotate(-16deg);
}
.order-section::before {
    left: -155px;
    top: 70px;
    transform: rotate(10deg);
}
.hero-heading {
    max-width: 670px;
    font-size: clamp(48px, 5vw, 64px);
    letter-spacing: -.025em;
}
.hero-lead {
    line-height: 1.72;
}
.btn {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
}
.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}
.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: 0 14px 30px rgba(101, 20, 33, .2);
}
.jar-mockup-wrapper {
    max-width: 390px;
    transform: translateX(-2%);
}
.jar-image {
    filter: drop-shadow(0 25px 32px rgba(48, 21, 17, .2));
}
.jar-svg-label {
    top: 49%;
    width: 57%;
    filter: drop-shadow(0 4px 7px rgba(52, 24, 17, .12));
}
.hero-visual::after {
    content: "";
    position: absolute;
    left: 24%;
    right: 18%;
    bottom: 4%;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(68, 31, 24, .18), transparent 68%);
    filter: blur(5px);
    z-index: -1;
}

.pillars-section {
    padding: 68px 0;
}
.pillar-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 29px 25px;
    box-shadow: 0 14px 38px rgba(53, 31, 26, .055);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.pillar-card::after {
    content: "";
    position: absolute;
    left: 24px;
    right: calc(100% - 57px);
    bottom: 0;
    height: 2px;
    background: var(--color-gold);
    transition: right .3s ease;
}
.pillar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(181, 138, 50, .55);
    box-shadow: 0 20px 42px rgba(53, 31, 26, .09);
}
.pillar-card:hover::after {
    right: 24px;
}
.products-section,
.origin-section,
.b2b-section,
.order-section {
    padding-top: 86px;
    padding-bottom: 86px;
}
.products-section {
    background:
        radial-gradient(circle at 0 100%, rgba(255, 255, 255, .65), transparent 38%),
        var(--color-surface);
}
.section-header {
    margin-bottom: 48px;
}
.product-card {
    border-radius: 14px;
    padding: 30px 27px 32px;
    box-shadow: 0 15px 36px rgba(53, 31, 26, .055);
    transition: transform .3s cubic-bezier(.2, .75, .2, 1), box-shadow .3s ease, border-color .3s ease;
}
.product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(181, 138, 50, .55);
    box-shadow: 0 25px 55px rgba(76, 29, 29, .12);
}
.product-card-image {
    height: 270px;
    margin: -4px 0 25px;
}
.product-card-image img {
    max-width: 94%;
    filter: drop-shadow(0 14px 15px rgba(51, 28, 23, .12));
    transition: transform .35s cubic-bezier(.2, .75, .2, 1);
}
.product-card:hover .product-card-image img {
    transform: scale(1.035);
}
.origin-img-box,
.b2b-image-box {
    border-radius: 14px;
    box-shadow: 0 17px 42px rgba(49, 26, 22, .1);
}
.origin-img-box img,
.b2b-image-box img {
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}
.origin-img-box:hover img,
.b2b-image-box:hover img {
    transform: scale(1.025);
}
.b2b-section {
    background:
        linear-gradient(105deg, rgba(255, 255, 255, .4), transparent 58%),
        var(--color-surface);
}

/* The final form now reads as a designed conclusion, not a detached box */
.order-section {
    background:
        radial-gradient(circle at 84% 75%, rgba(181, 138, 50, .1), transparent 28%),
        linear-gradient(180deg, #FBF8F2 0%, #EEE6DB 100%);
}
.order-form-container {
    max-width: 1010px;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    border-color: rgba(101, 20, 33, .18);
    box-shadow: 0 28px 72px rgba(56, 31, 26, .14);
}
.order-form-intro {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 510px;
    padding: 54px 46px;
    color: #FFF9F2;
    background:
        radial-gradient(circle at 100% 0, rgba(212, 175, 55, .18), transparent 34%),
        linear-gradient(150deg, #671521, #3D0D14);
}
.order-form-intro::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -75px;
    bottom: -46px;
    background: url("assets/images/saffron-watermark.svg") center / contain no-repeat;
    filter: brightness(0) invert(1);
    opacity: .08;
}
.order-form-intro .section-tag {
    color: #E4C77C;
}
.order-form-intro .section-title {
    color: #FFF9F2;
    font-size: 39px;
    line-height: 1.06;
    margin-bottom: 17px;
}
.order-form-intro > p {
    color: rgba(255, 249, 242, .76);
    font-size: 14px;
    line-height: 1.7;
}
.order-steps {
    display: grid;
    gap: 0;
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}
.order-steps span {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 249, 242, .84);
    font-size: 12px;
}
.order-steps b {
    color: #E4C77C;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
}
.order-form-panel {
    padding: 48px 46px;
    background: #FFFFFF;
}
.form-control {
    background: #FBF8F3;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.form-control:focus {
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(101, 20, 33, .08);
}

/* Footer lockup */
.footer-brand {
    display: inline-flex;
    color: #FFF8EF;
    margin-bottom: 21px;
}
.footer-brand .brand-title {
    color: #FFF8EF;
    font-size: 23px;
}
.footer-brand .brand-title em {
    color: #DDBF70;
}
.footer-brand .brand-title small {
    color: rgba(255, 248, 239, .68);
}
.footer-brand .sg-emblem-ring,
.footer-brand .sg-emblem-gold-accent {
    stroke: #DDBF70;
}
.footer-brand .sg-emblem-petals {
    stroke: #FFF7ED;
}
.footer-brand .sg-emblem-stigma {
    stroke: #D4554E;
}
.footer-brand .sg-emblem-stigma circle {
    fill: #E0C173;
    stroke: #FFF7ED;
}

/* Scroll arrival and reveal */
.sg-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .75, .2, 1);
}
.sg-reveal.is-visible {
    opacity: 1;
    transform: none;
}
.sg-arrival {
    animation: sgArrival 1s ease both;
}
@keyframes sgArrival {
    0% { box-shadow: inset 0 0 0 0 rgba(181, 138, 50, 0); }
    40% { box-shadow: inset 0 0 0 2px rgba(181, 138, 50, .28); }
    100% { box-shadow: inset 0 0 0 0 rgba(181, 138, 50, 0); }
}

@media (max-width: 980px) {
    .header-wrapper {
        height: 82px;
        gap: 14px;
    }
    .menu-toggle {
        display: flex;
        margin-left: auto;
        z-index: 2;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 0 24px;
        background: rgba(247, 243, 236, .99);
        border-top: 1px solid var(--color-border);
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 22px 38px rgba(52, 25, 20, .12);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }
    .main-nav.is-open {
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .main-nav ul {
        display: grid;
        gap: 0;
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 14px 0 20px;
    }
    .main-nav li {
        border-bottom: 1px solid rgba(101, 20, 33, .1);
    }
    .main-nav li:last-child {
        border-bottom: 0;
        padding-top: 10px;
    }
    .main-nav a {
        display: flex;
        width: 100%;
        padding: 13px 4px;
        font-size: 13px;
    }
    .main-nav a::after {
        display: none;
    }
    .main-nav .btn {
        padding: 12px 18px !important;
    }
    body.menu-open {
        overflow: hidden;
    }
    .order-form-container {
        grid-template-columns: 1fr;
        max-width: 760px;
    }
    .order-form-intro {
        min-height: auto;
        padding: 42px;
    }
    .order-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        border-top: 0;
    }
    .order-steps span {
        display: grid;
        align-content: start;
        border: 1px solid rgba(255, 255, 255, .13);
        padding: 13px;
    }
}

@media (max-width: 600px) {
    .trust-bar-items {
        gap: 5px 16px;
    }
    .trust-bar-item {
        font-size: 8px;
    }
    .trust-bar-item:nth-child(n+3) {
        display: none;
    }
    .header-wrapper {
        height: 74px;
    }
    .brand-logo {
        gap: 9px;
    }
    .brand-mark,
    .brand-mark svg {
        width: 36px;
        height: 39px;
    }
    .brand-title {
        font-size: 18px;
        letter-spacing: .08em;
    }
    .brand-title small {
        display: none;
    }
    .hero-section {
        padding: 56px 0 64px;
    }
    .hero-heading {
        font-size: 45px;
    }
    .jar-mockup-wrapper {
        max-width: 330px;
        transform: none;
    }
    .products-section,
    .origin-section,
    .b2b-section,
    .order-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .product-card-image {
        height: 245px;
    }
    .order-form-container {
        padding: 0;
        border-radius: 12px;
    }
    .order-form-intro,
    .order-form-panel {
        padding: 32px 24px;
    }
    .order-form-intro .section-title {
        font-size: 34px;
    }
    .order-steps {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 24px;
    }
    .order-steps span {
        display: flex;
        padding: 10px 12px;
    }
    .footer-brand .brand-title {
        font-size: 19px;
    }
    .footer-brand .brand-title small {
        display: block;
        font-size: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
    .sg-reveal {
        opacity: 1;
        transform: none;
    }
}

/* V24: unified product family, quantities and balanced side ornamentation */
.pillars-section::after,
.b2b-section::after {
    content: "";
    position: absolute;
    width: 235px;
    height: 235px;
    background: url("assets/images/saffron-watermark.svg") center / contain no-repeat;
    pointer-events: none;
    z-index: 0;
}
.pillars-section::after {
    right: -112px;
    top: 48px;
    opacity: .035;
    transform: rotate(-13deg);
}
.b2b-section::after {
    left: -124px;
    bottom: 34px;
    opacity: .04;
    transform: rotate(15deg);
}

.product-bottle {
    position: relative;
    height: 270px;
    min-height: 270px;
    max-height: 270px;
    overflow: hidden;
    flex: 0 0 270px;
}
.product-bottle::before {
    content: "";
    position: absolute;
    inset: 16px 5px 18px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 43%, rgba(255, 255, 255, .96) 0 23%, rgba(247, 243, 236, .78) 57%, rgba(238, 231, 220, .22) 78%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.product-bottle::after {
    content: "";
    position: absolute;
    left: 25%;
    right: 25%;
    bottom: 9px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(64, 29, 22, .18), transparent 68%);
    filter: blur(4px);
}
.product-bottle-lockup {
    position: relative;
    width: 166px;
    height: 250px;
    min-width: 166px;
    min-height: 250px;
    max-width: 166px;
    max-height: 250px;
    display: grid;
    place-items: center;
    flex: 0 0 166px;
    transition: transform .32s cubic-bezier(.2, .75, .2, 1);
    z-index: 1;
}
.product-bottle-1g .product-bottle-lockup {
    width: 150px;
    height: 225px;
    min-width: 150px;
    min-height: 225px;
    max-width: 150px;
    max-height: 225px;
    flex-basis: 150px;
}
.product-bottle-5g .product-bottle-lockup {
    width: 174px;
    height: 262px;
    min-width: 174px;
    min-height: 262px;
    max-width: 174px;
    max-height: 262px;
    flex-basis: 174px;
}
.product-bottle-jar {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
    filter: drop-shadow(0 14px 16px rgba(51, 28, 23, .16)) !important;
}
.product-bottle-label {
    position: absolute;
    top: 49%;
    left: 50%;
    width: 57% !important;
    max-width: 57% !important;
    height: auto;
    max-height: 54% !important;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 2px 4px rgba(48, 21, 17, .11)) !important;
    pointer-events: none;
}
.product-card:hover .product-bottle-lockup {
    transform: translateY(-4px) scale(1.025);
}
.product-card:hover .product-card-image img.product-bottle-jar {
    transform: none;
}
.product-card:hover .product-card-image img.product-bottle-label {
    transform: translate(-50%, -50%);
}

/* V24.6: coherent premium tin in the preferred angled presentation. */
.product-professional-visual {
    position: relative;
    height: 270px;
    min-height: 270px;
    max-height: 270px;
    flex: 0 0 270px;
    overflow: visible;
    isolation: isolate;
}
.product-professional-visual::before {
    content: "";
    position: absolute;
    inset: 22px -3px 20px;
    border-radius: 34px;
    background: radial-gradient(circle at 52% 48%, rgba(255, 255, 255, .72) 0 24%, rgba(247, 243, 236, .54) 59%, rgba(238, 231, 220, .12) 80%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.product-professional-visual::after {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    bottom: 32px;
    height: 21px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(64, 29, 22, .1), transparent 69%);
    filter: blur(5px);
    pointer-events: none;
    z-index: 0;
}
.product-professional-stage {
    position: relative;
    width: min(344px, calc(100% + 42px));
    aspect-ratio: 1199 / 856;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 22px;
    background: #F7F3EC;
    transition: transform .35s cubic-bezier(.2, .75, .2, 1);
    z-index: 1;
}
.product-professional-stage img.product-professional-image {
    display: block;
    position: static;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: inherit;
    clip-path: none;
    filter: saturate(.98) contrast(.99);
    transform: none;
}
.product-card:hover .product-professional-stage {
    transform: translateY(-4px) scale(1.018);
}
.product-card:hover .product-professional-stage img.product-professional-image {
    transform: none;
}

.order-products {
    min-width: 0;
    margin: 3px 0 23px;
    padding: 0;
    border: 0;
}
.order-products legend {
    width: 100%;
    margin-bottom: 10px;
    color: var(--color-text-main);
    font-size: 14px;
    font-weight: 600;
}
.order-product-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 72px;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-bottom: 0;
    background: #FBF8F3;
}
.order-product-line:first-of-type {
    border-radius: 8px 8px 0 0;
}
.order-product-copy {
    display: grid;
    gap: 2px;
}
.order-product-copy strong {
    color: var(--color-primary-dark);
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
}
.order-product-copy small {
    color: var(--color-text-muted);
    font-size: 11px;
}
.quantity-stepper {
    display: grid;
    grid-template-columns: 35px 46px 35px;
    align-items: center;
    overflow: hidden;
    border: 1px solid #CFC1B0;
    border-radius: 6px;
    background: #FFFFFF;
}
.quantity-stepper button {
    width: 35px;
    height: 38px;
    border: 0;
    background: #F1E9DE;
    color: var(--color-primary-dark);
    font-size: 19px;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}
.quantity-stepper button:hover,
.quantity-stepper button:focus-visible {
    background: var(--color-primary);
    color: #FFFFFF;
}
.quantity-stepper input {
    width: 46px;
    height: 38px;
    padding: 0;
    border: 0;
    outline: 0;
    background: #FFFFFF;
    color: var(--color-text-main);
    font: 600 14px var(--font-sans);
    text-align: center;
    appearance: textfield;
    -moz-appearance: textfield;
}
.quantity-stepper input::-webkit-outer-spin-button,
.quantity-stepper input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}
.order-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: 0 0 8px 8px;
    background: #F2E9DC;
}
.order-total-row span {
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.order-total-row strong {
    color: var(--color-primary-dark);
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 600;
}
.b2b-order-option {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: 11px !important;
    margin: 13px 0 0 !important;
    padding: 13px 14px;
    border: 1px solid rgba(181, 138, 50, .38);
    border-radius: 8px;
    background: rgba(181, 138, 50, .07);
    cursor: pointer;
}
.b2b-order-option input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--color-primary);
}
.b2b-order-option > span {
    display: grid;
    gap: 2px;
}
.b2b-order-option strong {
    color: var(--color-primary-dark);
    font-size: 12px;
}
.b2b-order-option small {
    color: var(--color-text-muted);
    font-size: 10.5px;
    font-weight: 400;
}

@media (max-width: 600px) {
    .pillars-section::after,
    .b2b-section::after {
        display: none;
    }
    .product-bottle {
        height: 245px;
        min-height: 245px;
        max-height: 245px;
        flex-basis: 245px;
    }
    .product-bottle-lockup {
        width: 150px;
        height: 225px;
        min-width: 150px;
        min-height: 225px;
        max-width: 150px;
        max-height: 225px;
        flex-basis: 150px;
    }
    .product-bottle-5g .product-bottle-lockup {
        width: 156px;
        height: 234px;
        min-width: 156px;
        min-height: 234px;
        max-width: 156px;
        max-height: 234px;
        flex-basis: 156px;
    }
    .product-bottle-1g .product-bottle-lockup {
        width: 136px;
        height: 204px;
        min-width: 136px;
        min-height: 204px;
        max-width: 136px;
        max-height: 204px;
        flex-basis: 136px;
    }
    .product-professional-visual {
        height: 245px;
        min-height: 245px;
        max-height: 245px;
        flex-basis: 245px;
        overflow: hidden;
    }
    .product-professional-stage {
        width: min(325px, calc(100% + 38px));
    }
    .product-professional-visual::after {
        bottom: 27px;
    }
    .order-product-line {
        gap: 12px;
        padding: 11px;
    }
    .quantity-stepper {
        grid-template-columns: 32px 40px 32px;
    }
    .quantity-stepper button {
        width: 32px;
    }
    .quantity-stepper input {
        width: 40px;
    }
    .order-total-row {
        align-items: flex-end;
    }
}
