/* ============================================
   JOGAL - URBAN STREETWEAR LANDING PAGE
   Elite Medan Streetwear Brand
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Bold & Gritty */
    --black: #121212;
    --black-light: #1a1a1a;
    --black-lighter: #242424;
    --yellow: #FE0000;
    --yellow-dark: #E6C200;
    --red: #FE0000;
    --red-dark: #E60000;
    --white: #FFFFFF;
    --gray: #808080;
    --gray-light: #CCCCCC; 
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;
    --section-padding-mobile: 60px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Grainy Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

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

/* ============================================
   URBAN NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.98);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--yellow);
    text-shadow: 2px 2px 0 rgba(254, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--yellow);
}

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

.nav-cta {
    padding: 12px 28px;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--yellow);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-cta:hover {
    color: var(--black);
}

.nav-cta:hover::before {
    left: 0;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2;
}

.nav-hamburger span {
    width: 28px;
    height: 3px;
    background: var(--yellow);
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
}

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

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 215, 0, 0.03) 2px,
            rgba(255, 215, 0, 0.03) 4px
        );
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 4px 4px 0 rgba(255, 215, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subheadline {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: var(--gray-light);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta {
    display: inline-block;
    padding: 18px 48px;
    background: var(--yellow);
    color: var(--black);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.hero-cta:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta:hover {
    color: var(--white);
}

.hero-cta span {
    position: relative;
    z-index: 1;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   SECTION STYLES
   ============================================ */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--yellow);
    color: var(--yellow);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: var(--white);
}

/* ============================================
   HISTORY SECTION
   ============================================ */
.history {
    padding: var(--section-padding) 0;
    background: var(--black);
    position: relative;
}

.history::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--yellow), transparent);
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.history-card {
    padding: 40px;
    background: var(--black-light);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.history-card:hover {
    border-color: var(--yellow);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.history-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.history-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--yellow);
}

.history-card p {
    color: var(--gray-light);
    line-height: 1.8;
}

.history-statement {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--black-lighter);
    border-left: 4px solid var(--yellow);
    position: relative;
}

.history-statement::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(255, 215, 0, 0.1);
    line-height: 1;
}

.history-statement blockquote {
    font-size: 20px;
    line-height: 1.8;
    color: var(--white);
    font-style: italic;
    margin-bottom: 24px;
}

.history-statement cite {
    display: block;
    font-size: 14px;
    font-style: normal;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: 1px;
}

/* ============================================
   CULTURE SECTION
   ============================================ */
.culture {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.culture-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 24px;
}

.culture-visual {
    position: relative;
}

.culture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.culture-item {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border: 2px solid var(--yellow);
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--yellow);
    transition: all 0.3s ease;
    cursor: default;
}

.culture-item:hover {
    background: var(--yellow);
    color: var(--black);
    transform: scale(1.05);
}

/* ============================================
   CRITIQUE SECTION
   ============================================ */
.critique {
    padding: var(--section-padding) 0;
    background: var(--black);
    position: relative;
}

.critique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--red), transparent);
}

.critique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.critique-card {
    padding: 48px 32px;
    background: var(--black-lighter);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.critique-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--red);
    transition: left 0.5s ease;
}

.critique-card:hover {
    border-color: var(--red);
}

.critique-card:hover::before {
    left: 0;
}

.critique-quote {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 1px;
    color: var(--yellow);
    margin-bottom: 24px;
}

.critique-card p {
    color: var(--gray-light);
    line-height: 1.8;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--black);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--yellow);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--black);
    color: var(--yellow);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--yellow);
    z-index: 2;
}

.product-badge.limited {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.product-image {
    aspect-ratio: 1;
    background: var(--black-lighter);
    position: relative;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black) 100%);
}

.product-icon {
    font-size: 64px;
    filter: grayscale(50%);
}

.product-placeholder p {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.4;
    color: var(--yellow);
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--white);
}

.product-info > p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
}

.product-price {
    margin-bottom: 16px;
}

.product-price strong {
    font-size: 18px;
    color: var(--yellow);
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-code {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 1px;
}

.product-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: var(--yellow);
    color: var(--black);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    padding: 40px 32px;
    background: var(--black-lighter);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--yellow);
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--white);
    font-weight: 700;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 14px;
}

/* ============================================
   CHECKOUT SECTION
   ============================================ */
.checkout {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.checkout-info {
    position: sticky;
    top: 120px;
}

.checkout-info p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 40px;
}

.checkout-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: start;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

.checkout-form {
    background: var(--black);
    padding: 48px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--black-lighter);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--yellow);
    border: none;
    color: var(--black);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.form-submit:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 40px;
    letter-spacing: 2px;
    color: var(--yellow);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.5));
}

.footer-brand p {
    color: var(--gray-light);
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--gray);
    font-style: italic;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--yellow);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: var(--gray-light);
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--yellow-dark);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.floating-wa {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.floating-tooltip {
    position: absolute;
    right: 70px;
    background: var(--black);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid var(--yellow);
}

.floating-wa:hover .floating-tooltip {
    opacity: 1;
}

.floating-top {
    position: fixed;
    bottom: 108px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
}

.floating-top.visible {
    opacity: 1;
    pointer-events: all;
}

.floating-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .culture-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .checkout-info {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 24px;
        gap: 32px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    .hero-headline {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .history-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .history-statement {
        padding: 40px 24px;
    }
    
    .culture-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .culture-item {
        font-size: 20px;
    }
    
    .critique-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 24px;
    }
    
    .checkout-form {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .floating-wa {
        width: 56px;
        height: 56px;
        bottom: 24px;
        right: 24px;
    }
    
    .floating-top {
        width: 46px;
        height: 46px;
        bottom: 92px;
        right: 24px;
    }
    
    .floating-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 16px 20px;
    }
    
    .nav-logo {
        font-size: 28px;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .footer-logo-img {
        height: 60px;
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .history-card {
        padding: 32px 24px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-form {
        padding: 24px 20px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-yellow {
    color: var(--yellow);
}

.text-red {
    color: var(--red);
}

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}
