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

:root {
    --black: #0A0A0A;
    --dark: #0F0F0F;
    --light-grey: #F4F4F4;
    --white: #FFFFFF;
    --charcoal: #1F1C18;
    --mid: #2A2A2A;
    --navy: #1A1F2E;
    --warm-charcoal: #1F1C18;
    --gold: #C9A46F;
    --gold-neutral: #D4AF88;
    --red: hsl(0, 100%, 49%);
    --gold-light: #ffc107;
    --gold-pale: #E8D5B7;
    --cream: #F8F4ED;
    --off-white: #EDE8E0;
    --muted: lab(27.09% 0 0);
    --border: rgba(201, 164, 111, 0.15);
    --border-light: rgba(201, 164, 111, 0.3);
    --grad: linear-gradient(135deg, #FFC107 5%, #FFE68A 50%, #E89B00 95%);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--light-grey);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ─── HEADER - ALWAYS VISIBLE ─── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 15, 15, 0.95);     /* Dark from the start */
    backdrop-filter: blur(16px);
    transition: all 0.5s ease;
    border-bottom: 1px solid rgba(212, 168, 67, 0.25);
}

header.scrolled {
    background: var(--white);
    padding: 18px 60px;
    border-bottom: 1px solid var(--border);
}

/* Logo */
.logo {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--white) !important;
    text-decoration: none;
    text-transform: uppercase;
}

.logo span {
    color: var(--gold-light);
}

/* Desktop Navigation */
nav {
    display: flex;
    gap: 2.75rem;
    align-items: center;
}

nav a {
    color: var(--white) !important;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--black) !important;
    background: var(--grad);
    border-radius: 20px;
    padding: 5px 20px;
}

/* CTA Button */
.nav-cta {
    color: var(--white) !important;
    padding: 5px 20px;
    border: 1px solid var(--gold-light);
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--grad) !important;
    color: var(--black) !important;
}

/* Scrolled State */
header.scrolled .logo,
header.scrolled .logo span {
    color: var(--black) !important;
}

header.scrolled nav a {
    color: var(--white) !important;
}

header.scrolled .nav-cta {
    color: var(--black) !important;
    border-color: var(--gold);
}

/* Mobile Toggle */
.nav-toggle span {
    background: var(--white);
}

header.scrolled .nav-toggle span {
    background: var(--black);
}

header.scrolled .nav-cta {
    color: var(--black) !important;
    border-color: var(--gold-light);
}

/* Mobile Toggle */
.nav-toggle span {
    background: var(--white);
}

header.scrolled .nav-toggle span {
    background: var(--black);
}

/* Scrolled State */
header.scrolled .logo {
    color: var(--black) !important;
}

header.scrolled .logo span {
    color: var(--gold-light) !important;
}

/* ─── LUXURY MOBILE NAV ─── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 200;
}

@media (max-width: 768px) {
    .nav-toggle { display: flex !important; }
    nav { display: none !important; }
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--white);
    transition: all 0.4s ease;
}

header.scrolled .nav-toggle span {
    background: var(--black);
}

/* Luxury Mobile Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 88vw;
    background: rgba(15, 15, 15, 0.96);     /* Deep elegant black with slight transparency */
    backdrop-filter: blur(20px);
    z-index: 150;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
    padding: 120px 40px 60px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    border-left: 1px solid rgba(212, 168, 67, 0.2);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 400;
    padding: 18px 0;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    transition: all 0.4s ease;
    letter-spacing: 0.04em;
}

.mobile-nav a:hover {
    color: var(--gold-light);
    padding-left: 12px;
    border-bottom-color: var(--gold);
}

.mobile-nav a::after {
    content: '→';
    float: right;
    opacity: 0;
    transition: all 0.4s ease;
    color: var(--gold-light);
}

.mobile-nav a:hover::after {
    opacity: 1;
}

/* Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(8px);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

.mobile-close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.mobile-close-btn:hover {
    color: var(--gold-light);
    opacity: 1;
    transform: rotate(90deg);
}

/* SUCCESS BANNER */
.success-banner {
    background: rgba(201, 164, 111, 0.1);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--gold);
    padding: 20px 60px;
    display: none;
    align-items: center;
    gap: 16px;
    margin-top: 88px;
}

.success-banner.show {
    display: flex;
}

.success-banner-icon {
    font-size: 1.4rem;
    color: var(--gold-light);
}

.success-banner h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2px;
}

.success-banner p {
    font-size: 0.8rem;
    color: var(--black);
}

/* MAIN LAYOUT */
.cart-page {
    min-height: 100vh;
    padding-top: 88px;
}

.page-hero {
    padding: 60px 60px 40px;
    border-bottom: 1px solid var(--gold-light);
}

.page-hero .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 14px;
    display: block;
}

/* ─── STEP INDICATOR ─── */
.steps {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    padding: 0 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

.step:not(:last-child)::after {
    content: '→';
    color: var(--gold);
    font-size: 1.1rem;
    margin: 0 8px;
    opacity: 0.6;
}

.step-num {
    width: 34px;
    height: 34px;
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
    background: white;
    flex-shrink: 0;
}

.step.active .step-num {
    background: var(--gold-light);
    border-color: var(--gold);
    color: var(--black);
}

.step-label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 500;
    white-space: nowrap;
}

.step.active .step-label {
    color: var(--gold);
    font-weight: 600;
}

/* ─── MOBILE RESPONSIVE ─── */
@media (max-width: 768px) {
    .steps {
        padding: 0 16px;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .step {
        min-width: auto;
        flex: 1 1 auto;
        gap: 6px;
    }

    .step:not(:last-child)::after {
        display: none; /* Hide arrows on very small screens */
    }

    .step-num {
        width: 30px;
        height: 30px;
        font-size: 0.78rem;
    }

    .step-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .steps {
        gap: 4px;
    }

    .step {
        flex-direction: column;
        gap: 4px;
        min-width: 70px;
    }

    .step:not(:last-child)::after {
        content: none;
    }
}

.page-hero h1 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    min-height: calc(100vh - 260px);
}

/* CART ITEMS */
.cart-items {
    padding: 48px 60px;
    border-right: 1px solid var(--gold-light);
}

.cart-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gold-light);
    margin-bottom: 0;
}

.cart-items-header h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.cart-items-header span {
    font-size: 0.72rem;
    color: var(--black);
}

.clear-cart-btn {
    background: none;
    border: none;
    color: var(--black);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.clear-cart-btn:hover {
    color: var(--red);
}

/* CART ITEM ROW - DESKTOP FIRST */
.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--gold-light);
    animation: fadeIn 0.4s ease;
}

.cart-item-img {
    width: 100px;
    height: 120px;
    object-fit: cover;
    filter: brightness(0.85);
    border-radius: 8px;
}

.cart-item-details {
    min-width: 0; /* Prevents text overflow */
}

.cart-item-cat {
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 6px;
    display: block;
}

.cart-item-name {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 4px;
    line-height: 1.3;
}

.cart-item-brand {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 8px;
}

.cart-item-size {
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.05em;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.cart-item-price {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--black);
    white-space: nowrap;
}

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

.qty-btn {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--gold-light);
    color: var(--black);
}

.qty-num {
    width: 36px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--black);
}

.remove-btn {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.remove-btn:hover {
    color: var(--red);
}

/* ─── MOBILE RESPONSIVE ONLY ─── */
@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 70px 1fr;   /* Smaller image */
        gap: 16px;
    }

    .cart-item-img {
        width: 70px;
        height: 70px;
    }

    .cart-item-actions {
        flex-direction: row;           /* Price and controls side by side */
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-top: 12px;
    }

    .cart-item-price {
        font-size: 1.2rem;
    }

    .qty-controls {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .cart-item {
        gap: 12px;
    }

    .cart-item-img {
        width: 65px;
        height: 65px;
    }
}

/* EMPTY STATE */
.empty-cart {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 40px;
}

.empty-cart.show {
    display: flex;
}

.empty-icon {
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.empty-cart h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.empty-cart p {
    color: var(--muted);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--grad);
    color: var(--black);
    text-decoration: none;
    padding: 16px 40px;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    border-radius: 20px;
}

.btn-primary:hover {
    background: var(--gold-pale);
}

/* ORDER SUMMARY */
.order-summary {
    padding: 48px 40px;
    background: var(--navy);
    position: sticky;
    top: 88px;
    align-self: start;
}

.summary-title {
    font-family: 'Nunito Sans', serif;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gold-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--white);
}

.summary-row.subtotal {
    color: var(--white);
}

.summary-row.tax {
    color: var(--white);
}

.summary-row.total {
    font-family: 'Nunito Sans', serif;
    font-size: 1.4rem;
    font-weight: 400;
    border-top: 1px solid var(--gold-light);
    padding-top: 20px;
    margin-top: 16px;
    color: var(--white);
}

.summary-row.total .total-amount {
    color: var(--gold-light);
    font-size: 1.6rem;
}

.checkout-btn {
    display: block;
    width: 100%;
    background: var(--grad);
    color: var(--black);
    border: none;
    padding: 18px;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.4s ease;
    margin-top: 28px;
    text-align: center;
    text-decoration: none;
}

.checkout-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    color: var(--navy);
}

.checkout-btn:disabled {
    background: var(--mid);
    color: var(--muted);
    transform: none;
    pointer-events: none;
}

.secure-badges {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gold-light);
}

.secure-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    margin-bottom: 16px;
}

.badge-row {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    border: 1px solid var(--gold-light);
    padding: 6px 14px;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
}

.badge-icon {
    color: var(--gold-light);
    font-size: 0.9rem;
}
.badge-yoco {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.badge-icon-yoco {
    width: 100px;
    height: 70px;
    object-fit: contain;
    justify-content: center;
}

.badge-icon-payments {
    width: 220px;
    height: 80px;
    object-fit: contain;
    justify-content: center;
}

.continue-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

/* ─── FOOTER ─── */
footer {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

/* Top gradient line */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.1rem;
    background: var(--gold-light);
}

/* Subtle background glow */
footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 37.5rem;
    height: 18.75rem;
    background: radial-gradient(ellipse, rgba(212,168,67,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3.75rem;
    padding: 5rem 3.75rem 3.75rem;
    position: relative;
    z-index: 1;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    font-family: 'Nunito Sans', serif;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 260px;
    margin-bottom: 2rem;
}

.footer-social-row {
    display: flex;
    gap: 0.75rem;
}

.footer-social-btn {
    width: 2.375rem;
    height: 2.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--charcoal);
    color: var(--white);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

.footer-social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: var(--grad-border);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social-btn:hover {
    color: var(--gold-light);
    background: rgba(212, 168, 67, 0.08);
}

.footer-social-btn:hover::before {
    opacity: 1;
}

.footer-col h5 {
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.75rem;
    font-weight: 500;
    display: block;
}

.footer-col a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 0.83rem;
    margin-bottom: 1.75rem;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    position: relative;
    padding-left: 0;
}

.footer-col a::before {
    content: '→';
    position: absolute;
    left: -16px;
    opacity: 0;
    color: var(--gold);
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold-light);
    padding-left: 16px;
}

.footer-col a:hover::before {
    opacity: 1;
}

.footer-divider {
    height: 1px;
    background: var(--grad-border);
    margin: 0 60px;
    opacity: 0.3;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    padding: 28px 60px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.footer-bottom-right {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-bottom-right a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: var(--gold-light);
}

@media(max-width:900px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }

    .cart-items {
        padding: 40px 24px;
        border-right: none;
    }

    .page-hero {
        padding: 40px 24px 30px;
    }

    header {
        padding: 16px 24px;
    }

    nav {
        display: none;
    }

    .success-banner {
        padding: 20px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px 40px;
    }

    .footer-divider {
        margin: 0 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
        text-align: center;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 16px;
    }
}

@media(max-width:480px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
    }

    .cart-item-actions {
        grid-column: 1/-1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .order-summary {
        padding: 32px 24px;
    }
}

/* ─── MOBILE FIRST IMPROVEMENTS ─── */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Base font for readability */
    }

    header {
        padding: 18px 20px !important;
    }

    .logo {
        font-size: 24px !important;
    }

    section, .hero-content {
        padding: 60px 20px !important;
    }

    .hero {
        height: 100dvh;
        min-height: 620px;
    }

    .hero-title {
        font-size: clamp(2.8rem, 10vw, 4.5rem) !important;
    }

    .hero-sub {
        font-size: 1.05rem !important;
        max-width: 100% !important;
    }

    .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .cat-card {
        height: 280px !important;
    }

    .product-card {
        margin-bottom: 20px;
    }

    /* Better spacing in cart */
    .cart-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px;
    }

    .cart-item-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    header {
        padding: 16px 16px !important;
    }

    .hero-content {
        padding: 0 16px 80px !important;
    }

    .btn {
        padding: 14px 28px !important;
        font-size: 0.95rem !important;
    }
}