/*
 * TinyTots UK - Premium Baby Products Website
 * Prefix: tt- (TinyTots)
 * Primary: #0d9488 (Deep Teal)
 * Secondary: #f97316 (Warm Coral)
 * Heading Font: Poppins
 * Body Font: Inter
 * Container: 1280px
 * Border Radius: 8px
 * Transition: 0.3s
 */

/* ============================================================
   CSS VARIABLES
   ============================================================ */

:root {
    /* Colors */
    --tt-primary: #0d9488;
    --tt-primary-dark: #0f766e;
    --tt-primary-light: #14b8a6;
    --tt-secondary: #f97316;
    --tt-secondary-dark: #ea580c;
    --tt-secondary-light: #fb923c;
    --tt-accent: #fbbf24;
    --tt-bg: #f0fdfa;
    --tt-bg-alt: #ffffff;
    --tt-text: #1e293b;
    --tt-text-light: #64748b;
    --tt-text-muted: #94a3b8;
    --tt-white: #ffffff;
    --tt-border: #e2e8f0;
    --tt-success: #22c55e;
    --tt-error: #ef4444;
    
    /* Typography */
    --tt-font-heading: 'Poppins', sans-serif;
    --tt-font-body: 'Inter', sans-serif;
    --tt-font-size-base: 16px;
    
    /* Spacing */
    --tt-container-width: 1280px;
    --tt-section-padding: 80px;
    --tt-card-padding: 24px;
    --tt-gap: 24px;
    
    /* Borders & Shadows */
    --tt-radius-sm: 4px;
    --tt-radius-md: 8px;
    --tt-radius-lg: 16px;
    --tt-radius-full: 9999px;
    --tt-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --tt-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --tt-shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --tt-shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    
    /* Transitions */
    --tt-transition: 0.3s ease;
    --tt-transition-fast: 0.15s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: var(--tt-font-size-base);
}

body {
    font-family: var(--tt-font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--tt-text);
    background-color: var(--tt-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--tt-primary);
    text-decoration: none;
    transition: color var(--tt-transition);
}

a:hover {
    color: var(--tt-primary-dark);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--tt-font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--tt-text);
}

h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */

.tt-container {
    max-width: var(--tt-container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.tt-section {
    padding: var(--tt-section-padding) 0;
}

.tt-section--alt {
    background-color: var(--tt-bg-alt);
}

/* ============================================================
   HEADER
   ============================================================ */

.tt-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--tt-white);
    box-shadow: var(--tt-shadow-sm);
}

/* Topbar */
.tt-topbar {
    background: var(--tt-primary);
    color: var(--tt-white);
    padding: 10px 0;
    text-align: center;
}

.tt-topbar-text {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

/* Navigation */
.tt-nav {
    padding: 16px 0;
    border-bottom: 1px solid var(--tt-border);
}

.tt-nav > .tt-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.tt-logo img {
    height: 40px;
    width: auto;
}

.tt-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tt-nav-link {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--tt-text);
    padding: 8px 0;
    position: relative;
    transition: color var(--tt-transition);
}

.tt-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tt-primary);
    transition: width var(--tt-transition);
}

.tt-nav-link:hover,
.tt-nav-link--active {
    color: var(--tt-primary);
}

.tt-nav-link:hover::after,
.tt-nav-link--active::after {
    width: 100%;
}

/* Nav Actions */
.tt-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tt-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--tt-radius-full);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background var(--tt-transition);
    color: var(--tt-text);
    position: relative;
}

.tt-nav-icon:hover {
    background: var(--tt-bg);
}

.tt-cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: var(--tt-secondary);
    color: var(--tt-white);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Toggle */
.tt-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.tt-mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--tt-text);
    border-radius: 2px;
    transition: all var(--tt-transition);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */

.tt-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tt-white);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform var(--tt-transition);
    overflow-y: auto;
}

.tt-mobile-menu.tt-active {
    transform: translateX(0);
}

.tt-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--tt-border);
}

.tt-mobile-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--tt-text);
}

.tt-mobile-nav {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tt-mobile-link {
    display: block;
    padding: 14px 16px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--tt-text);
    border-radius: var(--tt-radius-md);
    transition: all var(--tt-transition);
}

.tt-mobile-link:hover,
.tt-mobile-link--active {
    background: var(--tt-bg);
    color: var(--tt-primary);
}

.tt-mobile-footer {
    padding: 24px;
    border-top: 1px solid var(--tt-border);
}

.tt-mobile-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--tt-text);
    font-weight: 500;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.tt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--tt-font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--tt-radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--tt-transition);
    text-decoration: none;
}

.tt-btn--primary {
    background: var(--tt-secondary);
    color: var(--tt-white);
    border-color: var(--tt-secondary);
}

.tt-btn--primary:hover {
    background: var(--tt-secondary-dark);
    border-color: var(--tt-secondary-dark);
    color: var(--tt-white);
    transform: translateY(-2px);
    box-shadow: var(--tt-shadow-md);
}

.tt-btn--secondary {
    background: var(--tt-white);
    color: var(--tt-primary);
    border-color: var(--tt-primary);
}

.tt-btn--secondary:hover {
    background: var(--tt-primary);
    color: var(--tt-white);
}

.tt-btn--outline {
    background: transparent;
    border: 2px solid var(--tt-primary);
    color: var(--tt-primary);
}

.tt-btn--outline:hover {
    background: var(--tt-primary);
    color: var(--tt-white);
}

.tt-btn--sm {
    padding: 10px 18px;
    font-size: 0.875rem;
}

.tt-btn--lg {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.tt-hero {
    background: linear-gradient(135deg, var(--tt-primary) 0%, var(--tt-primary-dark) 50%, #115e59 100%);
    color: var(--tt-white);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.tt-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

.tt-hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.tt-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--tt-white);
    padding: 8px 16px;
    border-radius: var(--tt-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.tt-hero-title {
    color: var(--tt-white);
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
}

.tt-hero-text {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.tt-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tt-hero .tt-btn--outline {
    border-color: var(--tt-white);
    color: var(--tt-white);
}

.tt-hero .tt-btn--outline:hover {
    background: var(--tt-white);
    color: var(--tt-primary);
}

.tt-hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.tt-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.tt-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.tt-section-title {
    margin-bottom: 12px;
    color: var(--tt-text);
}

.tt-section-text {
    color: var(--tt-text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.tt-section-action {
    text-align: center;
    margin-top: 48px;
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */

.tt-categories {
    background: var(--tt-white);
}

.tt-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tt-category-card {
    display: block;
    background: var(--tt-bg);
    border-radius: var(--tt-radius-lg);
    overflow: hidden;
    transition: all var(--tt-transition);
    text-decoration: none;
}

.tt-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--tt-shadow-lg);
}

.tt-category-card--large {
    grid-row: span 2;
}

.tt-category-image {
    height: 200px;
    background: var(--tt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.tt-category-card--large .tt-category-image {
    height: 100%;
    min-height: 300px;
}

.tt-category-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform var(--tt-transition);
}

.tt-category-card:hover .tt-category-image img {
    transform: scale(1.05);
}

.tt-category-content {
    padding: 20px;
    text-align: center;
}

.tt-category-name {
    font-family: var(--tt-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--tt-text);
    margin-bottom: 4px;
}

.tt-category-count {
    font-size: 0.875rem;
    color: var(--tt-text-muted);
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */

.tt-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tt-product-card {
    background: var(--tt-white);
    border-radius: var(--tt-radius-lg);
    overflow: hidden;
    transition: all var(--tt-transition);
    border: 1px solid var(--tt-border);
}

.tt-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--tt-shadow-lg);
    border-color: transparent;
}

.tt-product-image {
    position: relative;
    background: #f8fafc;
    padding: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform var(--tt-transition);
}

.tt-product-card:hover .tt-product-image img {
    transform: scale(1.05);
}

/* Product Badges */
.tt-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--tt-primary);
    color: var(--tt-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--tt-radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tt-product-badge--bestseller {
    background: var(--tt-secondary);
}

.tt-product-badge--sale {
    background: var(--tt-error);
}

.tt-product-badge--new {
    background: var(--tt-success);
}

/* Product Actions (overlay) */
.tt-product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--tt-transition);
}

.tt-product-card:hover .tt-product-actions {
    opacity: 1;
    transform: translateX(0);
}

.tt-product-action {
    width: 40px;
    height: 40px;
    background: var(--tt-white);
    border: none;
    border-radius: var(--tt-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--tt-shadow-sm);
    transition: all var(--tt-transition);
    color: var(--tt-text-muted);
}

.tt-product-action:hover {
    background: var(--tt-primary);
    color: var(--tt-white);
}

.tt-product-action svg {
    width: 18px;
    height: 18px;
}

/* Product Content */
.tt-product-content {
    padding: 20px;
}

.tt-product-brand {
    font-size: 0.75rem;
    color: var(--tt-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.tt-product-name {
    font-family: var(--tt-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--tt-text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.tt-product-name a {
    color: inherit;
}

.tt-product-name a:hover {
    color: var(--tt-primary);
}

.tt-product-desc {
    font-size: 0.875rem;
    color: var(--tt-text-light);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tt-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tt-product-price {
    font-family: var(--tt-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tt-primary);
}

.tt-add-to-cart {
    flex-shrink: 0;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.tt-features {
    background: var(--tt-white);
    border-top: 1px solid var(--tt-border);
    border-bottom: 1px solid var(--tt-border);
}

.tt-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.tt-feature-card {
    text-align: center;
    padding: 24px;
}

.tt-feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--tt-bg);
    border-radius: var(--tt-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--tt-primary);
}

.tt-feature-title {
    font-family: var(--tt-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.tt-feature-text {
    font-size: 0.9375rem;
    color: var(--tt-text-muted);
    line-height: 1.6;
}

/* ============================================================
   BRANDS SECTION
   ============================================================ */

.tt-brands {
    padding: 60px 0;
    background: var(--tt-white);
}

.tt-brand-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.tt-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all var(--tt-transition);
}

.tt-brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.tt-brand-item img {
    height: 40px;
    width: auto;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.tt-testimonials {
    background: var(--tt-bg);
}

.tt-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tt-testimonial-card {
    background: var(--tt-white);
    padding: 32px;
    border-radius: var(--tt-radius-lg);
    box-shadow: var(--tt-shadow-sm);
}

.tt-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.tt-testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--tt-accent);
}

.tt-testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--tt-text);
    font-style: italic;
}

.tt-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tt-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--tt-radius-full);
    background: var(--tt-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--tt-primary);
}

.tt-testimonial-name {
    font-weight: 600;
    color: var(--tt-text);
}

.tt-testimonial-location {
    font-size: 0.875rem;
    color: var(--tt-text-muted);
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.tt-cta {
    background: linear-gradient(135deg, var(--tt-primary) 0%, var(--tt-primary-dark) 100%);
    color: var(--tt-white);
    padding: 80px 0;
    text-align: center;
}

.tt-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.tt-cta-title {
    color: var(--tt-white);
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.tt-cta-text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.tt-cta .tt-btn--primary {
    background: var(--tt-white);
    color: var(--tt-primary);
    border-color: var(--tt-white);
}

.tt-cta .tt-btn--primary:hover {
    background: transparent;
    color: var(--tt-white);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

.tt-newsletter {
    background: var(--tt-bg);
    padding: 60px 0;
}

.tt-newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.tt-newsletter-text h3 {
    margin-bottom: 8px;
}

.tt-newsletter-text p {
    color: var(--tt-text-muted);
    margin: 0;
}

.tt-newsletter-form {
    display: flex;
    gap: 12px;
}

.tt-newsletter-input {
    padding: 14px 20px;
    border: 2px solid var(--tt-border);
    border-radius: var(--tt-radius-md);
    font-size: 1rem;
    min-width: 300px;
    transition: border-color var(--tt-transition);
}

.tt-newsletter-input:focus {
    outline: none;
    border-color: var(--tt-primary);
}

/* ============================================================
   FOOTER
   ============================================================ */

.tt-footer {
    background: var(--tt-text);
    color: var(--tt-white);
    padding: 80px 0 0;
}

.tt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tt-footer-brand {
    max-width: 280px;
}

.tt-footer-logo {
    margin-bottom: 20px;
}

.tt-footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.tt-footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.tt-footer-social {
    display: flex;
    gap: 12px;
}

.tt-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--tt-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tt-white);
    transition: all var(--tt-transition);
}

.tt-social-link:hover {
    background: var(--tt-primary);
    color: var(--tt-white);
}

.tt-footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--tt-white);
    margin-bottom: 20px;
}

.tt-footer-links {
    list-style: none;
}

.tt-footer-links li {
    margin-bottom: 12px;
}

.tt-footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    transition: color var(--tt-transition);
}

.tt-footer-links a:hover {
    color: var(--tt-white);
}

.tt-footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tt-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.tt-payment-icons {
    display: flex;
    gap: 12px;
}

.tt-payment-icons img {
    height: 24px;
    opacity: 0.8;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.tt-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--tt-text);
    color: var(--tt-white);
    padding: 20px 24px;
    z-index: 3000;
    transform: translateY(100%);
    transition: transform var(--tt-transition);
}

.tt-cookie-banner.tt-active {
    transform: translateY(0);
}

.tt-cookie-content {
    max-width: var(--tt-container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tt-cookie-text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.9);
}

.tt-cookie-text a {
    color: var(--tt-primary-light);
    text-decoration: underline;
}

.tt-cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.tt-cookie-accept {
    padding: 10px 20px;
    background: var(--tt-primary);
    color: var(--tt-white);
    border: none;
    border-radius: var(--tt-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--tt-transition);
}

.tt-cookie-accept:hover {
    background: var(--tt-primary-light);
}

.tt-cookie-reject {
    padding: 10px 20px;
    background: transparent;
    color: var(--tt-white);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--tt-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--tt-transition);
}

.tt-cookie-reject:hover {
    border-color: var(--tt-white);
}

/* ============================================================
   SHOP PAGE
   ============================================================ */

.tt-shop-header {
    background: var(--tt-white);
    padding: 40px 0;
    border-bottom: 1px solid var(--tt-border);
}

.tt-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.tt-breadcrumb a {
    color: var(--tt-text-muted);
}

.tt-breadcrumb span {
    color: var(--tt-text-muted);
}

.tt-breadcrumb-current {
    color: var(--tt-text);
    font-weight: 500;
}

.tt-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.tt-results-count {
    color: var(--tt-text-muted);
}

.tt-shop-filters {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tt-filter-select {
    padding: 10px 16px;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-md);
    background: var(--tt-white);
    font-size: 0.9375rem;
    cursor: pointer;
}

.tt-sidebar {
    background: var(--tt-white);
    padding: 24px;
    border-radius: var(--tt-radius-lg);
    border: 1px solid var(--tt-border);
}

/* Shop Layout */
.tt-shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

.tt-shop-sidebar {
    background: var(--tt-white);
    padding: 24px;
    border-radius: var(--tt-radius-lg);
    border: 1px solid var(--tt-border);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.tt-shop-main {
    min-width: 0;
}

.tt-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--tt-border);
}

.tt-filter-header .tt-filter-title {
    margin-bottom: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.tt-filter-clear {
    background: none;
    border: none;
    color: var(--tt-primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: color var(--tt-transition);
}

.tt-filter-clear:hover {
    color: var(--tt-primary-dark);
    text-decoration: underline;
}

.tt-filter-label {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--tt-text);
}

.tt-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0;
    font-size: 0.9375rem;
    transition: color var(--tt-transition);
}

.tt-filter-option:hover {
    color: var(--tt-primary);
}

.tt-filter-option input[type="radio"],
.tt-filter-option input[type="checkbox"] {
    accent-color: var(--tt-primary);
}

.tt-filter-name {
    flex: 1;
}

.tt-filter-count {
    font-size: 0.8125rem;
    color: var(--tt-text-muted);
    background: var(--tt-bg);
    padding: 2px 8px;
    border-radius: 9999px;
}

.tt-filter-group {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--tt-border);
}

.tt-filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tt-filter-title {
    font-weight: 600;
    margin-bottom: 16px;
}

.tt-filter-list {
    list-style: none;
}

.tt-filter-list li {
    margin-bottom: 10px;
}

.tt-filter-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9375rem;
}

.tt-shop-main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */

.tt-product-detail {
    padding: 40px 0 80px;
}

.tt-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.tt-product-gallery {
    position: sticky;
    top: 120px;
}

.tt-gallery-main {
    background: var(--tt-white);
    border-radius: var(--tt-radius-lg);
    padding: 40px;
    margin-bottom: 16px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tt-gallery-thumbs {
    display: flex;
    gap: 12px;
}

.tt-gallery-thumb {
    width: 80px;
    height: 80px;
    background: var(--tt-white);
    border: 2px solid var(--tt-border);
    border-radius: var(--tt-radius-md);
    padding: 8px;
    cursor: pointer;
    transition: border-color var(--tt-transition);
}

.tt-gallery-thumb:hover,
.tt-gallery-thumb.tt-active {
    border-color: var(--tt-primary);
}

.tt-product-info {
    padding: 20px 0;
}

.tt-product-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.tt-product-info .tt-product-brand {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--tt-primary);
    text-transform: uppercase;
}

.tt-product-info h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.tt-product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.tt-stars {
    display: flex;
    gap: 2px;
}

.tt-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--tt-accent);
}

.tt-rating-text {
    font-size: 0.9375rem;
    color: var(--tt-text-muted);
}

.tt-product-info .tt-product-price {
    font-size: 2rem;
    margin-bottom: 24px;
}

.tt-product-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--tt-text-light);
    margin-bottom: 32px;
}

.tt-product-options {
    margin-bottom: 32px;
}

.tt-option-label {
    font-weight: 600;
    margin-bottom: 12px;
}

.tt-color-options {
    display: flex;
    gap: 10px;
}

.tt-color-swatch {
    width: 40px;
    height: 40px;
    border-radius: var(--tt-radius-full);
    border: 3px solid transparent;
    cursor: pointer;
    transition: border-color var(--tt-transition);
}

.tt-color-swatch:hover,
.tt-color-swatch.tt-active {
    border-color: var(--tt-primary);
}

.tt-quantity-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--tt-bg);
    border-radius: var(--tt-radius-md);
    padding: 4px;
}

.tt-qty-btn {
    width: 40px;
    height: 40px;
    background: var(--tt-white);
    border: none;
    border-radius: var(--tt-radius-sm);
    font-size: 1.25rem;
    cursor: pointer;
    transition: background var(--tt-transition);
}

.tt-qty-btn:hover {
    background: var(--tt-primary);
    color: var(--tt-white);
}

.tt-qty-input {
    width: 60px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background: transparent;
}

.tt-product-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.tt-product-cta .tt-btn {
    flex: 1;
}

.tt-product-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tt-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--tt-bg);
    border-radius: var(--tt-radius-md);
}

.tt-highlight svg {
    width: 24px;
    height: 24px;
    color: var(--tt-primary);
    flex-shrink: 0;
}

.tt-highlight span {
    font-size: 0.9375rem;
}

/* ============================================================
   CART PAGE
   ============================================================ */

.tt-cart {
    padding: 40px 0 80px;
}

.tt-cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.tt-cart-items {
    background: var(--tt-white);
    border-radius: var(--tt-radius-lg);
    overflow: hidden;
}

.tt-cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 16px;
    padding: 16px 24px;
    background: var(--tt-bg);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--tt-text-muted);
}

.tt-cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid var(--tt-border);
    align-items: center;
}

.tt-cart-item:last-child {
    border-bottom: none;
}

.tt-cart-product {
    display: flex;
    gap: 16px;
    align-items: center;
}

.tt-cart-image {
    width: 80px;
    height: 80px;
    background: var(--tt-bg);
    border-radius: var(--tt-radius-md);
    padding: 8px;
    flex-shrink: 0;
}

.tt-cart-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tt-cart-product-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.tt-cart-product-brand {
    font-size: 0.875rem;
    color: var(--tt-text-muted);
}

.tt-cart-remove {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: var(--tt-text-muted);
    cursor: pointer;
    transition: color var(--tt-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-cart-remove:hover {
    color: var(--tt-error);
}

.tt-cart-summary {
    background: var(--tt-white);
    border-radius: var(--tt-radius-lg);
    padding: 32px;
    position: sticky;
    top: 120px;
}

.tt-summary-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--tt-border);
}

.tt-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.tt-summary-row.tt-total {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--tt-border);
}

.tt-summary-row.tt-total .tt-value {
    color: var(--tt-primary);
}

.tt-checkout-btn {
    width: 100%;
    margin-top: 24px;
}

.tt-cart-empty {
    text-align: center;
    padding: 80px 24px;
    background: var(--tt-white);
    border-radius: var(--tt-radius-lg);
}

.tt-cart-empty svg {
    width: 80px;
    height: 80px;
    color: var(--tt-text-muted);
    margin-bottom: 24px;
}

.tt-cart-empty h2 {
    margin-bottom: 12px;
}

.tt-cart-empty p {
    color: var(--tt-text-muted);
    margin-bottom: 24px;
}

/* ============================================================
   CONTACT & ABOUT PAGES
   ============================================================ */

.tt-page-header {
    background: var(--tt-primary);
    color: var(--tt-white);
    padding: 60px 0;
    text-align: center;
}

.tt-page-header h1 {
    color: var(--tt-white);
    margin-bottom: 12px;
}

.tt-page-header p {
    opacity: 0.9;
    font-size: 1.125rem;
}

.tt-about-image {
    border-radius: var(--tt-radius-lg);
    overflow: hidden;
}

.tt-about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.tt-about-text h2 {
    margin-bottom: 20px;
}

.tt-about-text p {
    color: var(--tt-text-light);
    margin-bottom: 16px;
}

.tt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.tt-contact-form {
    background: var(--tt-white);
    padding: 40px;
    border-radius: var(--tt-radius-lg);
}

.tt-form-group {
    margin-bottom: 24px;
}

.tt-form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.tt-form-input,
.tt-form-textarea,
.tt-form-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--tt-border);
    border-radius: var(--tt-radius-md);
    font-size: 1rem;
    transition: border-color var(--tt-transition);
}

.tt-form-input:focus,
.tt-form-textarea:focus,
.tt-form-select:focus {
    outline: none;
    border-color: var(--tt-primary);
}

.tt-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.tt-contact-info {
    padding: 40px;
}

.tt-contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.tt-contact-icon {
    width: 56px;
    height: 56px;
    background: var(--tt-bg);
    border-radius: var(--tt-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tt-contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--tt-primary);
}

.tt-contact-label {
    font-size: 0.875rem;
    color: var(--tt-text-muted);
    margin-bottom: 4px;
}

.tt-contact-value {
    font-weight: 600;
    font-size: 1.0625rem;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.tt-legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--tt-white);
    padding: 48px;
    border-radius: var(--tt-radius-lg);
}

.tt-legal-content h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
}

.tt-legal-content h2:first-child {
    margin-top: 0;
}

.tt-legal-content p {
    color: var(--tt-text-light);
    margin-bottom: 16px;
}

.tt-legal-content ul,
.tt-legal-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.tt-legal-content li {
    margin-bottom: 8px;
    color: var(--tt-text-light);
}

/* ============================================================
   404 PAGE
   ============================================================ */

.tt-error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.tt-error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--tt-primary);
    line-height: 1;
    margin-bottom: 16px;
}

.tt-error-title {
    margin-bottom: 16px;
}

.tt-error-text {
    color: var(--tt-text-muted);
    margin-bottom: 32px;
    max-width: 400px;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */

@media (max-width: 1024px) {
    :root {
        --tt-section-padding: 60px;
    }
    
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    
    .tt-hero-title {
        font-size: 2.75rem;
    }
    
    .tt-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tt-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tt-category-card--large {
        grid-row: span 1;
    }
    
    .tt-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tt-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tt-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tt-shop-main {
        grid-template-columns: 1fr;
    }
    
    .tt-shop-layout {
        grid-template-columns: 1fr;
    }
    
    .tt-shop-sidebar {
        display: none;
    }
    
    .tt-sidebar {
        display: none;
    }
    
    .tt-cart-layout {
        grid-template-columns: 1fr;
    }
    
    .tt-product-layout {
        grid-template-columns: 1fr;
    }
    
    .tt-product-gallery {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */

@media (max-width: 768px) {
    :root {
        --tt-section-padding: 48px;
    }
    
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .tt-container {
        padding: 0 16px;
    }
    
    /* Header */
    .tt-nav-list {
        display: none;
    }
    
    .tt-mobile-toggle {
        display: flex;
    }
    
    /* Hero */
    .tt-hero {
        padding: 60px 0 80px;
    }
    
    .tt-hero-title {
        font-size: 2rem;
    }
    
    .tt-hero-text {
        font-size: 1rem;
    }
    
    .tt-hero-actions {
        flex-direction: column;
    }
    
    .tt-hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Grids */
    .tt-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .tt-category-grid {
        grid-template-columns: 1fr;
    }
    
    .tt-feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tt-testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .tt-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Newsletter */
    .tt-newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tt-newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .tt-newsletter-input {
        min-width: 100%;
    }
    
    .tt-newsletter-input-group {
        flex-direction: column;
        width: 100%;
    }
    
    .tt-newsletter-input-group .tt-btn {
        width: 100%;
    }
    
    /* Brands */
    .tt-brand-grid {
        justify-content: center;
        gap: 24px;
    }
    
    .tt-brand-name {
        font-size: 1rem;
    }
    
    /* Footer bottom */
    .tt-footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .tt-footer-legal {
        align-items: center;
    }
    
    .tt-footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tt-footer-payment {
        flex-direction: column;
    }
    
    /* Cart */
    .tt-cart-header {
        display: none;
    }
    
    .tt-cart-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Product Detail */
    .tt-about-content,
    .tt-contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Cookie Banner */
    .tt-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Legal */
    .tt-legal-content {
        padding: 32px 24px;
    }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {
    .tt-product-grid {
        grid-template-columns: 1fr;
    }
    
    .tt-btn--lg {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .tt-hero-title {
        font-size: 1.75rem;
    }
    
    .tt-product-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tt-product-footer .tt-btn {
        width: 100%;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes ttFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ttSlideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.tt-fade-in {
    animation: ttFadeIn 0.6s ease forwards;
}

/* ============================================================
   UTILITIES
   ============================================================ */

.tt-text-center { text-align: center; }
.tt-text-left { text-align: left; }
.tt-text-right { text-align: right; }

.tt-mb-0 { margin-bottom: 0; }
.tt-mb-1 { margin-bottom: 8px; }
.tt-mb-2 { margin-bottom: 16px; }
.tt-mb-3 { margin-bottom: 24px; }
.tt-mb-4 { margin-bottom: 32px; }
.tt-mb-5 { margin-bottom: 48px; }

.tt-mt-0 { margin-top: 0; }
.tt-mt-1 { margin-top: 8px; }
.tt-mt-2 { margin-top: 16px; }
.tt-mt-3 { margin-top: 24px; }
.tt-mt-4 { margin-top: 32px; }
.tt-mt-5 { margin-top: 48px; }

.tt-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* ============================================================
   ADDITIONAL MISSING STYLES
   ============================================================ */

/* Brand Names (text-based) */
.tt-brand-name {
    font-family: var(--tt-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tt-text);
    opacity: 0.6;
    transition: all var(--tt-transition);
}

.tt-brand-item:hover .tt-brand-name {
    opacity: 1;
    color: var(--tt-primary);
}

/* Newsletter enhancements */
.tt-newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    flex-direction: column;
}

.tt-newsletter-title {
    font-family: var(--tt-font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--tt-text);
}

.tt-newsletter-text {
    font-size: 1.0625rem;
    color: var(--tt-text-muted);
    margin-bottom: 24px;
}

.tt-newsletter-input-group {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.tt-newsletter-disclaimer {
    font-size: 0.8125rem;
    color: var(--tt-text-muted);
    margin-top: 12px;
}

/* Footer about text */
.tt-footer-about {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 20px 0;
}

/* Footer list styling */
.tt-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tt-footer-list li {
    margin-bottom: 12px;
}

.tt-footer-list a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    transition: color var(--tt-transition);
    text-decoration: none;
}

.tt-footer-list a:hover {
    color: var(--tt-white);
}

/* Footer bottom legal section */
.tt-footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tt-footer-legal p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin: 0;
}

.tt-footer-nav {
    display: flex;
    gap: 20px;
}

.tt-footer-nav a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    transition: color var(--tt-transition);
    text-decoration: none;
}

.tt-footer-nav a:hover {
    color: var(--tt-white);
}

/* Footer payment section */
.tt-footer-payment {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tt-payment-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* Testimonial author enhancements */
.tt-testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

/* ============================================================
   CRITICAL MISSING STYLES - v2.0 FIX
   ============================================================ */

/* Cookie Banner Visibility Fix (JS uses .tt-visible) */
.tt-cookie-banner.tt-visible {
    transform: translateY(0);
}

/* Ghost Button Style */
.tt-btn--ghost {
    background: transparent;
    color: var(--tt-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.tt-btn--ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: var(--tt-white);
}

/* Block Button (full width) */
.tt-btn--block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Page Header Titles */
.tt-page-title {
    font-family: var(--tt-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tt-white);
    margin-bottom: 8px;
}

.tt-page-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* About Page Grid */
.tt-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 768px) {
    .tt-about-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading State & Spinner */
.tt-loading {
    text-align: center;
    padding: 80px 24px;
    grid-column: 1 / -1;
}

.tt-loading p {
    color: var(--tt-text-muted);
    margin-top: 16px;
}

.tt-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--tt-border);
    border-top-color: var(--tt-primary);
    border-radius: 50%;
    animation: ttSpin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes ttSpin {
    to { transform: rotate(360deg); }
}

/* Contact Page Sections */
.tt-contact-section {
    background: var(--tt-bg);
}

.tt-contact-form-wrap {
    background: var(--tt-white);
    padding: 40px;
    border-radius: var(--tt-radius-lg);
    box-shadow: var(--tt-shadow-sm);
}

.tt-contact-form-wrap h2 {
    margin-bottom: 8px;
}

.tt-contact-form-wrap > p {
    color: var(--tt-text-muted);
    margin-bottom: 32px;
}

.tt-contact-card {
    background: var(--tt-white);
    padding: 32px;
    border-radius: var(--tt-radius-lg);
    box-shadow: var(--tt-shadow-sm);
}

.tt-contact-card h3 {
    font-size: 1.375rem;
    margin-bottom: 24px;
}

/* Form Row (2-column) */
.tt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .tt-form-row {
        grid-template-columns: 1fr;
    }
}

/* Cart Summary Enhancements */
.tt-summary-divider {
    height: 1px;
    background: var(--tt-border);
    margin: 16px 0;
}

.tt-summary-row--total {
    font-size: 1.25rem;
    font-weight: 700;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid var(--tt-border);
}

.tt-summary-row--total span:last-child {
    color: var(--tt-primary);
}

.tt-summary-note {
    font-size: 0.8125rem;
    color: var(--tt-text-muted);
    text-align: center;
    margin: 16px 0;
}

/* Shop Toolbar Enhancements */
.tt-shop-count {
    font-size: 0.9375rem;
    color: var(--tt-text-muted);
}

.tt-shop-count span {
    font-weight: 600;
    color: var(--tt-text);
}

/* Cart Column Sizing */
.tt-cart-col--product {
    flex: 2;
}

.tt-cart-col--price,
.tt-cart-col--qty,
.tt-cart-col--total {
    flex: 1;
    text-align: center;
}

.tt-cart-col--remove {
    width: 40px;
}

/* Values Section (About Page) */
.tt-values {
    background: var(--tt-bg);
}

/* Footer Brand Logo Inversion */
.tt-footer-brand img {
    filter: brightness(0) invert(1);
}

/* Shop Filter Toggle (Mobile) */
.tt-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--tt-white);
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .tt-filter-toggle {
        display: flex;
    }
}

/* Shop Actions Bar */
.tt-shop-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tt-shop-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tt-shop-sort label {
    font-size: 0.875rem;
    color: var(--tt-text-muted);
}

.tt-select {
    padding: 10px 16px;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-md);
    background: var(--tt-white);
    font-size: 0.9375rem;
    cursor: pointer;
}

.tt-shop-view {
    display: flex;
    gap: 4px;
}

.tt-view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-sm);
    cursor: pointer;
    color: var(--tt-text-muted);
    transition: all var(--tt-transition);
}

.tt-view-btn:hover,
.tt-view-btn--active {
    background: var(--tt-primary);
    border-color: var(--tt-primary);
    color: var(--tt-white);
}

/* Shop Product Grid Variation */
.tt-product-grid--shop {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .tt-product-grid--shop {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tt-product-grid--shop {
        grid-template-columns: 1fr;
    }
}

/* Filter List Scrollable */
.tt-filter-list--scroll {
    max-height: 240px;
    overflow-y: auto;
}

/* Cart Section */
.tt-cart-section {
    background: var(--tt-bg);
}

/* Breadcrumb Separator */
.tt-breadcrumb-sep {
    color: rgba(255,255,255,0.5);
}

/* Pagination */
.tt-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.tt-page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tt-white);
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--tt-transition);
}

.tt-page-btn:hover,
.tt-page-btn--active {
    background: var(--tt-primary);
    border-color: var(--tt-primary);
    color: var(--tt-white);
}

.tt-page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════════
   ADDITIONAL MISSING STYLES - Phase 2 Fixes
   ═══════════════════════════════════════════════════════════════ */

/* Wishlist Button */
.tt-wishlist-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--tt-text-muted);
    transition: all var(--tt-transition);
}

.tt-wishlist-btn:hover {
    color: var(--tt-primary);
    transform: scale(1.1);
}

.tt-wishlist-main {
    gap: 8px;
}

/* Inline Spinner for Buttons */
.tt-spinner-inline {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ttSpin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

/* Out of Stock Badge */
.tt-out-of-stock {
    display: inline-block;
    padding: 6px 12px;
    background: var(--tt-text-muted);
    color: var(--tt-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--tt-radius-sm);
    text-transform: uppercase;
}

/* No Results State */
.tt-no-results {
    text-align: center;
    padding: 80px 24px;
    background: var(--tt-bg);
    border-radius: var(--tt-radius-lg);
}

.tt-no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--tt-text);
}

.tt-no-results p {
    color: var(--tt-text-muted);
    margin-bottom: 24px;
}

/* Highlight Box (for legal pages) */
.tt-highlight-box {
    background: var(--tt-primary-light);
    border-left: 4px solid var(--tt-primary);
    padding: 24px;
    border-radius: 0 var(--tt-radius-md) var(--tt-radius-md) 0;
    margin: 24px 0;
}

.tt-highlight-box p {
    margin: 0;
    color: var(--tt-text);
}

/* Checkout Secure Badge (header) */
.tt-checkout-secure {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--tt-success);
    font-weight: 500;
    font-size: 0.875rem;
}

.tt-checkout-secure svg {
    flex-shrink: 0;
}

/* Checkout Secure Badge (summary sidebar) */
.tt-checkout-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: var(--tt-bg);
    border-radius: var(--tt-radius-md);
    margin-top: 24px;
    color: var(--tt-success);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Checkout Terms */
.tt-checkout-terms {
    padding: 24px 0;
    border-top: 1px solid var(--tt-border);
    margin-top: 16px;
}

.tt-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.tt-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--tt-primary);
    cursor: pointer;
}

.tt-checkbox-label span {
    font-size: 0.875rem;
    color: var(--tt-text-muted);
    line-height: 1.5;
}

.tt-checkbox-label a {
    color: var(--tt-primary);
    text-decoration: underline;
}

/* Delivery Options */
.tt-delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tt-delivery-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--tt-white);
    border: 2px solid var(--tt-border);
    border-radius: var(--tt-radius-md);
    cursor: pointer;
    transition: all var(--tt-transition);
}

.tt-delivery-option:hover {
    border-color: var(--tt-primary-light);
}

.tt-delivery-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--tt-primary);
    cursor: pointer;
}

.tt-delivery-option input[type="radio"]:checked + .tt-delivery-option-content {
    color: var(--tt-primary);
}

.tt-delivery-option:has(input:checked) {
    border-color: var(--tt-primary);
    background: var(--tt-primary-light);
}

.tt-delivery-option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.tt-delivery-option-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tt-delivery-option-info strong {
    font-weight: 600;
    color: var(--tt-text);
}

.tt-delivery-option-info span {
    font-size: 0.875rem;
    color: var(--tt-text-muted);
}

.tt-delivery-option-price {
    font-weight: 600;
    color: var(--tt-primary);
}

/* Payment Methods Display */
.tt-payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    margin-bottom: 16px;
}

.tt-payment-methods img {
    height: 28px;
    width: auto;
}

/* Checkout Step */
.tt-checkout-step {
    background: var(--tt-white);
    padding: 24px;
    border-radius: var(--tt-radius-lg);
    margin-bottom: 24px;
    border: 1px solid var(--tt-border);
}

.tt-step-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.tt-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--tt-primary);
    color: var(--tt-white);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Checkout Layout */
.tt-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1024px) {
    .tt-checkout-layout {
        grid-template-columns: 1fr;
    }
}

.tt-checkout-main {
    order: 1;
}

.tt-checkout-summary {
    order: 2;
}

@media (max-width: 1024px) {
    .tt-checkout-summary {
        order: 0;
    }
}

.tt-checkout-summary-sticky {
    position: sticky;
    top: 24px;
    background: var(--tt-white);
    padding: 24px;
    border-radius: var(--tt-radius-lg);
    border: 1px solid var(--tt-border);
}

.tt-checkout-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
}

/* Checkout Items in Summary */
.tt-checkout-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.tt-checkout-item {
    display: flex;
    gap: 12px;
}

.tt-checkout-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--tt-radius-sm);
    object-fit: cover;
    background: var(--tt-bg);
}

.tt-checkout-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tt-checkout-item-name {
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.tt-checkout-item-qty {
    font-size: 0.75rem;
    color: var(--tt-text-muted);
}

.tt-checkout-item-price {
    font-weight: 600;
    color: var(--tt-text);
    align-self: center;
}

/* Checkout Section Background */
.tt-checkout-section {
    background: var(--tt-bg);
    min-height: 100vh;
    padding-top: 48px;
}

/* Compact Footer for Checkout */
.tt-footer--compact {
    padding: 24px 0;
    margin-top: 0;
}

.tt-footer--compact .tt-footer-grid {
    display: none;
}

.tt-footer--compact .tt-footer-bottom {
    border-top: none;
    padding-top: 0;
}

/* Compact Header for Checkout */
.tt-header--checkout .tt-nav .tt-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tt-header--checkout .tt-nav-list,
.tt-header--checkout .tt-nav-actions,
.tt-header--checkout .tt-mobile-toggle {
    display: none;
}

/* Error Page Enhancements */
.tt-error-content {
    max-width: 500px;
    margin: 0 auto;
}

.tt-error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.tt-error-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 48px;
}

.tt-error-links a {
    color: var(--tt-text-muted);
    transition: color var(--tt-transition);
}

.tt-error-links a:hover {
    color: var(--tt-primary);
}

/* ═══════════════════════════════════════════════════════════════
   PHASE 3: COMPREHENSIVE AUDIT FIXES
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   Header Components
   ───────────────────────────────────────────────────────────────── */

.tt-cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--tt-text);
    transition: color var(--tt-transition);
}

.tt-search-toggle:hover {
    color: var(--tt-primary);
}

/* ─────────────────────────────────────────────────────────────────
   Cart Item Styles
   ───────────────────────────────────────────────────────────────── */

.tt-cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--tt-radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.tt-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tt-cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.tt-cart-item-name {
    font-weight: 600;
    color: var(--tt-text);
    font-size: 0.95rem;
}

.tt-cart-item-price {
    color: var(--tt-text-muted);
    font-size: 0.9rem;
}

.tt-cart-item-total {
    font-weight: 700;
    color: var(--tt-text);
    font-size: 1rem;
}

/* ─────────────────────────────────────────────────────────────────
   Container Variations
   ───────────────────────────────────────────────────────────────── */

.tt-container--narrow {
    max-width: 800px;
}

/* ─────────────────────────────────────────────────────────────────
   Featured Section
   ───────────────────────────────────────────────────────────────── */

.tt-featured {
    padding: var(--tt-section-spacing) 0;
    background: var(--tt-bg-alt);
}

/* ─────────────────────────────────────────────────────────────────
   Hours List (Contact Page)
   ───────────────────────────────────────────────────────────────── */

.tt-hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.tt-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--tt-border);
}

.tt-hours-list li:last-child {
    border-bottom: none;
}

/* ─────────────────────────────────────────────────────────────────
   Legal Pages
   ───────────────────────────────────────────────────────────────── */

.tt-legal-text {
    line-height: 1.8;
    color: var(--tt-text);
}

.tt-legal-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--tt-text);
}

.tt-legal-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--tt-text);
}

.tt-legal-text p {
    margin-bottom: 1rem;
}

.tt-legal-text ul,
.tt-legal-text ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.tt-legal-text li {
    margin-bottom: 0.5rem;
}

.tt-legal-updated {
    background: var(--tt-bg-alt);
    padding: 16px 24px;
    border-radius: var(--tt-radius-md);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--tt-text-muted);
}

.tt-legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.tt-legal-table th,
.tt-legal-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--tt-border);
}

.tt-legal-table th {
    background: var(--tt-bg-alt);
    font-weight: 600;
    color: var(--tt-text);
}

.tt-legal-table td {
    color: var(--tt-text-muted);
}

/* ─────────────────────────────────────────────────────────────────
   Product Meta
   ───────────────────────────────────────────────────────────────── */

.tt-meta-item {
    display: flex;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--tt-text-muted);
}

.tt-meta-item strong {
    color: var(--tt-text);
    font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────────
   Page Header Compact
   ───────────────────────────────────────────────────────────────── */

.tt-page-header--compact {
    padding: 40px 0 30px;
}

.tt-page-header--compact .tt-page-title {
    font-size: 1.75rem;
}

/* ─────────────────────────────────────────────────────────────────
   Pagination
   ───────────────────────────────────────────────────────────────── */

.tt-page-dots {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--tt-text-muted);
}

.tt-page-prev,
.tt-page-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-md);
    background: var(--tt-bg);
    color: var(--tt-text);
    transition: all var(--tt-transition);
    cursor: pointer;
}

.tt-page-prev:hover,
.tt-page-next:hover {
    border-color: var(--tt-primary);
    color: var(--tt-primary);
    background: var(--tt-primary-light);
}

.tt-page-prev:disabled,
.tt-page-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ─────────────────────────────────────────────────────────────────
   Price Display
   ───────────────────────────────────────────────────────────────── */

.tt-price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tt-primary);
}

.tt-price-was {
    font-size: 1rem;
    color: var(--tt-text-muted);
    text-decoration: line-through;
}

/* ─────────────────────────────────────────────────────────────────
   Product Detail Page
   ───────────────────────────────────────────────────────────────── */

.tt-product-actions-wrap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.tt-product-brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--tt-bg-alt);
    border-radius: var(--tt-radius-sm);
    font-size: 0.85rem;
    color: var(--tt-text-muted);
    margin-bottom: 12px;
}

.tt-product-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
    padding: 16px;
    background: var(--tt-bg-alt);
    border-radius: var(--tt-radius-md);
}

.tt-product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--tt-text-muted);
}

.tt-product-features li::before {
    content: '✓';
    color: var(--tt-success);
    font-weight: 700;
}

.tt-product-link {
    color: var(--tt-primary);
    text-decoration: none;
    transition: color var(--tt-transition);
}

.tt-product-link:hover {
    color: var(--tt-primary-dark);
    text-decoration: underline;
}

.tt-product-main-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tt-primary);
}

.tt-product-price--sale .tt-product-main-price {
    color: var(--tt-sale);
}

.tt-product-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 16px 0;
}

.tt-product-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: var(--tt-radius-sm);
    background: var(--tt-bg-alt);
}

.tt-product-stock--in {
    color: var(--tt-success);
    background: rgba(16, 185, 129, 0.1);
}

.tt-product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tt-text);
    line-height: 1.3;
    margin-bottom: 8px;
}

/* ─────────────────────────────────────────────────────────────────
   Quantity Selector
   ───────────────────────────────────────────────────────────────── */

.tt-qty-minus,
.tt-qty-plus {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--tt-border);
    background: var(--tt-bg);
    color: var(--tt-text);
    cursor: pointer;
    transition: all var(--tt-transition);
    font-size: 1.25rem;
    font-weight: 600;
}

.tt-qty-minus {
    border-radius: var(--tt-radius-md) 0 0 var(--tt-radius-md);
}

.tt-qty-plus {
    border-radius: 0 var(--tt-radius-md) var(--tt-radius-md) 0;
}

.tt-qty-minus:hover,
.tt-qty-plus:hover {
    background: var(--tt-primary-light);
    border-color: var(--tt-primary);
    color: var(--tt-primary);
}

.tt-quantity-selector--sm {
    transform: scale(0.85);
    transform-origin: left center;
}

.tt-quantity-selector--sm .tt-qty-minus,
.tt-quantity-selector--sm .tt-qty-plus {
    width: 32px;
    height: 32px;
}

.tt-quantity-selector--sm .tt-qty-input {
    width: 48px;
    height: 32px;
}

/* ─────────────────────────────────────────────────────────────────
   Related Products
   ───────────────────────────────────────────────────────────────── */

.tt-related {
    padding: var(--tt-section-spacing) 0;
    background: var(--tt-bg-alt);
}

.tt-related .tt-section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* ─────────────────────────────────────────────────────────────────
   Shop Content
   ───────────────────────────────────────────────────────────────── */

.tt-shop-content {
    flex: 1;
    min-width: 0;
}

/* ─────────────────────────────────────────────────────────────────
   Stats Section (About Page)
   ───────────────────────────────────────────────────────────────── */

.tt-stats {
    padding: 60px 0;
    background: var(--tt-primary);
    color: white;
}

.tt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

@media (max-width: 768px) {
    .tt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.tt-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tt-stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.tt-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}/* ===============================================
   DAWNWEAR UNIQUE COOKIE BANNER - Baby Cloud Theme
   Position: Top-Right Floating Cloud
   Animation: Float down with wobble
   =============================================== */

.dw-cookie-bubble {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 340px;
    max-width: calc(100vw - 40px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px) rotate(-2deg);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.dw-cookie-bubble.dw-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) rotate(0deg);
}

.dw-cookie-cloud {
    background: linear-gradient(145deg, #fff9f0 0%, #fff5e6 100%);
    border-radius: 24px;
    padding: 28px 24px 24px;
    box-shadow: 
        0 20px 50px rgba(255, 182, 193, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 -3px 0 rgba(255, 182, 193, 0.3);
    position: relative;
    border: 2px solid rgba(255, 182, 193, 0.4);
}

.dw-cookie-cloud::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 30px;
    width: 24px;
    height: 24px;
    background: linear-gradient(145deg, #fff9f0 0%, #fff5e6 100%);
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(255, 182, 193, 0.2);
    border: 2px solid rgba(255, 182, 193, 0.4);
    border-top: none;
    border-left: none;
}

.dw-cookie-cloud::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 20px;
    width: 14px;
    height: 14px;
    background: linear-gradient(145deg, #fff9f0 0%, #fff5e6 100%);
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(255, 182, 193, 0.2);
}

.dw-cookie-stars {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5rem;
    animation: dwSparkle 2s ease-in-out infinite;
}

@keyframes dwSparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.dw-cookie-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.dw-cookie-title {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    color: #5d4e37;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.dw-cookie-msg {
    font-size: 0.9rem;
    color: #7a6b5a;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.dw-cookie-btns {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.dw-cookie-yes {
    flex: 1;
    padding: 12px 16px;
    background: linear-gradient(135deg, #ffb6c1 0%, #ffc0cb 100%);
    color: #5d4e37;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.4);
}

.dw-cookie-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 182, 193, 0.5);
}

.dw-cookie-no {
    padding: 12px 16px;
    background: transparent;
    color: #7a6b5a;
    border: 2px solid #e8ddd0;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.dw-cookie-no:hover {
    border-color: #d4c4b0;
    background: rgba(232, 221, 208, 0.3);
}

.dw-cookie-link {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: #9a8b7a;
    text-decoration: none;
}

.dw-cookie-link:hover {
    color: #5d4e37;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .dw-cookie-bubble {
        top: auto;
        bottom: 20px;
        right: 10px;
        left: 10px;
        width: auto;
    }
    
    .dw-cookie-cloud::before,
    .dw-cookie-cloud::after {
        display: none;
    }
    
    .dw-cookie-btns {
        flex-direction: column;
    }
}
