/* ============================================================
   KABOOM! STREETWEAR - COMIC POP-ART THEME
   Complete CSS - WITH REAL IMAGES (No Emoji Placeholders)
   ============================================================ */

/* ============ CSS VARIABLES ============ */
:root {
    --black: #1a1a1a;
    --white: #ffffff;
    --yellow: #FFE66D;
    --red: #FF6B6B;
    --blue: #4ECDC4;
    --orange: #FF8A5C;
    --purple: #C3AED6;
    --green: #A8E6CF;
    --dark-bg: #0d0d0d;
    --card-bg: #ffffff;
    --border: 4px solid var(--black);
    --border-thick: 5px solid var(--black);
    --border-radius: 0px;
    --shadow: 6px 6px 0px var(--black);
    --shadow-sm: 4px 4px 0px var(--black);
    --shadow-hover: 8px 8px 0px var(--black);
    --font-heading: 'Bangers', cursive;
    --font-accent: 'Permanent Marker', cursive;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: #f5f0e8;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle, #d4d0c8 1px, transparent 1px);
    background-size: 20px 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ============ HALFTONE OVERLAY ============ */
.halftone-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0,0,0,0.15) 1px, transparent 1px);
    background-size: 8px 8px;
    pointer-events: none;
    z-index: 1;
}

/* ============ COMIC PANEL BASE ============ */
.comic-panel {
    border: var(--border);
    background: var(--card-bg);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.comic-panel:hover {
    box-shadow: var(--shadow-hover);
    transform: translate(-2px, -2px);
}

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--yellow);
    border-bottom: var(--border-thick);
    padding: 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-kaboom {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 3px;
    color: var(--black);
    text-shadow: 2px 2px 0 var(--red);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 6px;
    color: var(--black);
    margin-top: -2px;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 2px;
    padding: 8px 16px;
    border: 3px solid transparent;
    transition: var(--transition);
    color: var(--black);
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--black);
    color: var(--yellow);
    border: 3px solid var(--black);
    box-shadow: var(--shadow-sm);
}

.cart-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 900;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: var(--black);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* ============ BUTTONS ============ */
.btn-comic {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    padding: 14px 28px;
    border: var(--border);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-hover);
    transform: translate(-2px, -2px);
}

.btn-secondary {
    background: var(--black);
    color: var(--yellow);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-hover);
    transform: translate(-2px, -2px);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--yellow);
    box-shadow: var(--shadow-hover);
    transform: translate(-2px, -2px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-cart-add {
    width: 100%;
    background: var(--black);
    color: var(--yellow);
    box-shadow: 4px 4px 0 var(--yellow);
    margin-top: 8px;
}

.btn-cart-add:hover {
    background: var(--red);
    color: var(--white);
    box-shadow: 4px 4px 0 var(--black);
    transform: translate(-2px, -2px);
}

.btn-arrow {
    width: 20px;
    height: 20px;
}

/* ============ SPEECH BUBBLES ============ */
.speech-bubble {
    background: var(--white);
    border: 3px solid var(--black);
    padding: 8px 20px;
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    box-shadow: 3px 3px 0 var(--black);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--black);
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 32px;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 13px solid var(--white);
    z-index: 1;
}

/* ============ EXPLOSION ELEMENTS ============ */
.explosion {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--red);
    text-shadow: 
        3px 3px 0 var(--yellow),
        -1px -1px 0 var(--black),
        1px -1px 0 var(--black),
        -1px 1px 0 var(--black),
        1px 1px 0 var(--black);
    animation: explosionPulse 0.5s ease infinite alternate;
    display: inline-block;
}

@keyframes explosionPulse {
    from { transform: scale(1) rotate(-3deg); }
    to { transform: scale(1.1) rotate(3deg); }
}

.explosion-1 {
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 3rem;
    opacity: 0.3;
}

.explosion-2 {
    position: absolute;
    bottom: 15%;
    left: 3%;
    font-size: 2.5rem;
    opacity: 0.3;
}

/* ============ PRICE STICKER ============ */
.price-sticker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
    padding: 6px 14px;
    border: 3px solid var(--black);
    box-shadow: 3px 3px 0 var(--black);
    transform: rotate(-5deg);
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
}

/* ============ PRODUCT BADGE ============ */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 2px solid var(--black);
    z-index: 5;
    transform: rotate(-3deg);
}

.badge-new {
    background: var(--blue);
    color: var(--black);
}

.badge-hot {
    background: var(--red);
    color: var(--white);
}

/* ============ HERO SECTION ============ */
.hero {
    margin-top: 72px;
    min-height: 85vh;
    background: var(--black);
    display: flex;
    align-items: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    border-bottom: var(--border-thick);
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-bubble {
    margin-bottom: 30px;
    background: var(--red);
    color: var(--white);
}

.hero-bubble::after {
    border-top-color: var(--red);
}

.hero-bubble::before {
    border-top-color: var(--red);
}

.bubble-tag {
    font-size: 1.1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--white);
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0 var(--yellow);
}

.hero-highlight {
    color: var(--yellow);
    display: block;
    font-size: 7rem;
    text-shadow: 
        5px 5px 0 var(--red),
        -2px -2px 0 var(--white);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 1rem;
    color: #ccc;
    letter-spacing: 3px;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-frame {
    width: 400px;
    height: 520px;
    overflow: hidden;
    border: 5px solid var(--yellow);
    box-shadow: 10px 10px 0 var(--red);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============ MARQUEE STRIP ============ */
.marquee-strip {
    background: var(--red);
    border-top: var(--border);
    border-bottom: var(--border);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 20s linear infinite;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--white);
}

.marquee-content span {
    padding: 0 30px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.comic-panel-header {
    display: inline-block;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 4px;
    color: var(--black);
    text-shadow: 3px 3px 0 var(--yellow);
}

.title-underline {
    height: 5px;
    background: var(--red);
    margin-top: 8px;
    border: 2px solid var(--black);
}

.section-desc {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 3px;
    color: #666;
    text-transform: uppercase;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============ PRODUCTS GRID ============ */
.products-grid {
    display: grid;
    gap: 30px;
}

.featured-grid {
    grid-template-columns: repeat(4, 1fr);
}

.shop-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ============ PRODUCT CARD (REAL IMAGES) ============ */
.product-card {
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 var(--black);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    border-bottom: var(--border);
    height: 320px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 16px;
    text-align: center;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 8px;
}

/* ============ PAGE HERO ============ */
.page-hero {
    margin-top: 72px;
    padding: 80px 40px;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: var(--border-thick);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--white);
    letter-spacing: 5px;
    text-shadow: 4px 4px 0 var(--yellow);
    position: relative;
    z-index: 2;
}

.page-hero-sub {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: #aaa;
    letter-spacing: 4px;
    margin-top: 12px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

/* ============ FILTER ============ */
.filter-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px 24px 0;
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    background: var(--white);
    border: var(--border);
    box-shadow: var(--shadow);
}

.filter-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 8px 18px;
    border: 3px solid var(--black);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 3px 3px 0 var(--black);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--yellow);
    color: var(--black);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--black);
}

/* ============ QUICK VIEW MODAL ============ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 5px solid var(--black);
    box-shadow: 10px 10px 0 var(--yellow);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--red);
    color: var(--white);
    border: 3px solid var(--black);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--black);
    color: var(--yellow);
}

.modal-body {
    display: flex;
    gap: 0;
}

.modal-img {
    flex: 1;
    border-right: var(--border);
    overflow: hidden;
}

.modal-product-img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

.modal-info {
    flex: 1;
    padding: 30px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.modal-price {
    position: static;
    transform: rotate(-3deg);
    display: inline-block;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.modal-desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-sizes {
    margin-bottom: 20px;
}

.size-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-btn {
    width: 45px;
    height: 45px;
    border: 3px solid var(--black);
    background: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-btn:hover,
.size-btn.active {
    background: var(--yellow);
    box-shadow: 3px 3px 0 var(--black);
    transform: translate(-2px, -2px);
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* ============ BRAND PREVIEW ============ */
.brand-preview {
    background: var(--black);
    max-width: 100%;
    padding: 80px 24px;
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
}

.brand-preview-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.brand-panel-left {
    flex: 1;
    border-color: var(--yellow);
    box-shadow: 8px 8px 0 var(--yellow);
    overflow: hidden;
}

.brand-visual {
    overflow: hidden;
}

.brand-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brand-panel-left:hover .brand-img {
    transform: scale(1.05);
}

.brand-text-block {
    flex: 1;
}

.brand-bubble {
    background: var(--yellow);
    margin-bottom: 30px;
}

.brand-bubble h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 3px;
}

.brand-bubble::after {
    border-top-color: var(--yellow);
}

.brand-bubble::before {
    border-top-color: var(--yellow);
}

.brand-headline {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 var(--red);
}

.brand-desc {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.8;
}

.brand-preview .btn-outline {
    border-color: var(--yellow);
    color: var(--yellow);
    margin-top: 10px;
}

.brand-preview .btn-outline:hover {
    background: var(--yellow);
    color: var(--black);
}

/* ============ NEWSLETTER ============ */
.newsletter-section {
    background: var(--yellow);
    padding: 60px 24px;
    text-align: center;
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-bubble {
    background: var(--white);
    margin-bottom: 30px;
}

.newsletter-bubble h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.newsletter-section p {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: var(--border);
    border-right: none;
    outline: none;
    text-transform: uppercase;
}

.newsletter-input:focus {
    box-shadow: inset 0 0 0 2px var(--red);
}

.newsletter-success {
    display: none;
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.newsletter-success.show {
    display: block;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
    padding: 15px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 87px;
}

.breadcrumb a {
    color: #888;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb .current {
    color: var(--black);
}

/* ============ PRODUCT DETAIL ============ */
.product-detail-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.product-detail-inner {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.product-gallery {
    flex: 1;
    position: sticky;
    top: 100px;
}

.main-image {
    margin-bottom: 15px;
    overflow: hidden;
}

.detail-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-image:hover .detail-main-img {
    transform: scale(1.03);
}

.thumbnail-row {
    display: flex;
    gap: 10px;
}

.thumbnail {
    flex: 1;
    cursor: pointer;
    border: 3px solid var(--black);
    box-shadow: 3px 3px 0 var(--black);
    background: var(--white);
    padding: 0;
    transition: var(--transition);
    overflow: hidden;
}

.thumbnail.active {
    border-color: var(--red);
    box-shadow: 3px 3px 0 var(--red);
}

.thumbnail:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--black);
}

.thumb-img {
    width: 100%;
    height: 90px;
    object-fit: cover;
}

.product-detail-info {
    flex: 1;
}

.detail-bubble {
    background: var(--red);
    color: var(--white);
    margin-bottom: 25px;
}

.detail-bubble span {
    font-size: 0.95rem;
}

.detail-bubble::after {
    border-top-color: var(--red);
}

.detail-bubble::before {
    border-top-color: var(--red);
}

.detail-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 var(--yellow);
}

.detail-price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.detail-price {
    position: static;
    transform: rotate(-3deg);
    font-size: 1.8rem;
}

.detail-old-price {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 700;
}

.detail-save {
    font-family: var(--font-heading);
    font-size: 1rem;
    background: var(--red);
    color: var(--white);
    padding: 4px 12px;
    border: 2px solid var(--black);
    letter-spacing: 1px;
}

.detail-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 8px 12px;
    background: #f5f0e8;
    border: 2px solid var(--black);
}

.feature-icon {
    font-size: 0.8rem;
    color: var(--red);
}

.size-selector {
    margin-bottom: 25px;
}

.quantity-selector {
    margin-bottom: 30px;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    border: 3px solid var(--black);
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--yellow);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--red);
    color: var(--white);
}

.qty-display {
    width: 60px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border-left: 3px solid var(--black);
    border-right: 3px solid var(--black);
}

.btn-add-detail {
    width: 100%;
    font-size: 1.3rem;
    padding: 18px;
    margin-bottom: 12px;
}

.btn-view-cart {
    width: 100%;
    text-align: center;
}

/* ============ REVIEWS ============ */
.reviews-section {
    border-top: var(--border-thick);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    padding: 25px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 3px solid var(--black);
}

.review-header strong {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    display: block;
}

.review-date {
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 1px;
    font-weight: 700;
}

.review-stars {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--yellow);
    text-shadow: 1px 1px 0 var(--black);
    letter-spacing: 3px;
}

.review-bubble {
    background: #f5f0e8;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
}

.review-bubble p {
    font-style: italic;
}

/* ============ ABOUT PAGE ============ */
.about-story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.story-panel {
    padding: 0;
    text-align: center;
    overflow: hidden;
}

.story-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 3px solid var(--black);
}

.panel-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--red);
    text-shadow: 2px 2px 0 var(--yellow);
}

.panel-year {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    background: var(--yellow);
    padding: 4px 12px;
    border: 2px solid var(--black);
}

.story-visual {
    overflow: hidden;
    border-bottom: 3px solid var(--black);
}

.story-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-panel:hover .story-img {
    transform: scale(1.08);
}

.story-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin: 20px 20px 12px;
}

.story-panel p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    padding: 0 20px 25px;
}

/* Values */
.values-section {
    background: var(--black);
    max-width: 100%;
    padding: 80px 24px;
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.value-card {
    padding: 0;
    text-align: center;
    border-color: var(--yellow);
    box-shadow: 6px 6px 0 var(--yellow);
    overflow: hidden;
}

.value-icon-wrap {
    overflow: hidden;
    border-bottom: 3px solid var(--black);
}

.value-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.value-card:hover .value-img {
    transform: scale(1.1);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin: 20px 15px 10px;
}

.value-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    padding: 0 15px 25px;
}

.values-section .section-title {
    color: var(--white);
}

/* Instagram */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.insta-card {
    cursor: pointer;
    overflow: hidden;
}

.insta-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-card:hover .insta-img {
    transform: scale(1.1);
}

/* ============ CONTACT ============ */
.contact-inner {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-info-col {
    flex: 1;
}

.contact-bubble {
    background: var(--yellow);
    margin-bottom: 30px;
}

.contact-bubble h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.contact-bubble::after {
    border-top-color: var(--yellow);
}

.contact-bubble::before {
    border-top-color: var(--yellow);
}

.contact-headline {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 var(--yellow);
}

.contact-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f5f0e8;
    border: 3px solid var(--black);
    box-shadow: var(--shadow-sm);
}

.contact-icon-symbol {
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.contact-item strong {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 0.9rem;
    color: #555;
}

.contact-form-col {
    flex: 1;
}

.contact-form {
    padding: 35px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 3px solid var(--black);
    outline: none;
    background: #f5f0e8;
    text-transform: uppercase;
    transition: var(--transition);
}

.form-input:focus {
    box-shadow: 4px 4px 0 var(--yellow);
    transform: translate(-2px, -2px);
}

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 9L1 4h10z' fill='%231a1a1a'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
}

.contact-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--white);
    border: var(--border);
    box-shadow: var(--shadow);
}

.contact-success.show {
    display: block;
    animation: bounceIn 0.5s ease;
}

.contact-success h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--red);
    text-shadow: 3px 3px 0 var(--yellow);
    margin-bottom: 15px;
}

.contact-success p {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 1px;
    color: #555;
}

/* ============ CART PAGE ============ */
.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: var(--border);
    box-shadow: var(--shadow);
    margin: 0 auto 25px;
}

.cart-empty h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0 var(--yellow);
}

.cart-empty p {
    font-size: 1rem;
    color: #888;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.cart-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.cart-items-col {
    flex: 2;
}

.cart-summary-col {
    flex: 1;
    position: sticky;
    top: 100px;
}

.cart-header-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    background: var(--black);
    color: var(--yellow);
    border: var(--border);
    margin-bottom: 10px;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    align-items: center;
    padding: 16px;
    background: var(--white);
    border: var(--border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 10px;
    transition: var(--transition);
}

.cart-item:hover {
    box-shadow: var(--shadow);
    transform: translate(-2px, -2px);
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-thumb {
    width: 65px;
    height: 65px;
    border: 2px solid var(--black);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
}

.cart-item-cat {
    font-size: 0.7rem;
    color: #888;
    font-weight: 700;
    letter-spacing: 1px;
}

.cart-item-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.cart-item-qty {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--black);
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--yellow);
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-btn:hover {
    background: var(--red);
    color: var(--white);
}

.cart-qty-num {
    width: 40px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    border-left: 2px solid var(--black);
    border-right: 2px solid var(--black);
}

.cart-item-total {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--red);
}

.cart-item-remove {
    width: 35px;
    height: 35px;
    border: 2px solid var(--black);
    background: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    background: var(--red);
    color: var(--white);
    transform: scale(1.1);
}

.cart-actions-row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

/* Cart Summary */
.cart-summary {
    padding: 30px;
}

.summary-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--black);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.summary-total {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--red);
    margin-top: 10px;
}

.summary-discount {
    color: var(--blue);
}

.summary-divider {
    height: 3px;
    background: var(--black);
    margin: 15px 0;
}

.promo-section {
    display: flex;
    gap: 0;
    margin-top: 20px;
    margin-bottom: 10px;
}

.promo-input {
    flex: 1;
    padding: 10px 14px;
    border: 3px solid var(--black);
    border-right: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    outline: none;
}

.promo-msg {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    min-height: 20px;
}

.promo-msg.success {
    color: green;
}

.promo-msg.error {
    color: var(--red);
}

.btn-checkout {
    width: 100%;
    margin-top: 10px;
    font-size: 1.2rem;
}

.trust-badges {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    color: #777;
    text-transform: uppercase;
}

/* ============ CHECKOUT ============ */
.checkout-section {
    padding-top: 110px;
}

.checkout-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: var(--max-width);
    margin: 0 auto;
}

.checkout-form-col {
    flex: 2;
}

.checkout-summary-col {
    flex: 1;
    position: sticky;
    top: 100px;
}

.checkout-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-shadow: 3px 3px 0 var(--yellow);
}

.demo-banner {
    background: #FFF3CD;
    padding: 20px;
    margin-bottom: 30px;
    border-color: var(--orange);
    box-shadow: 4px 4px 0 var(--orange);
    font-size: 0.85rem;
    line-height: 1.5;
}

.form-section {
    margin-bottom: 35px;
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--black);
}

.btn-place-order {
    width: 100%;
    font-size: 1.3rem;
    padding: 18px;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 2px dashed #ddd;
}

.checkout-item-thumb {
    width: 50px;
    height: 50px;
    border: 2px solid var(--black);
    overflow: hidden;
    flex-shrink: 0;
}

.checkout-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.checkout-item-qty {
    font-size: 0.75rem;
    color: #888;
    font-weight: 700;
}

.checkout-item-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Order Success */
.order-success-modal {
    max-width: 500px;
    text-align: center;
    box-shadow: 10px 10px 0 var(--yellow);
}

.order-success-content {
    padding: 40px;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--red);
    text-shadow: 
        3px 3px 0 var(--yellow),
        -1px -1px 0 var(--black),
        1px -1px 0 var(--black);
    margin-bottom: 10px;
}

.order-success-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 var(--yellow);
}

.order-success-content > p {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.success-note {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 20px;
}

.success-details {
    text-align: left;
    padding: 20px;
    margin-bottom: 25px;
    background: #f5f0e8;
}

.success-details p {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.success-details p:last-child {
    margin-bottom: 0;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ============ TOAST ============ */
.toast {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--yellow);
    padding: 14px 30px;
    border: 3px solid var(--yellow);
    box-shadow: 5px 5px 0 var(--yellow);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3000;
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.toast.show {
    bottom: 30px;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--black);
    border-top: 5px solid var(--yellow);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 24px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.footer-logo .logo-kaboom {
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--red);
}

.footer-logo .logo-sub {
    color: #888;
}

.footer-tagline {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--yellow);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #888;
    transition: var(--transition);
    text-transform: uppercase;
}

.footer-col ul li a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #888;
    transition: var(--transition);
    text-transform: uppercase;
}

.social-link:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 3px solid #333;
}

.footer-bottom-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .about-story-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .brand-preview-inner {
        flex-direction: column;
    }
    .brand-panel-left {
        width: 100%;
    }
    .product-detail-inner {
        flex-direction: column;
    }
    .product-gallery {
        position: static;
        width: 100%;
    }
    .cart-content {
        flex-direction: column;
    }
    .cart-summary-col {
        position: static;
        width: 100%;
    }
    .checkout-inner {
        flex-direction: column;
    }
    .checkout-summary-col {
        position: static;
        width: 100%;
        order: -1;
    }
    .contact-inner {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--yellow);
        flex-direction: column;
        padding: 100px 30px 30px;
        border-left: var(--border-thick);
        transition: right 0.4s ease;
        z-index: 999;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.5rem;
        padding: 12px 0;
        display: block;
        border: none;
    }
    .hamburger {
        display: flex;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        min-height: auto;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-highlight {
        font-size: 4.5rem;
    }
    .hero-image-container {
        margin-top: 30px;
    }
    .hero-frame {
        width: 280px;
        height: 370px;
    }
    .featured-grid,
    .shop-grid {
        grid-template-columns: 1fr;
    }
    .page-hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .modal-body {
        flex-direction: column;
    }
    .modal-img {
        border-right: none;
        border-bottom: var(--border);
    }
    .modal-product-img {
        min-height: 200px;
        height: 250px;
    }
    .cart-header-row {
        display: none;
    }
    .cart-item {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }
    .cart-item-info {
        flex-direction: column;
    }
    .cart-item-qty {
        justify-self: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-input {
        border-right: var(--border);
        border-bottom: none;
    }
    .detail-title {
        font-size: 2rem;
    }
    .detail-features {
        grid-template-columns: 1fr;
    }
    .detail-main-img {
        height: 350px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .brand-headline {
        font-size: 1.8rem;
    }
    .brand-img {
        height: 280px;
    }
    .checkout-title {
        font-size: 2rem;
    }
    .explosion-1,
    .explosion-2 {
        display: none;
    }
    .product-img-wrap {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .logo-kaboom {
        font-size: 1.6rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-highlight {
        font-size: 3.5rem;
    }
    .hero-frame {
        width: 240px;
        height: 320px;
    }
    .product-img-wrap {
        height: 240px;
    }
    .section {
        padding: 50px 16px;
    }
    .cart-actions-row {
        flex-direction: column;
    }
    .cart-actions-row .btn-comic {
        width: 100%;
    }
}