/*
Theme Name: Forest Retail Pro
Theme URI: https://example.com/forest-retail-pro
Description: Standalone WooCommerce theme for technology retail and computer supplies.
Author: Codex
Version: 1.0.0
Text Domain: forest-retail-pro
*/

:root {
  --tech-bg: #07111f;
  --tech-bg-2: #0b1730;
  --tech-surface: #0f1b2e;
  --tech-card: rgba(12, 24, 42, 0.92);
  --tech-card-border: rgba(105, 154, 255, 0.16);
  --tech-text: #eef4ff;
  --tech-text-soft: rgba(238, 244, 255, 0.78);
  --tech-accent: #00d1b2;
  --tech-accent-2: #6aa9ff;
  --tech-accent-3: #ffd166;
  --tech-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

body.woodmart-tech-store {
  background:
    radial-gradient(circle at top left, rgba(0, 209, 178, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(106, 169, 255, 0.12), transparent 30%),
    linear-gradient(180deg, var(--tech-bg) 0%, var(--tech-bg-2) 100%);
  color: var(--tech-text);
}

body.woodmart-tech-store a {
  color: inherit;
}

body.woodmart-tech-store .tech-store-home {
  padding: 28px 0 72px;
}

body.woodmart-tech-store .tech-section {
  position: relative;
  margin: 0 auto 28px;
  padding: 28px;
  border: 1px solid var(--tech-card-border);
  border-radius: 28px;
  background: var(--tech-card);
  box-shadow: var(--tech-shadow);
  backdrop-filter: blur(12px);
}

body.woodmart-tech-store .tech-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  overflow: hidden;
}

body.woodmart-tech-store .tech-hero__eyebrow,
body.woodmart-tech-store .tech-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--tech-text-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.woodmart-tech-store .tech-hero__title {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

body.woodmart-tech-store .tech-hero__title span {
  color: var(--tech-accent);
}

body.woodmart-tech-store .tech-hero__copy {
  max-width: 62ch;
  margin: 0 0 24px;
  color: var(--tech-text-soft);
  font-size: 1.06rem;
}

body.woodmart-tech-store .tech-hero__actions,
body.woodmart-tech-store .tech-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

body.woodmart-tech-store .tech-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body.woodmart-tech-store .tech-button:hover {
  transform: translateY(-1px);
}

body.woodmart-tech-store .tech-button--primary {
  background: linear-gradient(135deg, var(--tech-accent), #45f0d0);
  color: #04121f;
  box-shadow: 0 16px 34px rgba(0, 209, 178, 0.22);
}

body.woodmart-tech-store .tech-button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--tech-text);
}

body.woodmart-tech-store .tech-hero__panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

body.woodmart-tech-store .tech-hero__stat {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.woodmart-tech-store .tech-hero__stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

body.woodmart-tech-store .tech-hero__stat span {
  color: var(--tech-text-soft);
}

body.woodmart-tech-store .tech-grid {
  display: grid;
  gap: 18px;
}

body.woodmart-tech-store .tech-grid--categories {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

body.woodmart-tech-store .tech-grid--highlights {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

body.woodmart-tech-store .tech-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 18px;
  border-radius: 22px;
  background: rgba(7, 16, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.woodmart-tech-store .tech-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(0, 209, 178, 0.14);
  color: var(--tech-accent);
  font-size: 1.35rem;
}

body.woodmart-tech-store .tech-card__title {
  margin: 0;
  font-size: 1.05rem;
}

body.woodmart-tech-store .tech-card__text {
  margin: 0;
  color: var(--tech-text-soft);
}

body.woodmart-tech-store .tech-category {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 18, 33, 0.86);
  text-decoration: none;
}

body.woodmart-tech-store .tech-category__thumb {
  aspect-ratio: 1.2 / 1;
  background:
    radial-gradient(circle at center, rgba(0, 209, 178, 0.16), transparent 60%),
    linear-gradient(135deg, rgba(106, 169, 255, 0.24), rgba(255, 255, 255, 0.04));
}

body.woodmart-tech-store .tech-category__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.woodmart-tech-store .tech-category__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
}

body.woodmart-tech-store .tech-category__title {
  margin: 0;
  font-size: 1rem;
}

body.woodmart-tech-store .tech-category__count {
  color: var(--tech-text-soft);
  font-size: 0.92rem;
}

body.woodmart-tech-store .tech-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

body.woodmart-tech-store .tech-section__heading h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

body.woodmart-tech-store .tech-section__heading p {
  margin: 0;
  max-width: 54ch;
  color: var(--tech-text-soft);
}

body.woodmart-tech-store .tech-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.woodmart-tech-store .tech-note {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.woodmart-tech-store .tech-note strong {
  display: block;
  margin-bottom: 6px;
}

body.woodmart-tech-store .tech-note span {
  color: var(--tech-text-soft);
}

@media (max-width: 1024px) {
  body.woodmart-tech-store .tech-hero,
  body.woodmart-tech-store .tech-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body.woodmart-tech-store .tech-section {
    padding: 20px;
    border-radius: 22px;
  }

  body.woodmart-tech-store .tech-section__heading {
    flex-direction: column;
    align-items: flex-start;
  }

  body.woodmart-tech-store .tech-hero__actions,
  body.woodmart-tech-store .tech-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body.woodmart-tech-store .tech-button {
    width: 100%;
  }
}

body.woodmart-tech-store .site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.woodmart-tech-store .site-content {
  flex: 1 1 auto;
}

body.woodmart-tech-store .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  background: rgba(7, 17, 31, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

body.woodmart-tech-store .site-branding {
  display: flex;
  align-items: center;
  gap: 14px;
}

body.woodmart-tech-store .site-branding__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--tech-accent), var(--tech-accent-2));
  color: #03111f;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body.woodmart-tech-store .site-title,
body.woodmart-tech-store .site-description {
  margin: 0;
}

body.woodmart-tech-store .site-title {
  font-size: 1.05rem;
  font-weight: 800;
}

body.woodmart-tech-store .site-title a {
  color: var(--tech-text);
  text-decoration: none;
}

body.woodmart-tech-store .site-description {
  color: var(--tech-text-soft);
  font-size: 0.92rem;
}

body.woodmart-tech-store .site-header__nav {
  flex: 1 1 auto;
}

body.woodmart-tech-store .site-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.woodmart-tech-store .site-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--tech-text);
  text-decoration: none;
}

body.woodmart-tech-store .site-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}

body.woodmart-tech-store .site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

body.woodmart-tech-store .site-header__actions .search-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

body.woodmart-tech-store .site-header__actions .search-field {
  min-width: 220px;
}

body.woodmart-tech-store .site-header__actions input[type="search"],
body.woodmart-tech-store .site-header__actions input[type="text"] {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--tech-text);
}

body.woodmart-tech-store .site-header__actions input::placeholder {
  color: rgba(238, 244, 255, 0.55);
}

body.woodmart-tech-store .site-cart-link {
  white-space: nowrap;
}

body.woodmart-tech-store .site-footer {
  padding: 34px 28px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 11, 20, 0.92);
}

body.woodmart-tech-store .site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 22px;
}

body.woodmart-tech-store .site-footer__eyebrow {
  margin: 0 0 10px;
  color: var(--tech-accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.woodmart-tech-store .site-footer__text {
  margin: 0;
  color: var(--tech-text-soft);
}

body.woodmart-tech-store .site-footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.woodmart-tech-store .site-footer__menu li + li {
  margin-top: 8px;
}

body.woodmart-tech-store .site-footer__menu a {
  color: var(--tech-text);
  text-decoration: none;
}

body.woodmart-tech-store .site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--tech-text-soft);
  font-size: 0.92rem;
}

body.woodmart-tech-store .skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 1000;
}

body.woodmart-tech-store .skip-link:focus {
  left: 12px;
}

body.woodmart-tech-store .woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
}

body.woodmart-tech-store .woocommerce ul.products li.product {
  width: auto;
  margin: 0;
  padding: 18px;
  border-radius: 22px;
  background: rgba(7, 16, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.woodmart-tech-store .woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--tech-text);
  font-size: 1rem;
}

body.woodmart-tech-store .woocommerce ul.products li.product .price {
  color: var(--tech-accent);
  font-weight: 700;
}

body.woodmart-tech-store .woocommerce div.product .product_title {
  color: var(--tech-text);
}

body.woodmart-tech-store .woocommerce div.product .price {
  color: var(--tech-accent);
}

body.woodmart-tech-store .woocommerce div.product form.cart .button,
body.woodmart-tech-store .woocommerce a.button,
body.woodmart-tech-store .woocommerce button.button {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tech-accent), #45f0d0);
  color: #03111f;
}

body.woodmart-tech-store .woocommerce .woocommerce-breadcrumb,
body.woodmart-tech-store .woocommerce .woocommerce-result-count,
body.woodmart-tech-store .woocommerce .woocommerce-ordering {
  color: var(--tech-text-soft);
}

body.woodmart-tech-store .tech-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

@media (max-width: 900px) {
  body.woodmart-tech-store .site-footer__grid {
    grid-template-columns: 1fr;
  }

  body.woodmart-tech-store .site-header__actions .search-field {
    min-width: 0;
    width: 100%;
  }

  body.woodmart-tech-store .site-header__actions .search-form {
    width: 100%;
  }

  body.woodmart-tech-store .site-header__actions .search-form label,
  body.woodmart-tech-store .site-header__actions .search-form input {
    width: 100%;
  }
}
