/* ===========================
   Rust Romance – Main Styles
   =========================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.concept__inner,
.coming-soon__inner,
.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.header__inner {
  padding-left: 32px;
  padding-right: 32px;
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header__logo img {
  height: 20px;
  width: auto;
}

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #222;
  transition: transform 0.3s, opacity 0.3s;
}

.header__burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.header__nav {
  position: fixed;
  top: 80px;
  right: 0;
  width: 280px;
  height: calc(100vh - 80px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.header__nav.is-open {
  transform: translateX(0);
}

.header__nav-list {
  list-style: none;
  padding: 40px 32px;
}

.header__nav-list li {
  margin-bottom: 0;
}

.header__nav-list a {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: color 0.2s;
}

.header__nav-list a:hover {
  color: #000;
}

/* ===========================
   HERO SLIDER
   =========================== */
.hero {
  position: relative;
  margin-top: 80px;
  height: 80vh;
  min-height: 480px;
  overflow: hidden;
  background: #162640;
}

.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

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

.hero__slide-bg {
  position: absolute;
  inset: 0;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__video.is-loaded {
  opacity: 1;
}

.hero__slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero__slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  padding: 0 24px;
}

.hero__product-logo {
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 0 auto 24px;
  filter: invert(1);
}

.hero__product-tagline {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.hero__product-desc {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}

.hero__cta {
  display: inline-block;
  padding: 12px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s;
}

.hero__cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero__dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.hero__slide-content--split {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 0;
  text-align: left;
}

.hero__split-left {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.hero__product-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__split-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.hero__product-logo--neosoul {
  max-width: 360px;
  filter: none;
}

.hero__slide-bg--neosoul {
  position: absolute;
  inset: 0;
  background: #162640;
}

.hero__slide-bg--neosoul + .hero__slide-overlay {
  background: none;
}

.hero__cta--disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

/* WooCommerce Header Icons */
.header__wc-account {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 18px;
  color: #222;
  transition: color 0.2s;
  margin-right: 4px;
}

.header__wc-account:hover {
  color: #000;
}

.header__wc-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 17px;
  color: #222;
  transition: color 0.2s;
  margin-right: 12px;
}

.header__wc-cart:hover {
  color: #000;
}

.header__wc-cart-badge {
  position: absolute;
  top: 0;
  right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  color: #fff;
  background: #222;
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}

.header__wc-cart-badge.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ===========================
   CONCEPT
   =========================== */
.concept {
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.concept__inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: none;
  padding: 0;
}

.concept__text {
  width: 50%;
  flex-shrink: 0;
  padding: 60px 60px 60px 15%;
}

.concept__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
}

.concept__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.concept__body {
  font-size: 14px;
  line-height: 2;
  color: rgba(0, 0, 0, 0.5);
}

.concept__visual {
  width: 50%;
  flex-shrink: 0;
}

.concept__visual-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* ===========================
   COMING SOON
   =========================== */
.coming-soon {
  padding: 100px 0 120px;
  background: #f5f5f5;
}

.section-heading {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.coming-soon__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.card--link {
  display: block;
  color: inherit;
}

.card__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__price {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 4px;
}

.card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__thumb-placeholder {
  width: 100%;
  height: 100%;
  background: #ddd;
}

.card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 2px;
  color: rgba(0, 0, 0, 0.6);
}

.card__body {
  padding: 20px;
}

.card__title {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.card__desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.45);
}

.rr-post-grid {
  margin-top: 40px;
}

.rr-pagination {
  margin-top: 48px;
  font-size: 13px;
}

.rr-pagination .nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.rr-pagination a,
.rr-pagination .current {
  color: #111;
  font-weight: 500;
}

.rr-article__meta {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

.rr-article__thumb {
  margin: 0 0 40px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.rr-article__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 60px 0 40px;
  background: #162640;
  border-top: none;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer__logo img {
  height: 18px;
  opacity: 0.5;
  filter: invert(1);
}

.footer__nav {
  display: flex;
  gap: 32px;
}

.footer__nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer__social a:hover {
  color: #fff;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   WORDPRESS OVERRIDES
   =========================== */
.header__nav-list .menu-item a {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: color 0.2s;
}

.header__nav-list .menu-item a:hover {
  color: #000;
}

.main-content {
  max-width: 1000px;
  margin: 116px auto 60px;
  padding: 0 24px;
}

.post-entry {
  margin-bottom: 48px;
}

.post-entry__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.post-entry__title a {
  transition: color 0.2s;
}

.post-entry__title a:hover {
  color: rgba(0, 0, 0, 0.6);
}

.post-entry__content {
  font-size: 14px;
  line-height: 2;
  color: rgba(0, 0, 0, 0.5);
}

/* ===========================
   WOOCOMMERCE – SINGLE PRODUCT
   =========================== */
.rr-product {
  margin-top: 80px;
  padding: 80px 0 120px;
  background: #fff;
}

.rr-product__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.rr-product__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.rr-product__gallery {
  position: sticky;
  top: 100px;
}

.rr-product__image {
  width: 100%;
  border-radius: 4px;
}

.rr-product__image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(160deg, #e0e0e0 0%, #ccc 50%, #b8b8b8 100%);
  border-radius: 4px;
}

.rr-product__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 12px;
}

.rr-product__category a {
  color: rgba(0, 0, 0, 0.35);
  transition: color 0.2s;
}

.rr-product__category a:hover {
  color: #000;
}

.rr-product__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.rr-product__price {
  font-size: 28px;
  font-weight: 600;
  color: #111;
  margin-bottom: 24px;
}

.rr-product__price del {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

.rr-product__price ins {
  text-decoration: none;
}

.rr-product__short-desc {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 32px;
}

.rr-product__short-desc p {
  margin-bottom: 0;
}

.rr-product__add-to-cart {
  display: inline-block;
  padding: 14px 48px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #111;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
}

.rr-product__add-to-cart:hover {
  background: #333;
}

.rr-product__meta {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.3);
}

.rr-product__tabs {
  margin-top: 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.rr-product__tabs-nav {
  display: flex;
  gap: 0;
}

.rr-product__tab-btn {
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.rr-product__tab-btn.is-active {
  color: #111;
  border-bottom-color: #111;
}

.rr-product__tab-content {
  display: none;
  padding: 40px 0;
}

.rr-product__tab-content.is-active {
  display: block;
}

.rr-product__description {
  font-size: 14px;
  line-height: 2;
  color: rgba(0, 0, 0, 0.55);
}

.rr-product__description h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 32px 0 12px;
}

.rr-product__description h3:first-child {
  margin-top: 0;
}

.rr-product__description ul {
  list-style: none;
  padding: 0;
}

.rr-product__description ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.rr-product__description ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
}

/* ===========================
   WOOCOMMERCE – SHOP / ARCHIVE
   =========================== */
.rr-shop {
  margin-top: 80px;
  padding: 80px 0 120px;
  background: #fff;
}

.rr-shop__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.rr-shop__title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.rr-shop__desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 0;
}

.rr-shop__categories {
  display: flex;
  gap: 8px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.rr-shop__cat-link {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  transition: all 0.2s;
}

.rr-shop__cat-link:hover {
  color: #111;
  border-color: rgba(0, 0, 0, 0.3);
}

.rr-shop__cat-link.is-active {
  color: #fff;
  background: #111;
  border-color: #111;
}

.rr-shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rr-shop__card {
  display: block;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.rr-shop__card:hover {
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.rr-shop__card-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.rr-shop__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-shop__card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #e8e8e8 0%, #d4d4d4 50%, #bbb 100%);
}

.rr-shop__card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 2px;
  color: rgba(0, 0, 0, 0.6);
}

.rr-shop__card-body {
  padding: 20px;
}

.rr-shop__card-title {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
  line-height: 1.4;
}

.rr-shop__card-price {
  font-size: 15px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
}

.rr-shop__empty {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.35);
  padding: 80px 0;
}

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  max-width: 1000px;
  margin: 80px auto 0;
  padding: 16px 0;
  font-size: 14px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  color: rgba(0, 0, 0, 0.5);
}

.woocommerce-error {
  color: #a33;
  list-style: none;
}

.woocommerce-message a,
.woocommerce-info a {
  font-weight: 600;
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
}

.woocommerce-message a:hover,
.woocommerce-info a:hover {
  color: rgba(0, 0, 0, 0.5);
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  display: none;
}

.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account .woocommerce-MyAccount-content a.button {
  margin-top: 16px;
}

/* ===========================
   PAGE TEMPLATE
   =========================== */
.rr-page {
  margin-top: 80px;
  padding: 80px 0 120px;
  background: #fff;
}

.rr-page__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.rr-page__title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.rr-page__content {
  font-size: 14px;
  line-height: 2;
  color: rgba(0, 0, 0, 0.55);
}

/* ===========================
   WOOCOMMERCE – CART
   =========================== */
.woocommerce-cart .rr-page__content > .woocommerce {
  width: 100%;
}

.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  font-size: 14px;
}

.woocommerce table.shop_table th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  padding: 16px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.woocommerce table.shop_table td {
  padding: 20px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: middle;
  color: #333;
}

.woocommerce table.shop_table img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 2px;
  background: linear-gradient(160deg, #e8e8e8 0%, #d4d4d4 50%, #bbb 100%);
}

.woocommerce table.shop_table .product-name a {
  font-weight: 600;
  color: #111;
  transition: color 0.2s;
}

.woocommerce table.shop_table .product-name a:hover {
  color: rgba(0, 0, 0, 0.5);
}

.woocommerce table.shop_table .product-remove a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  transition: all 0.2s;
  text-decoration: none;
}

.woocommerce table.shop_table .product-remove a:hover {
  color: #c44;
  border-color: #c44;
  background: #fdf0f0;
}

.woocommerce table.shop_table .quantity input {
  width: 60px;
  padding: 8px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

.woocommerce table.shop_table .quantity input:focus {
  border-color: rgba(0, 0, 0, 0.4);
}

.woocommerce table.shop_table td.actions {
  padding-top: 24px;
}

.woocommerce table.shop_table td.actions .coupon {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.woocommerce table.shop_table td.actions .coupon input {
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

.woocommerce table.shop_table td.actions .coupon input:focus {
  border-color: rgba(0, 0, 0, 0.4);
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  display: inline-block;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #111;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
  background: #333;
  color: #fff;
}

.woocommerce button.button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.woocommerce .button.alt {
  background: #111;
}

.woocommerce .button.alt:hover {
  background: #333;
}

/* Cart Totals */
.woocommerce .cart_totals {
  float: right;
  width: 380px;
  margin-top: 40px;
}

.woocommerce .cart_totals h2 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.woocommerce .cart_totals table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce .cart_totals table th {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  padding: 14px 0;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.woocommerce .cart_totals table td {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  padding: 14px 0;
  text-align: right;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.woocommerce .cart_totals .order-total td {
  font-size: 20px;
  font-weight: 700;
}

.woocommerce .cart_totals .wc-proceed-to-checkout {
  margin-top: 24px;
}

.woocommerce .cart_totals .wc-proceed-to-checkout a {
  display: block;
  text-align: center;
  padding: 16px 32px;
  font-size: 13px;
}

/* ===========================
   WOOCOMMERCE – CHECKOUT
   =========================== */
.woocommerce-checkout .rr-page__content {
  font-size: 14px;
}

.woocommerce form.checkout {
  width: 100%;
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3,
#order_review_heading {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.woocommerce form .form-row {
  margin-bottom: 16px;
}

.woocommerce form .form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 6px;
}

.woocommerce form .form-row label .required {
  color: #c44;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce form .form-row .select2-container .select2-selection {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #222;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: rgba(0, 0, 0, 0.4);
}

.woocommerce form .form-row .select2-container .select2-selection {
  height: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.woocommerce #order_review {
  margin-top: 40px;
}

.woocommerce .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.woocommerce .woocommerce-checkout-review-order-table th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  padding: 14px 0;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.woocommerce .woocommerce-checkout-review-order-table td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: #333;
  font-size: 14px;
}

.woocommerce .woocommerce-checkout-review-order-table .order-total td {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.woocommerce .woocommerce-checkout-payment {
  background: #f9f9f9;
  padding: 32px;
  border-radius: 4px;
  margin-top: 24px;
}

.woocommerce .woocommerce-checkout-payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.woocommerce .woocommerce-checkout-payment ul.payment_methods li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.woocommerce .woocommerce-checkout-payment ul.payment_methods li label {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
}

.woocommerce .woocommerce-checkout-payment .payment_box {
  padding: 16px 0 8px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.7;
}

.woocommerce #place_order {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

/* ===========================
   WOOCOMMERCE – MY ACCOUNT
   =========================== */
.woocommerce-account .woocommerce-MyAccount-navigation {
  float: left;
  width: 200px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  margin-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: color 0.2s;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  color: #111;
  font-weight: 600;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: right;
  width: calc(100% - 260px);
  padding-top: 8px;
}

.woocommerce-account .woocommerce-MyAccount-content p {
  font-size: 15px;
  line-height: 2;
  color: rgba(0, 0, 0, 0.55);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message {
  margin: 0 0 24px;
  font-size: 15px;
  padding: 16px 0;
}

/* Login form */
.woocommerce form.login,
.woocommerce form.register {
  max-width: 400px;
  margin: 0 auto;
  padding: 40px;
  background: #f9f9f9;
  border-radius: 4px;
}

.woocommerce form.login h2,
.woocommerce form.register h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 28px;
}

.woocommerce-form-login__rememberme {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 20px;
}

.woocommerce .lost_password a {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.35);
  transition: color 0.2s;
}

.woocommerce .lost_password a:hover {
  color: #111;
}

.woocommerce fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.woocommerce table.my_account_payment_methods,
.woocommerce .woocommerce-MyAccount-content table {
  border: none;
  border-collapse: collapse;
}

.woocommerce .woocommerce-MyAccount-content table th,
.woocommerce .woocommerce-MyAccount-content table td {
  border: none;
}


/* Empty cart */
.woocommerce .cart-empty {
  text-align: center;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.35);
  padding: 60px 0 24px;
}

.woocommerce .return-to-shop {
  text-align: center;
}

/* ===========================
   FAQ
   =========================== */
.rr-faq {
  max-width: 720px;
}

.rr-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.rr-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #111;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.rr-faq__question:hover {
  color: rgba(0, 0, 0, 0.6);
}

.rr-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.rr-faq__icon::before,
.rr-faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(0, 0, 0, 0.35);
  transition: transform 0.3s;
}

.rr-faq__icon::before {
  width: 16px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.rr-faq__icon::after {
  width: 1.5px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.rr-faq__item.is-open .rr-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.rr-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.rr-faq__item.is-open .rr-faq__answer {
  max-height: 400px;
}

.rr-faq__answer p {
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 2;
  color: rgba(0, 0, 0, 0.5);
}

.rr-faq__answer a {
  color: #111;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  transition: border-color 0.2s;
}

.rr-faq__answer a:hover {
  border-color: rgba(0, 0, 0, 0.5);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .hero {
    min-height: 480px;
  }

  .hero__slide-content--split {
    flex-direction: column;
  }

  .hero__split-left {
    width: 100%;
    height: 50%;
  }

  .hero__split-right {
    width: 100%;
    height: 50%;
    padding: 24px 20px;
  }

  .hero__product-logo--neosoul {
    max-width: 240px;
  }

  .hero__product-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .hero__product-tagline {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .hero__product-logo {
    max-width: 90%;
  }

  .header__wc-account,
  .header__wc-cart {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .concept__inner {
    flex-direction: column;
  }

  .concept__text {
    width: 100%;
    padding: 40px 24px;
  }

  .concept__visual {
    width: 100%;
  }

  .concept__heading {
    font-size: 28px;
  }

  .footer__nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__legal {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .coming-soon__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .section-heading {
    font-size: 24px;
  }

  .rr-product__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rr-product__gallery {
    position: static;
  }

  .rr-product__title {
    font-size: 24px;
  }

  .rr-product__price {
    font-size: 22px;
  }

  .rr-shop__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .rr-shop__title {
    font-size: 24px;
  }

  .woocommerce .cart_totals {
    float: none;
    width: 100%;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
    margin-bottom: 32px;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
  }

  .woocommerce table.shop_table,
  .woocommerce table.shop_table thead,
  .woocommerce table.shop_table tbody,
  .woocommerce table.shop_table tr,
  .woocommerce table.shop_table td {
    display: block;
  }

  .woocommerce table.shop_table thead {
    display: none;
  }

  .woocommerce table.shop_table tr {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .woocommerce table.shop_table td {
    padding: 4px 0;
    border: none;
    text-align: left;
  }

  .woocommerce table.shop_table td.actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .woocommerce table.shop_table td.actions .coupon {
    flex-direction: column;
    width: 100%;
  }

  .woocommerce table.shop_table td.actions .coupon input {
    width: 100%;
  }

  .woocommerce form.login,
  .woocommerce form.register {
    padding: 24px;
  }

  .woocommerce .woocommerce-checkout-payment {
    padding: 20px;
  }

  .rr-faq__question {
    font-size: 14px;
    padding: 16px 0;
  }

  .rr-faq__answer p {
    font-size: 13px;
    padding-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .rr-shop__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}
