/*
Theme Name: GTR Fashion
Theme URI: https://example.com/gtr-fashion
Author: GTR Fashion
Description: Mobile-first WooCommerce storefront theme.
Version: 1.0.0
Text Domain: gtr-fashion
*/

:root {
  --gtr-yellow: #ffc200;
  --gtr-ink: #111111;
  --gtr-muted: #f3f4f6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--gtr-ink);
  background: #fff;
  padding-bottom: 80px;
  font-family: Inter, Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }
.site-content { min-height: 45vh; }

.gtr-site-header { position: sticky; top: 0; z-index: 9990; background: rgba(255,255,255,.97); border-bottom: 1px solid #eee; }
.gtr-header-inner { max-width: 1200px; margin: 0 auto; padding: 10px 16px 12px; }
.gtr-brand { display: flex; justify-content: center; align-items: center; min-height: 48px; }
.gtr-brand .custom-logo-link { display: inline-flex; align-items: center; }
.gtr-brand .custom-logo { max-height: 45px; width: auto; height: auto; }
.gtr-site-title { color: var(--gtr-ink); font-size: 1.35rem; font-weight: 800; text-decoration: none; }
.gtr-brand-fallback { display: inline-flex; align-items: center; gap: 8px; color: #111; text-decoration: none; }
.gtr-logo-mark { display: block; width: 42px; height: 42px; overflow: hidden; border-radius: 50%; background: #f6f1e9; }
.gtr-logo-mark img { display: block; width: 100%; height: 100%; object-fit: cover; transform: scale(1.45); }
.gtr-brand-wordmark { display: grid; line-height: 1; letter-spacing: .08em; }
.gtr-brand-wordmark strong { font-family: Georgia, serif; font-size: 21px; }
.gtr-brand-wordmark small { margin-top: 3px; font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

.gtr-product-search { margin-top: 10px; }
.gtr-product-search form { position: relative; display: flex; }
.gtr-product-search input[type="search"] {
  width: 100%; height: 44px; border: 0; border-radius: 999px; background: var(--gtr-muted);
  padding: 0 48px 0 16px; color: var(--gtr-ink); font-size: 16px; outline: none;
}
.gtr-product-search button {
  position: absolute; top: 0; right: 0; width: 46px; height: 44px; border: 0; background: transparent;
  color: var(--gtr-ink); cursor: pointer; font-size: 19px;
}
.gtr-header-cart { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; color: #111; text-decoration: none; }
.gtr-header-cart .dashicons { font-size: 23px; }
.gtr-cart-count { position: absolute; top: 2px; right: 0; display: grid; place-items: center; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 99px; background: var(--gtr-yellow); color: #111; font-size: 10px; font-weight: 800; }
.gtr-primary-nav ul { display: flex; justify-content: center; gap: 25px; margin: 13px 0 0; padding: 0; list-style: none; }
.gtr-primary-nav a { color: #111; font-size: 13px; font-weight: 700; text-decoration: none; }

.gtr-hero { position: relative; display: grid; min-height: 420px; place-items: center; overflow: hidden; padding: 48px 20px; color: #fff; text-align: center; background: linear-gradient(130deg, #101a35 0%, #182d5a 54%, #714c37 100%); }
.gtr-hero::before, .gtr-hero::after { position: absolute; width: 42vw; height: 42vw; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; content: ""; }
.gtr-hero::before { top: -26vw; left: -12vw; }.gtr-hero::after { right: -13vw; bottom: -28vw; }
.gtr-hero-content { position: relative; z-index: 1; max-width: 650px; }
.gtr-hero h1 { margin: 0; font-size: clamp(2.25rem, 6vw, 4.5rem); line-height: 1.05; }
.gtr-hero p { font-size: 1.05rem; }
.gtr-hero-kicker { margin: 0 0 12px; color: var(--gtr-yellow); font-size: 12px !important; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.gtr-button { display: inline-block; padding: 14px 25px; background: var(--gtr-yellow); color: #111; font-size: 14px; font-weight: 800; text-decoration: none; }
.gtr-store-benefits { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid #e8e8e8; background: #fff; }
.gtr-store-benefits span { padding: 14px 8px; border-right: 1px solid #e8e8e8; color: #333; font-size: 12px; font-weight: 800; text-align: center; }
.gtr-store-benefits span:last-child { border-right: 0; }
.gtr-home-section { max-width: 1200px; margin: 0 auto; padding: 52px 20px; }
.gtr-section-heading { margin: 0 0 25px; font-size: 1.8rem; text-align: center; }
.gtr-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gtr-category-card { display: grid; min-height: 190px; place-items: center; padding: 20px; background: #f5f5f5; color: #111; font-size: 1.3rem; font-weight: 800; text-decoration: none; }
.gtr-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gtr-product-card { overflow: hidden; background: #fff; }
.gtr-product-card img { display: block; width: 100%; aspect-ratio: .78; object-fit: cover; transition: transform .25s ease; }
.gtr-product-card:hover img { transform: scale(1.04); }
.gtr-product-card h3 { margin: 12px 0 6px; font-size: 14px; line-height: 1.35; }
.gtr-product-card h3 a { text-decoration: none; }
.gtr-product-card .price { display: block; margin-bottom: 11px; font-size: 14px; font-weight: 700; }
.gtr-product-card .button { display: inline-block; padding: 10px 13px; background: #111; color: #fff; font-size: 12px; font-weight: 700; text-decoration: none; }

.site-footer { padding: 48px 20px 20px; background: #111; color: #eee; }
.gtr-footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; max-width: 1200px; margin: auto; }
.gtr-footer-grid h2 { margin: 0 0 13px; color: #fff; font-size: 15px; }
.gtr-footer-grid p, .gtr-footer-grid li { margin: 0 0 8px; color: #bbb; font-size: 13px; line-height: 1.5; }
.gtr-footer-grid ul { margin: 0; padding: 0; list-style: none; }
.gtr-footer-grid a { color: #ddd; text-decoration: none; }
.gtr-footer-copyright { max-width: 1200px; margin: 35px auto 0; padding-top: 16px; border-top: 1px solid #333; color: #888; font-size: 12px; }

.container { width: min(100%, 880px); margin: 0 auto; }
.gtr-page-container { padding: 20px; padding-bottom: 90px; }
.gtr-page-title { margin: 0 0 20px; font-size: 24px; font-weight: 700; }
.gtr-page-content { line-height: 1.7; }
.gtr-page-content > *:first-child { margin-top: 0; }
.gtr-about-hero { display: grid; min-height: 300px; place-items: center; padding: 35px 20px; color: #fff; text-align: center; background: linear-gradient(110deg, rgba(0,0,0,.68), rgba(0,0,0,.28)), url('GTR_Fashion_New_Logo.jpg') center / cover; }
.gtr-about-hero h1 { margin: 0; font-size: clamp(2rem, 7vw, 3.8rem); }
.gtr-eyebrow { margin: 0 0 8px; font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.gtr-about-content { max-width: 720px; }
.gtr-about-content section { margin-top: 34px; font-size: 16px; line-height: 1.6; }
.gtr-about-content h2 { margin: 0 0 12px; font-size: 23px; }
.gtr-founder-message { padding: 24px; border-left: 4px solid var(--gtr-yellow); background: #f7f7f7; }
.gtr-founder-name { margin-bottom: 0; font-weight: 800; }
.gtr-contact-page { max-width: 620px; }
.gtr-contact-intro { line-height: 1.6; }
.gtr-whatsapp-button { display: inline-block; margin: 8px 0 14px; padding: 14px 20px; border-radius: 6px; background: #25D366; color: #fff; font-weight: 800; text-decoration: none; }
.gtr-support-email { margin: 8px 0 24px; }
.gtr-contact-form { display: grid; gap: 9px; }
.gtr-contact-form label { margin-top: 8px; font-size: 14px; font-weight: 700; }
.gtr-contact-form input, .gtr-contact-form textarea { width: 100%; border: 1px solid #d4d4d4; border-radius: 5px; padding: 12px; font: inherit; }
.gtr-contact-form textarea { resize: vertical; }
.gtr-contact-form .gtr-button { margin-top: 10px; border: 0; text-align: center; cursor: pointer; }
.gtr-form-notice { padding: 12px; border-radius: 5px; font-size: 14px; }
.gtr-form-notice.is-success { background: #dcfce7; color: #166534; }
.gtr-form-notice.is-error { background: #fee2e2; color: #991b1b; }
.gtr-woocommerce-container { max-width: 1200px; min-height: 50vh; margin: 0 auto; padding: 32px 20px 100px; }
.gtr-woocommerce-container .woocommerce-result-count { font-size: 13px; }
.gtr-woocommerce-container .woocommerce-ordering select { padding: 8px; }
.gtr-woocommerce-container ul.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0; }
.gtr-woocommerce-container ul.products::before, .gtr-woocommerce-container ul.products::after { display: none; }
.gtr-woocommerce-container ul.products li.product { width: auto; margin: 0; }
.gtr-woocommerce-container ul.products li.product img { transition: transform .25s ease; }
.gtr-woocommerce-container ul.products li.product:hover img { transform: scale(1.03); }
.gtr-woocommerce-container .button { background: #111; color: #fff; font-weight: 700; }
.gtr-archive-item { padding: 20px 0; border-bottom: 1px solid #e5e5e5; }
.gtr-archive-item h2 { margin: 0 0 8px; font-size: 20px; }
.gtr-archive-item h2 a { text-decoration: none; }
.gtr-not-found { text-align: center; }

.mobile-bottom-nav {
  position: fixed; right: 0; bottom: 0; left: 0; z-index: 99999; display: grid;
  grid-template-columns: repeat(4, 1fr); min-height: 68px; padding: 6px 4px env(safe-area-inset-bottom);
  background: #fff; box-shadow: 0 -2px 10px rgba(0, 0, 0, .05);
}
.mobile-bottom-nav a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: 56px; color: #333; font-size: 11px; font-weight: 600; line-height: 1.1; text-decoration: none;
}
.mobile-bottom-nav .dashicons { width: auto; height: auto; font-size: 21px; }
.mobile-bottom-nav a:focus-visible { outline: 2px solid var(--gtr-yellow); outline-offset: -2px; }

.gtr-whatsapp-support {
  position: fixed; right: 16px; bottom: 86px; z-index: 99998; display: inline-flex; align-items: center;
  justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.2); font-size: 25px; text-decoration: none;
}

.gtr-fomo-tag { display: inline-block; margin: 10px 0; padding: 7px 10px; border-radius: 6px; background: #ffe4e6; color: #991b1b; font-size: 13px; font-weight: 700; }
.gtr-trust-badges { margin: 12px 0; color: #333; font-size: 13px; font-weight: 600; line-height: 1.5; }

.gtr-sticky-product-actions {
  position: fixed; right: 0; bottom: 68px; left: 0; z-index: 99997; display: grid;
  grid-template-columns: 1fr 1fr; min-height: 56px; background: #fff; box-shadow: 0 -2px 10px rgba(0,0,0,.10);
}
.gtr-sticky-product-actions button { border: 0; padding: 14px 8px; color: #111; font-size: 15px; font-weight: 800; cursor: pointer; }
.gtr-sticky-add-to-cart { background: #fff; border-top: 1px solid #e5e5e5 !important; }
.gtr-sticky-buy-now { background: var(--gtr-yellow); }
.gtr-sticky-product-actions button:disabled { cursor: not-allowed; opacity: .55; }
body.single-product { padding-bottom: 136px; }
body.single-product .gtr-whatsapp-support { bottom: 142px; }

@media (min-width: 769px) {
  body, body.single-product { padding-bottom: 0; }
  .mobile-bottom-nav, .gtr-whatsapp-support, .gtr-sticky-product-actions { display: none; }
  .gtr-header-top { display: grid; grid-template-columns: 190px minmax(260px, 600px) 44px; align-items: center; justify-content: center; gap: 25px; }
  .gtr-brand { justify-content: flex-start; }
  .gtr-product-search { margin-top: 0; }
}

@media (max-width: 768px) {
  .site-footer, #colophon, .gtr-default-footer { display: none; }
  .single-product .site-content { padding-bottom: 64px; }
  .gtr-primary-nav { display: none; }
  .gtr-header-top { display: grid; grid-template-columns: 1fr 44px; align-items: center; column-gap: 8px; }
  .gtr-brand { justify-content: flex-start; }
  .gtr-product-search { grid-column: 1 / -1; grid-row: 2; margin-top: 7px; }
  .gtr-header-cart { grid-column: 2; grid-row: 1; }
  .gtr-category-grid { grid-template-columns: 1fr; }
  .gtr-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gtr-woocommerce-container { padding: 20px 16px 100px; }
  .gtr-woocommerce-container ul.products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gtr-home-section { padding: 36px 16px; }
  .gtr-hero { min-height: 350px; }
}
