/*
Theme Name: Aairah Fragrance
Theme URI: https://aairahfragrance.com
Author: Omar
Description: Premium luxury fragrance e-commerce theme for Aairah Fragrance. Light theme with gold and black accents. Fully responsive, WooCommerce integrated.
Version: 1.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: aairah
Tags: e-commerce, woocommerce, custom-menu, featured-images, threaded-comments, translation-ready

Aairah Fragrance - More Than Esent
*/

/* ============================================
   TABLE OF CONTENTS
   ============================================
   1. CSS Variables & Design System
   2. Reset & Base
   3. Typography
   4. Layout & Container
   5. Header & Navigation
   6. Hero Section
   7. Categories Section
   8. Products Grid
   9. Brand Story / About
   10. Why Choose Us
   11. Testimonials
   12. Newsletter
   13. Footer
   14. WooCommerce Styles
   15. Cart & Checkout
   16. Single Product
   17. Shop / Archive
   18. Pages (About, Contact, Privacy, Terms)
   19. Wishlist
   20. Animations
   21. Responsive - Tablet
   22. Responsive - Mobile
   ============================================ */

/* ============================================
   1. CSS VARIABLES & DESIGN SYSTEM
   ============================================ */
:root {
  /* Colors */
  --gold: #C8A96E;
  --gold-dark: #A0824A;
  --gold-light: #E8D5A8;
  --gold-pale: #F5ECD7;
  --black: #1A1A1A;
  --black-soft: #2C2C2C;
  --white: #FFFFFF;
  --cream: #FDFBF7;
  --cream-dark: #F5F0E8;
  --gray-light: #F8F6F2;
  --gray: #999999;
  --gray-dark: #666666;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --success: #4CAF50;
  --error: #E53935;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-cursive: 'Cormorant Garamond', Georgia, serif;
  --font-accent: 'Great Vibes', cursive;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1280px;
  --container-padding: 0 40px;

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--cream);
  overflow-x: hidden;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

/* Force full width on ALL WordPress wrappers */
#page, .site, .site-wrapper, .hentry, .entry-content, 
#content, .content-area, .site-content, .site-main,
#wrapper, #main, .container-wrap, .page-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* WordPress admin bar fix */
.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }

.section-subtitle {
  font-family: var(--font-cursive);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--black);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0 40px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.section-divider svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

/* ============================================
   4. LAYOUT & CONTAINER
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

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

.section {
  padding: var(--section-padding);
}

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

.section-cream {
  background: var(--cream);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-subtitle {
  color: var(--gold-light);
}

/* ============================================
   5. HEADER & NAVIGATION
   ============================================ */
.top-bar {
  background: var(--black);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
}

.top-bar span {
  color: var(--gold);
  font-weight: 600;
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo img {
  height: 55px;
  width: auto;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.site-logo-text .brand-tagline {
  font-family: var(--font-cursive);
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black-soft);
  position: relative;
  padding: 5px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-fast);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--gold-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-action-btn {
  position: relative;
  color: var(--black);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
}

.header-action-btn:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.header-action-btn .count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--black);
  transition: var(--transition-fast);
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  margin-bottom: 30px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-title .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: var(--font-body);
}

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

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,169,110,0.3);
}

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

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

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-height: 600px;
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(200,169,110,0.3);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 1px;
}

.hero-feature svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

/* ============================================
   7. CATEGORIES SECTION
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.category-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
  background: var(--black);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  opacity: 0.7;
}

.category-card:hover img {
  transform: scale(1.08);
  opacity: 0.5;
}

.category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  color: var(--white);
  z-index: 2;
}

.category-overlay::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  z-index: 1;
  transition: var(--transition);
}

.category-card:hover .category-overlay::before {
  inset: 30px;
  border-color: var(--gold);
}

.category-icon {
  width: 70px;
  height: 70px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--gold);
}

.category-icon svg {
  width: 32px;
  height: 32px;
}

.category-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.category-count {
  font-size: 14px;
  color: var(--gold-light);
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.category-link {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
  transition: var(--transition-fast);
}

.category-link:hover {
  color: var(--gold);
  letter-spacing: 4px;
}

/* ============================================
   8. PRODUCTS GRID
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

.product-card {
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  group: true;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.product-image {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 3/4;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
}

.product-badge.sale {
  background: var(--error);
}

.product-actions {
  position: absolute;
  right: 15px;
  top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(20px);
  transition: var(--transition);
  z-index: 2;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: var(--transition-fast);
  color: var(--black);
}

.product-action-btn:hover {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.product-action-btn.wishlisted {
  background: var(--gold);
  color: var(--white);
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-category {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 600;
}

.product-title a:hover {
  color: var(--gold);
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
}

.product-price .original {
  text-decoration: line-through;
  color: var(--gray);
  font-weight: 400;
  font-size: 0.95rem;
  margin-right: 8px;
}

.product-price .sale {
  color: var(--error);
}

.product-rating {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin: 8px 0;
  color: var(--gold);
  font-size: 14px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-top: 15px;
  border: none;
}

.add-to-cart-btn:hover {
  background: var(--gold);
}

/* ============================================
   9. BRAND STORY / ABOUT SECTION
   ============================================ */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-story-image {
  position: relative;
}

.brand-story-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.brand-story-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.brand-story-content .section-subtitle {
  text-align: left;
}

.brand-story-content .section-title {
  text-align: left;
  margin-bottom: 25px;
}

.brand-story-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 20px;
}

.brand-signature {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--gold);
  margin-top: 30px;
}

/* ============================================
   10. WHY CHOOSE US
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--white);
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(200,169,110,0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--white);
}

.feature-icon svg {
  width: 36px;
  height: 36px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--black);
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   11. TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-family: var(--font-cursive);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 25px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--black);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 5px;
}

/* ============================================
   12. NEWSLETTER
   ============================================ */
.newsletter {
  background: var(--black);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.newsletter .section-subtitle {
  color: var(--gold-light);
}

.newsletter .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.newsletter p {
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 35px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 25px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  padding: 16px 35px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.newsletter-form button:hover {
  background: var(--gold-dark);
}

/* ============================================
   13. FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: var(--gold);
}

/* ============================================
   14. WOOCOMMERCE STYLES
   ============================================ */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px !important;
  padding: 0 !important;
  margin: 0 !important;
}

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

.woocommerce .products .product {
  background: var(--white);
  transition: var(--transition);
}

.woocommerce .products .product:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.woocommerce div.product div.images img {
  border-radius: 0;
}

.woocommerce div.product p.price {
  color: var(--gold-dark) !important;
  font-size: 1.5rem;
  font-weight: 600;
}

.woocommerce div.product p.price ins {
  text-decoration: none;
}

.woocommerce div.product p.price del {
  color: var(--gray);
  font-size: 1rem;
  margin-right: 10px;
}

.woocommerce div.product .single_add_to_cart_button {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 16px 40px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border: none !important;
  cursor: pointer !important;
  transition: var(--transition-fast) !important;
}

.woocommerce div.product .single_add_to_cart_button:hover {
  background: var(--gold-dark) !important;
}

.woocommerce .woocommerce-ordering select,
.woocommerce .woocommerce-result-count {
  font-family: var(--font-body);
}

.woocommerce nav.woocommerce-pagination ul {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 1px solid var(--cream-dark);
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  padding: 10px 18px;
  color: var(--black);
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* WooCommerce tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  border-bottom: 1px solid var(--cream-dark);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent;
  border: none;
  margin: 0;
  padding: 15px 25px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--gold);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--white);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--black);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   15. CART & CHECKOUT
   ============================================ */
.woocommerce-cart .woocommerce {
  padding: 40px 0;
}

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

.woocommerce table.cart th {
  background: var(--black);
  color: var(--white);
  padding: 15px 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.woocommerce table.cart td {
  padding: 20px;
  border-bottom: 1px solid var(--cream-dark);
  vertical-align: middle;
}

.woocommerce .quantity .qty {
  width: 70px;
  padding: 10px;
  border: 1px solid var(--cream-dark);
  text-align: center;
  font-size: 14px;
}

.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text {
  padding: 12px 15px;
  border: 1px solid var(--cream-dark);
}

.woocommerce .cart-collaterals .cart-totals {
  border: 1px solid var(--cream-dark);
  padding: 30px;
  background: var(--white);
}

.woocommerce .cart-collaterals .cart-totals h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.woocommerce-checkout .checkout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  padding: 14px 18px;
  border: 1px solid var(--cream-dark);
  width: 100%;
  transition: var(--transition-fast);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--gold);
}

.woocommerce #payment {
  background: var(--white);
  padding: 30px;
  border: 1px solid var(--cream-dark);
}

/* ============================================
   16. SINGLE PRODUCT PAGE
   ============================================ */
.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.woocommerce div.product div.images {
  width: 100%;
}

.woocommerce div.product div.images .woocommerce-main-image img {
  width: 100%;
  background: var(--cream);
}

.woocommerce div.product div.summary {
  width: 100%;
  padding: 20px 0;
}

.woocommerce div.product .product_title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 25px;
}

.product-meta-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 25px 0;
  padding: 20px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.product-meta-info span {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-meta-info svg {
  color: var(--gold);
  width: 16px;
}

/* ============================================
   17. SHOP / ARCHIVE PAGE
   ============================================ */
.shop-header {
  background: var(--cream);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
}

.shop-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.shop-header .woocommerce-breadcrumb {
  font-size: 14px;
  color: var(--gray);
}

.shop-header .woocommerce-breadcrumb a {
  color: var(--gold);
}

.woocommerce-sidebar {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
}

.woocommerce-sidebar h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cream-dark);
}

.woocommerce-sidebar ul {
  margin-bottom: 30px;
}

.woocommerce-sidebar ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.woocommerce-sidebar ul li a {
  color: var(--text);
  font-size: 14px;
}

.woocommerce-sidebar ul li a:hover {
  color: var(--gold);
}

.woocommerce-sidebar .price_slider {
  margin: 15px 0;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 60px 0;
}

/* ============================================
   18. PAGES (ABOUT, CONTACT, PRIVACY, TERMS)
   ============================================ */
.page-header {
  background: var(--cream);
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-content {
  padding: 80px 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 20px;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--black);
}

.page-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 30px 0 15px;
  color: var(--black);
}

.page-content ul {
  margin: 20px 0;
  padding-left: 0;
}

.page-content ul li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: 1.05rem;
  color: var(--text-light);
}

.page-content ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 14px;
}

/* Contact Form */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  font-size: 15px;
  transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.contact-info-item {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
}

.contact-info-item svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 15px;
}

.contact-info-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ============================================
   19. WISHLIST
   ============================================ */
.yith-wcwl-form table {
  width: 100%;
}

.yith-wcwl-form th {
  background: var(--black);
  color: var(--white);
  padding: 15px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.yith-wcwl-form td {
  padding: 20px 15px;
  border-bottom: 1px solid var(--cream-dark);
  vertical-align: middle;
}

.wishlist-table .product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

/* ============================================
   20. ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   21. RESPONSIVE - TABLET (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .header-inner {
    padding: 15px 25px;
  }
  
  .main-nav ul {
    gap: 20px;
  }
  
  .main-nav a {
    font-size: 13px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 25px;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-description {
    max-width: 100%;
    margin: 0 auto 30px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-image img {
    max-height: 400px;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .category-card {
    height: 400px;
  }
  
  .brand-story {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .shop-layout {
    grid-template-columns: 1fr;
  }
  
  .woocommerce-sidebar {
    display: none;
  }
  
  .woocommerce div.product {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .woocommerce-checkout .checkout {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   22. RESPONSIVE - MOBILE (<768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 20px;
  }
  
  .top-bar {
    font-size: 11px;
    padding: 8px 0;
  }
  
  .header-inner {
    padding: 12px 20px;
  }
  
  .site-logo img {
    height: 42px;
  }
  
  .site-logo-text .brand-name {
    font-size: 17px;
    letter-spacing: 2px;
  }
  
  .site-logo-text .brand-tagline {
    font-size: 10px;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 999;
    gap: 0;
  }
  
  .main-nav.open {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  
  .main-nav ul li {
    width: 100%;
    border-bottom: 1px solid var(--cream-dark);
  }
  
  .main-nav a {
    display: block;
    padding: 18px 0;
    font-size: 14px;
  }
  
  .main-nav a::after {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .header-actions {
    gap: 15px;
  }
  
  .header-action-btn {
    font-size: 18px;
  }
  
  .hero {
    min-height: auto;
    padding: 40px 0;
  }
  
  .hero-content {
    padding: 30px 20px;
    gap: 30px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    padding: 14px 30px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .category-card {
    height: 300px;
  }
  
  .category-name {
    font-size: 1.5rem;
  }
  
  .products-grid,
  .products-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .product-info {
    padding: 15px 12px;
  }
  
  .product-title {
    font-size: 1rem;
  }
  
  .product-price {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .woocommerce table.cart thead {
    display: none;
  }
  
  .woocommerce table.cart tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid var(--cream-dark);
    background: var(--white);
  }
  
  .woocommerce table.cart td {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid var(--cream-dark);
  }
  
  .woocommerce table.cart td::before {
    content: attr(data-title);
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
  }
  
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }
  
  .woocommerce div.product .product_title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

/* ============================================
   23. MOBILE EXTRA SMALL (<480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ============================================
   24. UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

.gold-text { color: var(--gold); }
.white-text { color: var(--white); }
.black-text { color: var(--black); }

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: var(--transition);
  color: var(--white);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* No scroll class for mobile nav */
body.no-scroll {
    overflow: hidden;
}

/* Search overlay */
.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9998;
    align-items: center;
    justify-content: center;
}

.search-overlay.open {
    display: flex;
}

.search-container {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 45px;
  height: 45px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--cream-dark);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   EMERGENCY FULL WIDTH OVERRIDE
   ============================================ */
@media screen and (min-width: 769px) {
  body, html {
    overflow-x: hidden !important;
  }
  
  .header-inner,
  .hero-content,
  .container,
  .footer-grid {
    max-width: 1440px !important;
    margin: 0 auto !important;
  }
  
  .site-header {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .top-bar {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .section {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .site-footer {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Override Astra/other theme containers */
.ast-container, .fl-container, .elementor-section, 
.wp-block-group, .alignfull {
  max-width: 100% !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

@media (max-width: 768px) {
  .ast-container, .fl-container, .elementor-section,
  .wp-block-group, .alignfull {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ============================================
   NUCLEAR FIX: Remove WooCommerce Clearfix Hack
   ============================================ */

/* Kill the pseudo-elements causing blank space */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce .products ul::before,
.woocommerce .products ul::after {
    display: none !important;
    content: none !important;
}

/* Force clean 4-column grid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    clear: both !important;
}

/* Reset every product */
.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
    box-sizing: border-box !important;
}

/* Remove any inline styles WooCommerce injects */
.woocommerce ul.products li.product[style] {
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
    clear: none !important;
}

/* ============================================
   PRODUCT SIZE STYLING
   ============================================ */

/* Single Product Page - Size Display */
.aairah-product-size {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #FDFBF7;
    border: 1px solid #F5F0E8;
    border-left: 3px solid #C8A96E;
    margin: 15px 0 20px;
    font-family: 'Inter', sans-serif;
}

.aairah-product-size .size-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6B6B6B;
}

.aairah-product-size .size-value {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #C8A96E;
    letter-spacing: 1px;
}

/* Shop Page & Homepage - Size Badge on Cards */
.aairah-card-size {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #6B6B6B;
    padding: 6px 0 4px;
    border-top: 1px solid #F5F0E8;
    margin-top: 8px;
}

.aairah-card-size::before {
    content: 'Size: ';
    color: #999;
    font-weight: 400;
}

/* ============================================
   RELATED PRODUCTS SECTION - Full Width Below
   ============================================ */

.aairah-related-section {
    padding: 80px 20px;
    background: #FDFBF7;
    border-top: 1px solid #F5F0E8;
}

.aairah-related-container {
    max-width: 1280px;
    margin: 0 auto;
}

.aairah-related-header {
    text-align: center;
    margin-bottom: 50px;
}

.aairah-related-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #C8A96E;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.aairah-related-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #1A1A1A;
    margin-bottom: 15px;
    font-weight: 700;
}

.aairah-related-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
    max-width: 200px;
}

.aairah-related-divider span {
    width: 60px;
    height: 1px;
    background: #C8A96E;
}

.aairah-related-divider svg {
    color: #C8A96E;
}

/* Grid - 4 Products */
.aairah-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card Styling */
.aairah-related-card {
    background: #fff;
    border: 1px solid #F5F0E8;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.aairah-related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(200, 169, 110, 0.2);
    border-color: #C8A96E;
}

/* Image */
.aairah-related-img {
    display: block;
    position: relative;
    overflow: hidden;
    background: #FDFBF7;
    padding: 20px 15px;
}

.aairah-related-img img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    display: block;
    transition: transform 0.6s ease;
}

.aairah-related-card:hover .aairah-related-img img {
    transform: scale(1.05);
}

/* Hover Overlay */
.aairah-related-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.aairah-related-card:hover .aairah-related-overlay {
    opacity: 1;
    transform: translateX(0);
}

.aairah-related-overlay:hover {
    background: #C8A96E;
    color: #fff;
}

/* Info */
.aairah-related-info {
    padding: 20px 15px;
    text-align: center;
}

.aairah-related-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 1.3;
}

.aairah-related-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.aairah-related-name a:hover {
    color: #C8A96E;
}

.aairah-related-price {
    color: #C8A96E;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.aairah-related-size {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #6B6B6B;
    padding: 6px 0;
    border-top: 1px solid #F5F0E8;
    margin-top: 4px;
}

.aairah-related-size::before {
    content: 'Size: ';
    color: #999;
    font-weight: 400;
}

.aairah-related-cart-btn {
    width: 100%;
    padding: 14px;
    background: #1A1A1A;
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.aairah-related-cart-btn:hover {
    background: #C8A96E;
}

/* Responsive */
@media (max-width: 1024px) {
    .aairah-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .aairah-related-section {
        padding: 50px 20px;
    }
    .aairah-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .aairah-related-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}
/* ============================================
   INSTAGRAM GRID (No Plugin)
   ============================================ */
.aairah-insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 50px;
}

.aairah-insta-card {
    display: block;
    position: relative;
    overflow: hidden;
    background: #F5F0E8;
    aspect-ratio: 1 / 1;
    text-decoration: none;
}

.aairah-insta-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.aairah-insta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.aairah-insta-card:hover .aairah-insta-img img {
    transform: scale(1.08);
}

.aairah-insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: #fff;
}

.aairah-insta-card:hover .aairah-insta-overlay {
    opacity: 1;
}

.aairah-insta-overlay span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ============================================
   AMAZON BANNER RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .aairah-insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section[style*="amazon"] > .container > div,
    section[style*="#232F3E"] > .container > div {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    section[style*="#232F3E"] > .container > div > div:last-child {
        order: -1;
    }
    
    section[style*="#232F3E"] > .container > div > div > p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .aairah-insta-grid {
        gap: 5px;
    }
}

/* ============================================
   FIX: Product Image Frame - 425x600 Portrait
   ============================================ */

/* Product card image container - exact ratio */
.product-image,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
    aspect-ratio: 425 / 600 !important;
    background: #FDFBF7 !important;
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
    padding: 20px 15px !important;
    border: 1px solid #F0EBE0 !important;
    box-sizing: border-box !important;
}

/* Image - show full, no crop */
.product-image img,
.woocommerce ul.products li.product img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Remove any forced aspect ratios */
.woocommerce ul.products li.product img {
    aspect-ratio: auto !important;
}

/* Frame border effect - elegant */
.product-image::after {
    content: '';
    position: absolute;
    top: 8px; left: 8px; right: 8px; bottom: 8px;
    border: 1px solid rgba(200,169,110,0.2);
    pointer-events: none;
    z-index: 1;
}

/* Badge positioning */
.product-badge {
    z-index: 3 !important;
}

/* Actions positioning */
.product-actions {
    z-index: 3 !important;
}

/* Product info spacing */
.product-info {
    padding: 15px 12px !important;
}

/* Related products cards - same fix */
.aairah-rf-img,
.aairah-related-img {
    aspect-ratio: 425 / 600 !important;
    background: #FDFBF7 !important;
    padding: 15px 10px !important;
    display: block !important;
    border: 1px solid #F0EBE0 !important;
}

.aairah-rf-img img,
.aairah-related-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .product-image,
    .woocommerce ul.products li.product .woocommerce-LoopProduct-link {
        padding: 15px 10px !important;
    }
}
/* ============================================
   WOOCOMMERCE CART PAGE - LUXURY UI
   ============================================ */

/* Cart Table - Clean Design */
.woocommerce-cart .woocommerce table.cart {
    width: 100% !important;
    border-collapse: collapse !important;
    background: #fff !important;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05) !important;
    border: 1px solid #F0EBE0 !important;
}

.woocommerce-cart .woocommerce table.cart thead th {
    background: linear-gradient(135deg, #1A1A1A, #2C2C2C) !important;
    color: #C8A96E !important;
    padding: 18px 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    text-align: left !important;
    border: none !important;
}

.woocommerce-cart .woocommerce table.cart tbody td {
    padding: 20px !important;
    border-bottom: 1px solid #F5F0E8 !important;
    vertical-align: middle !important;
    color: #1A1A1A !important;
}

.woocommerce-cart .woocommerce table.cart tbody tr:hover {
    background: #FDFBF7 !important;
}

/* Product Thumbnail in Cart */
.woocommerce-cart .woocommerce table.cart .product-thumbnail {
    width: 90px !important;
    padding: 10px !important;
}

.woocommerce-cart .woocommerce table.cart .product-thumbnail img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain !important;
    background: #FDFBF7 !important;
    border: 1px solid #F0EBE0 !important;
    padding: 8px !important;
}

/* Product Name */
.woocommerce-cart .woocommerce table.cart .product-name a {
    font-family: 'Playfair Display', serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1A1A1A !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.woocommerce-cart .woocommerce table.cart .product-name a:hover {
    color: #C8A96E !important;
}

/* Price */
.woocommerce-cart .woocommerce table.cart .product-price,
.woocommerce-cart .woocommerce table.cart .product-subtotal {
    color: #1A1A1A !important;
    font-weight: 600 !important;
    font-size: 15px !important;
}

/* Quantity Input */
.woocommerce-cart .woocommerce .quantity .qty {
    width: 70px !important;
    height: 45px !important;
    padding: 10px !important;
    border: 1px solid #F0EBE0 !important;
    background: #FDFBF7 !important;
    text-align: center !important;
    font-size: 14px !important;
    color: #1A1A1A !important;
    transition: all 0.3s ease !important;
}

.woocommerce-cart .woocommerce .quantity .qty:focus {
    border-color: #C8A96E !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(200,169,110,0.1) !important;
}

/* Remove Button */
.woocommerce-cart .woocommerce .product-remove a.remove {
    width: 32px !important;
    height: 32px !important;
    line-height: 30px !important;
    text-align: center !important;
    border-radius: 50% !important;
    border: 1px solid #E53935 !important;
    color: #E53935 !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.woocommerce-cart .woocommerce .product-remove a.remove:hover {
    background: #E53935 !important;
    color: #fff !important;
    border-color: #E53935 !important;
}

/* Coupon Section */
.woocommerce-cart .woocommerce .coupon {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    margin-bottom: 20px !important;
}

.woocommerce-cart .woocommerce .coupon input.input-text {
    padding: 12px 18px !important;
    border: 1px solid #F0EBE0 !important;
    background: #FDFBF7 !important;
    font-size: 14px !important;
    min-width: 250px !important;
    transition: all 0.3s ease !important;
}

.woocommerce-cart .woocommerce .coupon input.input-text:focus {
    border-color: #C8A96E !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(200,169,110,0.1) !important;
}

.woocommerce-cart .woocommerce .coupon button {
    padding: 14px 30px !important;
    background: #1A1A1A !important;
    color: #fff !important;
    border: none !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.woocommerce-cart .woocommerce .coupon button:hover {
    background: #C8A96E !important;
}

/* Update Cart Button */
.woocommerce-cart .woocommerce button[name="update_cart"] {
    padding: 14px 35px !important;
    background: #1A1A1A !important;
    color: #fff !important;
    border: none !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 15px !important;
}

.woocommerce-cart .woocommerce button[name="update_cart"]:hover {
    background: #C8A96E !important;
    transform: translateY(-2px) !important;
}

/* Cart Totals Box */
.woocommerce-cart .woocommerce .cart-collaterals .cart-totals {
    background: #fff !important;
    border: 1px solid #F0EBE0 !important;
    border-top: 3px solid #C8A96E !important;
    padding: 30px !important;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05) !important;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart-totals h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.6rem !important;
    color: #1A1A1A !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #F5F0E8 !important;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart-totals th,
.woocommerce-cart .woocommerce .cart-collaterals .cart-totals td {
    padding: 15px 0 !important;
    border-bottom: 1px solid #F5F0E8 !important;
    font-size: 14px !important;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart-totals th {
    color: #6B6B6B !important;
    font-weight: 500 !important;
    text-align: left !important;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart-totals td {
    color: #1A1A1A !important;
    font-weight: 600 !important;
    text-align: right !important;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart-totals tr.order-total th,
.woocommerce-cart .woocommerce .cart-collaterals .cart-totals tr.order-total td {
    padding-top: 20px !important;
    font-size: 1.2rem !important;
    border-bottom: none !important;
    border-top: 2px solid #C8A96E !important;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart-totals tr.order-total td {
    color: #C8A96E !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
}

/* Checkout Button */
.woocommerce-cart .woocommerce .cart-collaterals .checkout-button {
    display: block !important;
    width: 100% !important;
    padding: 18px !important;
    background: linear-gradient(135deg, #C8A96E, #A0824A) !important;
    color: #fff !important;
    text-align: center !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border: none !important;
    transition: all 0.4s ease !important;
    margin-top: 25px !important;
}

.woocommerce-cart .woocommerce .cart-collaterals .checkout-button:hover {
    background: linear-gradient(135deg, #1A1A1A, #2C2C2C) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(200,169,110,0.3) !important;
    color: #fff !important;
}


/* ============================================
   WOOCOMMERCE NOTICES (Success/Error Messages)
   ============================================ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 15px 25px !important;
    margin-bottom: 25px !important;
    border-left: 4px solid #C8A96E !important;
    background: #FDFBF7 !important;
    font-size: 14px !important;
}

.woocommerce-message {
    border-left-color: #4CAF50 !important;
    color: #2E7D32 !important;
}

.woocommerce-error {
    border-left-color: #E53935 !important;
    color: #C62828 !important;
}

.woocommerce-info {
    border-left-color: #C8A96E !important;
    color: #1A1A1A !important;
}

/* ============================================
   RESPONSIVE CART
   ============================================ */
@media (max-width: 768px) {
    .woocommerce-cart .woocommerce table.cart thead {
        display: none !important;
    }
    
    .woocommerce-cart .woocommerce table.cart tr {
        display: block !important;
        margin-bottom: 20px !important;
        border: 1px solid #F0EBE0 !important;
        background: #fff !important;
    }
    
    .woocommerce-cart .woocommerce table.cart td {
        display: flex !important;
        justify-content: space-between !important;
        padding: 12px 15px !important;
        border-bottom: 1px solid #F5F0E8 !important;
    }
    
    .woocommerce-cart .woocommerce table.cart td::before {
        content: attr(data-title) !important;
        font-weight: 600 !important;
        color: #1A1A1A !important;
        text-transform: uppercase !important;
        font-size: 11px !important;
        letter-spacing: 1px !important;
    }
}

/* ============================================
   WOOCOMMERCE - MINIMAL SUPPORT ONLY
   ============================================ */

/* Container width for cart/checkout */
.woocommerce .content-area,
.woocommerce-page .content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Headings */
.woocommerce h2, .woocommerce h3 {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
}

/* Gold accent for totals */
.woocommerce .order-total .amount,
.woocommerce-cart .cart-subtotal .amount,
.woocommerce-cart .order-total .amount {
    color: #C8A96E;
    font-weight: 700;
}

/* Button color */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
    background: #C8A96E !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 30px !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    transition: background 0.3s ease !important;
}

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

/* Checkout Place Order button */
.woocommerce #payment #place_order {
    background: #C8A96E !important;
    color: #fff !important;
    width: 100% !important;
    padding: 16px !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
}

.woocommerce #payment #place_order:hover {
    background: #1a1a1a !important;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce .content-area,
    .woocommerce-page .content-area {
        padding: 20px 15px;
    }
}

.woocommerce .col2-set::after, .woocommerce .col2-set::before, .woocommerce-page .col2-set::after, .woocommerce-page .col2-set::before {
    content: " ";
    display: table;
}

/* ============================================
   PRODUCT IMAGES - 500x500 SQUARE FIX
   ============================================ */

/* Shop page / Homepage product cards */
.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.product-image,
.product-card .product-image {
    aspect-ratio: 1 / 1 !important;
    background: #FDFBF7 !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 25px 20px !important;
    border: 1px solid #F0EBE0 !important;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link img,
.product-image img,
.product-card .product-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    aspect-ratio: 1 / 1 !important;
}

/* Subtle inner frame */
.product-image::before,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link::before {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid rgba(200,169,110,0.15);
    pointer-events: none;
    z-index: 1;
}

/* Single product main image */
.af-main-image,
.woocommerce div.product div.images .woocommerce-main-image {
    background: #FDFBF7 !important;
    padding: 30px !important;
    border: 1px solid #F0EBE0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.af-main-image img,
.woocommerce div.product div.images .woocommerce-main-image img {
    max-width: 500px !important;
    max-height: 500px !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Gallery thumbnails */
.af-gallery-thumbs .af-thumb img,
.woocommerce div.product div.images .thumbnails img {
    width: 100% !important;
    height: 80px !important;
    object-fit: contain !important;
    background: #FDFBF7 !important;
    padding: 8px !important;
}

/* Cart page thumbnails */
.woocommerce-cart table.cart .product-thumbnail img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain !important;
    background: #FDFBF7 !important;
    padding: 8px !important;
    border: 1px solid #F0EBE0 !important;
}

/* Related products cards */
.aairah-rf-img,
.aairah-related-img {
    aspect-ratio: 1 / 1 !important;
    background: #FDFBF7 !important;
    padding: 20px 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.aairah-rf-img img,
.aairah-related-img img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

/* Responsive - smaller screens */
@media (max-width: 768px) {
    .woocommerce ul.products li.product .woocommerce-LoopProduct-link,
    .product-image {
        padding: 15px 10px !important;
    }
    
    .af-main-image img {
        max-width: 100% !important;
        max-height: 350px !important;
    }
}