*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.products-grid::-webkit-scrollbar {
    display: none;
}

:root {
    --white: #ffffff;
    --off-white: #f7f8fa;
    --light-grey: #eef0f3;
    --mid-grey: #9ba3af;
    --dark-grey: #3a3f47;
    --black: #111418;
    --blue: #1a4a8a;
    --blue-light: #2a6abf;
    --blue-pale: #e8f0fb;
    --gold: #b8922a;
    --gold-light: #d4a94a;
    --gold-pale: #f9f3e6;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--dark-grey);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e4e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    transition: transform 0.3s ease;
}

nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: auto;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.02em;
}

.logo-sub {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-grey);
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-cta {
    background: var(--blue);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    background: var(--blue-light);
}

/* ─── HERO ─── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background-image: url('Images/Images-Main/Hero-Image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 74, 138, 0.35);
    z-index: 1;
}

.hero-content {
    padding: 80px 6% 80px 9%;
    position: relative;
    z-index: 2;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-pale);
    border: 1px solid var(--gold-light);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 28px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.hero h1 {
    font-family: var(--serif);
    font-size: 62px;
    font-weight: 400;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero h1 span {
    color: var(--gold);
}

.hero-desc {
    font-size: 17px;
    font-weight: 300;
    color: white;
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-primary {
    background: var(--blue);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
    font-family: var(--sans);
}

.btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid white;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
    font-family: var(--sans);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 600;
    color: white;
    line-height: 1;
}

.stat-num span {
    color: var(--gold);
}

.stat-label {
    font-size: 12px;
    color: white;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 9% 80px 4%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(26, 74, 138, 0.15);
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero-main-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #dde4ef;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(26, 74, 138, 0.10);
    position: relative;
    z-index: 2;
}

.hero-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue);
    color: white;
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-card-img {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--blue-pale) 0%, #dce8f7 100%);
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-card-img svg {
    width: 80px;
    height: 80px;
    opacity: 0.35;
}

.cross-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    opacity: 0.25;
}

.hero-card-img-gold {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.hero-card-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.hero-card-desc {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-card-price {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--blue);
}

.hero-card-badge {
    background: #edfaf4;
    color: #1a8055;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid #b4e4cf;
}

.floating-card-1 {
    position: absolute;
    top: -20px;
    left: -30px;
    z-index: 3;
    background: white;
    border-radius: 14px;
    border: 1px solid #e0e7f5;
    padding: 14px 18px;
    box-shadow: 0 10px 30px rgba(26, 74, 138, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.fc-icon {
    width: 36px;
    height: 36px;
    background: var(--gold-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-icon svg {
    width: 18px;
    height: 18px;
}

.fc-text {
    display: flex;
    flex-direction: column;
}

.fc-label {
    font-size: 11px;
    color: var(--mid-grey);
    letter-spacing: 0.04em;
}

.fc-val {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
}

.floating-card-2 {
    position: absolute;
    bottom: -16px;
    right: -20px;
    z-index: 3;
    background: var(--blue);
    color: white;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 10px 30px rgba(26, 74, 138, 0.25);
    min-width: 160px;
}

.fc2-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.fc2-val {
    font-size: 24px;
    font-weight: 500;
    font-family: var(--serif);
    color: white;
    line-height: 1;
}

.fc2-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* ─── DIVIDER ─── */
.gold-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 60%, transparent 100%);
}

/* ─── SECTION HEADERS ─── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    position: relative;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-eyebrow::before {
    right: calc(100% + 10px);
}

.section-eyebrow::after {
    left: calc(100% + 10px);
}

.section-title {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.15;
}

.section-title em {
    font-style: normal;
    color: var(--blue);
}

.section-sub {
    font-size: 16px;
    color: var(--mid-grey);
    max-width: 520px;
    margin: 14px auto 0;
    line-height: 1.7;
}

/* ─── CATEGORIES ─── */
.categories {
    padding: 100px 9%;
    background: var(--white);
    display: block;
    width: 100%;
    min-height: auto;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.cat-card {
    background: var(--off-white);
    border-radius: 16px;
    border: 1px solid #e4e8f0;
    padding: 36px 28px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.cat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.cat-card:hover {
    background: white;
    box-shadow: 0 16px 48px rgba(26, 74, 138, 0.10);
    transform: translateY(-4px);
    border-color: #c8d5ea;
}

.cat-card:hover::after {
    transform: scaleX(1);
}

.cat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cat-icon svg {
    width: 28px;
    height: 28px;
}

.cat-icon.blue {
    background: var(--blue-pale);
}

.cat-icon.blue svg {
    stroke: var(--blue);
    fill: none;
}

.cat-icon.gold {
    background: var(--gold-pale);
}

.cat-icon.gold svg {
    stroke: var(--gold);
    fill: none;
}

.cat-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.cat-desc {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cat-count {
    font-size: 12px;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: 0.06em;
}

/* ─── FEATURED PRODUCTS ─── */
.products {
    padding: 100px 9%;
    background: var(--off-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e4e8f0;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 20px 50px rgba(26, 74, 138, 0.10);
    transform: translateY(-4px);
}

.product-img {
    height: 200px;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-img.gold-bg {
    background: var(--gold-pale);
}

.product-img.grey-bg {
    background: var(--light-grey);
}

.product-img svg {
    width: 72px;
    height: 72px;
    opacity: 0.4;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--blue);
    color: white;
    font-size: 10px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-badge.gold {
    background: var(--gold);
}

.product-badge.new {
    background: #1a8055;
}

.product-body {
    padding: 24px;
}

.product-category {
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.2;
}

.product-desc {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--blue);
}

.product-action {
    background: var(--blue-pale);
    color: var(--blue);
    border: 1px solid #c0d4ee;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    cursor: pointer;
    font-family: var(--sans);
    transition: all 0.2s;
}

.product-action:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

/* ─── TRUST STRIP ─── */
.trust {
    background: var(--blue);
    padding: 60px 9%;
}

.trust-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-num {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
    color: white;
    line-height: 1;
}

.trust-num span {
    color: var(--gold-light);
}

.trust-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    letter-spacing: 0.04em;
}

/* ─── ABOUT ─── */
.about {
    padding: 100px 9%;
    background: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-main-img {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, #e8f0fb 0%, #dce8f7 100%);
    border-radius: 20px;
    border: 1px solid #dde4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-main-img svg {
    width: 100px;
    height: 100px;
    opacity: 0.25;
}

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gold-pale);
    border-radius: 20px;
    border: 2px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.aa-num {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.aa-text {
    font-size: 12px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
}

.about-corner-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    z-index: 2;
    background: var(--blue);
    color: white;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 10px 30px rgba(26, 74, 138, 0.2);
}

.acb-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.acb-val {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--serif);
    margin-top: 2px;
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.about-content .section-eyebrow::before {
    display: none;
}

.about-content .section-eyebrow::after {
    display: none;
}

.about-text {
    font-size: 16px;
    color: var(--dark-grey);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.about-feat {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feat-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.feat-text {
    font-size: 14px;
    color: var(--dark-grey);
    font-weight: 400;
}

/* ─── CERTIFICATIONS ─── */
.certs {
    padding: 70px 9%;
    background: var(--off-white);
}

.certs-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.certs-label {
    font-size: 13px;
    color: var(--mid-grey);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-weight: 500;
    white-space: nowrap;
}

.certs-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 24px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e4e8f0;
}

.cert-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-grey);
    letter-spacing: 0.06em;
}

.cert-sub {
    font-size: 10px;
    color: var(--mid-grey);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ─── CONTACT ─── */
.contact {
    padding: 100px 9%;
    background: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    width: 100%;
    min-height: auto;
}

.contact-info .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.contact-info .section-eyebrow::before,
.contact-info .section-eyebrow::after {
    display: none;
}

.contact-info p {
    font-size: 16px;
    color: var(--mid-grey);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ci-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-pale);
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ci-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue);
    fill: none;
}

.ci-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.ci-val {
    font-size: 15px;
    color: var(--dark-grey);
}

.contact-form {
    background: var(--off-white);
    border-radius: 20px;
    border: 1px solid #e4e8f0;
    padding: 40px;
}

.form-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mid-grey);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #dde4ef;
    background: white;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--dark-grey);
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: var(--blue);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-gold {
    background: var(--gold);
    color: white;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    width: 100%;
    transition: background 0.2s;
    letter-spacing: 0.02em;
}

.btn-gold:hover {
    background: var(--gold-light);
}

/* ─── MAP SECTION ─── */
.map-section {
    padding: 80px 0;
    background: #f7f9fd;
}

.map-section h2 {
    text-align: center;
    font-size: 42px;
    font-family: var(--serif);
    color: var(--black);
    margin-bottom: 50px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(26, 74, 138, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .map-container {
        height: 300px;
    }
}

/* ─── MAIN CONTENT ─── */
section {
    flex-shrink: 0;
    width: 100%;
    display: block;
}

section.welcome,
section.categories,
section.contact {
    min-height: auto;
    height: auto;
}

main {
    flex: 1;
    width: 100%;
}

/* ─── FOOTER ─── */
footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 9% 30px;
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    width: 100%;
}

.footer-brand .logo-name {
    color: white;
    font-size: 22px;
}

.footer-brand .logo-sub {
    color: var(--gold-light);
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 18px 0 0;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    text-decoration: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-gold {
    color: var(--gold-light);
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        padding: 80px 9%;
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-visual {
        display: none;
    }

    .contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        background: white;
        border-radius: 16px;
        border: 1px solid #e4e8f0;
        overflow: hidden;
        transition: all 0.3s;
    }

    /* Colored left border stripe - remove for product cards on mobile */
    .product-card::before {
        display: none;
    }

    .product-img {
        height: 160px;
        background: var(--blue-pale);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .product-img svg {
        width: 56px;
        height: 56px;
        opacity: 0.4;
    }

    /* Show product description on mobile */
    .product-desc {
        display: block;
        font-size: 12px;
        color: var(--mid-grey);
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .product-body {
        padding: 18px;
    }

    .product-name {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .product-category {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .product-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .product-price {
        font-size: 18px;
    }

    .product-action {
        font-size: 11px;
        padding: 6px 12px;
    }

    /* TRUST ITEMS - Horizontal cards */
    .trust-inner {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .trust-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
        border-radius: 14px;
        position: relative;
        background: white;
        border: 1px solid #e4e8f0;
    }

    /* Colored left border stripe for trust items */
    .trust-item::before {
        content: '';
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 3px;
        background: var(--gold);
    }

    .trust-item:nth-child(odd)::before {
        background: var(--blue);
    }

    .trust-num {
        font-size: 24px;
        flex-shrink: 0;
        color: var(--blue);
    }

    .trust-label {
        font-size: 13px;
        color: var(--dark-grey);
    }

    /* FOOTER - Optimize mobile layout */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .footer-col a {
        font-size: 13px;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 44px;
    }

    .section-title {
        font-size: 34px;
    }

    .hero-stats {
        gap: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* MOBILE RESPONSIVE - Safer layout fixes without breaking sections */
    /* Removed aggressive attribute selectors that were breaking section visibility */
}



---------- NAV SCROLLED ----------
nav.nav-scrolled {
  box-shadow: 0 2px 20px rgba(26, 74, 138, 0.10);
}

---------- NAV ACTIVE LINK ----------
.nav-links a.nav-active {
  color: var(--blue);
  font-weight: 500;
}

---------- HAMBURGER BUTTON ----------
.nav-hamburger {
  display: none !important;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark-grey);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav-hamburger.is-active span:nth-child(1) { 
  transform: translateY(8px) rotate(45deg);
  background: var(--blue);
}

.nav-hamburger.is-active span:nth-child(2) { 
  opacity: 0;
  transform: translateX(-10px);
}

.nav-hamburger.is-active span:nth-child(3) { 
  transform: translateY(-8px) rotate(-45deg);
  background: var(--blue);
}

/* DESKTOP - Hide hamburger */
@media (min-width: 769px) {
  .nav-hamburger {
    display: none !important;
  }
}

/* MOBILE - Show hamburger with classic 3-stack style */
@media (max-width: 768px) {
  .nav-hamburger { 
    display: flex !important;
    flex-direction: column !important;
    gap: 4px;
    padding: 6px 8px;
  }
  
  .nav-hamburger span {
    width: 20px;
    height: 2px;
    background: var(--dark-grey);
  }

  .nav-logo {
    gap: 8px;
  }

  .logo-mark {
    height: 48px;
  }

  .logo-img {
    height: 48px;
  }

  .logo-text {
    display: none;
  }
  
  .nav-cta { 
    display: none; 
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid #e4e8f0;
    padding: 20px 5%;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.nav-open { 
    display: flex; 
  }
  .nav-links li { 
    border-bottom: 1px solid #f0f2f6; 
  }
  .nav-links a { 
    display: block; 
    padding: 14px 0; 
    font-size: 15px; 
  }
}

---------- CONTACT FORM ERRORS ----------
.form-input.field-error {
  border-color: #e24b4a;
  background: #fff8f8;
}
.field-error-msg {
  display: block;
  font-size: 12px;
  color: #a32d2d;
  margin-top: 5px;
  padding-left: 2px;
}
.form-success {
  text-align: center;
  padding: 60px 30px;
  opacity: 0;
  transition: opacity 0.4s;
}

/* ──────────────────────────────────────────────
   Additional CSS for main.js Features
   ────────────────────────────────────────────── */

/* 2. NAV SCROLLED — Shadow effect on scroll */
nav.nav-scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* 3. ACTIVE NAV LINK — Highlight current page */
.nav-links a.nav-active {
    color: var(--blue);
    position: relative;
}

.nav-links a.nav-active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    border-radius: 2px;
}

/* 6. FADE-UP ANIMATIONS — On scroll */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 8. PRODUCT FILTERING */
.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--light-grey);
    background: white;
    color: var(--dark-grey);
    border-radius: 24px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.filter-btn.active {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

/* 9. PRODUCT SEARCH BAR */
#product-search {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

#product-search:focus {
    outline: none;
    border-color: var(--blue);
}

/* 11. ENQUIRY CART — Floating button */
.cart-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 850;
}

.cart-float-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.cart-float-btn.cart-ping {
    animation: cart-ping 0.5s ease;
}

@keyframes cart-ping {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* WhatsApp Float Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 20px;
    right: 88px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: all 0.3s ease;
    z-index: 850;
}

.whatsapp-float-btn:hover {
    background: #20BA5A;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #dc2626;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.cart-count.has-items {
    opacity: 1;
    transform: scale(1);
}

/* 11. ENQUIRY CART DRAWER */
.cart-drawer {
    position: fixed;
    right: -400px;
    top: 80px;
    width: 380px;
    height: calc(100vh - 100px);
    background: white;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px 0 0 12px;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    z-index: 840;
    overflow-y: auto;
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    padding: 16px;
    border-bottom: 1px solid var(--light-grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.cart-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--dark-grey);
}

.cart-items {
    flex: 1;
    list-style: none;
    padding: 8px;
}

.cart-item {
    padding: 12px;
    border-bottom: 1px solid var(--light-grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.cart-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #dc2626;
    font-weight: bold;
}

.cart-footer {
    padding: 16px;
    border-top: 1px solid var(--light-grey);
}

.cart-empty-msg {
    font-size: 13px;
    color: var(--mid-grey);
    text-align: center;
}

.cart-enquire {
    margin-top: 12px;
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 280px;
        right: -280px;
    }
}

/* 12. TOOLTIPS */
.sm-tooltip {
    position: fixed;
    background: var(--dark-grey);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 999;
    white-space: nowrap;
}

.sm-tooltip.visible {
    opacity: 1;
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--black);
  margin: 16px 0 8px;
}
.form-success p {
  color: var(--mid-grey);
  font-size: 15px;
}

/* ── ACCORDION CARDS ── */
.accordion-card {
    transition: all 0.3s ease;
    position: relative;
    min-height: 200px;
}

.accordion-card:hover {
    box-shadow: 0 8px 24px rgba(26, 74, 138, 0.08);
    transform: translateY(-2px);
}

.accordion-content {
    display: none;
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background: var(--off-white);
    border: 1px solid #e4e8f0;
    border-radius: 16px;
    padding: 36px 28px;
    margin: 0;
    overflow-y: auto;
    flex-direction: column;
    justify-content: flex-start;
}

.accordion-card.open .accordion-content {
    display: flex;
    animation: slideRight 0.3s ease;
    right: 0;
}

@keyframes slideRight {
    from {
        opacity: 0;
        right: 100%;
    }
    to {
        opacity: 1;
        right: 0;
    }
}

.accordion-card.open .expand-icon {
    transform: rotate(45deg);
}

.expand-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

/* ── MOBILE CATEGORY CARDS (under 768px) ── */
@media (max-width: 768px) {

    .accordion-content {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        right: auto !important;
        animation: slideDown 0.3s ease !important;
    }

    .accordion-card.open .accordion-content {
        animation: slideDown 0.3s ease !important;
        right: auto !important;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 500px;
        }
    }

    .accordion-card .cat-title {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .accordion-card .expand-icon {
        margin-top: 8px;
    }

  .categories {
    padding: 90px 5% 60px 5%;
  }

  .cat-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .cat-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
  }

  /* Coloured left border stripe */
  .cat-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
  }

  /* Blue cards get blue stripe */
  .cat-card:nth-child(odd)::before {
    background: var(--blue);
  }

  /* Hide the hover bottom-bar on mobile */
  .cat-card::after {
    display: none;
  }

  .cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  /* Hide description text on mobile — keeps it tight */
  .cat-desc {
    display: none;
  }

  /* Title takes remaining space */
  .cat-title {
    flex: 1;
    font-size: 15px;
    margin-bottom: 2px;
  }

  /* Count sits below title, smaller */
  .cat-count {
    font-size: 11px;
    color: var(--mid-grey);
  }

  /* Wrap title + count in a column block */
  .cat-card .cat-title,
  .cat-card .cat-count {
    display: block;
  }

  /* Arrow chevron — injected via ::after on the card's count */
  .cat-count::after {
    content: ' ›';
    font-size: 14px;
    color: var(--blue);
  }
}

---------- PRODUCT FILTER BAR ----------
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid #dde4ef;
  background: white;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-grey);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--blue); color: white; border-color: var(--blue); }

---------- PRODUCT SEARCH ----------
#product-search {
  width: 100%;
  max-width: 400px;
  padding: 11px 18px;
  border-radius: 8px;
  border: 1px solid #dde4ef;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dark-grey);
  outline: none;
  margin-bottom: 28px;
  transition: border-color 0.2s;
}
#product-search:focus { border-color: var(--blue); }

---------- ENQUIRY CART FLOATING BUTTON ----------
.cart-float-btn {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(184,146,42,0.35);
  transition: background 0.2s, transform 0.2s;
}
.cart-float-btn:hover { background: var(--gold-light); transform: scale(1.06); }
.cart-float-btn.cart-ping { animation: cartPing 0.45s ease; }
@keyframes cartPing { 0%,100%{transform:scale(1)} 50%{transform:scale(1.22)} }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  border: 2px solid white;
}
.cart-count.has-items { opacity: 1; }

---------- ENQUIRY CART DRAWER ----------
.cart-drawer {
  position: fixed;
  bottom: 96px;
  left: 32px;
  z-index: 901;
  width: 300px;
  background: white;
  border-radius: 16px;
  border: 1px solid #e4e8f0;
  box-shadow: 0 20px 60px rgba(26,74,138,0.15);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.97);
  transform-origin: bottom left;
  transition: opacity 0.25s, transform 0.25s;
}
.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid #eef0f3;
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
}
.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: var(--mid-grey);
  line-height: 1;
  padding: 0;
}
.cart-items { list-style: none; padding: 10px 0; max-height: 220px; overflow-y: auto; }
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--dark-grey);
  border-bottom: 1px solid #f5f6f8;
}
.cart-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mid-grey);
  font-size: 12px;
  padding: 2px 4px;
  transition: color 0.2s;
}
.cart-remove:hover { color: #e24b4a; }
.cart-footer { padding: 14px 18px; }
.cart-empty-msg { font-size: 13px; color: var(--mid-grey); line-height: 1.6; text-align: center; }

---------- TOOLTIP ----------
.sm-tooltip {
  position: fixed;
  z-index: 9999;
  background: var(--black);
  color: white;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.15s;
}
.sm-tooltip.visible { opacity: 1; }

