/**
 * TightTrash — Custom Styles
 * Extends Bootstrap 5 with a modern, clean aesthetic
 */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --tt-primary: #1a5c1a;
    --tt-primary-light: #2d8a2d;
    --tt-primary-dark: #0d3d0d;
    --tt-accent: #f4a261;
    --tt-accent-hover: #e76f51;
    --tt-dark: #1a1a2e;
    --tt-light: #fefefe;
    --tt-bg: #f8f9fa;
    --tt-glass-bg: rgba(255, 255, 255, 0.75);
    --tt-glass-border: rgba(255, 255, 255, 0.35);
    --tt-fly-red: #c0392b;
    --tt-fly-eye: #e74c3c;
    --tt-shadow: 0 8px 32px rgba(26, 92, 26, 0.12);
    --tt-radius: 16px;
    --tt-radius-sm: 8px;
    --tt-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--tt-bg);
    color: #2c2c2c;
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: var(--tt-primary); transition: var(--tt-transition); }
a:hover { color: var(--tt-primary-dark); }

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

/* ===== NAVBAR — FROSTED GLASS ===== */
.tt-navbar {
    background: var(--tt-glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--tt-glass-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 0.75rem 0;
    transition: var(--tt-transition);
    z-index: 1050;
}

.tt-navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

.tt-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--tt-primary) !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tt-navbar .navbar-brand img.sticker-logo {
    height: 42px;
    width: auto;
    border-radius: 8px;
}

.tt-navbar .nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: #555 !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--tt-radius-sm);
    transition: var(--tt-transition);
}

.tt-navbar .nav-link:hover, .tt-navbar .nav-link.active {
    color: var(--tt-primary) !important;
    background: rgba(26, 92, 26, 0.06);
}

/* Cart badge */
.tt-cart-btn {
    position: relative;
    background: var(--tt-primary);
    color: #fff !important;
    border-radius: 50px;
    padding: 0.45rem 1rem !important;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tt-cart-btn:hover { background: var(--tt-primary-dark); }

.tt-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--tt-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.tt-cart-badge.pulse {
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

/* ===== HAMBURGER MENU ===== */
.tt-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1060;
}

.tt-hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--tt-primary);
    border-radius: 2px;
    transition: var(--tt-transition);
    transform-origin: center;
}

.tt-hamburger.active span:nth-child(1) {
    transform: translateY(8.75px) rotate(45deg);
}
.tt-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.tt-hamburger.active span:nth-child(3) {
    transform: translateY(-8.75px) rotate(-45deg);
}

/* Mobile nav overlay */
.tt-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 92, 26, 0.97);
    z-index: 1045;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.tt-mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.tt-mobile-nav a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem 2rem;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--tt-transition);
}

.tt-mobile-nav a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.tt-mobile-nav .tt-mobile-cart {
    background: var(--tt-accent);
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    margin: 1rem 2rem 0;
    width: auto;
    display: inline-flex;
    gap: 8px;
    border: none;
}

@media (max-width: 991px) {
    .tt-hamburger { display: flex; }
    .tt-desktop-nav { display: none !important; }
    .tt-mobile-nav { display: flex; }
}

/* ===== HERO SECTION ===== */
.tt-hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #f0f7f0 50%, #e8f0e8 100%);
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.tt-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26,92,26,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.tt-hero-badge {
    display: inline-block;
    background: var(--tt-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.tt-hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--tt-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.tt-hero h1 .highlight {
    color: var(--tt-primary);
    position: relative;
}

.tt-hero-sub {
    font-size: 1.2rem;
    color: #666;
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.tt-hero-sticker {
    max-width: 320px;
    border-radius: var(--tt-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    margin: 0 auto;
    display: block;
}

/* ===== BUTTONS ===== */
.btn-tt-primary {
    background: var(--tt-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--tt-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-tt-primary:hover {
    background: var(--tt-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,92,26,0.3);
}

.btn-tt-accent {
    background: var(--tt-accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--tt-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-tt-accent:hover {
    background: var(--tt-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244,162,97,0.4);
}

.btn-tt-outline {
    background: transparent;
    color: var(--tt-primary);
    border: 2.5px solid var(--tt-primary);
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--tt-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-tt-outline:hover {
    background: var(--tt-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.tt-section {
    padding: 5rem 0;
}

.tt-section-alt {
    background: #fff;
}

.tt-section-dark {
    background: var(--tt-dark);
    color: #fff;
}

.tt-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--tt-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.tt-section-sub {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.tt-section-dark .tt-section-title { color: #fff; }
.tt-section-dark .tt-section-sub { color: rgba(255,255,255,0.65); }

/* ===== PRODUCT CARDS ===== */
.tt-product-card {
    background: #fff;
    border-radius: var(--tt-radius);
    padding: 2rem;
    box-shadow: var(--tt-shadow);
    border: 1px solid rgba(26,92,26,0.08);
    transition: var(--tt-transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tt-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(26,92,26,0.15);
    border-color: rgba(26,92,26,0.2);
}

.tt-product-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--tt-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 2.5rem;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tt-product-card .sticker-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto 1.25rem;
    display: block;
}

.tt-product-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--tt-dark);
    margin-bottom: 0.5rem;
}

.tt-product-card .tt-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--tt-primary);
    margin-bottom: 1.25rem;
}

.tt-product-card .tt-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #999;
}

.tt-qty-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.tt-qty-selector button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--tt-primary);
    cursor: pointer;
    transition: var(--tt-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-qty-selector button:hover {
    border-color: var(--tt-primary);
    background: var(--tt-primary);
    color: #fff;
}

.tt-qty-selector input {
    width: 50px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.35rem;
    outline: none;
}

.tt-qty-selector input:focus {
    border-color: var(--tt-primary);
}

/* ===== FLY ANIMATIONS ===== */
.tt-fly {
    position: absolute;
    width: 28px;
    height: 28px;
    pointer-events: none;
    z-index: 10;
}

.tt-fly-body {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Fly SVG shape */
.tt-fly svg { width: 100%; height: 100%; }

.tt-fly-fly1 {
    animation: fly-drift-1 8s ease-in-out infinite;
}

.tt-fly-fly2 {
    animation: fly-drift-2 11s ease-in-out infinite;
    animation-delay: -4s;
}

.tt-fly-fly3 {
    animation: fly-drift-3 7s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes fly-drift-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(60px, -30px) rotate(15deg); }
    50% { transform: translate(120px, 10px) rotate(-10deg); }
    75% { transform: translate(60px, 40px) rotate(20deg); }
}

@keyframes fly-drift-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    30% { transform: translate(-80px, 20px) rotate(-20deg); }
    60% { transform: translate(-40px, -50px) rotate(15deg); }
    80% { transform: translate(-100px, -20px) rotate(-5deg); }
}

@keyframes fly-drift-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(40px, 60px) rotate(30deg) scale(0.8); }
    66% { transform: translate(-30px, -40px) rotate(-25deg) scale(1.1); }
}

/* Wing buzzing animation */
@keyframes wing-buzz {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.2); }
}

.tt-fly .wing {
    animation: wing-buzz 0.08s ease-in-out infinite;
    transform-origin: center bottom;
}

/* Fly near trash section */
.tt-fly-group {
    position: relative;
    display: inline-block;
}

.tt-fly-strike {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.5rem;
    animation: strike-in 0.5s ease-out forwards;
}

@keyframes strike-in {
    0% { transform: scale(0) rotate(-30deg); opacity: 0; }
    60% { transform: scale(1.3) rotate(5deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* ===== BENEFITS GRID ===== */
.tt-benefit-card {
    background: #fff;
    border-radius: var(--tt-radius);
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--tt-transition);
    height: 100%;
}

.tt-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(26,92,26,0.1);
}

.tt-benefit-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
}

.tt-benefit-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--tt-dark);
    margin-bottom: 0.5rem;
}

.tt-benefit-card p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.tt-how-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.tt-how-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--tt-primary), transparent);
}

.tt-how-step:last-child::after { display: none; }

@media (max-width: 767px) {
    .tt-how-step::after { display: none; }
}

.tt-how-num {
    width: 56px;
    height: 56px;
    background: var(--tt-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(26,92,26,0.3);
}

.tt-how-step h4 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--tt-dark);
    margin-bottom: 0.4rem;
}

.tt-how-step p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* ===== CART ===== */
.tt-cart-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: var(--tt-radius-sm);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.tt-cart-item .item-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    background: #f0f7f0;
    flex-shrink: 0;
}

.tt-cart-item .item-info { flex: 1; }
.tt-cart-item .item-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--tt-dark);
}
.tt-cart-item .item-price {
    color: var(--tt-primary);
    font-weight: 700;
    font-size: 1.05rem;
}

.tt-cart-item .item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tt-cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--tt-primary);
    color: #fff;
    border-radius: var(--tt-radius-sm);
    margin-top: 1.5rem;
}

.tt-cart-total-row .total-label {
    font-weight: 700;
    font-size: 1.1rem;
}

.tt-cart-total-row .total-amount {
    font-size: 1.5rem;
    font-weight: 900;
}

/* ===== FORMS ===== */
.tt-form-group {
    margin-bottom: 1.25rem;
}

.tt-form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 0.4rem;
    display: block;
}

.tt-form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e8e8e8;
    border-radius: var(--tt-radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--tt-transition);
    background: #fff;
    outline: none;
}

.tt-form-control:focus {
    border-color: var(--tt-primary);
    box-shadow: 0 0 0 3px rgba(26,92,26,0.1);
}

textarea.tt-form-control {
    resize: vertical;
    min-height: 120px;
}

.tt-form-error {
    color: #e74c3c;
    font-size: 0.82rem;
    margin-top: 0.25rem;
    display: none;
}

.tt-form-success {
    color: #27ae60;
    font-size: 0.82rem;
    margin-top: 0.25rem;
    display: none;
}

/* ===== CHECKOUT ===== */
.tt-checkout-box {
    background: #fff;
    border-radius: var(--tt-radius);
    padding: 2.5rem;
    box-shadow: var(--tt-shadow);
    border: 1px solid rgba(26,92,26,0.08);
}

.tt-order-summary {
    background: #f8f9fa;
    border-radius: var(--tt-radius);
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.06);
}

.tt-order-summary h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--tt-dark);
}

/* ===== TESTIMONIALS ===== */
.tt-testimonial {
    background: #fff;
    border-radius: var(--tt-radius);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--tt-primary);
    margin-bottom: 1.5rem;
}

.tt-testimonial p {
    font-size: 1.05rem;
    color: #444;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.tt-testimonial .tt-stars {
    color: #f4a261;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.tt-testimonial .tt-author {
    font-weight: 700;
    color: var(--tt-primary);
    font-size: 0.9rem;
}

/* ===== FAQ ===== */
.tt-faq-item {
    background: #fff;
    border-radius: var(--tt-radius-sm);
    margin-bottom: 0.75rem;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: var(--tt-transition);
}

.tt-faq-item.open {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.tt-faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    color: var(--tt-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1rem;
}

.tt-faq-question .tt-faq-icon {
    font-size: 1.25rem;
    color: var(--tt-primary);
    transition: var(--tt-transition);
    flex-shrink: 0;
}

.tt-faq-item.open .tt-faq-icon {
    transform: rotate(180deg);
}

.tt-faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    display: none;
}

.tt-faq-item.open .tt-faq-answer { display: block; }

/* ===== STRIPE ELEMENTS ===== */
.StripeElement {
    padding: 0.8rem 1rem;
    border: 2px solid #e8e8e8;
    border-radius: var(--tt-radius-sm);
    background: #fff;
    transition: var(--tt-transition);
}

.StripeElement--focus {
    border-color: var(--tt-primary);
    box-shadow: 0 0 0 3px rgba(26,92,26,0.1);
}

/* ===== SUCCESS / CANCEL ===== */
.tt-status-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.tt-success-page {
    text-align: center;
    padding: 4rem 0;
}

.tt-success-page h1 {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--tt-dark);
    margin-bottom: 0.75rem;
}

.tt-success-page p {
    color: #666;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.tt-footer {
    background: var(--tt-dark);
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 1.5rem;
}

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

.tt-footer a:hover {
    color: #fff;
    text-decoration: none;
}

.tt-footer h5 {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tt-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tt-footer-links li { margin-bottom: 0.5rem; }

.tt-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== ALERTS ===== */
.tt-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--tt-radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tt-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.tt-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.tt-alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ===== ABOUT PAGE ===== */
.tt-issue-card {
    background: #fff;
    border-radius: var(--tt-radius);
    padding: 2rem;
    box-shadow: var(--tt-shadow);
    border-top: 4px solid var(--tt-fly-red);
    margin-bottom: 1.5rem;
}

.tt-issue-card h3 {
    font-weight: 800;
    color: var(--tt-dark);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.tt-stat-block {
    text-align: center;
    padding: 1.5rem;
}

.tt-stat-block .stat-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--tt-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.tt-stat-block .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== ABOUT SECTION ===== */
.tt-about-img {
    border-radius: var(--tt-radius);
    box-shadow: var(--tt-shadow);
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

/* ===== MISC UTILITIES ===== */
.text-tt-primary { color: var(--tt-primary) !important; }
.text-tt-accent { color: var(--tt-accent) !important; }
.bg-tt-primary { background: var(--tt-primary) !important; }
.bg-tt-light { background: var(--tt-bg) !important; }

.rounded-tt { border-radius: var(--tt-radius) !important; }

.tt-shadow-sm { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.tt-shadow-md { box-shadow: var(--tt-shadow); }

.mb-tt-lg { margin-bottom: 3rem; }
.mt-tt-lg { margin-top: 3rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .tt-hero { padding: 5rem 0 3rem; }
    .tt-hero h1 { font-size: 2.2rem; }
    .tt-hero-sub { font-size: 1rem; }
    .tt-section { padding: 3.5rem 0; }
    .tt-section-title { font-size: 1.75rem; }
    .tt-product-card { padding: 1.5rem; }
    .tt-checkout-box { padding: 1.5rem; }
}

/* ===== LOGO SVG ===== */
.tt-logo-svg {
    display: inline-block;
    vertical-align: middle;
}

/* ===== PRINT ===== */
@media print {
    .tt-fly, .tt-hamburger { display: none !important; }
}