/*
Theme Name: Project Black'D
Theme URI: https://projectblackd.com
Author: Project Black'D
Author URI: https://projectblackd.com
Description: A premium, minimalist multi-page WordPress theme for Project Black'D menswear brand. White background, bold black typography, editorial layout with WooCommerce support.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: project-blackd
Tags: custom-logo, custom-menu, featured-images, theme-options, e-commerce, blog, two-columns

All Black. Always Bold. — Premium menswear that celebrates confidence, strength, and minimalist design.
*/

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #000000;
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.font-display {
  font-family: 'Bebas Neue', sans-serif;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 6rem 0;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.813rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #1a1a1a;
}

.btn-outline {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
}

.btn-outline:hover {
  background-color: #000000;
  color: #ffffff;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
}

.btn-icon {
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.btn-icon:hover {
  opacity: 0.6;
}

/* Mobile: full-width buttons */
@media (max-width: 767px) {
  .btn-lg {
    width: 100%;
    justify-content: center;
  }
  .section-cta .btn {
    width: 100%;
  }
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  height: 2.25rem;
}

.announcement-bar-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-bar .announcement-text {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  white-space: nowrap;
}

.announcement-bar .announcement-text.is-active {
  opacity: 1;
}

@media (max-width: 767px) {
  .announcement-bar {
    font-size: 0.688rem;
    padding: 0.5rem 0.75rem;
    height: 2rem;
    letter-spacing: 0.1em;
  }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
  border-bottom: 1px solid hsl(0, 0%, 92%);
  transition: box-shadow 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 5rem;
  }
}

.site-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: #000000;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .site-logo {
    font-size: 1.75rem;
  }
}

.site-logo a {
  color: inherit;
}

.main-navigation {
  display: none;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.main-navigation a {
  font-size: 0.813rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(0, 0%, 45%);
  transition: color 0.3s ease;
  font-weight: 400;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
  color: #000000;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 4.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 40;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.mobile-nav.is-active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav a {
  display: block;
  padding: 1.25rem 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  border-bottom: 1px solid hsl(0, 0%, 92%);
  letter-spacing: 0.05em;
}

@media (min-width: 1024px) {
  .main-navigation {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-nav {
    top: 5rem;
  }
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
  border-bottom: 1px solid hsl(0, 0%, 92%);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .page-header {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .page-header {
    padding: 5rem 0;
  }
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.page-header p {
  color: hsl(0, 0%, 45%);
  font-size: 1rem;
  margin-top: 0.75rem;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .page-header p {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 500px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero-section {
    height: 85vh;
    min-height: 450px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  padding: 0 1.5rem;
  max-width: 52rem;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  margin-bottom: 1.5rem;
  animation: fadeIn 0.8s ease-out;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.7;
  opacity: 0.9;
}

.hero-cta .btn {
  gap: 0.5rem;
}

.hero-cta .arrow {
  transition: transform 0.3s ease;
}

.hero-cta .btn:hover .arrow {
  transform: translateX(4px);
}

/* ============================================
   FEATURED PRODUCTS / COLLECTION
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: hsl(0, 0%, 45%);
  max-width: 42rem;
  margin: 0 auto;
  font-size: 0.938rem;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Product Card */
.product-card {
  display: block;
  cursor: pointer;
}

.product-card-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: hsl(0, 0%, 96%);
  margin-bottom: 1rem;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.product-card:hover .product-card-image::after {
  background: rgba(0, 0, 0, 0.08);
}

.product-card-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.813rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.product-card-info .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  color: hsl(0, 0%, 30%);
}

/* ============================================
   EDITORIAL BLOCK
   ============================================ */
.editorial-section {
  background-color: hsl(0, 0%, 97%);
}

.editorial-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .editorial-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .editorial-grid {
    gap: 4rem;
  }
}

.editorial-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .editorial-image img {
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .editorial-image img {
    height: 600px;
  }
}

.editorial-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .editorial-content {
    gap: 1.5rem;
  }
}

.editorial-content h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.editorial-content p {
  font-size: 1rem;
  color: hsl(0, 0%, 40%);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .editorial-content p {
    font-size: 1.125rem;
  }
}

/* ============================================
   PHILOSOPHY BLOCK (Home)
   ============================================ */
.philosophy-section {
  padding: 5rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .philosophy-section {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .philosophy-section {
    padding: 8rem 0;
  }
}

.philosophy-content {
  max-width: 48rem;
  margin: 0 auto;
}

.philosophy-lead {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.philosophy-text {
  font-size: 1rem;
  line-height: 1.9;
  color: hsl(0, 0%, 35%);
}

@media (min-width: 768px) {
  .philosophy-text {
    font-size: 1.063rem;
  }
}

.philosophy-text p {
  margin-bottom: 1.5rem;
}

.philosophy-text p:last-child {
  margin-bottom: 0;
}

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .shop-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ============================================
   WOOCOMMERCE HIDE SKU & CATEGORIES (FRONTEND)
   ============================================ */

.product_meta {
    display: none !important;
}

.single-product div.product form.cart {
    border-top: none !important;
    border-bottom: none !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
}

.product_meta {
    display: none !important;
    border: none !important;
}

/* ============================================
   COLLECTIONS PAGE
   ============================================ */
.collection-block {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .collection-block {
    padding: 5rem 0;
  }
}

.collection-block + .collection-block {
  border-top: 1px solid hsl(0, 0%, 92%);
}

.collection-header {
  margin-bottom: 3rem;
}

.collection-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.collection-header p {
  color: hsl(0, 0%, 45%);
  font-size: 0.938rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .about-content {
    gap: 1.5rem;
  }
}

.about-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.about-content p {
  font-size: 1rem;
  color: hsl(0, 0%, 35%);
  line-height: 1.85;
}

@media (min-width: 768px) {
  .about-content p {
    font-size: 1.063rem;
  }
}

.about-content blockquote {
  border-left: 3px solid #000000;
  padding-left: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.125rem;
  font-style: italic;
  color: hsl(0, 0%, 20%);
}

.about-story-section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .about-story-section {
    padding: 6rem 0;
  }
}

.about-story-content {
  max-width: 48rem;
  margin: 0 auto;
}

.about-story-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: hsl(0, 0%, 35%);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-story-content p {
    font-size: 1.063rem;
  }
}

.about-story-content p:last-child {
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.values-grid h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.values-grid p {
  color: hsl(0, 0%, 40%);
  line-height: 1.75;
  font-size: 0.938rem;
}

/* ============================================
   EDITORIAL / JOURNAL SECTION
   ============================================ */
.journal-featured {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .journal-featured {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.journal-featured-image {
  overflow: hidden;
}

.journal-featured-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (min-width: 768px) {
  .journal-featured-image img {
    height: 500px;
  }
}

.journal-featured:hover .journal-featured-image img {
  transform: scale(1.05);
}

.journal-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .journal-featured-content {
    gap: 1.5rem;
  }
}

.journal-featured-content .date {
  font-size: 0.813rem;
  color: hsl(0, 0%, 45%);
  letter-spacing: 0.05em;
}

.journal-featured-content h3 {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  transition: color 0.3s ease;
}

.journal-featured:hover .journal-featured-content h3 {
  color: hsl(0, 0%, 40%);
}

.journal-featured-content p {
  font-size: 1rem;
  color: hsl(0, 0%, 40%);
  line-height: 1.75;
}

@media (min-width: 768px) {
  .journal-featured-content p {
    font-size: 1.125rem;
  }
}

.journal-featured-content .read-more {
  font-size: 0.813rem;
  font-weight: 500;
  transition: transform 0.3s ease;
  display: inline-block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal-featured:hover .read-more {
  transform: translateX(0.5rem);
}

.journal-stories-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .journal-stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .journal-stories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.journal-card-image {
  overflow: hidden;
  margin-bottom: 1rem;
}

.journal-card-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.journal-card:hover .journal-card-image img {
  transform: scale(1.05);
}

.journal-card .date {
  font-size: 0.813rem;
  color: hsl(0, 0%, 45%);
}

.journal-card h3 {
  font-size: 1.375rem;
  margin: 0.5rem 0 0.75rem;
  transition: color 0.3s ease;
}

.journal-card:hover h3 {
  color: hsl(0, 0%, 40%);
}

.journal-card p {
  color: hsl(0, 0%, 45%);
  font-size: 0.938rem;
}

/* ============================================
   LOOKBOOK PAGE
   ============================================ */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .lookbook-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lookbook-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lookbook-item:hover img {
  transform: scale(1.05);
}

.lookbook-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.lookbook-item:hover::after {
  background: rgba(0, 0, 0, 0.08);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.is-active {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.lightbox-close:hover {
  opacity: 0.6;
}

.lightbox-close svg {
  width: 2rem;
  height: 2rem;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  text-align: center;
}

.newsletter-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.newsletter-section p {
  color: hsl(0, 0%, 45%);
  margin-bottom: 2rem;
  font-size: 0.938rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid hsl(0, 0%, 88%);
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.938rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: #000000;
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form .btn {
    width: 100%;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.contact-info p {
  color: hsl(0, 0%, 40%);
  line-height: 1.75;
  font-size: 0.938rem;
}

.contact-detail h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.contact-detail a,
.contact-detail p {
  color: hsl(0, 0%, 45%);
  transition: color 0.3s ease;
  font-size: 0.938rem;
}

.contact-detail a:hover {
  color: #000000;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(0, 0%, 30%);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid hsl(0, 0%, 88%);
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.938rem;
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #000000;
}

/* ============================================
   CART / CHECKOUT PAGES
   ============================================ */
.cart-empty-state {
  text-align: center;
  padding: 6rem 1.5rem;
}

.cart-empty-state h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cart-empty-state p {
  color: hsl(0, 0%, 45%);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.checkout-reassurance {
  text-align: center;
  padding: 1.5rem;
  background: hsl(0, 0%, 97%);
  font-size: 0.813rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(0, 0%, 45%);
  margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid hsl(0, 0%, 92%);
  background-color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  line-height: 1.6;
}

.footer-column h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-column a {
  font-size: 0.813rem;
  color: hsl(0, 0%, 45%);
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #000000;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: hsl(0, 0%, 45%);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #000000;
}

.footer-social svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(0, 0%, 92%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.813rem;
  color: hsl(0, 0%, 50%);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.813rem;
  color: hsl(0, 0%, 50%);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #000000;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.hover-lift {
  transition: transform 0.3s ease-out;
}

.hover-lift:hover {
  transform: translateY(-4px);
}

/* ============================================
   WOOCOMMERCE COMPATIBILITY
   ============================================ */
.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.813rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 0.875rem 2rem !important;
  transition: background-color 0.3s ease !important;
}

.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: #1a1a1a !important;
}

/* WooCommerce empty cart */
.woocommerce-cart .cart-empty {
  text-align: center;
  font-size: 1.125rem;
  padding: 4rem 0;
}

.woocommerce-cart .return-to-shop {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================
   GUTENBERG / BLOCK EDITOR
   ============================================ */
.wp-block-group,
.wp-block-columns {
  max-width: 1280px;
  margin: 0 auto;
}

.entry-content > * {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.entry-content > .alignwide {
  max-width: 1100px;
}

.entry-content > .alignfull {
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* ============================================
   404 PAGE
   ============================================ */
.error-404-content {
  text-align: center;
  padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
  .error-404-content {
    padding: 8rem 1.5rem;
  }
}

.error-404-content h1 {
  font-size: clamp(5rem, 12vw, 12rem);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.error-404-content h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.error-404-content p {
  max-width: 24rem;
  margin: 0 auto 2.5rem;
  color: hsl(0, 0%, 45%);
  font-size: 0.938rem;
  font-style: italic;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-muted {
  color: hsl(0, 0%, 45%);
}

.bg-muted {
  background-color: hsl(0, 0%, 97%);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header,
  .site-footer,
  .hero-section,
  .announcement-bar,
  .lightbox {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000000;
    background: #ffffff;
  }
}
