/* 
  Prestige Gowns - Premium E-commerce Styles 
  Theme: Luxury, Minimal, Modern
*/

:root {
  /* Dynamic Color Palette (HSL for better control) */
  --bg-dark: 0 0% 4%;
  /* #0a0a0a */
  --bg-card: 0 0% 8%;
  /* #141414 */
  --accent: 25 100% 43%;
  /* #D95900 - Burnt Orange */
  --accent-light: 25 100% 60%;
  /* Lighter Orange */
  --accent-dark: 25 100% 30%;
  /* Darker Orange */
  --text-primary: 0 0% 98%;
  /* Near White */
  --text-secondary: 0 0% 70%;
  /* Muted Grey */
  --text-muted: 0 0% 45%;
  /* Dark Grey */
  /* Dark Grey */
  --grey-medium: #e0e0e0;
  --white: #ffffff;
  /* Dark Grey */
  --grey-medium: #e0e0e0;
  --white: #ffffff;
  --text-main: #333333;

  --primary: #0a0a0a;
  --secondary: #D95900;

  /* Modern Tokens */
  --glass-bg: hsla(0, 0%, 100%, 0.05);
  --glass-border: hsla(0, 0%, 100%, 0.1);
  --glass-shine: hsla(0, 0%, 100%, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --spacing-sm: 1.5rem;
  /* Fix for container padding */
  --spacing-md: 3rem;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-elastic: 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Glassmorphism Classes */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

.glass-morphism {
  background: hsla(0, 0%, 100%, 0.03);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.05);
}

/* Gradient Utilities */
.text-gradient {
  background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(var(--accent-light)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: linear-gradient(135deg, hsl(var(--bg-dark)) 0%, hsl(var(--bg-card)) 100%);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Typography Utilities */
.text-gold {
  color: var(--secondary);
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: hsl(var(--bg-dark));
  color: #ffffff;
  border-color: transparent;
  /* Removed border */
}

.btn-primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: hsl(var(--bg-dark));
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  /* White glow */
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: hsl(var(--bg-dark));
  transform: translateY(-3px);
  box-shadow: 0 10px 30px -10px rgba(255, 255, 255, 0.3);
}

.btn-gold {
  background-color: hsl(var(--accent));
  color: hsl(var(--bg-dark));
  border-color: hsl(var(--accent));
}

.btn-gold:hover {
  background-color: hsl(var(--accent-light));
  border-color: hsl(var(--accent-light));
  transform: translateY(-3px);
  box-shadow: 0 10px 30px -10px hsla(var(--accent), 0.5);
}

.btn-white {
  background-color: #ffffff;
  color: hsl(var(--bg-dark));
  border-color: #ffffff;
}

.btn-white:hover {
  background-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px -10px rgba(255, 255, 255, 0.3);
}



/* Form Elements */
.selector-group {
  margin-bottom: 1.5rem;
}

.selector-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  /* color: hsl(var(--text-primary)); */
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-select {
  width: 100%;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: all var(--transition-fast);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.form-select:focus {
  outline: none;
  border-color: hsl(var(--accent));
  box-shadow: 0 0 0 3px hsla(var(--accent), 0.1);
}

/* Hire/Rental Terms Note */
.hire-note {
  background-color: #fff9f0;
  border: 1px solid rgba(217, 89, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.hire-title {
  display: block;
  font-family: var(--font-heading);
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.hire-note ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hire-note li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  color: #555;
  line-height: 1.5;
}

.hire-note li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: bold;
}

.hire-note li strong {
  display: inline;
  color: var(--text-main);
  font-weight: 600;
}

/* Layout Containers */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: hsla(0, 0%, 4%, 0.8);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  z-index: 1000;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: hsla(0, 0%, 4%, 0.95);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--text-primary));
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40%;
  height: 2px;
  background: hsl(var(--accent));
  transition: width var(--transition-smooth);
}

.logo:hover::after {
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 3rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--text-secondary));
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: hsl(var(--text-primary));
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: hsl(var(--accent));
  transition: all var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-actions i,
.nav-actions svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
  stroke: #ffffff;
  transition: color var(--transition-fast), stroke var(--transition-fast), transform var(--transition-fast);
}

.nav-actions a:hover i,
.nav-actions a:hover svg,
.nav-actions .cart-trigger:hover i,
.nav-actions .cart-trigger:hover svg {
  color: hsl(var(--accent));
  stroke: hsl(var(--accent));
  transform: translateY(-2px);
}

.cart-icon-wrapper {
  position: relative;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background: hsl(var(--accent));
  color: hsl(var(--bg-dark));
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: hsl(var(--text-primary));
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--bg-dark));
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, hsla(var(--accent), 0.08) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center bottom, transparent 0%, hsl(var(--bg-dark)) 70%);
  z-index: 3;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 1;
  filter: brightness(0.6) contrast(1.1);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

/* Hero Badge - Hardcoded colors for reliability */
.hero-badge {
  display: inline-block;
  padding: 0.6rem 1.75rem;
  background-color: #D95900;
  /* Updated to Burnt Orange */
  color: #ffffff;
  /* White text for better contrast on orange */
  border: none;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 2px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(217, 89, 0, 0.4);
  /* Force visibility immediately */
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: none !important;
  /* Disable animation to rule it out completely */
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 0.8s 0.2s forwards;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: hsla(0, 0%, 100%, 0.8);
  max-width: 550px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 0.8s 0.4s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 0.8s 0.6s forwards;
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hire Hero */
.hire-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: url('assets/hire-1.jpg') center/cover;
  padding: 8rem 1rem 4rem;
}

.hire-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.hire-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hire-hero .hero-title {
  font-size: 3.5rem;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hire-hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* Categories Section */
.section {
  padding: 6rem 0;
  background: hsl(var(--bg-dark));
}

.categories-section {
  background: #ffffff;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.categories-section .section-title {
  color: hsl(var(--bg-dark));
}

.categories-section .section-subtitle {
  color: #b5952f;
  /* Darker gold for better contrast on white */
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: hsl(var(--text-primary));
  margin-bottom: 1.5rem;
}

.section-subtitle {
  color: hsl(var(--accent));
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 350px);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  /* Sharper corners for premium feel */
  cursor: pointer;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* Subtle outline */
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: #d4af37;
  /* Gold border on hover */
}

.category-card:nth-child(1) {
  grid-column: span 8;
  grid-row: span 1;
}

.category-card:nth-child(2) {
  grid-column: span 4;
  grid-row: span 2;
}

.category-card:nth-child(3) {
  grid-column: span 8;
  grid-row: span 1;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(0%);
  /* Keep color for vibrant look */
  position: relative;
  z-index: 1;
}

.category-card:hover .category-img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient at bottom for text readability */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 2rem;
  z-index: 10;
  transition: all 0.3s;
}

.category-text {
  text-align: left;
}

.category-title {
  color: #ffffff;
  font-size: 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.category-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
  display: block;
  font-family: var(--font-body);
}

.category-icon {
  color: #ffffff;
  width: 40px;
  height: 40px;
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background: #D95900;
  transform: rotate(-45deg);
}



.category-card:hover .category-explore {
  transform: translateY(0);
  opacity: 1;
}

/* Features Section */
/* Features Section */
.features {
  background-color: hsl(var(--bg-dark));
  position: relative;
  padding: 8rem 0;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, hsla(var(--accent), 0.05) 0%, transparent 50%);
  pointer-events: none;
  display: block;
}

/* Revert text colors for dark theme */
.features .section-title {
  color: hsl(var(--text-primary));
}

.features .section-subtitle {
  color: #D95900;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-item {
  padding: 3rem 2rem;
  background: hsla(0, 0%, 12%, 1);
  /* Solid dark grey for better contrast against black */
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 2px;
  transition: all var(--transition-smooth);
  text-align: center;
}

.feature-item:hover {
  background: hsla(0, 0%, 15%, 1);
  /* Slightly lighter on hover */
  border-color: #D95900;
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  width: 50px;
  height: 50px;
  color: #D95900;
  margin-bottom: 1.5rem;
  stroke-width: 1.5;
  background: rgba(217, 89, 0, 0.15);
  /* Slightly clearer bg */
  border-radius: 50%;
  padding: 10px;
  box-sizing: content-box;
}

.feature-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  /* Bold title */
  color: #ffffff;
  /* Pure white */
  letter-spacing: 0.02em;
}

.feature-text {
  color: #cccccc;
  /* Much lighter grey */
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 400;
}



/* Featured Products - White Theme */
.featured-section {
  background-color: #ffffff;
}

.featured-section .section-title {
  color: hsl(var(--bg-dark));
}

.featured-section .section-subtitle {
  color: #D95900;
}

/* Override outline button for white background */
.featured-section .btn-outline {
  color: hsl(var(--bg-dark));
  border-color: hsl(var(--bg-dark));
}

.featured-section .btn-outline:hover {
  background-color: hsl(var(--bg-dark));
  color: #ffffff;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}


/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.product-card {
  position: relative;
  transition: all var(--transition-smooth);
  /* padding: 1rem; */
  border-radius: var(--radius-sm);
  background: transparent;
}

.product-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  /* Soft premium shadow */
  transform: translateY(-8px);
  /* Subtle lift */
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 1.5rem;
  background-color: #f5f5f5;
  /* Light grey placeholder */
  border-radius: var(--radius-sm);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.03);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
  transform: scale(1.1);
}

.product-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 5;
}

.badge {
  padding: 0.25rem 0.75rem;
  background-color: #ffffff;
  color: hsl(var(--bg-dark));
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  /* Pill shape */
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.badge.sale {
  background-color: hsl(var(--bg-dark));
  color: #ffffff;
  border: none;
}

.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, hsla(0, 0%, 4%, 0.9) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-smooth);
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.product-card:hover .product-actions {
  transform: translateY(0);
  opacity: 1;
}

.product-info {
  text-align: left;
}

.product-category {
  color: hsl(var(--accent));
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.product-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--bg-dark));
  /* Dark text for light backgrounds */
  font-family: var(--font-heading);
  /* Switch to serif for premium feel */
  font-weight: 600;
  transition: color var(--transition-fast);
}

.product-card:hover .product-title {
  color: #D95900;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(var(--bg-dark));
  /* Dark price */
}

.price-strike {
  text-decoration: line-through;
  color: #999;
  /* Light grey strike */
  margin-right: 0.75rem;
  font-size: 0.9em;
}

/* Testimonials */
/* Testimonials */
.testimonials-section {
  background-color: #000000;
  /* Pure black */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section .section-title {
  color: #ffffff;
}

.testimonials-section p {
  color: #cccccc;
}

/* Subtle background accent glow */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(217, 89, 0, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  padding: 3.5rem 2.5rem 2.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  /* Sharper, more modern corners */
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  border-color: rgba(217, 89, 0, 0.3);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: #D95900;
  opacity: 0.2;
  line-height: 1;
  font-style: italic;
}

.testimonial-stars {
  color: #D95900;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.testimonial-text {
  color: #e0e0e0;
  /* Bright grey for readability */
  font-size: 1.05rem;
  /* Slightly larger text */
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: var(--font-body);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.author-avatar {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  color: #d95900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info h5 {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.author-info span {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}




/* Final CTA */
.cta-section {
  padding: 10rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/cta-bg.jpg') center/cover fixed;
  text-align: center;
  color: hsl(var(--text-primary));
}

.cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  margin-bottom: 2rem;
}

.cta-section p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  color: hsl(var(--text-secondary));
}

.btn-large {
  padding: 1.25rem 3.5rem;
  font-size: 1rem;
}

/* Footer */
footer {
  background-color: hsl(var(--bg-dark));
  color: hsl(var(--text-primary));
  padding: 8rem 0 4rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.footer-col h4 {
  margin-bottom: 2.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--text-primary));
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-col p {
  color: hsl(var(--text-secondary));
  line-height: 1.8;
}

.footer-col ul li {
  margin-bottom: 1.25rem;
}

.footer-col ul li a {
  color: hsl(var(--text-secondary));
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: hsl(var(--accent));
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.05);
  color: hsl(var(--text-muted));
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Reveal Animations */
.reveal-init {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Base styles for footer links */
.footer-col ul li a {
  position: relative;
  padding-left: 0;
}

.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: hsl(var(--accent));
  transition: width 0.3s ease;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-detail-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: hsla(0, 0%, 4%, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 1100;
    transform: none;
    /* Reset desktop transform */
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
    transition: color 0.2s, transform 0.2s;
  }

  .mobile-nav-close:hover {
    color: hsl(var(--accent));
    transform: rotate(90deg);
  }

  .nav-link {
    font-size: 1.5rem;
    color: #ffffff;
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .mobile-toggle span {
    background: #ffffff;
  }

  /* Mobile Hero with specific image and lighter overlay */
  .hero {
    background: url('assets/hero-bg.png') center/cover no-repeat;
    padding-top: 80px;
  }

  .hero::before {
    background: linear-gradient(135deg, hsla(var(--accent), 0.05) 0%, transparent 50%);
  }

  .hero::after {
    background: radial-gradient(ellipse at center bottom, transparent 0%, hsla(0, 0%, 4%, 0.85) 70%);
  }

  .hero-video-bg {
    display: none;
  }

  .hero-content {
    padding: 2rem 1.5rem;
  }


}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hire-hero .hero-title {
    font-size: 2.2rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .featured-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  footer .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.categories-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 768px) {
  .categories-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .category-card {
    width: 100%;
    height: 300px !important;
    /* Force height */
    grid-column: auto !important;
    /* Reset grid positioning */
    grid-row: auto !important;
  }
}


/* Testimonials Section */


/* CTA Section */
/* CTA Section */
.cta-section {
  background: #ffffff;
  color: hsl(var(--bg-dark));
  text-align: center;
  padding: 8rem 0;
  border-top: 1px solid #f5f5f5;
  position: relative;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  color: hsl(var(--bg-dark));
  font-weight: 600;
}

.cta-section p {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1rem;
}

/* Button Gold variant improvement */
.btn-gold {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.btn-gold:hover {
  background: #b5952f;
  border-color: #b5952f;
}

/* Footer contact styling */
.footer-col ul li {
  color: #999;
  font-size: 0.9rem;
}

/* Responsive Testimonials */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .cta-section {
    padding: 4rem 0;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
}

/* Page Header */
.page-header {
  background-color: var(--grey-light);
  padding: 10rem 0 4rem;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.about-content p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-medium);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

.contact-form-wrapper,
.contact-info {
  background: var(--grey-light);
  padding: 3rem;
  border-radius: 4px;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-info-item a {
  color: var(--primary);
}

.contact-info-item a:hover {
  color: var(--secondary);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--grey-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--grey-medium);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-group textarea {
  resize: vertical;
}

/* Checkout Page */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.checkout-form-wrapper {
  background: var(--grey-light);
  padding: 3rem;
  border-radius: 4px;
}

.order-summary {
  background: var(--grey-light);
  padding: 2rem;
  border-radius: 4px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.checkout-items {
  margin-bottom: 2rem;
}

.checkout-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey-medium);
}

.checkout-item img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.checkout-item-details {
  flex: 1;
}

.checkout-item-details h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.checkout-item-details p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.checkout-item-price {
  font-weight: 600;
}

.order-totals {
  padding-top: 1rem;
  border-top: 1px solid var(--grey-medium);
}

.total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.total-final {
  font-size: 1.2rem;
  font-weight: 700;
  border-top: 2px solid var(--primary);
  margin-top: 0.5rem;
  padding-top: 1rem;
}

.checkout-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--white);
  border-left: 3px solid var(--secondary);
  font-size: 0.9rem;
}

.confirmation-message {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.confirmation-content {
  text-align: center;
  max-width: 500px;
}

.confirmation-content h2 {
  margin: 1.5rem 0 1rem;
}

.confirmation-content p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* Responsive for new pages */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .about-stats {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 8rem 0 3rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-form-wrapper,
  .contact-info,
  .checkout-form-wrapper,
  .order-summary {
    padding: 1.5rem;
  }
}

/* =========================================
   Cart Drawer Styles
   ========================================= */

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  /* Hidden by default */
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #ffffff;
  z-index: 2001;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

/* Cart Header */
.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: hsl(var(--bg-dark));
  margin: 0;
}

.close-cart {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
}

.close-cart:hover {
  color: #D95900;
}

/* Cart Items Container */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Individual Cart Item */
.cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cart-item img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
  background: #f5f5f5;
}

.cart-item-details {
  flex: 1;
}

.cart-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: hsl(var(--bg-dark));
}

.cart-item p {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.remove-item {
  color: #999;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 0.25rem;
  display: inline-block;
}

.remove-item:hover {
  color: #ff4444;
}

/* Cart Footer */
.cart-footer {
  padding: 1.5rem;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--bg-dark));
}

/* Empty Cart State */
.empty-cart-msg {
  text-align: center;
  color: #999;
  margin-top: 2rem;
  font-style: italic;
}

/* =========================================
   Shop Page Styles
   ========================================= */

.shop-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/hero-bg.jpg') center/cover;
  color: #ffffff;
  text-align: center;
}

.shop-hero h1,
.shop-hero p {
  color: #ffffff;
}

.shop-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 120px;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--grey-medium);
  border-radius: 4px;
}

.filter-group {
  margin-bottom: 2.5rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.sidebar-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--bg-dark));
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--grey-medium);
}

.filter-list li {
  margin-bottom: 0.75rem;
}

.filter-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-link:hover {
  color: hsl(var(--accent));
  padding-left: 5px;
}

.filter-link.active {
  color: hsl(var(--bg-dark));
  font-weight: 600;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.2s;
}

.checkbox-label:hover {
  color: hsl(var(--accent));
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: hsl(var(--accent));
}

/* Shop Responsive */
.mobile-filter-toggle {
  display: none;
}

@media (max-width: 992px) {
  .shop-layout {
    grid-template-columns: 200px 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .shop-layout {
    display: block;
    /* Stack layout */
  }

  .mobile-filter-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--grey-medium);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    color: hsl(var(--bg-dark));
    cursor: pointer;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.2s;
  }

  .mobile-filter-toggle:hover {
    background: #f5f5f5;
    border-color: hsl(var(--bg-dark));
  }

  .shop-sidebar {
    display: none;
    /* Hidden by default */
    background: #f9f9f9;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: none;
    border-radius: 4px;
    /* position: relative; */
    /* Reset sticky */
    z-index: 100;
  }

  .shop-sidebar.active {
    display: block;
    /* Show when active */
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    /* 2 Items per row on mobile */
    gap: 1rem;
  }

  .product-card {
    padding-bottom: 1rem;
  }

  /* Adjust card content for smaller grid */
  .product-title {
    font-size: 0.9rem;
  }

  .product-price {
    font-size: 0.95rem;
  }

  .product-category {
    font-size: 0.7rem;
  }

  /* Mobile Cart Adjustments */
  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }

  .btn-continue-shopping {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--grey-medium);
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
  }

  .filter-group {
    margin-bottom: 0;
  }

  /* Optimize Add to Cart button on mobile */
  .product-actions {
    padding: 1rem;
    opacity: 1;
    /* Always visible on mobile or handle via click */
    transform: translateY(0);
    background: linear-gradient(to top, hsla(0, 0%, 4%, 0.8) 0%, transparent 100%);
  }

  .product-actions .btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.65rem;
    width: 100%;
  }

}

/* About Page Styles Base */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .about-mission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .about-mission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .shop-sidebar {
    /* No column changes needed inside sidebar container */
  }

  .filter-group {
    margin-bottom: 2rem;
  }

  /* Mobile Spacing Fixes */
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-card {
    min-width: 0;
  }

  /* Checkout Responsive */
  .checkout-grid {
    grid-template-columns: 1fr !important;
    /* Force stack on mobile */
    gap: 2rem;
  }

  .order-summary {
    position: static;
  }
}

.product-detail-container {
  padding-top: 8rem;
  padding-bottom: 6rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 120px;
  background-color: #f9f9f9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.product-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-gallery:hover img {
  transform: scale(1.02);
}

.product-details {
  padding-right: 1rem;
}

.pd-collection {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-weight: 600;
  display: block;
}

.product-details h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-heading);
  color: hsl(var(--bg-dark));
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.pd-price {
  font-size: 1.75rem;
  color: hsl(var(--accent));
  font-weight: 500;
  display: block;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-medium);
}

.pd-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}


.selector-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000000 !important;
  /* Force black */
}

.form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--grey-medium);
  border-radius: 4px;
  background: #fff;
  margin-bottom: 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.form-select:focus {
  outline: none;
  border-color: hsl(var(--accent));
}

.hire-note {
  background-color: #ffffff !important;
  border-left: 4px solid #D95900 !important;
  padding: 1.5rem !important;
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
  border-radius: 4px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  border: 1px solid #f0f0f0;
  border-left-width: 4px;
}

.hire-note strong {
  display: block;
  color: #0a0a0a !important;
  font-size: 0.85rem !important;
  margin-bottom: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-weight: 700 !important;
}

.hire-note ul {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.9rem !important;
  color: #555555 !important;
  line-height: 1.7 !important;
}

.hire-note li {
  margin-bottom: 0.35rem;
}

/* Trust Badges Area */
.trust-badges {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-medium);
  display: flex;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item svg {
  color: hsl(var(--accent));
  width: 20px;
  height: 20px;
}

/* Mobile Product Detail */
@media (max-width: 992px) {
  .product-detail-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 6rem;
  }

  .product-gallery {
    position: static;
    max-height: 500px;
  }

  .product-gallery img {
    max-height: 500px;
    width: 100%;
    object-position: center;
  }

  .product-details {
    padding-right: 0;
  }
}

/* --- Enhanced Cart Styles --- */
.cart-overlay {
  z-index: 999 !important;
}

.cart-drawer {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  z-index: 1000 !important;
  position: fixed;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-medium);
  align-items: start;
}

.cart-item-img {
  width: 80px;
  height: 100px;
  /* Taller aspect ratio */
  border-radius: 4px;
  object-fit: cover;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
}

.cart-item-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.cart-item-price {
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--secondary);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 4px;
  padding: 0.2rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: #e0e0e0;
  border-radius: 2px;
}

.qty-val {
  padding: 0 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.remove-link {
  background: transparent;
  border: none;
  color: #999;
  font-size: 0.8rem;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}

.remove-link:hover {
  color: #d00;
}

.close-cart {
  display: block;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #333;
}

.close-cart:hover {
  color: #d00;
}

/* Mobile: Show "Continue Shopping" button */
@media (max-width: 768px) {
  .close-cart-btn-secondary {
    display: block !important;
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px;
    margin-top: 10px;
    border-radius: 4px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
  }
}


/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #0a0a0a;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Hire Page Steps */
.hire-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.hire-step-card {
  background: white;
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 8px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hire-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #D4AF37;
  /* Gold variable wasn't working in raw css append sometimes, using hardcode or var if sure */
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hire-step-card h4 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  font-size: 1.1rem;
}

.hire-step-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .hire-steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hire-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Hero Reorder */
@media (max-width: 768px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-buttons .btn {
    width: 100%;
    margin: 0 !important;
    /* Override any existing margins */
  }

  /* "Hire Attire" is btn-outline in index.html */
  .hero-buttons .btn-outline {
    order: -1;
    background: rgba(255, 255, 255, 0.1);
    /* Ensure it's visible on dark bg if order changes context, though likely fine */
  }
}