:root {
    --primary: #0f172a;
    --primary-soft: #1e293b;
    --accent: #d6b45a;
    --accent-soft: #f3e7c2;
    --background: #f8f6f0;
    --card: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --border: rgba(214, 180, 90, 0.25);
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    --radius: 28px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}


/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 246, 240, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 16px;
    background: white;
    padding: 5px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.brand h1 {
    font-size: 19px;
    line-height: 1.1;
    color: var(--primary);
}

.brand p {
    font-size: 12px;
    color: var(--accent);
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.nav a {
    opacity: 0.82;
}

.nav a:hover,
.nav a.active {
    color: var(--accent);
    opacity: 1;
}

.nav-cta {
    padding: 11px 16px;
    background: var(--primary);
    color: white !important;
    border-radius: 999px;
    opacity: 1 !important;
}

.menu-btn {
    display: none;
    border: none;
    background: var(--primary);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 22px;
}


/* Hero */

.hero {
    padding: 72px 0 56px;
    background: radial-gradient(circle at 15% 20%, rgba(214, 180, 90, 0.22), transparent 34%), radial-gradient(circle at 88% 18%, rgba(15, 23, 42, 0.10), transparent 30%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.hero h2 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    color: var(--primary);
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.hero p {
    font-size: 17px;
    color: var(--muted);
    max-width: 620px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.btn-outline {
    background: white;
    color: var(--primary);
    border-color: var(--border);
}

.btn-light {
    background: white;
    color: var(--primary);
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 580px;
}

.trust-row div {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.trust-row strong {
    display: block;
    color: var(--primary);
    font-size: 21px;
    line-height: 1.1;
}

.trust-row span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

.hero-card {
    background: linear-gradient(145deg, white, #f6f1df);
    border: 1px solid var(--border);
    border-radius: 36px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.hero-image-box {
    min-height: 460px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.92)), radial-gradient(circle at top left, rgba(214, 180, 90, 0.4), transparent 40%);
    position: relative;
    overflow: hidden;
    padding: 26px;
    display: flex;
    align-items: flex-end;
}

.hero-image-box::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(214, 180, 90, 0.28);
    top: 38px;
    right: -70px;
}

.floating-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--accent);
    color: var(--primary);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.mock-card {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.mock-card h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 8px;
}

.mock-card p {
    color: var(--muted);
    margin-bottom: 14px;
}

.mock-card ul {
    display: grid;
    gap: 8px;
    list-style: none;
}

.mock-card li {
    padding: 9px 12px;
    background: var(--background);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
}


/* Sections */

.section {
    padding: 72px 0;
}

.section-title {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 34px;
}

.section-title span {
    color: var(--accent);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.section-title h2 {
    color: var(--primary);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    margin: 8px 0 10px;
}

.section-title p {
    color: var(--muted);
}


/* Categories */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.05);
    transition: 0.2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-card .icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--accent-soft);
    display: grid;
    place-items: center;
    font-size: 25px;
    margin-bottom: 16px;
}

.category-card h3 {
    color: var(--primary);
    font-size: 19px;
    margin-bottom: 8px;
}

.category-card p {
    color: var(--muted);
    font-size: 14px;
}


/* About */

.about-section {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 36px;
    align-items: center;
}

.about-grid h2 {
    color: var(--primary);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    margin-bottom: 16px;
}

.about-grid p {
    color: var(--muted);
    margin-bottom: 14px;
}

.about-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.about-card h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 18px;
}

.feature-list {
    display: grid;
    gap: 14px;
}

.feature-list div {
    background: white;
    border-radius: 20px;
    padding: 16px;
    border: 1px solid var(--border);
}

.feature-list strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}

.feature-list span {
    color: var(--muted);
    font-size: 14px;
}


/* Brands */

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.brand-pill {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px 16px;
    text-align: center;
    color: var(--primary);
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}


/* CTA */

.cta-section {
    padding: 42px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    border-radius: 34px;
    padding: 34px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--shadow);
}

.cta-card .eyebrow {
    background: rgba(214, 180, 90, 0.18);
    color: var(--accent);
}

.cta-card h2 {
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.1;
    margin-bottom: 10px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 650px;
}


/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 28px;
}

.contact-grid h2 {
    color: var(--primary);
    font-size: 38px;
    margin-bottom: 12px;
}

.contact-grid p {
    color: var(--muted);
    margin-bottom: 18px;
}

.contact-info {
    display: grid;
    gap: 10px;
}

.contact-info a {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 800;
    color: var(--primary);
}

.contact-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.contact-card h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-card strong {
    display: block;
    color: var(--accent);
    font-size: 22px;
    margin-bottom: 10px;
}

.small-note {
    font-size: 13px;
}


/* Footer */

.site-footer {
    padding: 28px 0;
    background: var(--primary);
    color: white;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-inner p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}


/* Responsive */

@media (max-width: 920px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .category-grid,
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-image-box {
        min-height: 380px;
    }
    .cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-inner {
        min-height: 74px;
    }
    .brand img {
        width: 46px;
        height: 46px;
    }
    .brand h1 {
        font-size: 15px;
    }
    .brand p {
        font-size: 10px;
    }
    .menu-btn {
        display: block;
    }
    .nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 82px;
        background: white;
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--shadow);
    }
    .nav.show {
        display: flex;
    }
    .nav a {
        padding: 10px 12px;
    }
    .nav-cta {
        text-align: center;
    }
    .hero {
        padding: 44px 0 36px;
    }
    .hero h2 {
        font-size: 38px;
    }
    .hero p {
        font-size: 15px;
    }
    .trust-row {
        grid-template-columns: 1fr;
    }
    .category-grid,
    .brand-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 54px 0;
    }
    .footer-inner {
        flex-direction: column;
    }
}


/* Products Page */

.products-hero {
    padding: 64px 0 34px;
    background: radial-gradient(circle at 14% 15%, rgba(214, 180, 90, 0.22), transparent 34%), radial-gradient(circle at 86% 20%, rgba(15, 23, 42, 0.08), transparent 28%);
}

.products-hero h2 {
    color: var(--primary);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -1px;
    max-width: 760px;
    margin-bottom: 14px;
}

.products-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 16px;
}

.products-section {
    padding-top: 34px;
}

.catalogue-toolbar {
    display: grid;
    grid-template-columns: 1fr 220px 220px;
    gap: 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 14px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.05);
    margin-bottom: 18px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 0 14px;
    min-height: 52px;
}

.search-box input,
.catalogue-toolbar select {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--background);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    outline: none;
}

.search-box input {
    border: none;
    background: transparent;
    min-height: auto;
}

.catalogue-toolbar select {
    padding: 0 14px;
}

.catalogue-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 12px 0 22px;
    color: var(--muted);
    font-size: 14px;
}

.catalogue-summary strong {
    color: var(--primary);
    font-size: 16px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.05);
    transition: 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.product-image-btn {
    width: 100%;
    height: 210px;
    border: none;
    background: #fafafa;
    padding: 18px;
    cursor: pointer;
}

.product-image-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card-body {
    padding: 18px;
}

.product-brand {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 10px;
}

.product-card h3 {
    color: var(--primary);
    font-size: 17px;
    line-height: 1.25;
    margin-bottom: 6px;
    min-height: 42px;
}

.product-category {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-price {
    color: var(--primary);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
}

.product-desc {
    color: var(--muted);
    font-size: 13px;
    min-height: 40px;
    margin-bottom: 14px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 86px;
    gap: 10px;
}

.product-actions .btn {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 12px;
}

.floating-cart {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: var(--primary);
    color: white;
    display: grid;
    place-items: center;
    font-size: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
    z-index: 90;
}

.floating-cart span {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    display: grid;
    place-items: center;
    border: 2px solid white;
}

.empty-state {
    background: white;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 42px 20px;
    text-align: center;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.05);
}

.empty-state div {
    font-size: 42px;
    margin-bottom: 10px;
}

.empty-state h3 {
    color: var(--primary);
    font-size: 24px;
}

.empty-state p {
    color: var(--muted);
}


/* Modal */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(10px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.modal-overlay.show {
    display: flex;
}

.product-modal-card {
    width: min(920px, 100%);
    background: white;
    border-radius: 32px;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    padding: 24px;
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    border: none;
    background: var(--background);
    color: var(--primary);
    font-size: 26px;
    cursor: pointer;
    z-index: 1;
}

.modal-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
    align-items: center;
}

.modal-image-wrap {
    height: 430px;
    background: #fafafa;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 24px;
}

.modal-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-brand {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.product-modal-card h3 {
    color: var(--primary);
    font-size: 32px;
    line-height: 1.12;
    margin-bottom: 8px;
}

.modal-category {
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 10px;
}

.modal-price {
    color: var(--primary);
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 12px;
}

.modal-description {
    color: var(--muted);
    margin-bottom: 16px;
}

.modal-details {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 18px;
}

.modal-details strong {
    display: block;
    color: var(--primary);
    margin-bottom: 6px;
}

.modal-details p {
    color: var(--muted);
    font-size: 14px;
}


/* Toast */

.toast-message {
    position: fixed;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%) translateY(20px);
    background: var(--primary);
    color: white;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
    z-index: 300;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.22);
}

.toast-message.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 1080px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .catalogue-toolbar {
        grid-template-columns: 1fr 190px 190px;
    }
}

@media (max-width: 820px) {
    .catalogue-toolbar {
        grid-template-columns: 1fr;
    }
    .catalogue-summary {
        align-items: flex-start;
        flex-direction: column;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-image-wrap {
        height: 280px;
    }
    .product-modal-card {
        padding: 18px;
        max-height: 92vh;
        overflow-y: auto;
    }
}

@media (max-width: 560px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .products-hero {
        padding: 44px 0 22px;
    }
    .product-actions {
        grid-template-columns: 1fr;
    }
    .floating-cart {
        right: 16px;
        bottom: 16px;
    }
}


/* Cart Page */

.cart-section {
    padding-top: 34px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 22px;
    align-items: start;
}

.cart-panel {
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 22px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.05);
}

.cart-panel-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.cart-panel h3 {
    color: var(--primary);
    font-size: 24px;
    line-height: 1.2;
}

.cart-panel-header p,
.form-note {
    color: var(--muted);
    font-size: 14px;
    margin-top: 4px;
}

.small-link {
    color: var(--accent);
    font-weight: 900;
    font-size: 14px;
    white-space: nowrap;
}

.sticky-panel {
    position: sticky;
    top: 104px;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 14px;
    margin-bottom: 14px;
    background: #fffdf8;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: #fafafa;
    border: 1px solid rgba(214, 180, 90, 0.18);
    padding: 10px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-content {
    min-width: 0;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.cart-item-card h4 {
    color: var(--primary);
    font-size: 18px;
    line-height: 1.25;
    margin: 6px 0;
}

.cart-item-card p {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.cart-item-card strong {
    color: var(--primary);
    font-size: 16px;
}

.remove-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.09);
    color: #dc2626;
    font-size: 24px;
    cursor: pointer;
    flex: 0 0 auto;
}

.cart-qty-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 7px;
}

.qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 12px;
    background: var(--background);
    color: var(--primary);
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
}

.cart-qty-row span {
    min-width: 26px;
    text-align: center;
    font-weight: 900;
    color: var(--primary);
}

.form-group {
    margin-top: 14px;
}

.form-group label {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--background);
    border-radius: 16px;
    padding: 13px 14px;
    outline: none;
    color: var(--primary);
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: white;
}

.full-btn {
    width: 100%;
    margin-top: 16px;
}

.center-note {
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 940px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
    .sticky-panel {
        position: static;
    }
}

@media (max-width: 560px) {
    .cart-panel {
        padding: 16px;
        border-radius: 24px;
    }
    .cart-item-card {
        grid-template-columns: 92px 1fr;
        gap: 12px;
        padding: 12px;
    }
    .cart-item-image {
        width: 92px;
        height: 92px;
        border-radius: 16px;
    }
    .cart-item-card h4 {
        font-size: 15px;
    }
    .cart-panel-header {
        flex-direction: column;
    }
}


/* Admin Login */

.admin-login-body {
    min-height: 100vh;
    background: radial-gradient(circle at 18% 18%, rgba(214, 180, 90, 0.22), transparent 34%), radial-gradient(circle at 86% 20%, rgba(15, 23, 42, 0.10), transparent 30%), var(--background);
}

.admin-login-wrapper {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px 16px;
}

.admin-login-card {
    width: min(460px, 100%);
    background: white;
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
}

.admin-login-logo {
    width: 82px;
    height: 82px;
    margin: 0 auto 18px;
    border-radius: 24px;
    background: var(--background);
    border: 1px solid var(--border);
    padding: 9px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.admin-login-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.admin-login-card h1 {
    color: var(--primary);
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 8px;
}

.admin-login-subtitle {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 18px;
}

.admin-login-form {
    text-align: left;
    margin-top: 16px;
}

.admin-error {
    background: rgba(239, 68, 68, 0.09);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.18);
    border-radius: 16px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 800;
    margin: 16px 0;
}

.admin-login-note {
    margin-top: 18px;
    padding: 14px;
    border-radius: 18px;
    background: var(--background);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.admin-login-note strong {
    color: var(--primary);
}

.admin-back-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--accent);
    font-weight: 900;
    font-size: 14px;
}

@media (max-width: 560px) {
    .admin-login-card {
        padding: 24px 18px;
        border-radius: 28px;
    }
    .admin-login-card h1 {
        font-size: 23px;
    }
}


/* Admin Login Fix - Force Correct Size */

.admin-login-body {
    min-height: 100vh !important;
    background: radial-gradient(circle at 18% 18%, rgba(214, 180, 90, 0.20), transparent 34%), radial-gradient(circle at 86% 20%, rgba(15, 23, 42, 0.08), transparent 30%), var(--background) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 24px !important;
}

.admin-login-wrapper {
    width: 100% !important;
    min-height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

.admin-login-card {
    width: 100% !important;
    max-width: 430px !important;
    background: #ffffff !important;
    border: 1px solid var(--border) !important;
    border-radius: 32px !important;
    padding: 28px !important;
    text-align: center !important;
    box-shadow: var(--shadow) !important;
}

.admin-login-logo {
    width: 76px !important;
    height: 76px !important;
    max-width: 76px !important;
    max-height: 76px !important;
    margin: 0 auto 16px !important;
    border-radius: 22px !important;
    background: var(--background) !important;
    border: 1px solid var(--border) !important;
    padding: 8px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.admin-login-logo img {
    width: 100% !important;
    height: 100% !important;
    max-width: 60px !important;
    max-height: 60px !important;
    object-fit: contain !important;
    display: block !important;
}

.admin-login-card .eyebrow {
    margin-bottom: 12px !important;
}

.admin-login-card h1 {
    color: var(--primary) !important;
    font-size: 26px !important;
    line-height: 1.15 !important;
    margin-bottom: 8px !important;
}

.admin-login-subtitle {
    color: var(--muted) !important;
    font-size: 14px !important;
    margin-bottom: 16px !important;
}

.admin-login-form {
    text-align: left !important;
    margin-top: 14px !important;
}

.admin-login-form .form-group {
    margin-top: 12px !important;
}

.admin-login-form input {
    height: 48px !important;
    font-size: 14px !important;
}

.admin-login-form .btn {
    min-height: 48px !important;
}

.admin-login-note {
    margin-top: 16px !important;
    padding: 12px !important;
    border-radius: 16px !important;
    background: var(--background) !important;
    border: 1px solid var(--border) !important;
    color: var(--muted) !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}

.admin-back-link {
    display: inline-flex !important;
    margin-top: 16px !important;
    color: var(--accent) !important;
    font-weight: 900 !important;
    font-size: 14px !important;
}


/* Admin Dashboard */

.admin-body {
    min-height: 100vh;
    background: var(--background);
    color: var(--text);
}

.admin-header {
    min-height: 78px;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
}

.admin-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-header-left img {
    width: 48px !important;
    height: 48px !important;
    object-fit: contain !important;
    border-radius: 14px;
    background: var(--background);
    border: 1px solid var(--border);
    padding: 5px;
}

.admin-header-left h1 {
    font-size: 18px;
    color: var(--primary);
    line-height: 1.1;
}

.admin-header-left p {
    font-size: 12px;
    color: var(--accent);
    font-weight: 900;
}

.admin-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-header-right a {
    padding: 10px 14px;
    border-radius: 14px;
    background: var(--background);
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}

.admin-header-right .admin-logout {
    background: var(--primary);
    color: white;
}

.admin-shell {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 22px;
    padding: 22px;
}

.admin-sidebar {
    background: white;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 14px;
    height: calc(100vh - 122px);
    position: sticky;
    top: 100px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.05);
}

.admin-sidebar a {
    display: block;
    padding: 13px 14px;
    border-radius: 16px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 6px;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: var(--primary);
    color: white;
}

.admin-content {
    min-width: 0;
}

.admin-page-title {
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 24px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.admin-page-title h2 {
    color: var(--primary);
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.admin-page-title p {
    color: var(--muted);
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 20px;
}

.admin-stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 22px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.05);
}

.admin-stat-card span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.admin-stat-card strong {
    display: block;
    color: var(--primary);
    font-size: 38px;
    line-height: 1.1;
    margin: 8px 0;
}

.admin-stat-card p {
    color: var(--muted);
    font-size: 13px;
}

.admin-panel {
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 22px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.05);
}

.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-panel-header h3 {
    color: var(--primary);
    font-size: 24px;
}

.admin-panel-header p {
    color: var(--muted);
    font-size: 14px;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.admin-table th {
    background: var(--primary);
    color: white;
    text-align: left;
    padding: 13px 14px;
    font-size: 13px;
}

.admin-table th:first-child {
    border-top-left-radius: 14px;
}

.admin-table th:last-child {
    border-top-right-radius: 14px;
}

.admin-table td {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(214, 180, 90, 0.18);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.admin-empty {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    text-align: center;
}

.admin-empty h4 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 6px;
}

.admin-empty p {
    color: var(--muted);
}

@media (max-width: 940px) {
    .admin-shell {
        grid-template-columns: 1fr;
        padding: 16px;
    }
    .admin-sidebar {
        position: static;
        height: auto;
        display: flex;
        overflow-x: auto;
        border-radius: 22px;
    }
    .admin-sidebar a {
        white-space: nowrap;
        margin-bottom: 0;
        margin-right: 6px;
    }
    .admin-page-title,
    .admin-panel-header,
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .admin-stat-grid {
        grid-template-columns: 1fr;
    }
    .admin-header-right {
        width: 100%;
    }
    .admin-header-right a {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .admin-page-title h2 {
        font-size: 28px;
    }
    .admin-header-left h1 {
        font-size: 15px;
    }
    .admin-header-left img {
        width: 42px !important;
        height: 42px !important;
    }
}


/* Admin Enquiries */

.enquiry-list {
    display: grid;
    gap: 18px;
}

.enquiry-card {
    background: #fffdf8;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 18px;
}

.enquiry-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(214, 180, 90, 0.22);
}

.enquiry-id {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 8px;
}

.enquiry-card h3 {
    color: var(--primary);
    font-size: 22px;
    line-height: 1.2;
}

.enquiry-card-header p {
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
}

.enquiry-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 13px;
    border-radius: 13px;
    background: white;
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
}

.mini-btn.primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.enquiry-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 160px;
    gap: 12px;
    margin: 16px 0;
}

.enquiry-details-grid div {
    background: white;
    border: 1px solid rgba(214, 180, 90, 0.18);
    border-radius: 18px;
    padding: 13px;
}

.enquiry-details-grid strong {
    display: block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 4px;
}

.enquiry-details-grid p {
    color: var(--muted);
    font-size: 13px;
}

.enquiry-products h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
}

.enquiry-products-table {
    min-width: 680px;
}

.muted-text {
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 820px) {
    .enquiry-card-header {
        flex-direction: column;
    }
    .enquiry-actions {
        justify-content: flex-start;
    }
    .enquiry-details-grid {
        grid-template-columns: 1fr;
    }
}


/* Create Quotation */

.quotation-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 22px;
    align-items: start;
}

.quotation-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.quotation-form-grid .full {
    grid-column: 1 / -1;
}

.form-group select {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--background);
    border-radius: 16px;
    padding: 13px 14px;
    outline: none;
    color: var(--primary);
    font-size: 14px;
    font-family: inherit;
    font-weight: 800;
}

.quotation-item-card {
    display: grid;
    grid-template-columns: 92px 1fr 90px 110px 42px;
    gap: 14px;
    align-items: center;
    background: #fffdf8;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 14px;
    margin-bottom: 12px;
}

.quotation-item-img {
    width: 92px;
    height: 92px;
    background: #fafafa;
    border: 1px solid rgba(214, 180, 90, 0.18);
    border-radius: 18px;
    padding: 8px;
}

.quotation-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.quotation-item-info h4 {
    color: var(--primary);
    font-size: 17px;
    line-height: 1.25;
    margin: 6px 0;
}

.quotation-item-info p {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.quotation-item-info small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 5px;
}

.quotation-item-controls label {
    display: block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 6px;
}

.quotation-item-controls input {
    width: 100%;
    height: 42px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 14px;
    padding: 0 10px;
    color: var(--primary);
    font-weight: 900;
    outline: none;
}

.quotation-summary-box {
    margin-top: 18px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 14px;
}

.quotation-summary-box div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(214, 180, 90, 0.18);
}

.quotation-summary-box div:last-child {
    border-bottom: none;
}

.quotation-summary-box span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.quotation-summary-box strong {
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
}

.quotation-summary-box .grand-total {
    margin-top: 4px;
    padding-top: 12px;
}

.quotation-summary-box .grand-total span,
.quotation-summary-box .grand-total strong {
    font-size: 17px;
    color: var(--primary);
}

@media (max-width: 1080px) {
    .quotation-layout {
        grid-template-columns: 1fr;
    }
    .quotation-side .sticky-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .quotation-form-grid {
        grid-template-columns: 1fr;
    }
    .quotation-item-card {
        grid-template-columns: 76px 1fr;
    }
    .quotation-item-img {
        width: 76px;
        height: 76px;
    }
    .quotation-item-controls,
    .quotation-remove {
        grid-column: 1 / -1;
    }
}

.admin-success {
    background: rgba(34, 197, 94, 0.10);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.22);
    border-radius: 18px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 18px;
}

.admin-success {
    background: rgba(34, 197, 94, 0.10);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.22);
    border-radius: 18px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 18px;
}

.quotation-action-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}


/* Premium Compact Header Upgrade */

.site-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 240, 0.92)), radial-gradient(circle at top left, rgba(214, 180, 90, 0.16), transparent 35%) !important;
    border-bottom: 1px solid rgba(214, 180, 90, 0.28) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.header-inner {
    min-height: 70px !important;
}

.brand img {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    padding: 4px !important;
}

.brand h1 {
    font-size: 17px !important;
    letter-spacing: -0.2px;
}

.brand p {
    font-size: 10.5px !important;
}

.nav {
    gap: 16px !important;
    font-size: 13px !important;
}

.nav a {
    padding: 8px 0;
}

.nav-cta {
    padding: 9px 14px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, var(--primary), #26344d) !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

@media (max-width: 768px) {
    .nav {
        top: 76px !important;
    }
}


/* Compact Premium Home Spacing */

.hero {
    padding: 52px 0 42px !important;
}

.section {
    padding: 54px 0 !important;
}

.section-title {
    margin-bottom: 26px !important;
}

.section-title h2 {
    font-size: clamp(26px, 3.5vw, 38px) !important;
}

.hero h2 {
    font-size: clamp(34px, 4.8vw, 58px) !important;
}

.hero p {
    margin-bottom: 22px !important;
}

.hero-actions {
    margin-bottom: 22px !important;
}

.hero-image-box {
    min-height: 390px !important;
}

.category-card,
.about-card,
.contact-card {
    border-radius: 24px !important;
}

.category-card {
    padding: 20px !important;
}

.about-grid h2 {
    font-size: clamp(28px, 3.8vw, 42px) !important;
}


/* Brand Logo Cards */

.brand-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.brand-logo-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 18px 14px;
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
    transition: 0.22s ease;
}

.brand-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(214, 180, 90, 0.5);
}

.brand-logo-card img {
    width: 120px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 10px;
}

.brand-logo-card span {
    font-size: 13px;
    font-weight: 900;
    color: var(--primary);
}

@media (max-width: 920px) {
    .brand-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .brand-logo-grid {
        grid-template-columns: 1fr;
    }
    .brand-logo-card {
        min-height: 110px;
    }
}


/* Premium About Founder Section */

.premium-about-section {
    background: radial-gradient(circle at 12% 18%, rgba(214, 180, 90, 0.16), transparent 32%), linear-gradient(180deg, #ffffff 0%, #f8f6f0 100%) !important;
}

.about-premium-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 34px;
    align-items: center;
}

.about-founder-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 18px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.about-founder-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    border: 1px solid rgba(214, 180, 90, 0.20);
    pointer-events: none;
}

.founder-image-wrap {
    height: 420px;
    border-radius: 26px;
    overflow: hidden;
    background: var(--background);
}

.founder-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: white;
    border-radius: 24px;
    padding: 18px;
    margin-top: 14px;
}

.founder-info span {
    display: inline-flex;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.founder-info h3 {
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 4px;
}

.founder-info p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    margin: 0;
}

.about-premium-content h2 {
    color: var(--primary);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.about-premium-content p {
    color: var(--muted);
    margin-bottom: 13px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 22px 0;
}

.about-highlights div {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.about-highlights strong {
    display: block;
    color: var(--primary);
    font-size: 22px;
    line-height: 1.1;
}

.about-highlights span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    margin-top: 4px;
}

.about-signature-box {
    background: white;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 20px;
}

.about-signature-box strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 5px;
}

.about-signature-box p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 920px) {
    .about-premium-grid {
        grid-template-columns: 1fr;
    }
    .founder-image-wrap {
        height: 360px;
    }
}

@media (max-width: 560px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }
    .founder-image-wrap {
        height: 300px;
    }
    .about-founder-card {
        border-radius: 26px;
        padding: 14px;
    }
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* About Page */

.about-page-hero {
    padding: 58px 0 42px;
    background: radial-gradient(circle at 12% 18%, rgba(214, 180, 90, 0.20), transparent 34%), radial-gradient(circle at 86% 18%, rgba(15, 23, 42, 0.09), transparent 30%), var(--background);
}

.about-page-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: center;
}

.about-page-hero h2 {
    color: var(--primary);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.06;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.about-page-hero p {
    color: var(--muted);
    font-size: 16px;
    max-width: 680px;
}

.about-page-founder {
    background: white;
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.about-page-founder img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 24px;
    background: var(--background);
}

.about-page-founder div {
    margin-top: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    border-radius: 22px;
    padding: 16px;
    color: white;
}

.about-page-founder span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-page-founder h3 {
    font-size: 22px;
    margin: 4px 0;
}

.about-page-founder p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    margin: 0;
}

.about-story-section {
    background: white;
}

.about-story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-story-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
}

.story-label {
    display: inline-flex;
    background: var(--accent-soft);
    color: var(--primary);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.about-story-card h3 {
    color: var(--primary);
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.about-story-card p {
    color: var(--muted);
    font-size: 14.5px;
    margin-bottom: 10px;
}

.about-values-section {
    background: radial-gradient(circle at 10% 10%, rgba(214, 180, 90, 0.14), transparent 30%), var(--background);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.about-values-grid div {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
}

.about-values-grid strong {
    display: block;
    color: var(--primary);
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.about-values-grid span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.about-page-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: white;
    border-radius: 32px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-page-cta h3 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 8px;
}

.about-page-cta p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 18px;
}

@media (max-width: 920px) {
    .about-page-hero-grid,
    .about-story-grid {
        grid-template-columns: 1fr;
    }
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .about-page-hero {
        padding: 42px 0 28px;
    }
    .about-page-founder img {
        height: 300px;
    }
    .about-story-card {
        padding: 20px;
        border-radius: 24px;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    .about-page-cta h3 {
        font-size: 24px;
    }
}


/* Showroom Video Tour */

.showroom-video-section {
    background: radial-gradient(circle at 85% 12%, rgba(214, 180, 90, 0.18), transparent 32%), linear-gradient(180deg, #f8f6f0 0%, #ffffff 100%) !important;
}

.showroom-video-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.showroom-video-content h2 {
    color: var(--primary);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}

.showroom-video-content p {
    color: var(--muted);
    margin-bottom: 18px;
}

.showroom-video-points {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.showroom-video-points div {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 14px 16px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.showroom-video-points strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 3px;
}

.showroom-video-points span {
    color: var(--muted);
    font-size: 13px;
}

.showroom-video-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.video-preview-btn {
    width: 100%;
    height: 430px;
    border: none;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--primary);
    display: block;
    padding: 0;
}

.video-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.78);
    transition: 0.35s ease;
}

.video-preview-btn:hover .video-preview-image {
    transform: scale(1.03);
    filter: brightness(0.68);
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    color: white;
    background: radial-gradient(circle at center, rgba(214, 180, 90, 0.16), transparent 26%), linear-gradient(180deg, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0.52));
}

.play-circle {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(214, 180, 90, 0.96);
    color: var(--primary);
    font-size: 30px;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    border: 4px solid rgba(255, 255, 255, 0.18);
    padding-left: 4px;
}

.video-overlay span {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.3px;
}


/* Video Modal */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.video-modal.show {
    display: flex;
}

.video-modal-box {
    width: min(980px, 100%);
    background: #000;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(214, 180, 90, 0.35);
}

.video-modal-box video {
    width: 100%;
    max-height: 82vh;
    display: block;
    background: #000;
}

.video-modal-close {
    position: fixed;
    top: 22px;
    right: 24px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 16px;
    background: white;
    color: var(--primary);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    z-index: 510;
}

@media (max-width: 920px) {
    .showroom-video-grid {
        grid-template-columns: 1fr;
    }
    .video-preview-btn {
        height: 340px;
    }
}

@media (max-width: 560px) {
    .showroom-video-card {
        border-radius: 26px;
        padding: 12px;
    }
    .video-preview-btn {
        height: 260px;
        border-radius: 20px;
    }
    .play-circle {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
    .video-modal {
        padding: 10px;
    }
    .video-modal-close {
        top: 14px;
        right: 14px;
    }
}


/* Premium Home Hero Upgrade */

.premium-home-hero {
    position: relative;
    overflow: hidden;
    padding: 54px 0 46px !important;
    background: radial-gradient(circle at 14% 18%, rgba(214, 180, 90, 0.22), transparent 30%), radial-gradient(circle at 85% 12%, rgba(15, 23, 42, 0.14), transparent 34%), linear-gradient(135deg, #fffdf7 0%, #f6f0df 46%, #ffffff 100%) !important;
}

.hero-luxury-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(214, 180, 90, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(214, 180, 90, 0.08) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 80%);
}

.premium-hero-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: 0.95fr 1.05fr !important;
    gap: 38px !important;
}

.luxury-eyebrow {
    background: rgba(214, 180, 90, 0.20) !important;
    border: 1px solid rgba(214, 180, 90, 0.35);
}

.premium-hero-content h2 {
    font-size: clamp(40px, 5vw, 68px) !important;
    line-height: 0.98 !important;
    letter-spacing: -2px !important;
    max-width: 720px;
}

.premium-hero-content p {
    font-size: 17px !important;
    max-width: 590px;
}

.premium-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 600px;
}

.premium-trust-strip div {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(214, 180, 90, 0.28);
    border-radius: 20px;
    padding: 15px;
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.premium-trust-strip strong {
    display: block;
    color: var(--primary);
    font-size: 22px;
    line-height: 1.1;
}

.premium-trust-strip span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    margin-top: 4px;
}

.premium-hero-visual {
    position: relative;
}

.luxury-showcase-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 240, 0.94));
    border: 1px solid rgba(214, 180, 90, 0.32);
    border-radius: 36px;
    padding: 16px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
    position: relative;
    overflow: hidden;
}

.luxury-showcase-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(214, 180, 90, 0.18);
    right: -80px;
    top: -80px;
}

.showcase-top,
.showcase-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}

.showcase-top {
    padding: 8px 8px 14px;
}

.showcase-top span,
.showcase-bottom span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.showcase-top strong,
.showcase-bottom strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
}

.showcase-image-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: 190px 190px;
    gap: 12px;
}

.showcase-tile {
    overflow: hidden;
    border-radius: 24px;
    background: var(--background);
    border: 1px solid rgba(214, 180, 90, 0.20);
}

.showcase-tile.large {
    grid-row: span 2;
}

.showcase-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.luxury-showcase-card:hover .showcase-tile img {
    transform: scale(1.04);
}

.showcase-bottom {
    margin-top: 14px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.95);
    color: white;
}

.showcase-bottom span {
    color: rgba(255, 255, 255, 0.62);
}

.showcase-bottom strong {
    color: white;
}

.showcase-bottom a {
    color: var(--accent);
    font-weight: 900;
    white-space: nowrap;
}

@media (max-width: 920px) {
    .premium-hero-grid {
        grid-template-columns: 1fr !important;
    }
    .showcase-image-grid {
        grid-template-rows: 170px 170px;
    }
}

@media (max-width: 560px) {
    .premium-home-hero {
        padding: 38px 0 34px !important;
    }
    .premium-hero-content h2 {
        font-size: 38px !important;
        letter-spacing: -1px !important;
    }
    .premium-trust-strip {
        grid-template-columns: 1fr;
    }
    .showcase-image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 230px 150px 150px;
    }
    .showcase-tile.large {
        grid-row: auto;
    }
    .showcase-top,
    .showcase-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Premium Category Upgrade */

.category-grid {
    gap: 16px !important;
}

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 240, 0.95)) !important;
    border: 1px solid rgba(214, 180, 90, 0.32) !important;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07) !important;
}

.category-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(214, 180, 90, 0.12);
    right: -45px;
    top: -45px;
}

.category-card .icon {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--accent-soft), #fff8df) !important;
    border: 1px solid rgba(214, 180, 90, 0.28);
}

.category-card h3,
.category-card p {
    position: relative;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-7px) !important;
    border-color: rgba(214, 180, 90, 0.58) !important;
}


/* Luxury Bathroom Designs */

.luxury-designs-section {
    background: #ffffff !important;
}

.designs-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: 220px 220px;
    gap: 18px;
}

.design-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(214, 180, 90, 0.28);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
    background: var(--primary);
}

.design-large {
    grid-row: span 2;
}

.design-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.78);
    transition: 0.35s ease;
}

.design-card:hover img {
    transform: scale(1.04);
    filter: brightness(0.66);
}

.design-card div {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: white;
}

.design-card span {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(214, 180, 90, 0.92);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}

.design-card h3 {
    font-size: 24px;
    line-height: 1.12;
    max-width: 440px;
}

.design-card:not(.design-large) h3 {
    font-size: 19px;
}

@media (max-width: 820px) {
    .designs-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .design-card,
    .design-large {
        height: 310px;
        grid-row: auto;
    }
}

@media (max-width: 560px) {
    .design-card,
    .design-large {
        height: 250px;
        border-radius: 24px;
    }
    .design-card h3 {
        font-size: 20px;
    }
}


/* Hero Mini CTA Cleaner */

.luxury-mini-cta {
    margin-top: 14px !important;
    padding: 14px 16px !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.86) !important;
    border: 1px solid rgba(214, 180, 90, 0.32) !important;
    color: var(--primary) !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.luxury-mini-cta span {
    color: var(--muted) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.luxury-mini-cta a {
    color: var(--primary) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}


/* Premium Header Upgrade */

.site-header {
    position: sticky;
    top: 0;
    z-index: 300;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 246, 240, 0.92)), radial-gradient(circle at top left, rgba(214, 180, 90, 0.16), transparent 34%), radial-gradient(circle at top right, rgba(15, 23, 42, 0.08), transparent 28%) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(214, 180, 90, 0.22) !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(214, 180, 90, 0.05) 1px, transparent 1px), linear-gradient(rgba(214, 180, 90, 0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
}

.header-inner {
    position: relative;
    z-index: 1;
    min-height: 76px !important;
    padding-top: 10px;
    padding-bottom: 10px;
}

.brand {
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(214, 180, 90, 0.16);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    border-radius: 18px;
    padding: 8px 14px 8px 10px;
}

.brand img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    background: linear-gradient(145deg, #ffffff, #f8f6f0);
    border: 1px solid rgba(214, 180, 90, 0.20);
    padding: 4px !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.brand h1 {
    font-size: 17px !important;
    font-weight: 900;
    color: var(--primary) !important;
    letter-spacing: -0.2px;
    margin-bottom: 2px;
}

.brand p {
    font-size: 11px !important;
    color: #c89b2d !important;
    font-weight: 800;
}

.nav {
    gap: 16px !important;
}

.nav a {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    position: relative;
    padding: 8px 0;
}

.nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #f1c75a);
    transition: width 0.22s ease;
}

.nav a:not(.nav-cta):hover::after,
.nav a.active:not(.nav-cta)::after {
    width: 100%;
}

.nav a.active:not(.nav-cta) {
    color: #c89b2d !important;
}

.nav-cta {
    padding: 11px 18px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, #16233b, #253552) !important;
    color: white !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-cta:hover {
    transform: translateY(-1px);
}

.menu-btn {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(214, 180, 90, 0.18);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

@media (max-width: 768px) {
    .site-header {
        border-bottom: 1px solid rgba(214, 180, 90, 0.18) !important;
    }
    .header-inner {
        min-height: 72px !important;
    }
    .brand {
        padding: 6px 10px 6px 8px;
    }
    .brand h1 {
        font-size: 15px !important;
    }
    .brand p {
        font-size: 10px !important;
    }
    .nav {
        top: 78px !important;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 240, 0.96)) !important;
        border: 1px solid rgba(214, 180, 90, 0.18);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
        border-radius: 20px;
        padding: 14px;
    }
    .container.header-inner {
        width: min(1180px, calc(100% - 32px));
    }
}


/* Clean Luxury Header - Final Override */

.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 300 !important;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border-bottom: 1px solid rgba(214, 180, 90, 0.18) !important;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.04) !important;
}

.site-header::before {
    display: none !important;
}

.header-inner {
    min-height: 76px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.brand {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    gap: 12px !important;
}

.brand img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    border: 1px solid rgba(214, 180, 90, 0.22) !important;
    padding: 5px !important;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06) !important;
}

.brand h1 {
    font-size: 18px !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    color: #111827 !important;
    letter-spacing: -0.25px !important;
}

.brand p {
    margin-top: 4px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    color: #c89b2d !important;
}

.nav {
    gap: 22px !important;
    align-items: center !important;
}

.nav a {
    color: #1f2937 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    padding: 27px 0 24px !important;
    line-height: 1 !important;
}

.nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 18px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: #c89b2d;
    transition: width 0.2s ease;
}

.nav a:not(.nav-cta):hover::after,
.nav a.active:not(.nav-cta)::after {
    width: 100%;
}

.nav a.active:not(.nav-cta) {
    color: #c89b2d !important;
}

.nav-cta {
    padding: 15px 22px !important;
    border-radius: 16px !important;
    background: #17243d !important;
    color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14) !important;
    margin-left: 2px !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    background: #111827 !important;
}

.menu-btn {
    background: #ffffff !important;
    border: 1px solid rgba(214, 180, 90, 0.22) !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05) !important;
}

@media (max-width: 768px) {
    .header-inner {
        min-height: 72px !important;
    }
    .brand img {
        width: 44px !important;
        height: 44px !important;
    }
    .brand h1 {
        font-size: 15px !important;
    }
    .brand p {
        font-size: 10px !important;
    }
    .nav {
        top: 72px !important;
        background: #ffffff !important;
        border: 1px solid rgba(214, 180, 90, 0.18) !important;
        border-radius: 20px !important;
        padding: 14px !important;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08) !important;
    }
    .nav a {
        padding: 13px 10px !important;
    }
    .nav a::after {
        display: none !important;
    }
    .nav-cta {
        text-align: center !important;
        margin-left: 0 !important;
    }
}


/* Fix View Catalogue Button Text */

.nav a.nav-cta,
.nav a.nav-cta:visited,
.nav a.nav-cta:hover,
.nav a.nav-cta:active {
    color: #ffffff !important;
    opacity: 1 !important;
}

.nav-cta {
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 22px !important;
    border-radius: 16px !important;
    background: #17243d !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.nav-cta span {
    color: #ffffff !important;
}