/* Design System */
:root {
    --primary: #8a101b;
    --primary-light: #a81c29;
    --primary-container: #ffeaea;
    --on-primary: #ffffff;

    --secondary: #d35400;
    --secondary-container: #fee7d6;
    --on-secondary-container: #5c2000;

    --surface: #faf7f5;
    --surface-bright: #ffffff;
    --surface-variant: #f2ece9;
    --on-surface: #2b2524;
    --on-surface-variant: #6b5c5a;

    --outline: #a18a88;
    --outline-variant: #e8dbd9;

    --glass: rgba(255, 255, 255, 0.8);
    --glass-blur: blur(16px);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow: 0 12px 30px -8px rgba(138, 16, 27, 0.15);
    --shadow-hover: 0 24px 40px -12px rgba(138, 16, 27, 0.25);

    --transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--surface);
    color: var(--on-surface);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    line-height: 1.1;
}

.title-serif {
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--surface-variant);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary), #300004);
    color: var(--on-primary);
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.italic {
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--on-primary);
    box-shadow: 0 4px 14px 0 rgba(97, 0, 8, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(97, 0, 8, 0.4);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn.sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn.fluid {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    transition: var(--transition);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Noto Serif', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--on-surface-variant);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-group {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.badge {
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge.primary {
    background: var(--primary);
    color: white;
}

.badge.secondary {
    background: var(--secondary-container);
    color: var(--on-secondary-container);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    display: block;
    font-size: 0.8em;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--on-surface-variant);
    max-width: 500px;
    margin-bottom: 32px;
}

.hero-pricing {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-old {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--on-surface-variant);
    opacity: 0.6;
}

.discount-badge {
    background: var(--primary-container);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.shipping-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 40px;
}

.hero-visual {
    position: relative;
}

.image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-img {
    aspect-ratio: 1/1.2;
    transform: rotate(2deg);
}

.overlay-img {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 60%;
    aspect-ratio: 1/1;
    border: 10px solid var(--surface);
    transform: rotate(-6deg);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px) rotate(-6deg);
    }

    50% {
        transform: translate(0, -15px) rotate(-6deg);
    }

    100% {
        transform: translate(0, 0px) rotate(-6deg);
    }
}

/* Features Section */
.section-header {
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

.title-serif {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--on-surface-variant);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr;
    grid-template-rows: repeat(2, 420px);
    gap: 24px;
}

.bento-item {
    border-radius: var(--radius-lg);
    padding: 40px;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: var(--transition);
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.glass {
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}



.accent {
    background: var(--primary-container);
    border: none;
}

.icon-circle {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.bento-item p {
    color: var(--on-surface-variant);
}

.item-visual {
    margin-top: auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
}

.image-card {
    position: relative;
    padding: 0;
    overflow: hidden;
    grid-column: 3;
    grid-row: 1 / span 2;
}

.image-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

/* Swatches */
.swatches-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.swatch-card {
    text-align: center;
    cursor: pointer;
}

.swatch-circle {
    width: 100%;
    max-width: 160px;
    margin: 0 auto 20px auto;
    aspect-ratio: 1;
    background: var(--swatch-color);
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.swatch-card:hover .swatch-circle {
    transform: scale(1.05);
}

.swatch-card h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Order Section */
.order-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.order-info {
    padding: 60px;
    background: var(--primary);
    color: white;
}

.order-info .title-serif {
    color: white;
}

.price-stack {
    margin: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.val.highlighted {
    font-size: 1.5rem;
    font-weight: 700;
}

.val.old {
    text-decoration: line-through;
    opacity: 0.6;
}

.premium-promo-box {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.95)), url('/img/481121369_549516828146448_3615969254251358165_n.jpg') center/cover no-repeat;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 24px;
    margin: 24px 0;
    color: var(--on-surface);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.promo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.promo-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
}

.promo-global-perk {
    background: linear-gradient(135deg, rgba(255, 230, 230, 0.9), rgba(255, 245, 245, 1));
    border: 2px dashed var(--primary);
    border-radius: var(--radius-sm);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.promo-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.tier {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(138, 16, 27, 0.2);
    border-radius: var(--radius-md);
    padding: 20px 10px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(5px);
}

.tier:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.tier-qty {
    font-size: 0.85rem;
    color: var(--on-surface-variant);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tier-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.tier-price span {
    font-size: 0.75rem;
    color: var(--on-surface-variant);
    font-weight: 500;
    display: block;
    margin-top: 4px;
}

.highlight-tier {
    background: linear-gradient(to bottom, #fff, rgba(255, 230, 230, 0.2));
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 8px 20px rgba(138, 16, 27, 0.12);
}

.highlight-tier:hover {
    transform: scale(1.05) translateY(-3px);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(138, 16, 27, 0.3);
}

@media (max-width: 768px) {
    .promo-tiers {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .highlight-tier {
        transform: scale(1);
    }

    .highlight-tier:hover {
        transform: scale(1) translateY(-3px);
    }
}

.order-form-wrapper {
    background: white;
    padding: 60px;
    color: var(--on-surface);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--on-surface-variant);
}

input,
select {
    padding: 14px;
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-sm);
    background: var(--surface-variant);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: #111;
    color: #888;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer .logo {
    color: white;
}

.footer-links {
    display: flex;
    gap: 40px;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .large {
        grid-row: auto;
    }

    .order-card {
        grid-template-columns: 1fr;
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(138, 16, 27, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(138, 16, 27, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(138, 16, 27, 0);
    }
}

@keyframes truck-bump {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px) translateX(2px);
    }
}

.shipping-highlight {
    background: linear-gradient(135deg, rgba(255, 230, 230, 0.9), rgba(255, 245, 245, 1));
    border: 2px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: 12px 20px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary) !important;
    box-shadow: 0 4px 15px rgba(138, 16, 27, 0.15);
    animation: pulse-glow 2s infinite;
}

.shipping-highlight .icon-bump {
    font-size: 1.8rem;
    animation: truck-bump 1s ease-in-out infinite;
}

.mobile-video,
.mobile-badge {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-badge {
        display: flex !important;
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 40px;
    }

    .desktop-badge {
        display: none !important;
    }

    .mobile-video {
        display: block !important;
        margin-bottom: 24px;
        height: 350px;
    }

    .desktop-video {
        display: none !important;
    }

    .nav-links {
        display: none;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .mobile-badge {
        order: 1;
    }

    .hero-visual {
        order: 2;
        padding-top: 0;
    }

    .hero-content {
        order: 3;
    }

    .hero {
        text-align: center;
        align-items: flex-start;
        padding-top: 120px;
        min-height: auto;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    .hero-pricing {
        justify-content: center;
    }

    .shipping-info {
        justify-content: center;
    }

    .hero-visual {
        padding-top: 40px;
    }

    .swatches-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .title-serif {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .image-card,
    .large {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        order: -1;
    }

    .bento-item {
        padding: 24px;
        height: auto;
        min-height: 250px;
    }

    .order-info {
        padding: 30px 20px;
    }

    .order-form-wrapper {
        padding: 30px 20px;
    }
}

/* Animations */
.section,
.bento-item,
.swatch-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 0.8s ease-out;
}

.section.active,
.bento-item.active,
.swatch-card.active {
    opacity: 1;
    transform: translateY(0);
}