/* ============================================
   White's Shoes & Athletics — Editorial Style
   Plum + Amber Color Palette
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-plum-deep: #2D0A31;
    --color-plum: #4A1C4D;
    --color-plum-mid: #6B2D5B;
    --color-plum-light: #8B3D72;
    --color-plum-pale: #F5E6F0;
    --color-plum-ghost: #FDF3F8;
    --color-amber: #D4A574;
    --color-amber-deep: #B8864E;
    --color-amber-light: #E8C9A0;
    --color-amber-pale: #FDF0E0;
    --color-cream: #FAF7F5;
    --color-white: #FFFFFF;
    --color-black: #0D0D0D;
    --color-dark: #1A1A1A;
    --color-gray-900: #212121;
    --color-gray-700: #4A4A4A;
    --color-gray-500: #7A7A7A;
    --color-gray-300: #C8C8C8;
    --color-gray-100: #F0F0F0;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--color-dark);
    background-color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

em {
    font-style: italic;
    font-family: var(--font-serif);
}

/* ---------- Section Labels ---------- */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-amber-deep);
    margin-bottom: var(--space-sm);
    display: block;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--color-plum-deep);
    margin-bottom: var(--space-md);
}

.section-heading em {
    color: var(--color-amber-deep);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-plum);
    color: var(--color-white);
    border: 2px solid var(--color-plum);
}

.btn-primary:hover {
    background: var(--color-plum-deep);
    border-color: var(--color-plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 28, 77, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-plum);
    border: 2px solid var(--color-plum);
}

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

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-plum);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 0.9375rem;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 28, 77, 0.08);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(250, 247, 245, 0.95);
    box-shadow: 0 4px 30px rgba(74, 28, 77, 0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-plum);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-plum);
    color: var(--color-amber-light);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-plum-deep);
    line-height: 1.2;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-amber-deep);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-700);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-amber);
    transition: width var(--transition-base);
}

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

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

.nav-cta {
    background: var(--color-plum) !important;
    color: var(--color-white) !important;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: all var(--transition-base) !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--color-plum-deep) !important;
    color: var(--color-white) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.hamburger {
    width: 100%;
    height: 2px;
    background: var(--color-plum);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 72px;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(74, 28, 77, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-left {
    padding-right: var(--space-lg);
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-amber-deep);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--color-amber);
}

.hero-headline {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    color: var(--color-plum-deep);
    line-height: 1.0;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
}

.hero-headline em {
    color: var(--color-amber-deep);
    font-style: italic;
}

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-gray-700);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* Hero Image Stack */
.hero-right {
    position: relative;
}

.hero-image-stack {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 60px rgba(45, 10, 49, 0.15);
}

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

.hero-img-primary {
    width: 380px;
    height: 500px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img-secondary {
    width: 260px;
    height: 200px;
    bottom: 40px;
    left: 0;
    z-index: 3;
    border: 4px solid var(--color-cream);
}

.hero-badge {
    position: absolute;
    bottom: 280px;
    left: 30px;
    z-index: 4;
    background: var(--color-plum);
    color: var(--color-amber-light);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(74, 28, 77, 0.3);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-500);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-amber), transparent);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Intro Section ---------- */
.intro {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.intro-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(45, 10, 49, 0.1);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.intro-image:hover img {
    transform: scale(1.03);
}

.intro-content {
    padding: var(--space-lg) 0;
}

.intro-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: var(--space-md);
}

.intro-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-gray-100);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-plum);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
    line-height: 1.4;
}

/* ---------- Collection Section ---------- */
.collection {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.collection .section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(45, 10, 49, 0.08);
    transition: all var(--transition-base);
    cursor: pointer;
    background: var(--color-white);
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(45, 10, 49, 0.15);
}

.card-image {
    overflow: hidden;
    height: 280px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.collection-card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: var(--space-lg);
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--color-plum-deep);
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-gray-700);
}

/* ---------- Services Section ---------- */
.services {
    padding: var(--space-3xl) 0;
    background: var(--color-plum-deep);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.services .section-label {
    color: var(--color-amber-light);
}

.services .section-heading {
    color: var(--color-white);
    margin-bottom: var(--space-xl);
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.service-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
}

.service-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.15);
    border-radius: var(--radius-sm);
    color: var(--color-amber-light);
}

.service-item h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.375rem;
}

.service-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.services-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.services-image:hover img {
    transform: scale(1.03);
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--color-amber-pale);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 165, 116, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-text {
    flex: 1;
    min-width: 280px;
}

.cta-text .section-heading {
    margin-bottom: var(--space-sm);
}

.cta-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-gray-700);
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* ---------- Visit Section ---------- */
.visit {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.visit-info {
    padding: var(--space-lg) 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-plum-pale);
    border-radius: var(--radius-sm);
    color: var(--color-plum);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin-bottom: 0.25rem;
}

.contact-value {
    display: block;
    font-size: 1rem;
    color: var(--color-gray-900);
    line-height: 1.6;
}

.contact-value a {
    color: var(--color-plum);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-value a:hover {
    color: var(--color-amber-deep);
}

.visit-map {
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(45, 10, 49, 0.1);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-plum-deep);
    color: var(--color-white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: var(--space-md);
}

.footer-logo .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 0.9375rem;
    color: var(--color-white);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--color-amber-light);
    margin-bottom: var(--space-md);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-amber-light);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-amber-light);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Mobile Menu Overlay ---------- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 10, 49, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ---------- Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .hero-left {
        padding-right: 0;
        order: 2;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-right {
        order: 1;
    }

    .hero-image-stack {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-img-primary {
        width: 280px;
        height: 380px;
    }

    .hero-img-secondary {
        width: 200px;
        height: 160px;
    }

    .intro-grid,
    .services-layout,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .intro-image {
        max-height: 400px;
    }

    .intro-image img,
    .services-image {
        height: 400px;
    }

    .services-image img {
        height: 100%;
    }

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

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

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-description {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
        z-index: 999;
        transition: right var(--transition-base);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-image-stack {
        height: 350px;
    }

    .hero-img-primary {
        width: 220px;
        height: 300px;
    }

    .hero-img-secondary {
        width: 160px;
        height: 120px;
    }

    .hero-badge {
        bottom: 220px;
        left: 15px;
        font-size: 0.6875rem;
    }

    .intro-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

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

    .footer-logo {
        justify-content: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .visit-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-image-stack {
        height: 280px;
    }

    .hero-img-primary {
        width: 180px;
        height: 240px;
    }

    .hero-img-secondary {
        width: 130px;
        height: 100px;
    }

    .hero-badge {
        bottom: 170px;
        left: 10px;
        padding: 0.5rem 0.875rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.8125rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
    }
}
