/*
Theme Name:  Tshirt Garden
Theme URI:   https://tshirtgarden.com
Author:      Tshirt Garden
Author URI:  https://tshirtgarden.com
Description: Premium Bangladeshi T-Shirt eCommerce Theme. Clean, modern, mobile-first design with WooCommerce support.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tshirt-garden
Tags: woocommerce, ecommerce, responsive, custom-colors, custom-menu, featured-images
*/

/* =============================================
   TSHIRT GARDEN — MAIN STYLESHEET
   Edit variables below to change colors/fonts
   ============================================= */

:root {
  --tg-green:        #2E7D32;
  --tg-green-dark:   #1B5E20;
  --tg-green-light:  #A5D6A7;
  --tg-green-xlight: #E8F5E9;
  --tg-black:        #111111;
  --tg-white:        #FFFFFF;
  --tg-gray:         #F8F8F8;
  --tg-gray2:        #EEEEEE;
  --tg-text:         #333333;
  --tg-text-muted:   #666666;
  --tg-border:       #E0E0E0;
  --tg-radius:       10px;
  --tg-radius-lg:    16px;
  --font-heading:    'Poppins', sans-serif;
  --font-body:       'Roboto', sans-serif;
  --transition:      0.3s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--tg-text);
  background: var(--tg-white);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--tg-black);
}
h1 { font-size: 2.6rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
p  { margin-bottom: 1rem; }

/* ---- CONTAINERS ---- */
.tg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.tg-section { padding: 60px 0; }
.tg-section--gray { background: var(--tg-gray); }

/* ---- BUTTONS ---- */
.tg-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.tg-btn--primary {
  background: var(--tg-green);
  color: #fff;
  border-color: var(--tg-green);
}
.tg-btn--primary:hover { background: var(--tg-green-dark); border-color: var(--tg-green-dark); color: #fff; }
.tg-btn--outline {
  background: transparent;
  color: var(--tg-green);
  border-color: var(--tg-green);
}
.tg-btn--outline:hover { background: var(--tg-green); color: #fff; }
.tg-btn--white {
  background: #fff;
  color: var(--tg-green);
  border-color: #fff;
}
.tg-btn--white:hover { background: var(--tg-green-xlight); }

/* ---- SECTION LABEL ---- */
.tg-label {
  display: inline-block;
  background: var(--tg-green-xlight);
  color: var(--tg-green);
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-heading);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.tg-section-header { margin-bottom: 36px; }
.tg-section-header h2 { margin-bottom: 8px; }
.tg-section-header p { color: var(--tg-text-muted); font-size: 14px; }
.tg-section-header--flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.tg-view-all { font-size: 13px; color: var(--tg-green); font-weight: 500; font-family: var(--font-heading); }
.tg-view-all:hover { text-decoration: underline; }

/* ---- STAR RATING ---- */
.tg-stars { color: #FFC107; font-size: 13px; display: flex; align-items: center; gap: 4px; }
.tg-stars span { color: var(--tg-text-muted); font-size: 11px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  h1 { font-size: 2rem; }
}
@media (max-width: 768px) {
  .tg-section { padding: 40px 0; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
}
