/*
Theme Name: NY Furniture Outlets
Theme URI: https://nyfurnitureoutlets.com
Description: Furniture e-commerce WordPress theme
Version: 1.0
Author: NYFurnitureOutlets
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --green: #7ec320;
  --black: #111111;
  --red: #e84b3a;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #e0e0e0;
  --text: #333333;
  --footer-bg: #1a1a1a;
  --container-width: 1280px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--green);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announce-bar {
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  padding: 7px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  letter-spacing: 0.3px;
}

.announce-bar .announce-left {
  flex: 1;
}

.announce-bar .announce-right {
  white-space: nowrap;
}

.announce-bar .green {
  color: var(--green);
  font-weight: 700;
}

.announce-bar .yellow {
  color: #f5c518;
  font-weight: 700;
}

.announce-bar .green-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

.announce-bar .green-link:hover {
  color: #9dd940;
}

/* =============================================
   SITE HEADER
   ============================================= */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* =============================================
   LOGO
   ============================================= */
.site-logo {
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-ny {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  width: 46px;
  height: 46px;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 900;
  font-size: 16px;
  color: var(--black);
  line-height: 1;
  letter-spacing: 1px;
}

.logo-sub {
  display: block;
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 2px;
}

/* =============================================
   PRIMARY NAV
   ============================================= */
#primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

#primary-nav ul li {
  position: relative;
}

#primary-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--black);
  transition: color 0.2s;
  white-space: nowrap;
}

#primary-nav ul li a:hover,
#primary-nav ul li.current-menu-item > a {
  color: var(--green);
}

#primary-nav ul li.has-children > a::after {
  content: ' ▾';
  font-size: 10px;
}

#primary-nav ul li .caret {
  display: none;
}

#primary-nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-top: 3px solid var(--green);
  min-width: 200px;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  flex-direction: column;
  gap: 0;
}

#primary-nav ul li:hover > ul {
  display: flex;
}

#primary-nav ul li ul li a {
  padding: 10px 16px;
  font-size: 12px;
  border-bottom: 1px solid var(--gray-light);
  display: block;
}

#primary-nav ul li ul li:last-child a {
  border-bottom: none;
}

/* =============================================
   HEADER SEARCH
   ============================================= */
.header-search {
  display: flex;
  align-items: center;
  flex: 0 1 340px;
}

.header-search form {
  display: flex;
  width: 100%;
  border: 2px solid var(--gray-mid);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.header-search form:focus-within {
  border-color: var(--green);
}

.header-search input[type="search"] {
  flex: 1;
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  outline: none;
  background: var(--white);
  min-width: 0;
}

.header-search button {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 8px 14px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.header-search button:hover {
  background: #6aaa18;
}

/* =============================================
   HEADER ICONS
   ============================================= */
.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-icon-item {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 13px;
  color: var(--black);
  transition: color 0.2s;
  text-decoration: none;
}

.header-icon-item:hover {
  color: var(--green);
}

.header-icon-item .icon-glyph {
  font-size: 20px;
  line-height: 1;
}

.cart-wrapper {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.icon-label {
  font-size: 12px;
  font-weight: 500;
}

/* =============================================
   HAMBURGER / MOBILE NAV TOGGLE
   ============================================= */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #2c3e50;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 80px;
  color: var(--white);
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.5;
  opacity: 0.9;
}

.hero-nav-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.hero-dot.is-active {
  background: var(--green);
  transform: scale(1.3);
}

/* =============================================
   SECTION BASE
   ============================================= */
.section {
  padding: 60px 0;
}

.section.gray-bg {
  background: var(--gray-light);
}

/* =============================================
   SECTION TITLE
   ============================================= */
.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 1.4;
}

.section-title .title-accent {
  position: relative;
  font-weight: 900;
  display: inline-block;
}

.section-title .title-accent::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--green);
  width: 100%;
  position: absolute;
  bottom: -4px;
  left: 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-green:hover {
  background: #6aaa18;
  border-color: #6aaa18;
  color: var(--white);
}

.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-black:hover {
  background: #333;
  border-color: #333;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 15px;
}

/* =============================================
   PRODUCT GRID
   ============================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* =============================================
   PRODUCT CARD
   ============================================= */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.product-card a {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.pcard-img {
  height: 220px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.pcard-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #bbb;
}

.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.pcard-body {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

.pcard-brand {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pcard-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.3px;
  flex: 1;
}

.pcard-swatches {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  display: inline-block;
  flex-shrink: 0;
}

.pcard-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stars-icons {
  color: var(--green);
  font-size: 13px;
  letter-spacing: 1px;
}

.stars-count {
  font-size: 11px;
  color: #888;
}

.pcard-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.price-current {
  font-size: 20px;
  font-weight: 900;
  color: var(--red);
}

.price-was {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

/* =============================================
   SHOP BY ROOM
   ============================================= */
.shop-by-room {
  background: var(--gray-light);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.room-col {
  text-align: center;
  padding: 16px 8px;
}

.room-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--gray-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 26px;
  background: var(--white);
  transition: border-color 0.2s, background 0.2s;
}

.room-col:hover .room-icon {
  border-color: var(--green);
  background: #f0fae3;
}

.room-name {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.room-name::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--green);
  width: 100%;
  margin-top: 4px;
}

.room-links {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.room-links a {
  font-size: 11px;
  color: #666;
  transition: color 0.2s;
  line-height: 1.5;
}

.room-links a:hover {
  color: var(--green);
}

/* =============================================
   DEALS BAND
   ============================================= */
.deals-band {
  background: var(--green);
  padding: 50px 0;
}

.deals-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.deals-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  opacity: 0.85;
}

.deals-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin: 6px 0;
}

.deals-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.deals-price-block {
  text-align: right;
  flex-shrink: 0;
}

.deals-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.deals-was {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: line-through;
}

.deals-cta {
  margin-top: 20px;
}

/* =============================================
   TRUST BADGES
   ============================================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.trust-badge {
  padding: 20px;
}

.trust-icon {
  width: 70px;
  height: 70px;
  border: 2px solid var(--gray-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 30px;
  background: var(--white);
}

.trust-title {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.trust-title::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--green);
  width: 100%;
  margin-top: 6px;
}

.trust-text {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* =============================================
   BRANDS ROW
   ============================================= */
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.brand-logo-box {
  border: 2px solid var(--gray-mid);
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--text);
  text-transform: uppercase;
  border-radius: 3px;
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
  text-align: center;
  min-width: 130px;
  text-decoration: none;
}

.brand-logo-box:hover {
  border-color: var(--green);
  color: var(--green);
}

/* =============================================
   WELCOME SECTION
   ============================================= */
.welcome-section {
  text-align: center;
}

.welcome-inner {
  max-width: 800px;
  margin: 0 auto;
}

.welcome-section h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 20px;
}

.welcome-section p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: var(--green);
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
}

.cta-band h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 14px;
}

.cta-band p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: #999;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-logo-text {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-logo-ny {
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-name {
  font-size: 13px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
}

.footer-logo-name span {
  display: block;
  font-size: 10px;
  color: var(--green);
  letter-spacing: 2px;
}

.footer-tagline {
  font-size: 12px;
  color: #999;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-shipping-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 4px 10px;
  display: inline-block;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-address {
  font-size: 12px;
  color: #777;
  line-height: 1.7;
}

.footer-bottom {
  background: var(--black);
  margin-top: 50px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: #666;
}

.footer-bottom .footer-phone {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-strip {
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray-mid);
  padding: 10px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--green);
}

.breadcrumb .sep {
  color: #bbb;
}

.breadcrumb .current {
  color: var(--text);
  font-weight: 500;
}

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray-mid);
  padding: 30px 0;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 1px;
}

.page-header .page-sub {
  font-size: 13px;
  color: #888;
  margin-top: 6px;
}

/* =============================================
   PRODUCT DETAIL
   ============================================= */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  padding: 40px 0 60px;
}

.product-gallery-main {
  height: 400px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  border: 1px solid var(--gray-mid);
  border-radius: 4px;
  margin-bottom: 12px;
  color: #ccc;
}

.product-thumbnails {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-thumb {
  width: 70px;
  height: 70px;
  background: var(--gray-light);
  border: 2px solid var(--gray-mid);
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ccc;
  transition: border-color 0.2s;
}

.product-thumb:hover,
.product-thumb.is-active {
  border-color: var(--green);
}

.product-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-brand-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-info-col h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}

.product-sku {
  font-size: 12px;
  color: #999;
}

.product-sku span {
  font-weight: 500;
  color: #666;
}

.product-stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-stars-icons {
  color: var(--green);
  font-size: 16px;
}

.product-review-count {
  font-size: 13px;
  color: #888;
}

.product-price-block {
  background: var(--gray-light);
  padding: 16px;
  border-radius: 4px;
  border-left: 4px solid var(--red);
}

.product-price-current {
  font-size: 34px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.product-price-was {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.product-save-badge {
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
}

.product-swatches-label,
.product-size-label,
.product-qty-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

.product-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-mid);
  cursor: pointer;
  transition: border-color 0.2s;
}

.product-swatch:hover,
.product-swatch.is-active {
  border-color: var(--black);
}

.product-size-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-mid);
  border-radius: 3px;
  font-size: 14px;
  background: var(--white);
  cursor: pointer;
}

.product-qty-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--gray-mid);
  border-radius: 3px;
  width: fit-content;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: var(--gray-light);
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: var(--gray-mid);
}

.qty-input {
  width: 60px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--gray-mid);
  border-right: 1px solid var(--gray-mid);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  outline: none;
}

.product-atc-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wishlist-link {
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}

.wishlist-link:hover {
  color: var(--red);
}

.trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--gray-mid);
}

.trust-mini-item {
  font-size: 11px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.trust-mini-item::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

/* =============================================
   PRODUCT TABS
   ============================================= */
.product-tabs {
  border-top: 1px solid var(--gray-mid);
  padding: 40px 0 60px;
}

.tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--gray-mid);
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn:hover {
  color: var(--green);
}

.tab-btn.is-active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.tab-panel h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.tab-panel p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.dimensions-table {
  width: 100%;
  max-width: 500px;
  border-collapse: collapse;
  font-size: 14px;
}

.dimensions-table th,
.dimensions-table td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--gray-mid);
}

.dimensions-table th {
  background: var(--gray-light);
  font-weight: 700;
  color: var(--black);
}

/* =============================================
   ALSO LIKE SECTION
   ============================================= */
.also-like {
  padding: 40px 0 60px;
  border-top: 1px solid var(--gray-mid);
}

.also-like h2 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 24px;
}

/* =============================================
   LISTING PAGE
   ============================================= */
.listing-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  padding: 30px 0 60px;
  align-items: start;
}

.filter-sidebar {
  border: 1px solid var(--gray-mid);
  border-radius: 4px;
  overflow: hidden;
}

.filter-sidebar h3 {
  background: var(--black);
  color: var(--white);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.filter-section {
  border-bottom: 1px solid var(--gray-mid);
}

.filter-section:last-child {
  border-bottom: none;
}

.filter-section-head {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--gray-light);
}

.filter-section-head:hover {
  background: #eee;
}

.filter-section-body {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
}

.filter-check input[type="checkbox"],
.filter-check input[type="radio"] {
  accent-color: var(--green);
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.filter-clear {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  border-top: 1px solid var(--gray-mid);
  transition: background 0.2s;
}

.filter-clear:hover {
  background: #fdf5f5;
  color: var(--red);
}

.listing-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.listing-header {
  padding: 20px 0 10px;
}

.listing-header h1 {
  font-size: 24px;
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.listing-count {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: 3px;
}

.sort-select {
  padding: 6px 10px;
  border: 1px solid var(--gray-mid);
  border-radius: 3px;
  font-size: 13px;
  background: var(--white);
  cursor: pointer;
}

.grid-toggle {
  display: flex;
  gap: 6px;
}

.grid-toggle button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.grid-toggle button.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 0;
}

.page-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text);
}

.page-btn:hover,
.page-btn.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.page-btn.prev-next {
  width: auto;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 700;
}

/* =============================================
   BRAND PAGE
   ============================================= */
.brand-header {
  background: #1e1e2e;
  padding: 60px 0;
  color: var(--white);
  text-align: center;
}

.brand-header h1 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.brand-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}

.brand-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 16px 28px;
  border-radius: 4px;
  text-align: center;
}

.brand-stat .stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
  display: block;
}

.brand-stat .stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.brand-cat-tabs {
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray-mid);
  padding: 0;
}

.brand-cat-tabs .tabs-inner {
  display: flex;
  gap: 0;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
}

.brand-tab-btn {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.brand-tab-btn:hover {
  color: var(--green);
}

.brand-tab-btn.is-active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.brand-desc-section {
  background: var(--gray-light);
  padding: 50px 0;
  margin-top: 20px;
}

.brand-desc-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.brand-desc-inner h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 16px;
}

.brand-desc-inner p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* =============================================
   PAGE CONTENT
   ============================================= */
.page-content {
  padding: 40px 20px 60px;
  max-width: var(--container-width);
  margin: 0 auto;
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
}

.page-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--black);
}

.page-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 10px;
}

.page-content p {
  margin-bottom: 16px;
}

.page-content a {
  color: var(--green);
  text-decoration: underline;
}

/* =============================================
   BLOG / INDEX
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 40px 0 60px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.blog-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.blog-card-img {
  height: 180px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ccc;
}

.blog-card-body {
  padding: 18px;
}

.blog-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.blog-card-body h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body h2 a {
  color: inherit;
}

.blog-card-body h2 a:hover {
  color: var(--green);
}

.blog-excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}

.blog-meta {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 12px;
}

.read-more-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.read-more-link:hover {
  color: #6aaa18;
}

/* =============================================
   SINGLE POST
   ============================================= */
.single-layout {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.post-category-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.single-layout h1 {
  font-size: 32px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 16px;
}

.post-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.post-featured-img {
  height: 340px;
  background: var(--gray-light);
  border-radius: 4px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #ccc;
}

.post-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}

.post-content p {
  margin-bottom: 20px;
}

.post-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 14px;
  color: var(--black);
}

.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  padding: 24px;
  border-radius: 4px;
  margin: 40px 0;
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.author-info p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.related-posts {
  padding: 30px 0;
  border-top: 1px solid var(--gray-mid);
}

.related-posts h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.comments-section {
  padding: 30px 0;
  border-top: 1px solid var(--gray-mid);
}

.comments-section h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 20px;
}

/* =============================================
   404 PAGE
   ============================================= */
.not-found-section {
  text-align: center;
  padding: 100px 20px;
}

.not-found-code {
  font-size: 120px;
  font-weight: 900;
  color: var(--gray-mid);
  line-height: 1;
  margin-bottom: 20px;
}

.not-found-section h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.not-found-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.not-found-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.not-found-search {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  border: 2px solid var(--gray-mid);
  border-radius: 3px;
  overflow: hidden;
}

.not-found-search input {
  flex: 1;
  padding: 12px;
  border: none;
  font-size: 14px;
  outline: none;
}

.not-found-search button {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 12px 18px;
  font-size: 15px;
  cursor: pointer;
}

/* =============================================
   MOBILE NAV OVERLAY
   ============================================= */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

.mobile-nav-overlay.is-open {
  display: block;
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  #primary-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    transition: left 0.3s ease;
    border-right: 1px solid var(--gray-mid);
    padding-top: 60px;
  }

  #primary-nav.is-open {
    left: 0;
  }

  #primary-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  #primary-nav ul li a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-light);
    font-size: 13px;
  }

  #primary-nav ul li ul {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    border-top: none;
    background: var(--gray-light);
    padding-left: 16px;
  }

  #primary-nav ul li:hover > ul {
    display: block;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .room-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .listing-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .announce-bar {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .site-header .header-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .header-search {
    flex: 0 0 100%;
    order: 3;
  }

  .hero-slider {
    height: 380px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .deals-inner {
    flex-direction: column;
    text-align: center;
  }

  .deals-price-block {
    text-align: center;
  }

  .section-title {
    font-size: 18px;
  }

  .brand-header h1 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .listing-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    height: 320px;
  }

  .hero-title {
    font-size: 22px;
  }

  .brands-row {
    gap: 10px;
  }

  .brand-logo-box {
    min-width: 100px;
    padding: 10px 14px;
    font-size: 11px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .brand-stats {
    flex-direction: column;
    align-items: center;
  }

  .not-found-code {
    font-size: 80px;
  }

  .single-layout h1 {
    font-size: 24px;
  }
}
