/* ===========================
   Global Reset & Base
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #ffffff;
    color: #1d1d1f;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ===========================
   Shared Typography
=========================== */

.eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8a04b;
    margin-bottom: 16px;
}

.eyebrow.center { text-align: center; }
.eyebrow.gold    { color: #c8a04b; }

.section-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.section-title.center { text-align: center; }

.section-sub {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: #555555;
    max-width: 620px;
    margin-bottom: 48px;
}

.section-sub.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   Buttons
=========================== */

.btn-white {
    display: inline-block;
    background-color: #ffffff;
    color: #0a0a0a;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-white:hover {
    background-color: #e0e0e0;
    transform: scale(1.02);
}

.btn-outline {
    display: inline-block;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: background-color 0.2s, border-color 0.2s;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   Navigation Bar
=========================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(16px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-brand {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
}

.nav-links a {
    color: #bbbbbb;
    margin-left: 36px;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links .nav-cta {
    color: #ffffff;
    background-color: #c8a04b;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.nav-links .nav-cta:hover {
    background-color: #b08a38;
}

/* ===========================
   Hero Section
=========================== */

.hero {
    min-height: 100vh;
    background-color: #0a0a0a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 80px;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 560px;
    animation: fadeUp 0.9s ease both;
}

.hero-title {
    font-size: 82px;
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -3px;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-sub {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: #aaaaaa;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 1.1s ease both;
}

.hero-img {
    width: 100%;
    max-width: 460px;
    border-radius: 20px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Stats Section
=========================== */

.stats-section {
    background-color: #f5f5f7;
    padding: 80px 56px;
    text-align: center;
}

.stats-section .eyebrow {
    margin-bottom: 52px;
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 860px;
    margin: 0 auto;
}

.stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
}

.stat-divider {
    width: 1px;
    background-color: #cccccc;
    align-self: stretch;
}

.stat-num {
    font-size: 66px;
    font-weight: 800;
    letter-spacing: -2px;
    color: #1d1d1f;
    line-height: 1;
    margin-bottom: 14px;
}

.stat-label {
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    line-height: 1.5;
    text-align: center;
    max-width: 180px;
}

/* ===========================
   Problem Section
=========================== */

/* ===========================
   Roadtrip Sections (Section 3)
=========================== */

.roadtrip-section {
    background: #ffffff;
    padding: 80px 80px;
    text-align: center;
}

.roadtrip-section-contrast {
    background: #f5f5f7;
}

.roadtrip-heading {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #1d1d1f;
    margin-bottom: 40px;
}

.roadtrip-img-wrap {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.roadtrip-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* ===========================
   Product Page Waitlist Form
=========================== */

.waitlist-form-product {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 8px;
}

.waitlist-form-product input[type="email"] {
    padding: 14px 16px;
    border: 1px solid #d2d2d7;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    width: 100%;
}

.waitlist-form-product input[type="email"]:focus {
    border-color: #1d1d1f;
}

.problem-section {
    background-color: #1d1d1f;
    color: #ffffff;
    padding: 100px 80px;
}

.problem-inner {
    max-width: 680px;
}

.problem-inner h2 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 52px;
    color: #ffffff;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.problem-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.problem-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
}

.problem-item p {
    font-size: 15px;
    font-weight: 300;
    color: #aaaaaa;
    line-height: 1.65;
}

/* ===========================
   Features Section
=========================== */

.features-section {
    background-color: #ffffff;
    padding: 100px 80px;
    text-align: center;
}

.features-section .section-title {
    margin-bottom: 12px;
}

.features-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 56px;
}

.feature-card {
    background-color: #f5f5f7;
    border-radius: 24px;
    padding: 40px 28px;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.feature-card p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: #555555;
}

/* ===========================
   How To Use Section
=========================== */

.howto-section {
    background-color: #0d0d0d;
    padding: 100px 80px;
    text-align: center;
}

.howto-header {
    margin-bottom: 64px;
}

.howto-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 16px;
}

.howto-gold {
    color: #c8a04b;
}

.howto-sub {
    font-size: 18px;
    font-weight: 300;
    color: #a0a0a0;
}

.howto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.howto-card {
    background-color: #f0ebe3;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.howto-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.howto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.howto-card-body {
    padding: 24px 20px 28px;
}

.howto-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #c8a04b;
    color: #c8a04b;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
}

.howto-step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 6px;
}

.howto-step-sub {
    font-size: 14px;
    font-weight: 400;
    color: #6e6e73;
}

/* ===========================
   In Action Section
=========================== */

.inaction-section {
    background-color: #ffffff;
    padding: 80px 0 0 0;
    text-align: center;
}

.inaction-section .section-title {
    margin-bottom: 48px;
    padding: 0 80px;
}

.inaction-section .eyebrow {
    padding: 0 80px;
}

.inaction-img-wrap {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.inaction-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* ===========================
   Product Showcase
=========================== */

.showcase-section {
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 100px 80px;
}

.showcase-img-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
}

.showcase-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
}

.showcase-text {
    flex: 1;
    color: #ffffff;
    max-width: 480px;
}

.showcase-text h2 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.showcase-text p {
    font-size: 16px;
    font-weight: 300;
    color: #aaaaaa;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* ===========================
   Market Section
=========================== */

.market-section {
    background-color: #f5f5f7;
    padding: 100px 80px;
    text-align: center;
}

.market-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.tag {
    background-color: #1d1d1f;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===========================
   CTA Section
=========================== */

.cta-section {
    background-color: #0a0a0a;
    color: #ffffff;
    text-align: center;
    padding: 130px 80px;
}

.cta-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 18px;
    font-weight: 300;
    color: #aaaaaa;
    margin-bottom: 40px;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.waitlist-form input[type="email"] {
    padding: 14px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 15px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 300;
    width: 280px;
    outline: none;
    transition: border-color 0.2s;
}

.waitlist-form input[type="email"]:focus {
    border-color: rgba(255,255,255,0.5);
}

.waitlist-form input::placeholder {
    color: rgba(255,255,255,0.35);
}

.waitlist-msg {
    font-size: 16px;
    font-weight: 400;
    color: #c8a04b;
    margin-top: 8px;
}

/* ===========================
   Footer
=========================== */

.footer {
    background-color: #111111;
    padding: 40px 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 24px;
}

.footer-brand {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-nav a {
    color: #888888;
    margin-left: 28px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555555;
    font-size: 13px;
}

.footer-bottom a {
    color: #888888;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: #ffffff;
}


/* ===========================
   Buy Now — Product Section
=========================== */

/* --- Stock Badge & Out of Stock --- */

.stock-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.badge-in-stock {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.badge-low-stock {
    background-color: #fff3e0;
    color: #e65100;
}

.out-of-stock-msg {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    font-size: 14px;
    font-weight: 400;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.out-of-stock-msg a {
    color: #b91c1c;
    font-weight: 600;
    text-decoration: underline;
}

.btn-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.product-section {
    background-color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 64px;
    padding: 64px 80px;
    min-height: 100vh;
}

/* --- Gallery --- */

.gallery {
    flex: 1.1;
    position: sticky;
    top: 80px;
}

/* Hide the radio inputs visually */
.gallery input[type="radio"] {
    display: none;
}

/* Only show the active main image */
.gallery-img {
    display: none;
    width: 100%;
    border-radius: 20px;
    background-color: #f5f5f7;
}

#p1:checked ~ .gallery-main .gallery-img-1 { display: block; }
#p2:checked ~ .gallery-main .gallery-img-2 { display: block; }

.gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.thumb {
    flex: 1;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.thumb img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

/* Highlight the active thumbnail */
#p1:checked ~ .gallery-thumbs .thumb-1,
#p2:checked ~ .gallery-thumbs .thumb-2 {
    border-color: #1d1d1f;
}

/* --- Product Panel --- */

.product-panel {
    flex: 1;
    padding-top: 8px;
}

.product-name {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -2px;
    color: #1d1d1f;
    line-height: 1;
    margin-bottom: 6px;
}

.product-tagline {
    font-size: 18px;
    font-weight: 300;
    color: #888888;
    margin-bottom: 28px;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}

.product-price {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
}

.product-price-note {
    font-size: 14px;
    font-weight: 400;
    color: #888888;
}

.product-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: #555555;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #e5e5e5;
}

/* --- Options --- */

.option-group {
    margin-bottom: 28px;
}

.option-label {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.option-value {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: #555555;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

.swatch-black {
    background-color: #1a1a1a;
}

.color-swatch.selected {
    border-color: #1d1d1f;
    outline: 2px solid #ffffff;
    outline-offset: -4px;
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e5e5e5;
    border-radius: 100px;
    width: fit-content;
    overflow: hidden;
}

.qty-btn {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 300;
    color: #1d1d1f;
    cursor: pointer;
    user-select: none;
}

.qty-btn:hover {
    background-color: #f5f5f7;
}

.qty-num {
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #1d1d1f;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    min-width: 60px;
    text-align: center;
}

/* --- CTA Buttons --- */

.buy-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
    margin-bottom: 28px;
}

.btn-buy-primary {
    display: block;
    background-color: #1d1d1f;
    color: #ffffff;
    text-align: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-buy-primary:hover {
    background-color: #333333;
    transform: scale(1.01);
}

.btn-buy-secondary {
    display: block;
    background-color: #c8a04b;
    color: #ffffff;
    text-align: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-buy-secondary:hover {
    background-color: #b08a38;
    transform: scale(1.01);
}

/* --- Trust Badges --- */

.trust-badges {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 28px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #555555;
}

.badge-icon {
    font-size: 10px;
    color: #c8a04b;
}

/* --- Specs Table --- */

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.spec-label {
    font-weight: 500;
    color: #1d1d1f;
}

.spec-val {
    font-weight: 300;
    color: #555555;
}

/* ===========================
   Buy Now — Feature Highlights
=========================== */

.buy-features-section {
    background-color: #f5f5f7;
    padding: 100px 80px;
    text-align: center;
}

.buy-features-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 56px;
}

.buy-feature {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px 28px;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.buy-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.buy-feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.buy-feature h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.buy-feature p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: #555555;
}

/* ===========================
   Buy Now — In the Box
=========================== */

.inbox-section {
    background-color: #1d1d1f;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 80px;
}

.inbox-inner {
    flex: 1;
    color: #ffffff;
}

.inbox-inner h2 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 44px;
}

.inbox-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.inbox-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.inbox-check {
    font-size: 18px;
    color: #c8a04b;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 700;
}

.inbox-list strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.inbox-list p {
    font-size: 14px;
    font-weight: 300;
    color: #aaaaaa;
    line-height: 1.6;
}

.inbox-image-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
}

.inbox-img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
}


/* ===========================
   About Us — Page Hero
=========================== */

.about-hero {
    background-color: #0a0a0a;
    color: #ffffff;
    text-align: center;
    padding: 140px 80px 120px 80px;
    animation: fadeUp 0.9s ease both;
}

.about-hero-title {
    font-size: 80px;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1.02;
    color: #ffffff;
    margin-bottom: 28px;
}

.about-hero-sub {
    font-size: 20px;
    font-weight: 300;
    color: #aaaaaa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===========================
   About Us — Origin Story
=========================== */

.story-section {
    background-color: #f5f5f7;
    padding: 100px 80px;
}

.story-inner {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.story-text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: #555555;
    margin-bottom: 16px;
}

.story-quote-wrap {
    flex: 1;
    display: flex;
    align-items: center;
}

.story-quote {
    border-left: 3px solid #c8a04b;
    padding-left: 28px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #1d1d1f;
    font-style: italic;
}

.story-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c8a04b;
}

/* ===========================
   About Us — Pull Quote
=========================== */

.pullquote-section {
    background-color: #1d1d1f;
    padding: 100px 80px;
    text-align: center;
}

.pullquote-text {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
    color: #ffffff;
    max-width: 820px;
    margin: 0 auto 24px auto;
    font-style: italic;
}

.pullquote-attr {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c8a04b;
}

/* ===========================
   About Us — Engineering
=========================== */

.built-section {
    background-color: #ffffff;
    padding: 100px 80px;
}

.built-inner {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.built-text {
    flex: 1.2;
}

.built-text h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.built-text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: #555555;
    margin-bottom: 16px;
}

.built-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.built-stat {
    display: flex;
    flex-direction: column;
}

.built-num {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    color: #1d1d1f;
    line-height: 1;
    margin-bottom: 8px;
}

.built-label {
    font-size: 13px;
    font-weight: 400;
    color: #888888;
    line-height: 1.4;
}

/* ===========================
   About Us — Team
=========================== */

.team-section {
    background-color: #f5f5f7;
    padding: 100px 80px;
    text-align: center;
}

.team-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 56px;
    flex-wrap: wrap;
}

.team-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 44px 32px;
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #1d1d1f;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    letter-spacing: 1px;
}

.team-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 4px;
}

.team-role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c8a04b;
    margin-bottom: 16px;
    display: block;
}

.team-bio {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: #555555;
}

/* ===========================
   About Us — Vision
=========================== */

.vision-section {
    background-color: #0a0a0a;
    color: #ffffff;
    text-align: center;
    padding: 120px 80px;
}

.vision-title {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 28px;
}

.vision-sub {
    font-size: 20px;
    font-weight: 300;
    color: #aaaaaa;
    max-width: 640px;
    margin: 0 auto 12px auto;
    line-height: 1.7;
    font-style: italic;
}

.vision-attr {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c8a04b;
    margin-bottom: 48px;
}

.vision-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ===========================
   About Us — Founder Advice
=========================== */

.advice-section {
    background-color: #f5f5f7;
    padding: 100px 80px;
}

.advice-inner {
    max-width: 680px;
}

.advice-inner h2 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    color: #1d1d1f;
    margin-bottom: 28px;
}

.advice-inner p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: #555555;
    margin-bottom: 20px;
}

.btn-dark {
    display: inline-block;
    background-color: #1d1d1f;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    margin-top: 16px;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-dark:hover {
    background-color: #333333;
    transform: scale(1.02);
}


/* ===========================
   Checkout Page
=========================== */

.checkout-section {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    padding: 64px 80px;
    min-height: 100vh;
    background-color: #f5f5f7;
}

/* --- Order Summary (Left) --- */

.checkout-summary {
    flex: 0 0 360px;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px 36px;
    position: sticky;
    top: 96px;
}

.summary-product {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.summary-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    background-color: #f5f5f7;
}

.summary-details {
    flex: 1;
}

.summary-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 2px;
}

.summary-details p {
    font-size: 13px;
    color: #888888;
    font-weight: 300;
}

.summary-color {
    margin-top: 4px;
}

.summary-price {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    flex-shrink: 0;
}

.summary-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555555;
    font-weight: 400;
}

.summary-free {
    color: #2e7d32;
    font-weight: 500;
}

.summary-total {
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1f;
}

.summary-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-badge {
    font-size: 13px;
    color: #555555;
    font-weight: 400;
}

/* --- Form (Right) --- */

.checkout-form-wrap {
    flex: 1;
}

.form-section {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 36px;
    margin-bottom: 20px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-bottom: 16px;
}

.form-group-small {
    flex: 0 0 100px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #1d1d1f;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-optional {
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    color: #888888;
}

.form-group input {
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    color: #1d1d1f;
    background-color: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus {
    border-color: #1d1d1f;
    box-shadow: 0 0 0 3px rgba(29, 29, 31, 0.08);
    background-color: #ffffff;
}

.form-group input::placeholder {
    color: #bbbbbb;
    font-weight: 300;
}

/* --- Quantity in Checkout --- */

.checkout-qty-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.checkout-qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: #ffffff;
    font-size: 20px;
    font-weight: 300;
    color: #1d1d1f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.checkout-qty-btn:hover {
    background-color: #f5f5f7;
}

#qty-display {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    min-width: 48px;
    text-align: center;
}

.qty-unit-price {
    font-size: 14px;
    font-weight: 300;
    color: #888888;
    margin-left: 16px;
}

/* --- Error & Submit --- */

.form-error {
    color: #c0392b;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
}

.btn-checkout-submit {
    width: 100%;
    background-color: #1d1d1f;
    color: #ffffff;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', Arial, sans-serif;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    margin-bottom: 16px;
}

.btn-checkout-submit:hover {
    background-color: #333333;
    transform: scale(1.01);
}

.btn-checkout-submit:disabled {
    background-color: #888888;
    cursor: not-allowed;
    transform: none;
}

.checkout-secure-note {
    text-align: center;
    font-size: 13px;
    font-weight: 300;
    color: #888888;
}

.form-submit-section {
    margin-bottom: 40px;
}


/* ===========================
   Order Success Page
=========================== */

.success-section {
    min-height: 100vh;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.success-inner {
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.success-icon {
    width: 72px;
    height: 72px;
    background-color: #c8a04b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    margin: 0 auto 32px auto;
}

.success-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    color: #ffffff;
    margin-bottom: 16px;
}

.success-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: #aaaaaa;
    margin-bottom: 48px;
}

.success-details {
    background-color: #1d1d1f;
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 40px;
    text-align: left;
}

.success-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
    gap: 24px;
}

.success-detail-row:last-child {
    border-bottom: none;
}

.success-detail-row span:first-child {
    font-weight: 500;
    color: #888888;
    flex-shrink: 0;
}

.success-detail-row span:last-child {
    font-weight: 300;
    color: #ffffff;
    text-align: right;
}

.success-detail-row a {
    color: #c8a04b;
}


/* ===========================
   Dashboard
=========================== */

.dashboard-tabs {
    display: flex;
    gap: 8px;
    padding: 32px 0 24px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.dashboard-tab {
    background: none;
    border: 1px solid #e5e5e5;
    border-radius: 100px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', Arial, sans-serif;
    color: #555555;
    cursor: pointer;
    transition: all 0.2s;
}

.dashboard-tab:hover {
    border-color: #1d1d1f;
    color: #1d1d1f;
}

.dashboard-tab.active {
    background-color: #1d1d1f;
    border-color: #1d1d1f;
    color: #ffffff;
}

.dashboard-panel {
    display: none;
}

.dashboard-panel.active {
    display: block;
}

.dashboard-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 36px;
}

.dashboard-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.dashboard-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 16px;
}

.dashboard-info-label {
    font-size: 13px;
    font-weight: 500;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.dashboard-info-value {
    font-size: 14px;
    font-weight: 400;
    color: #1d1d1f;
    text-align: right;
}

.dashboard-order-status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 100px;
    background-color: #f5f5f7;
    color: #555555;
    text-transform: capitalize;
}

.tracking-steps {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.tracking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    font-size: 11px;
    font-weight: 500;
    color: #bbbbbb;
    text-align: center;
    gap: 8px;
    position: relative;
}

.tracking-step::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    right: -50%;
    height: 2px;
    background-color: #e5e5e5;
    z-index: 0;
}

.tracking-step:last-child::before {
    display: none;
}

.tracking-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #e5e5e5;
    border: 2px solid #e5e5e5;
    z-index: 1;
    flex-shrink: 0;
}

.tracking-step.done .tracking-dot {
    background-color: #c8a04b;
    border-color: #c8a04b;
}

.tracking-step.done {
    color: #1d1d1f;
}

.tracking-step.done::before {
    background-color: #c8a04b;
}

/* ===========================
   Waitlist Banner
=========================== */

.waitlist-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background-color: #1d1d1f;
    border-top: 1px solid rgba(200, 160, 75, 0.4);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.waitlist-banner-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    flex-wrap: wrap;
}

.waitlist-banner-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.waitlist-banner-text strong {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.waitlist-banner-text span {
    font-size: 13px;
    font-weight: 300;
    color: #aaaaaa;
}

.waitlist-banner-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.waitlist-banner-form input[type="email"] {
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 14px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 300;
    width: 240px;
    outline: none;
    transition: border-color 0.2s;
}

.waitlist-banner-form input[type="email"]:focus {
    border-color: #c8a04b;
}

.waitlist-banner-form input::placeholder {
    color: rgba(255,255,255,0.35);
}

.btn-banner-submit {
    padding: 10px 22px;
    background-color: #c8a04b;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', Arial, sans-serif;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.btn-banner-submit:hover {
    background-color: #b08a38;
}

.btn-banner-submit:disabled {
    background-color: #888888;
    cursor: not-allowed;
}

.waitlist-banner-msg {
    font-size: 14px;
    font-weight: 500;
    color: #c8a04b;
}

.waitlist-banner-close {
    background: none;
    border: none;
    color: #888888;
    font-size: 22px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
}

.waitlist-banner-close:hover {
    color: #ffffff;
}

/* ===========================
   Mobile Responsive
=========================== */

@media (max-width: 768px) {

    /* --- Waitlist Banner --- */
    .waitlist-banner {
        padding: 14px 16px;
        gap: 12px;
    }

    .waitlist-banner-inner {
        gap: 12px;
    }

    .waitlist-banner-form input[type="email"] {
        width: 100%;
    }

    /* --- Navbar --- */
    .navbar {
        padding: 12px 16px;
    }

    .nav-brand {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .nav-links a {
        margin-left: 12px;
        font-size: 12px;
        white-space: nowrap;
    }

    .nav-links .nav-cta {
        padding: 6px 12px;
        white-space: nowrap;
    }

    /* --- Hero --- */
    .hero {
        flex-direction: column;
        padding: 60px 24px;
        min-height: auto;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrap {
        width: 100%;
    }

    .hero-img {
        max-width: 100%;
    }

    /* --- Stats --- */
    .stats-section {
        padding: 60px 24px;
    }

    .stats-row {
        flex-direction: column;
        gap: 40px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }

    .stat-num {
        font-size: 48px;
    }

    /* --- Section Titles --- */
    .section-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    /* --- Problem Section --- */
    .problem-section {
        padding: 60px 24px;
    }

    .problem-inner h2 {
        font-size: 36px;
    }

    /* --- Features Section --- */
    .features-section {
        padding: 60px 24px;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        max-width: 100%;
        width: 100%;
    }

    /* --- How To Use Section --- */
    .howto-section {
        padding: 60px 24px;
    }

    .howto-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .howto-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* --- In Action --- */
    .inaction-section .section-title,
    .inaction-section .eyebrow {
        padding: 0 24px;
    }

    /* --- Showcase --- */
    .showcase-section {
        flex-direction: column;
        padding: 60px 24px;
        gap: 40px;
        text-align: center;
    }

    .showcase-text h2 {
        font-size: 36px;
    }

    .showcase-img {
        max-width: 100%;
    }

    /* --- Market --- */
    .market-section {
        padding: 60px 24px;
    }

    /* --- CTA --- */
    .cta-section {
        padding: 80px 24px;
    }

    .cta-title {
        font-size: 44px;
        letter-spacing: -1.5px;
    }

    .waitlist-form {
        flex-direction: column;
        align-items: center;
    }

    .waitlist-form input[type="email"] {
        width: 100%;
        max-width: 320px;
    }

    /* --- Footer --- */
    .footer {
        padding: 32px 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-nav a {
        margin-left: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* --- Buy Now Product Section --- */
    .product-section {
        flex-direction: column;
        padding: 40px 24px;
        min-height: auto;
        gap: 32px;
    }

    .gallery {
        position: static;
        width: 100%;
    }

    .product-name {
        font-size: 36px;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 16px;
    }

    /* --- Buy Features --- */
    .buy-features-section {
        padding: 60px 24px;
    }

    .buy-features-grid {
        flex-direction: column;
        align-items: center;
    }

    .buy-feature {
        max-width: 100%;
        width: 100%;
    }

    /* --- In the Box --- */
    .inbox-section {
        flex-direction: column;
        padding: 60px 24px;
        gap: 40px;
    }

    .inbox-inner h2 {
        font-size: 36px;
    }

    .inbox-img {
        max-width: 100%;
    }

    /* --- About Us --- */
    .about-hero {
        padding: 80px 24px 60px 24px;
    }

    .about-hero-title {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .story-section {
        padding: 60px 24px;
    }

    .story-inner {
        flex-direction: column;
        gap: 40px;
    }

    .story-text h2 {
        font-size: 32px;
    }

    .pullquote-section {
        padding: 60px 24px;
    }

    .pullquote-text {
        font-size: 22px;
    }

    .built-section {
        padding: 60px 24px;
    }

    .built-inner {
        flex-direction: column;
        gap: 40px;
    }

    .built-text h2 {
        font-size: 32px;
    }

    .built-num {
        font-size: 36px;
    }

    .team-section {
        padding: 60px 24px;
    }

    .team-card {
        max-width: 100%;
        width: 100%;
    }

    .vision-section {
        padding: 80px 24px;
    }

    .vision-title {
        font-size: 44px;
        letter-spacing: -1.5px;
    }

    .advice-section {
        padding: 60px 24px;
    }

    .advice-inner h2 {
        font-size: 36px;
    }

    /* --- Checkout --- */
    .checkout-section {
        flex-direction: column;
        padding: 32px 16px;
        gap: 24px;
    }

    .checkout-summary {
        flex: none;
        width: 100%;
        position: static;
    }

    .form-section {
        padding: 24px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group-small {
        flex: 1;
    }

    /* --- Success Page --- */
    .success-section {
        padding: 60px 24px;
    }

    .success-title {
        font-size: 40px;
    }
}
/* ===== DASHBOARD BASE ===== */
.dashboard {
  background: #f6f7f9;
  min-height: 100vh;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.dashboard-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.tab {
  padding: 10px 18px;
  border: none;
  background: #e9eaec;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}

.tab.active {
  background: #111;
  color: white;
}

/* ===== PANELS ===== */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}
.section-box {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

/* ===== PROFILE ===== */
/* PROFILE GRID */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 10px;
}

/* CARD STYLE */
.profile-card {
  background: white;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* HEADINGS */
.profile-card h3 {
  margin-bottom: 14px;
  font-size: 16px;
}

/* TEXT */
.profile-card p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
}

/* ADDRESS BOX */
.address-box {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ORDERS ===== */
#orders .section-box {
  text-align: left;
}

#orders h3 {
  margin-bottom: 20px;
}

.empty {
  text-align: center;
  padding: 40px 20px;
}

.empty p {
  color: #777;
  margin-bottom: 16px;
}

/* FIXED BUTTON WIDTH */
.empty .btn-dark {
  max-width: 280px;
  margin: 0 auto;
  display: block;
}

/* ===== TRACKING ===== */
.track-item {
  background: #fafafa;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* ===== INPUTS ===== */
input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

input:focus {
  border-color: #111;
  outline: none;
}

/* ===== ROW ===== */
.row {
  display: flex;
  gap: 12px;
}

.row input {
  flex: 1;
}

/* ===== BUTTON ===== */
.btn-dark {
  width: 100%;
  background: #111;
  color: white;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background: #333;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
}
.settings-form {
  max-width: 720px;
  margin: 0;                
  padding-top: 10px;
}

/* Heading */
.settings-form h3 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

/* Labels */
.settings-form label {
  display: block;
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 13px;
  color: #555;
}

/* Inputs */
.settings-form input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  outline: none;
  margin-bottom: 12px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

/* Input focus (clean UX) */
.settings-form input:focus {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

/* Button */
.settings-form .btn-dark {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  border-radius: 10px;
}

/* Optional: spacing between sections */
.tab-panel {
  padding-top: 10px;
}