/*
Theme Name: TastyTykes Blog
Theme URI: https://tastytykes.com
Author: TastyTykes
Author URI: https://tastytykes.com
Description: A clean, fast, lightweight blog and digital product theme for TastyTykes. Built for recipe blogs with integrated product selling. AdSense ready, SEO optimized, mobile first.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tastytykes-blog
Tags: food, blog, recipes, clean, fast, lightweight, adsense, mobile-first, digital-products
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', Georgia, sans-serif; background: #FFFFFF; color: #1A1A1A; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: #1A1A1A; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { margin-bottom: 1rem; color: #444; }

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --saffron: #F4A01C;
  --saffron-pale: #FEF6E4;
  --saffron-dark: #D4890F;
  --green: #2E7D32;
  --green-pale: #EFF7F0;
  --dark: #1A1A1A;
  --mid: #555;
  --soft: #888;
  --light: #F8F8F6;
  --border: #E8E8E8;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 8px rgba(0,0,0,0.06);
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 18px;
  --max-width: 1140px;
  --content-width: 780px;
}

/* =============================================
   LAYOUT HELPERS
   ============================================= */
.tt-container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.tt-content-width { max-width: var(--content-width); margin: 0 auto; padding: 0 20px; }
.tt-section { padding: 60px 0; }
.tt-section-sm { padding: 40px 0; }
.tt-bg-light { background: var(--light); }
.tt-bg-white { background: var(--white); }
.tt-text-center { text-align: center; }

.tt-section-head { margin-bottom: 36px; }
.tt-section-head h2 { margin-bottom: 6px; }
.tt-section-head p { color: var(--soft); font-size: 0.9rem; }
.tt-section-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.tt-view-all { font-size: 0.85rem; font-weight: 700; color: var(--saffron); white-space: nowrap; }
.tt-view-all:hover { text-decoration: underline; }

/* =============================================
   HEADER
   ============================================= */
.tt-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 999; box-shadow: var(--shadow-sm); }
.tt-header-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.tt-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 900; color: var(--dark); letter-spacing: -0.5px; flex-shrink: 0; }
.tt-logo span { color: var(--saffron); }

.tt-nav { display: flex; align-items: center; gap: 4px; }
.tt-nav a { font-size: 0.85rem; font-weight: 600; color: var(--mid); padding: 7px 13px; border-radius: 8px; transition: background 0.15s, color 0.15s; white-space: nowrap; }
.tt-nav a:hover, .tt-nav a.current-menu-item { background: var(--saffron-pale); color: var(--saffron); }
.tt-nav-btn { background: var(--saffron) !important; color: #fff !important; border-radius: 50px !important; padding: 8px 18px !important; font-weight: 700 !important; box-shadow: 0 2px 8px rgba(244,160,28,0.3); transition: background 0.15s !important; }
.tt-nav-btn:hover { background: var(--saffron-dark) !important; }

.tt-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--dark); font-size: 1.4rem; line-height: 1; }

/* Mobile nav */
@media (max-width: 768px) {
  .tt-hamburger { display: flex; align-items: center; }
  .tt-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 12px 16px 20px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 20px rgba(0,0,0,0.08); gap: 2px; }
  .tt-nav.open { display: flex; }
  .tt-nav a { padding: 10px 14px; border-radius: 8px; }
  .tt-nav-btn { text-align: center; }
}

/* =============================================
   HERO — HOMEPAGE
   ============================================= */
.tt-hero { background: linear-gradient(140deg, #1B3A1D 0%, #2E7D32 55%, #43A047 100%); padding: 80px 20px 100px; text-align: center; position: relative; overflow: hidden; }
.tt-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: var(--white); clip-path: ellipse(60% 100% at 50% 100%); }
.tt-hero-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.tt-hero-badge { display: inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.9); font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 16px; border-radius: 20px; margin-bottom: 20px; }
.tt-hero h1 { color: #fff; margin-bottom: 16px; text-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.tt-hero h1 em { font-style: normal; color: var(--saffron); }
.tt-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 480px; margin: 0 auto 28px; }
.tt-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.tt-btn { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.9rem; padding: 12px 24px; border-radius: 50px; transition: transform 0.15s, box-shadow 0.15s; cursor: pointer; border: none; text-decoration: none; }
.tt-btn-saffron { background: var(--saffron); color: #fff; box-shadow: 0 4px 14px rgba(244,160,28,0.4); }
.tt-btn-saffron:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,160,28,0.5); }
.tt-btn-outline { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.tt-btn-outline:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.tt-btn-dark { background: var(--dark); color: #fff; }
.tt-btn-dark:hover { background: #333; }
.tt-btn-green { background: var(--green); color: #fff; box-shadow: 0 4px 14px rgba(46,125,50,0.3); }
.tt-btn-green:hover { transform: translateY(-2px); }

/* =============================================
   STATS BAR
   ============================================= */
.tt-stats { background: var(--white); border-bottom: 1px solid var(--border); padding: 18px 20px; }
.tt-stats-inner { max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.tt-stat { text-align: center; }
.tt-stat-num { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; font-weight: 700; color: var(--saffron); display: block; line-height: 1; }
.tt-stat-label { font-size: 0.72rem; color: var(--soft); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-top: 4px; }

/* =============================================
   BLOG GRID
   ============================================= */
.tt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tt-grid-2 { grid-template-columns: repeat(2, 1fr); }
.tt-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }

.tt-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.tt-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.tt-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--saffron-pale); display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; flex-shrink: 0; }
.tt-card-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s; }
.tt-card:hover .tt-card-img img { transform: scale(1.03); }
.tt-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.tt-card-tag { display: inline-block; background: var(--saffron-pale); color: var(--saffron); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 9px; width: fit-content; }
.tt-card-title { font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.35; margin-bottom: 8px; flex: 1; }
.tt-card-excerpt { font-size: 0.83rem; color: var(--soft); line-height: 1.5; margin-bottom: 12px; }
.tt-card-meta { display: flex; gap: 14px; font-size: 0.74rem; color: var(--soft); margin-top: auto; }

/* Featured post — wide card */
.tt-card-featured { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); margin-bottom: 32px; }
.tt-card-featured .tt-card-img { height: 300px; }
.tt-card-featured .tt-card-img img { height: 300px; }
.tt-card-featured-body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.tt-card-featured-eyebrow { font-size: 0.7rem; font-weight: 700; color: var(--saffron); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.tt-card-featured-body h2 { font-size: 1.4rem; margin-bottom: 12px; }
.tt-card-featured-body p { font-size: 0.88rem; color: var(--mid); margin-bottom: 20px; }
.tt-card-featured-meta { display: flex; gap: 16px; font-size: 0.76rem; color: var(--soft); margin-bottom: 20px; }

/* =============================================
   CATEGORY PILLS
   ============================================= */
.tt-cat-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.tt-cat-pill { display: inline-flex; align-items: center; gap: 5px; background: var(--white); border: 1.5px solid var(--border); color: var(--mid); font-size: 0.82rem; font-weight: 600; padding: 7px 15px; border-radius: 50px; cursor: pointer; transition: all 0.15s; text-decoration: none; }
.tt-cat-pill:hover, .tt-cat-pill.active { background: var(--saffron-pale); border-color: var(--saffron); color: var(--saffron); }

/* =============================================
   PRODUCT SECTION
   ============================================= */
.tt-products-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 20px; align-items: start; }

.tt-product-main { background: linear-gradient(135deg, #FEF6E4, #FFFBF0); border: 2px solid var(--saffron); border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden; }
.tt-product-main::after { content: '📖'; position: absolute; font-size: 90px; right: -8px; bottom: -8px; opacity: 0.07; }
.tt-product-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
.tt-badge-live { background: var(--saffron); color: #fff; }
.tt-badge-soon { background: var(--green-pale); color: var(--green); }
.tt-product-main h3 { font-size: 1.4rem; margin-bottom: 10px; }
.tt-product-main p { font-size: 0.88rem; color: var(--mid); margin-bottom: 18px; line-height: 1.65; }
.tt-product-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.tt-product-tags span { background: var(--white); border: 1px solid var(--border); font-size: 0.72rem; font-weight: 600; color: var(--mid); padding: 4px 11px; border-radius: 20px; }

.tt-coming-card { background: var(--white); border: 1.5px dashed var(--border); border-radius: var(--radius); padding: 26px 20px; text-align: center; }
.tt-coming-icon { font-size: 2.6rem; display: block; margin-bottom: 10px; }
.tt-coming-card h4 { font-size: 1rem; margin-bottom: 8px; }
.tt-coming-card p { font-size: 0.8rem; color: var(--soft); margin-bottom: 16px; line-height: 1.55; }
.tt-notify-btn { display: block; width: 100%; background: var(--green-pale); color: var(--green); font-size: 0.8rem; font-weight: 700; padding: 9px; border-radius: 8px; border: 1.5px solid var(--green); cursor: pointer; transition: all 0.15s; text-align: center; text-decoration: none; }
.tt-notify-btn:hover { background: var(--green); color: #fff; }

/* =============================================
   CHALLENGE BANNER
   ============================================= */
.tt-challenge { background: linear-gradient(135deg, #1B5E20, #2E7D32, #388E3C); border-radius: var(--radius-lg); padding: 44px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; overflow: hidden; }
.tt-challenge::before { content: '🥤'; position: absolute; font-size: 110px; right: 160px; top: -10px; opacity: 0.06; }
.tt-challenge-text { position: relative; }
.tt-challenge-text h2 { color: #fff; margin-bottom: 8px; font-size: 1.6rem; }
.tt-challenge-text p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0; }
.tt-challenge-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* =============================================
   SINGLE POST
   ============================================= */
.tt-post-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 40px; max-width: var(--max-width); margin: 0 auto; padding: 48px 20px 80px; align-items: start; }
.tt-post-content h2 { font-size: 1.4rem; margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--saffron-pale); }
.tt-post-content h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--green); }
.tt-post-content p { color: #333; font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.tt-post-content ul, .tt-post-content ol { padding-left: 22px; margin-bottom: 18px; }
.tt-post-content ul li, .tt-post-content ol li { margin-bottom: 8px; font-size: 15px; color: #333; line-height: 1.7; }
.tt-post-content img { width: 100%; border-radius: var(--radius); margin: 22px 0; box-shadow: var(--shadow-sm); }
.tt-post-content strong { color: var(--dark); }
.tt-post-content a { color: var(--saffron); font-weight: 600; }
.tt-post-content a:hover { text-decoration: underline; }
.tt-post-content hr { border: none; border-top: 2px solid var(--border); margin: 36px 0; }
.tt-post-content blockquote { border-left: 4px solid var(--saffron); background: var(--saffron-pale); padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 24px 0; font-style: italic; color: var(--mid); }

/* Post header */
.tt-post-header { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.tt-post-header h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 16px; }
.tt-post-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.8rem; color: var(--soft); }
.tt-post-hero-img { width: 100%; border-radius: var(--radius-lg); margin-bottom: 28px; box-shadow: var(--shadow); }
.tt-post-hero-img img { width: 100%; border-radius: var(--radius-lg); max-height: 440px; object-fit: cover; }

/* =============================================
   SIDEBAR
   ============================================= */
.tt-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 24px; }
.tt-sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.tt-sidebar-widget h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--saffron-pale); }
.tt-sidebar-product { background: var(--saffron-pale); border: 1.5px solid var(--saffron); border-radius: var(--radius); padding: 22px; text-align: center; }
.tt-sidebar-product .sp-emoji { font-size: 3rem; display: block; margin-bottom: 10px; }
.tt-sidebar-product h3 { font-size: 1rem; margin-bottom: 8px; border: none; padding: 0; }
.tt-sidebar-product p { font-size: 0.82rem; color: var(--mid); margin-bottom: 14px; line-height: 1.5; }
.tt-sidebar-product .sp-price { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--saffron); display: block; margin-bottom: 14px; }
.tt-sidebar-recent li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.tt-sidebar-recent li:last-child { border-bottom: none; }
.tt-sidebar-recent a { font-size: 0.85rem; font-weight: 600; color: var(--dark); line-height: 1.4; }
.tt-sidebar-recent a:hover { color: var(--saffron); }
.tt-sidebar-recent .sr-date { font-size: 0.74rem; color: var(--soft); margin-top: 3px; display: block; }

/* AdSense widget */
.tt-ad-widget { background: var(--light); border: 1px dashed var(--border); border-radius: var(--radius); padding: 8px; min-height: 250px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--soft); }

/* =============================================
   RECIPE META STRIP
   ============================================= */
.tt-recipe-meta-strip { display: flex; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; margin-bottom: 28px; box-shadow: var(--shadow-sm); }
.tt-recipe-meta-item { flex: 1; text-align: center; border-right: 1px solid var(--border); }
.tt-recipe-meta-item:last-child { border-right: none; }
.tt-rmi-icon { font-size: 1.3rem; display: block; margin-bottom: 4px; }
.tt-rmi-label { font-size: 0.68rem; color: var(--soft); text-transform: uppercase; letter-spacing: 0.5px; display: block; }
.tt-rmi-val { font-size: 0.9rem; font-weight: 700; color: var(--dark); display: block; margin-top: 2px; }

/* =============================================
   INLINE ADS
   ============================================= */
.tt-ad-inline { width: 100%; margin: 28px 0; min-height: 90px; background: var(--light); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.tt-ad-sidebar { min-height: 250px; width: 100%; }

/* =============================================
   PRODUCT PROMO (in post)
   ============================================= */
.tt-post-promo { background: var(--white); border: 2px solid var(--saffron); border-radius: var(--radius-lg); padding: 24px; margin: 36px 0; display: flex; gap: 20px; align-items: flex-start; box-shadow: 0 4px 16px rgba(244,160,28,0.1); }
.tt-post-promo-icon { font-size: 3rem; flex-shrink: 0; }
.tt-post-promo h3 { font-size: 1.1rem; margin-bottom: 6px; }
.tt-post-promo p { font-size: 0.85rem; color: var(--mid); margin-bottom: 14px; line-height: 1.6; }
.tt-post-promo-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tt-post-promo-tags span { background: var(--saffron-pale); color: #8B5E00; font-size: 0.7rem; font-weight: 600; padding: 3px 9px; border-radius: 20px; }

/* Challenge in post */
.tt-post-challenge { background: linear-gradient(135deg, #1B5E20, #2E7D32); border-radius: var(--radius-lg); padding: 28px; margin: 36px 0; color: #fff; text-align: center; }
.tt-post-challenge h3 { color: #fff; font-size: 1.2rem; margin-bottom: 8px; }
.tt-post-challenge p { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin-bottom: 18px; }

/* =============================================
   PAGINATION
   ============================================= */
.tt-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.tt-pagination a, .tt-pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; font-size: 0.88rem; font-weight: 600; border: 1.5px solid var(--border); color: var(--mid); transition: all 0.15s; }
.tt-pagination a:hover, .tt-pagination .current { background: var(--saffron); border-color: var(--saffron); color: #fff; }

/* =============================================
   COMMENTS
   ============================================= */
.tt-comments { margin-top: 48px; padding-top: 36px; border-top: 2px solid var(--border); }
.tt-comments h2 { font-size: 1.3rem; margin-bottom: 24px; }
.tt-comment { display: flex; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.tt-comment-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--saffron-pale); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.tt-comment-content { flex: 1; }
.tt-comment-author { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.tt-comment-date { font-size: 0.75rem; color: var(--soft); margin-left: 8px; }
.tt-comment-text { font-size: 0.88rem; color: #444; margin-top: 6px; line-height: 1.6; }

/* Comment form */
.tt-comment-form { margin-top: 32px; }
.tt-comment-form h3 { font-size: 1.1rem; margin-bottom: 20px; }
.tt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.tt-form-field { margin-bottom: 14px; }
.tt-form-field label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.tt-form-field input, .tt-form-field textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 14px; font-size: 0.9rem; color: var(--dark); font-family: inherit; outline: none; transition: border-color 0.15s; background: var(--white); }
.tt-form-field input:focus, .tt-form-field textarea:focus { border-color: var(--saffron); }
.tt-form-field textarea { height: 120px; resize: vertical; }
.tt-form-submit { background: var(--green); color: #fff; border: none; padding: 12px 28px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: background 0.15s; }
.tt-form-submit:hover { background: #245c27; }

/* =============================================
   FOOTER
   ============================================= */
.tt-footer { background: #111; color: rgba(255,255,255,0.55); padding: 56px 20px 24px; margin-top: 60px; }
.tt-footer-inner { max-width: var(--max-width); margin: 0 auto; }
.tt-footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.tt-footer-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; font-weight: 900; color: #fff; display: block; margin-bottom: 10px; }
.tt-footer-logo span { color: var(--saffron); }
.tt-footer-brand p { font-size: 0.83rem; line-height: 1.65; max-width: 220px; }
.tt-footer-col h4 { color: #fff; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px; }
.tt-footer-col ul li { margin-bottom: 9px; }
.tt-footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.tt-footer-col ul li a:hover { color: var(--saffron); }
.tt-footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.78rem; }
.tt-footer-bottom a { color: var(--saffron); }
.tt-footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* =============================================
   404 PAGE
   ============================================= */
.tt-404 { text-align: center; padding: 100px 20px; }
.tt-404-emoji { font-size: 5rem; display: block; margin-bottom: 20px; }
.tt-404 h1 { margin-bottom: 12px; }
.tt-404 p { color: var(--soft); margin-bottom: 28px; }

/* =============================================
   SEARCH
   ============================================= */
.tt-search-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.tt-search-form input { flex: 1; border: 1.5px solid var(--border); border-right: none; border-radius: 8px 0 0 8px; padding: 11px 16px; font-size: 0.9rem; outline: none; font-family: inherit; }
.tt-search-form input:focus { border-color: var(--saffron); }
.tt-search-form button { background: var(--saffron); color: #fff; border: none; padding: 11px 20px; border-radius: 0 8px 8px 0; cursor: pointer; font-weight: 700; font-size: 0.88rem; font-family: inherit; }

/* =============================================
   UTILITIES
   ============================================= */
.tt-breadcrumb { font-size: 0.8rem; color: var(--soft); margin-bottom: 20px; }
.tt-breadcrumb a { color: var(--soft); }
.tt-breadcrumb a:hover { color: var(--saffron); }
.tt-breadcrumb span { margin: 0 6px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .tt-grid { grid-template-columns: repeat(2, 1fr); }
  .tt-products-grid { grid-template-columns: 1fr 1fr; }
  .tt-products-grid .tt-product-main { grid-column: span 2; }
  .tt-footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .tt-post-wrap { grid-template-columns: 1fr; }
  .tt-sidebar { position: static; }
  .tt-challenge { flex-direction: column; text-align: center; }
  .tt-challenge::before { display: none; }
}

@media (max-width: 640px) {
  .tt-grid { grid-template-columns: 1fr; }
  .tt-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tt-products-grid { grid-template-columns: 1fr; }
  .tt-products-grid .tt-product-main { grid-column: span 1; }
  .tt-card-featured { grid-template-columns: 1fr; }
  .tt-card-featured .tt-card-img { height: 220px; }
  .tt-card-featured .tt-card-img img { height: 220px; }
  .tt-stats-inner { gap: 24px; }
  .tt-footer-top { grid-template-columns: 1fr; gap: 24px; }
  .tt-footer-bottom { flex-direction: column; text-align: center; }
  .tt-footer-links { justify-content: center; }
  .tt-form-row { grid-template-columns: 1fr; }
  .tt-hero { padding: 60px 20px 80px; }
  .tt-section { padding: 44px 0; }
  .tt-post-promo { flex-direction: column; }
  .tt-challenge { padding: 28px 22px; }
}
