/* Konkan.one Custom Styles for Django Oscar */
/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Variables */
:root {
  /* Konkan-inspired palette */
  --background: hsl(40, 33%, 98%);
  --foreground: hsl(200, 25%, 15%);
  --card: hsl(40, 30%, 96%);
  --card-foreground: hsl(200, 25%, 15%);

  /* Ocean Teal - Primary */
  --primary: hsl(175, 50%, 35%);
  --primary-foreground: hsl(40, 33%, 98%);
  --primary-hover: hsl(175, 55%, 30%);

  /* Sandy Cream - Secondary */
  --secondary: hsl(38, 40%, 92%);
  --secondary-foreground: hsl(200, 25%, 20%);

  /* Muted Sage */
  --muted: hsl(150, 15%, 90%);
  --muted-foreground: hsl(200, 15%, 45%);

  /* Mango Orange Accent */
  --accent: hsl(28, 85%, 55%);
  --accent-foreground: hsl(40, 33%, 98%);

  --border: hsl(38, 25%, 85%);
  --radius: 0.75rem;

  /* Custom Konkan tokens */
  --ocean: hsl(175, 50%, 35%);
  --ocean-dark: hsl(175, 55%, 25%);
  --sand: hsl(38, 40%, 92%);
  --sand-dark: hsl(38, 35%, 80%);
  --mango: hsl(28, 85%, 55%);
  --mango-light: hsl(35, 90%, 65%);
  --coconut: hsl(40, 33%, 98%);
  --palm: hsl(150, 40%, 35%);
  --palm-light: hsl(150, 35%, 50%);

  /* Shadows */
  --shadow-soft: 0 4px 20px -4px hsla(200, 25%, 15%, 0.08);
  --shadow-elevated: 0 12px 40px -8px hsla(200, 25%, 15%, 0.12);

  /* Fonts */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  padding-top: 0;
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 768px) {
  body {
    padding-top: 0;
  }
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
}

.btn,
.form-control,
.breadcrumb,
.page_inner {
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

.page-header h1,
.sub-header h2 {
  font-family: var(--font-display);
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

/* =========================
   HEADER / NAVBAR
   ========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(40, 33%, 98%, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

/* =========================
   PAGE LAYOUT IMPROVEMENTS
   ========================= */
.page {
  background: var(--background);
  min-height: 100vh;
}

.page_inner {
  background: var(--background);
  padding: 1rem 0;
}

.page-header {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.page-header h1 {
  font-family: var(--font-display);
  color: var(--foreground);
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
}

/* Breadcrumbs styling */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-radius: var(--radius);
}

.breadcrumb-item {
  color: var(--muted-foreground);
}

.breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumb-item.active {
  color: var(--foreground);
  font-weight: 500;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 70px;
  padding: 0 var(--space-lg);
  gap: var(--space-lg);
}

@media (max-width: 767.98px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu-btn {
    justify-self: end;
  }
}

@media (min-width: 768px) {
  .header-inner {
    height: 80px;
    gap: 2rem;
  }
}

.logo img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .logo img {
    height: 56px;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex: 1;
  background: hsl(0 0% 100% / 0.4);
  backdrop-filter: blur(8px);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius);
  border: 1px solid hsl(38 25% 85% / 0.3);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: hsla(200, 25%, 15%, 0.8);
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary) !important;
  background: hsl(175 50% 35% / 0.06);
}

/* Override any conflicting hover states from other stylesheets */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.nav > li > a:hover,
.nav > li > a:focus,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: var(--primary) !important;
  background: hsl(175 50% 35% / 0.06) !important;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .header-actions {
    display: flex;
  }
}

.icon-btn {
  padding: 0.5rem;
  color: hsla(200, 25%, 15%, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.icon-btn:hover {
  color: var(--primary);
}

/* Search Dropdown */
.search-dropdown {
  position: relative;
}

.search-menu {
  position: fixed;
  top: 70px;
  right: 1rem;
  width: 300px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-elevated);
  padding: 1.5rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-height: 80px;
}

@media (min-width: 768px) {
  .search-menu {
    top: 80px;
    min-height: 90px;
  }
}

.search-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-color: var(--primary);
}

.search-input::placeholder {
  color: var(--muted-foreground);
}

.search-submit {
  padding: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-submit:hover {
  background: var(--primary-hover);
}

.search-submit svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: hsla(200, 25%, 15%, 0.8);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn-accent:hover {
  background: hsl(28, 85%, 50%);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-hero {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-hero:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

.btn-hero-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-hero-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: hsla(175, 50%, 35%, 0.05);
}

.btn svg {
  width: 20px;
  height: 20px;
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(40, 33%, 98%, 0.95), hsla(40, 33%, 98%, 0.7), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(175, 50%, 35%, 0.1);
  color: var(--primary);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease-out forwards;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title .highlight {
  display: block;
  color: var(--primary);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 560px;
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(38, 25%, 85%, 0.5);
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 768px) {
  .hero-stat-value {
    font-size: 2.25rem;
  }
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(to top, var(--background), transparent);
  z-index: 10;
}

/* =========================
   CATEGORIES SECTION
   ========================= */
.categories {
  padding: 5rem 0 8rem;
  background: hsla(38, 40%, 92%, 0.3);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-tag {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.category-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(200, 25%, 15%, 0.9) 0%, hsla(200, 25%, 15%, 0.6) 50%, transparent 100%);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.category-count {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(40, 33%, 98%, 0.7);
}

.category-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-top: 0.25rem;
}

.category-description {
  font-size: 0.875rem;
  color: hsla(40, 33%, 98%, 0.8);
  margin-top: 0.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.3s ease;
}

.category-card:hover .category-link {
  gap: 0.75rem;
}

.category-link svg {
  width: 16px;
  height: 16px;
}

/* =========================
   FEATURES SECTION
   ========================= */
.features {
  padding: 5rem 0 8rem;
  background: var(--background);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.feature-card {
  text-align: center;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: hsla(175, 50%, 35%, 0.1);
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

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

.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* =========================
   TESTIMONIALS SECTION
   ========================= */
.testimonials {
  padding: 5rem 0 8rem;
  background: hsla(175, 50%, 35%, 0.05);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.testimonial-card {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  color: hsla(175, 50%, 35%, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-text {
  color: hsla(200, 25%, 15%, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-name {
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* =========================
   NEWSLETTER SECTION
   ========================= */
.newsletter {
  position: relative;
  padding: 5rem 0 8rem;
  background: var(--primary);
  overflow: hidden;
}

.newsletter-decorations {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.newsletter-decor-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(48px);
  animation: float 6s ease-in-out infinite;
}

.newsletter-decor-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: var(--palm);
  filter: blur(48px);
  animation: float 6s ease-in-out infinite 2s;
}

.newsletter-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}

.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(40, 33%, 98%, 0.1);
  color: var(--primary-foreground);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.newsletter-badge svg {
  width: 16px;
  height: 16px;
}

.newsletter-badge span {
  font-size: 0.875rem;
  font-weight: 500;
}

.newsletter-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .newsletter-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .newsletter-title {
    font-size: 3rem;
  }
}

.newsletter-description {
  font-size: 1.125rem;
  color: hsla(40, 33%, 98%, 0.8);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 512px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid hsla(40, 33%, 98%, 0.2);
  background: hsla(40, 33%, 98%, 0.1);
  color: var(--primary-foreground);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
  color: hsla(40, 33%, 98%, 0.5);
}

.newsletter-input:focus {
  border-color: hsla(40, 33%, 98%, 0.5);
}

.newsletter-privacy {
  font-size: 0.875rem;
  color: hsla(40, 33%, 98%, 0.6);
  margin-top: 1rem;
}

/* =========================
   FOOTER
   ========================= */
.footer {
  background: var(--foreground);
  color: var(--primary-foreground);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.footer-brand img {
  height: 48px;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: hsla(40, 33%, 98%, 0.7);
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-mission-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--palm) 100%);
  border-radius: 50%;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsla(40, 33%, 98%, 0.1);
  color: var(--primary-foreground);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: hsla(40, 33%, 98%, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-foreground);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsla(40, 33%, 98%, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

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

.footer-copyright {
  color: hsla(40, 33%, 98%, 0.6);
  font-size: 0.875rem;
}

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

.footer-legal a {
  color: hsla(40, 33%, 98%, 0.6);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-foreground);
}

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

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

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

/* Utility Classes */
.text-center {
  text-align: center;
}

.with-header-padding {
  padding-top: 0;
}

@media (min-width: 768px) {
  .with-header-padding {
    padding-top: 0;
  }
}

/* =========================
   PRODUCT CATALOG STYLING
   ========================= */
.browsing-summary {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.browsing-summary strong {
  color: var(--primary);
  font-weight: 600;
}

/* Product grid improvements */
.row.list-unstyled {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.row.list-unstyled li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Product cards */
.product_pod {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product_pod:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--primary);
}

.product_pod img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: calc(var(--radius) * 0.75);
  margin-bottom: 1rem;
}

.product_pod h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product_pod .price_color {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.product_pod .availability {
  font-size: 0.875rem;
  color: var(--palm);
  margin-bottom: 1rem;
  font-weight: 500;
}

.product_pod .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* Sidebar styling */
.side_categories {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.side_categories h4 {
  font-family: var(--font-display);
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.side_categories .nav {
  padding: 0;
}

.side_categories .nav li {
  margin-bottom: 0.5rem;
}

.side_categories .nav a {
  color: var(--muted-foreground);
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
  transition: color 0.3s ease;
  font-weight: 500;
}

.side_categories .nav a:hover {
  color: var(--primary);
}

.side_categories .nav strong {
  color: var(--primary);
  font-weight: 600;
}

.product_page .row {
  align-items: flex-start;
  gap: 2rem;
}

.product_page .col-sm-6:first-child {
  flex: 0 0 45%;
}

.product_page .col-sm-6:last-child {
  flex: 0 0 50%;
}

.product_main h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.product_main .price-color {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.product_main .stock-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  background: hsla(150, 40%, 35%, 0.1);
  border-radius: var(--radius);
  color: var(--palm);
  font-weight: 500;
}

.product_main .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  margin: 0.5rem 0;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 200px;
}

.product_main .btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
}

.product_main .btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

.product_main .btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  border: 1px solid var(--border);
}

.product_main .btn-secondary:hover {
  background: var(--sand-dark);
  transform: translateY(-1px);
}

.product_main .add-to-wishlist {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  text-decoration: none;
  margin-top: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.product_main .add-to-wishlist:hover {
  color: var(--accent);
}

/* Product Description Section */
.product_page .sub-header {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.product_page .sub-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
}

.product_page .table {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Modern Product Information Layout */
.product_page .table {
  display: none; /* Hide the original table */
}

.product-info-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .product-info-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.product-info-item {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.product-info-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

.product-info-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-info-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.product-info-value.price {
  color: var(--primary);
  font-size: 1.25rem;
}

.product-info-value.availability {
  color: var(--palm);
}

.product-info-value.reviews {
  color: var(--accent);
}

/* Special styling for important items */
.product-info-item.highlight {
  background: hsla(175, 50%, 35%, 0.1);
  border: 1px solid hsla(175, 50%, 35%, 0.2);
}

.product-info-item.highlight .product-info-label {
  color: var(--primary);
}

.product-info-item.highlight .product-info-value {
  color: var(--primary);
}

.product_page .table th {
  background: var(--secondary);
  font-weight: 600;
  color: var(--foreground);
  border: none;
  padding: 1rem;
}

.product_page .table td {
  padding: 1rem;
  border-color: var(--border);
  vertical-align: middle;
}

/* Basket Page Styles */
.basket-page {
  margin-top: 2rem;
}

.basket-page .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 992px) {
  .basket-page .content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.basket-page .basket-items {
  flex: 1;
  min-width: 0;
}

.basket-page .basket-totals {
  flex: 0 0 350px;
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  align-self: flex-start;
  border: 1px solid var(--border);
}

/* =========================
   CART PAGE STYLING
   ========================= */
.cart-page {
  background: var(--background);
  padding-top: 80px;
  min-height: 100vh;
}

.cart-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.cart-page .page-header {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  text-align: center;
}

.cart-page .page-header h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.cart-summary {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin: 0;
}

.cart-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .cart-content {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

/* Cart Items Section - Clean Layout */
.cart-items {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 2rem;
}

.cart-items-header {
  background: var(--secondary);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.cart-items-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

.cart-items-list {
  padding: 0;
}

.cart-item {
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem !important;
  padding: 2rem !important;
  border-bottom: 1px solid var(--border) !important;
  transition: background 0.3s ease !important;
  grid-template-columns: unset !important;
}

.cart-item:hover {
  background: var(--muted);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-image .no-image {
  width: 100%;
  height: 100%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cart-item-title a {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cart-item-title a:hover {
  color: var(--primary);
}

.cart-item-price {
  margin-bottom: 0.5rem;
}

.cart-item-price .price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.cart-item-quantity {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  min-width: 120px;
}

.quantity-form {
  margin: 0;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.qty-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin: 0;
}

.quantity-input {
  width: 60px;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 0.5);
  text-align: center;
  font-size: 0.875rem;
  background: var(--background);
  color: var(--foreground);
}

.quantity-input:focus {
  outline: none;
  border-color: var(--primary);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.cart-item-actions {
  display: flex;
  justify-content: center;
}

.remove-form {
  margin: 0;
}

.remove-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.remove-link:hover {
  color: hsl(28, 85%, 45%);
  text-decoration: underline;
}

.cart-item-total {
  text-align: right;
  min-width: 100px;
}

.item-total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .cart-item-image {
    width: 60px;
    height: 60px;
  }
  
  .cart-item-details {
    text-align: center;
  }
  
  .cart-item-quantity {
    align-items: center;
  }
  
  .quantity-controls {
    justify-content: center;
  }
}

/* Coupon Section */
.coupon-section {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.coupon-section h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.coupon-form {
  margin: 0;
}

.coupon-toggle {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.coupon-toggle:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.coupon-input-group {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  align-items: center;
}

.coupon-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
}

.coupon-input:focus {
  outline: none;
  border-color: var(--primary);
}

/* Simple Cart Totals - No Grey Boxes */
.cart-totals-simple {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  align-self: flex-start;
}

.cart-totals-simple h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-align: center;
}

.totals-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.total-label {
  font-weight: 500;
  color: var(--foreground);
  font-size: 1rem;
}

.total-amount {
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
}

.total-divider {
  border: none;
  border-top: 2px solid var(--border);
  margin: 1rem 0;
}

.final-total {
  padding: 1rem 0;
  border-top: 2px solid var(--border);
  margin-top: 0.5rem;
}

.final-total .total-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.final-total .total-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.checkout-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border);
}

.btn-checkout {
  width: 100%;
  padding: 1.25rem 2rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-checkout:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
  color: var(--primary-foreground);
  text-decoration: none;
}

.cart-totals h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Remove all the complex grey box styling */

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.empty-cart-icon {
  margin-bottom: 2rem;
}

.empty-cart-icon svg {
  width: 64px;
  height: 64px;
  color: var(--muted-foreground);
}

.empty-cart h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.empty-cart p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cart-page .container {
    padding: 1rem;
  }
  
  .cart-page .page-header {
    padding: 1.5rem;
  }
  
  .cart-page .page-header h1 {
    font-size: 2rem;
  }
  
  .cart-content {
    gap: 1.5rem;
  }
  
  .cart-items-header {
    padding: 1rem 1.5rem;
  }
  
  .cart-item {
    padding: 1.5rem;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }
  
  .cart-item-image {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  
  .cart-item-quantity {
    align-items: center;
  }
  
  .cart-item-actions {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
  
  .coupon-section,
  .cart-totals {
    padding: 1.5rem;
  }
  
  .coupon-input-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .coupon-input {
    width: 100%;
  }
}
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  align-self: flex-start;
}

.basket-page h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.basket-page .table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.basket-page .table thead th {
  background: var(--secondary);
  font-weight: 600;
  color: var(--foreground);
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.basket-page .table tbody tr {
  background: var(--background);
  transition: background 0.3s ease;
}

.basket-page .table tbody tr:hover {
  background: var(--muted);
}

.basket-page .table tbody td {
  padding: 1rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
}

.basket-page .table tbody tr:last-child td {
  border-bottom: none;
}

.basket-page .product-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.basket-page .product-info img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: calc(var(--radius) * 0.5);
  flex-shrink: 0;
}

.basket-page .product-info a {
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}

.basket-page .product-info a:hover {
  text-decoration: underline;
}

.basket-page .stock-info {
  font-size: 0.875rem;
  color: var(--palm);
  margin-top: 0.25rem;
}

.basket-page .quantity-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.basket-page .quantity-input input[type="number"] {
  width: 60px;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 0.5);
  text-align: center;
  font-size: 0.875rem;
}

.basket-page .quantity-input button {
  padding: 0.5rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.basket-page .quantity-input button:hover {
  background: var(--sand-dark);
}

.basket-page .price {
  font-weight: 600;
  color: var(--foreground);
  font-size: 1rem;
}

.basket-page .remove-item {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.basket-page .remove-item:hover {
  color: hsl(28, 85%, 45%);
}

/* Totals Section */
.basket-totals .totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.basket-totals .totals-row:last-child {
  border-bottom: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border);
}

.basket-totals .totals-label {
  font-weight: 500;
  color: var(--muted-foreground);
}

.basket-totals .totals-value {
  font-weight: 600;
  color: var(--foreground);
}

.basket-totals .order-total .totals-label,
.basket-totals .order-total .totals-value {
  font-size: 1.125rem;
  color: var(--primary);
}

.basket-totals .btn-checkout {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.basket-totals .btn-checkout:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

/* About Page Styles */
.about-page {
  background: var(--background);
}

.about-hero {
  padding: 4rem 0;
  background: var(--card);
  color: var(--foreground);
  text-align: center;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero-description {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.mission-section {
  padding: 4rem 0;
  background: var(--background);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

.mission-card {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

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

.mission-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--palm) 100%);
  color: white;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mission-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.mission-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.story-section {
  padding: 4rem 0;
  background: var(--secondary);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .story-content {
    grid-template-columns: 1fr 1fr;
  }
}

.story-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.story-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elevated);
}

.values-section {
  padding: 4rem 0;
  background: var(--background);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

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

.value-item {
  text-align: center;
  padding: 1.5rem;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.value-description {
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Contact Page Styles */
.contact-page {
  background: var(--background);
}

.contact-hero {
  padding: 4rem 0;
  background: var(--card);
  color: var(--foreground);
  text-align: center;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.contact-hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-hero-description {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  padding: 0 0 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.contact-form-title,
.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.contact-form {
  background: var(--card);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

/* Comprehensive form input styling */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
textarea,
select,
.form-input,
.form-textarea,
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus,
.form-input:focus,
.form-textarea:focus,
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--card);
  color: var(--foreground);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
}

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

.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--palm) 100%);
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
  transform: scale(1.05);
}

.contact-info-label {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-info-text {
  color: var(--muted-foreground);
  line-height: 1.5;
}

.faq-section {
  padding: 4rem 0;
  background: var(--secondary);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

.faq-item {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--muted-foreground);
  line-height: 1.5;
}

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

/* =========================
   GENERAL PAGE IMPROVEMENTS
   ========================= */

/* Make all pages have consistent background */
body {
  background: var(--background);
}

/* Improve all content containers */
.content {
  background: var(--background);
}

/* Style all panels and cards consistently */
.panel,
.well,
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.panel:hover,
.well:hover,
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

.panel-heading,
.card-header {
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 1rem 1.5rem;
}

.panel-body,
.card-body {
  padding: 1.5rem;
}

/* Improve form styling */
.form-group {
  margin-bottom: 1.5rem;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  background: var(--background);
  color: var(--foreground);
  transition: all 0.3s ease;
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  outline: none;
}

/* Improve table styling */
.table {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.table th {
  background: var(--secondary);
  color: var(--foreground);
  font-weight: 600;
  border: none;
  padding: 1rem;
}

.table td {
  padding: 1rem;
  border-color: var(--border);
  color: var(--foreground);
}

.table-striped tbody tr:nth-of-type(odd) {
  background: var(--muted);
}

/* Improve alert styling */
.alert {
  border-radius: var(--radius);
  border: none;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.alert-info {
  background: hsla(175, 50%, 35%, 0.1);
  color: var(--primary);
  border-left: 4px solid var(--primary);
}

.alert-success {
  background: hsla(150, 40%, 35%, 0.1);
  color: var(--palm);
  border-left: 4px solid var(--palm);
}

.alert-warning {
  background: hsla(28, 85%, 55%, 0.1);
  color: var(--accent);
  border-left: 4px solid var(--accent);
}

.alert-danger {
  background: hsla(0, 70%, 50%, 0.1);
  color: hsl(0, 70%, 50%);
  border-left: 4px solid hsl(0, 70%, 50%);
}

/* Improve pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.pagination .page-item {
  list-style: none;
}

.pagination .page-link {
  padding: 0.75rem 1rem;
  background: var(--card);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-1px);
}

.pagination .page-item.active .page-link {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* Improve list styling */
.list-group {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.list-group-item {
  background: var(--card);
  color: var(--foreground);
  border-color: var(--border);
  padding: 1rem 1.5rem;
  transition: background 0.3s ease;
}

.list-group-item:hover {
  background: var(--muted);
}

/* Improve badge styling */
.badge {
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.badge-success {
  background: var(--palm);
  color: var(--primary-foreground);
}

.badge-warning {
  background: var(--accent);
  color: var(--accent-foreground);
}

/* Improve modal styling */
.modal-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-elevated);
}

.modal-header {
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
}

.modal-title {
  font-family: var(--font-display);
  color: var(--foreground);
}

.modal-body {
  background: var(--card);
  color: var(--foreground);
}

.modal-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
}

/* Responsive improvements */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .page_inner {
    padding: 1rem 0;
  }
  
  .page-header {
    padding: 1.5rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .row.list-unstyled {
    grid-template-columns: 1fr;
  }
  
  .product_page .row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .product_page .col-sm-6:first-child,
  .product_page .col-sm-6:last-child {
    flex: none;
    width: 100%;
  }
}


/* =========================
   ABOUT PAGE STYLING
   ========================= */
.about-page {
  background: var(--background);
  padding-top: 80px;
}

.about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .about-page {
    padding-top: 70px;
  }
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

@media (max-width: 768px) {
  .story-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* =========================
   CONTACT PAGE STYLING
   ========================= */
.contact-page {
  background: var(--background);
  padding-top: 80px;
}

.contact-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-page {
    padding-top: 70px;
  }
}

.contact-content {
  padding: 5rem 0;
  background: var(--background);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-form-wrapper,
.contact-info-wrapper {
  background: var(--card);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.contact-form-header,
.contact-info-header {
  margin-bottom: 2rem;
}

.contact-form-header h2,
.contact-info-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-form-header p,
.contact-info-header p {
  color: var(--muted-foreground);
  font-size: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  background: var(--card);
}

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

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  margin-top: 1rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--palm) 100%);
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.1);
}

.contact-info-icon svg {
  width: 28px;
  height: 28px;
}

.contact-info-label {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-info-text {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0 8rem;
  background: hsla(175, 50%, 35%, 0.05);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.faq-answer {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: var(--primary);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  color: hsla(40, 33%, 98%, 0.9);
  margin-bottom: 2rem;
}

.cta-content .btn-hero {
  background: var(--accent);
  color: var(--accent-foreground);
}

.cta-content .btn-hero:hover {
  background: hsl(28, 85%, 50%);
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.75rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}


/* =========================
   OVERRIDE THEME.CSS CONFLICTS
   ========================= */

/* Ensure product pod styling is consistent */
.product_pod {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-soft) !important;
  padding: 1.5rem !important;
  transition: all 0.3s ease !important;
}

.product_pod:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-elevated) !important;
  border-color: var(--primary) !important;
}

.product_pod h3,
.product_pod .caption h3 {
  color: var(--foreground) !important;
  font-family: var(--font-display) !important;
}

.product_pod .price_color {
  color: var(--primary) !important;
}

/* Ensure side categories styling */
.side_categories {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-soft) !important;
  padding: 1.5rem !important;
}

.side_categories h4 {
  color: var(--foreground) !important;
  font-family: var(--font-display) !important;
  border-bottom: 2px solid var(--border) !important;
  padding-bottom: 0.5rem !important;
}

.side_categories a {
  color: var(--muted-foreground) !important;
}

.side_categories a:hover {
  color: var(--primary) !important;
}

.side_categories strong {
  color: var(--primary) !important;
}

/* Browsing summary */
.browsing-summary {
  background: var(--card) !important;
  padding: 1.5rem !important;
  border-radius: var(--radius) !important;
  margin-bottom: 2rem !important;
  box-shadow: var(--shadow-soft) !important;
  border: 1px solid var(--border) !important;
}

.browsing-summary strong {
  color: var(--primary) !important;
}

/* Product grid */
.row.list-unstyled {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 1.5rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

.row.list-unstyled li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Pagination */
.pagination {
  display: flex !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  margin: 2rem 0 !important;
}

.pagination .page-link {
  background: var(--card) !important;
  color: var(--foreground) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
}

.pagination .page-link:hover {
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
}

.pagination .page-item.active .page-link {
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
  border-color: var(--primary) !important;
}

/* Ensure buttons use correct colors */
.btn-primary,
.btn-add-to-basket,
.product_pod .btn {
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
  border: none !important;
}

.btn-primary:hover,
.btn-add-to-basket:hover,
.product_pod .btn:hover {
  background: var(--primary-hover) !important;
  color: var(--primary-foreground) !important;
}


/* =========================
   SHOP PAGE POLISH & REFINEMENT
   ========================= */

/* Page header styling */
.page-header {
  background: linear-gradient(135deg, var(--card) 0%, hsla(175, 50%, 35%, 0.05) 100%) !important;
  border: 1px solid var(--border) !important;
  padding: 2.5rem !important;
  margin-bottom: 2rem !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-soft) !important;
}

.page-header h1 {
  font-family: var(--font-display) !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--foreground) !important;
  margin: 0 !important;
  letter-spacing: -0.02em !important;
}

/* Breadcrumb styling */
.breadcrumb {
  background: transparent !important;
  padding: 1rem 0 !important;
  margin-bottom: 1.5rem !important;
}

.breadcrumb-item {
  color: var(--muted-foreground) !important;
  font-size: 0.95rem !important;
}

.breadcrumb-item a {
  color: var(--primary) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.breadcrumb-item a:hover {
  color: var(--primary-hover) !important;
}

.breadcrumb-item.active {
  color: var(--foreground) !important;
  font-weight: 500 !important;
}

/* Sidebar improvements */
.col-md-3 {
  position: sticky !important;
  top: 120px !important;
  align-self: flex-start !important;
}

.side_categories {
  margin-bottom: 1.5rem !important;
}

.side_categories h4 {
  font-size: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 1rem !important;
}

.side_categories .nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.side_categories .nav-link {
  padding: 0.5rem 0 !important;
  color: var(--muted-foreground) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border-left: 3px solid transparent !important;
  padding-left: 0.75rem !important;
}

.side_categories .nav-link:hover {
  color: var(--primary) !important;
  border-left-color: var(--primary) !important;
  background: hsla(175, 50%, 35%, 0.05) !important;
}

.side_categories .nav-link strong {
  color: var(--primary) !important;
  font-weight: 600 !important;
  border-left-color: var(--primary) !important;
}

/* Main content area */
.col-md-9 {
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
}

.content {
  background: transparent !important;
}

/* Browsing summary improvements */
.browsing-summary {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  background: var(--card) !important;
  padding: 1.5rem !important;
  border-radius: var(--radius) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-soft) !important;
}

.browsing-summary strong {
  color: var(--primary) !important;
  font-weight: 600 !important;
}

.browsing-summary .float-right {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}

.browsing-summary select {
  padding: 0.5rem 1rem !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  background: var(--background) !important;
  color: var(--foreground) !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
}

/* Product grid container */
.row.list-unstyled {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 1.5rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 1200px) {
  .row.list-unstyled {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .row.list-unstyled {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .row.list-unstyled {
    grid-template-columns: 1fr !important;
  }
}

/* Product card improvements */
.product_pod {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 1rem !important;
  box-shadow: var(--shadow-soft) !important;
  transition: all 0.3s ease !important;
  overflow: hidden !important;
}

.product_pod:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-elevated) !important;
  border-color: var(--primary) !important;
}

.product_pod img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  border-radius: calc(var(--radius) * 0.75) !important;
  margin-bottom: 1rem !important;
}

.product_pod .caption {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.product_pod h3 {
  font-family: var(--font-display) !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: var(--foreground) !important;
  margin: 0 0 0.5rem 0 !important;
  line-height: 1.3 !important;
  min-height: 2.6em !important;
}

.product_pod .star-rating {
  margin-bottom: 0.75rem !important;
  font-size: 0.9rem !important;
}

.product_pod .price_color {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  margin-bottom: 0.75rem !important;
}

.product_pod .availability {
  font-size: 0.85rem !important;
  color: var(--palm) !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.product_pod .btn {
  margin-top: auto !important;
  width: 100% !important;
  padding: 0.75rem 1rem !important;
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.product_pod .btn:hover {
  background: var(--primary-hover) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Pagination improvements */
.pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin: 3rem 0 !important;
  flex-wrap: wrap !important;
}

.pagination .page-item {
  list-style: none !important;
}

.pagination .page-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 40px !important;
  height: 40px !important;
  padding: 0.5rem 0.75rem !important;
  background: var(--card) !important;
  color: var(--foreground) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  font-weight: 500 !important;
}

.pagination .page-link:hover {
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
  border-color: var(--primary) !important;
  transform: translateY(-2px) !important;
}

.pagination .page-item.active .page-link {
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
  border-color: var(--primary) !important;
}

.pagination .page-item.disabled .page-link {
  color: var(--muted-foreground) !important;
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}

/* Empty state */
.nonefound {
  background: var(--card) !important;
  padding: 3rem !important;
  border-radius: var(--radius) !important;
  text-align: center !important;
  color: var(--muted-foreground) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-soft) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.75rem !important;
  }

  .col-md-3 {
    position: static !important;
    margin-bottom: 2rem !important;
  }

  .browsing-summary {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .browsing-summary .float-right {
    width: 100% !important;
    justify-content: space-between !important;
  }
}


/* =========================
   PAGE CONTAINER SPACING FIX
   ========================= */

/* Add margin to page container */
.page {
  margin: 0 auto !important;
  padding: 2rem 0 !important;
  max-width: 1280px !important;
}

.page_inner {
  padding: 0 2rem !important;
  margin: 0 auto !important;
}

@media (max-width: 768px) {
  .page_inner {
    padding: 0 1rem !important;
  }
}

/* Fix browsing summary layout */
.browsing-summary {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: flex-start !important;
  gap: 1.5rem !important;
  background: var(--card) !important;
  padding: 1.5rem !important;
  border-radius: var(--radius) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-soft) !important;
}

.browsing-summary > p:first-child {
  grid-column: 1 !important;
  margin: 0 !important;
  align-self: center !important;
}

.browsing-summary .float-right {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  justify-self: end !important;
  margin-left: auto !important;
}

.browsing-summary .float-right label {
  margin: 0 !important;
  font-weight: 500 !important;
  color: var(--foreground) !important;
  white-space: nowrap !important;
}

.browsing-summary select {
  padding: 0.5rem 1rem !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  background: var(--background) !important;
  color: var(--foreground) !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  min-width: 150px !important;
}

@media (max-width: 768px) {
  .browsing-summary {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .browsing-summary > p:first-child {
    grid-column: 1 !important;
  }

  .browsing-summary .float-right {
    grid-column: 1 !important;
    justify-self: start !important;
    margin-left: 0 !important;
  }
}


/* =========================
   ACTIVE NAV LINK STYLING
   ========================= */

/* Desktop nav active state */
.nav-link.active {
  color: var(--primary) !important;
  background: hsla(175, 50%, 35%, 0.1) !important;
  font-weight: 600 !important;
}

.nav-link.active:hover {
  background: hsla(175, 50%, 35%, 0.15) !important;
}

/* Mobile nav active state */
.mobile-nav-link.active {
  color: var(--primary) !important;
  font-weight: 600 !important;
  background: hsla(175, 50%, 35%, 0.1) !important;
  padding-left: 1rem !important;
  border-left: 3px solid var(--primary) !important;
}

/* =========================
   CART PAGE STYLING
   ========================= */
.cart-page {
  background: var(--background);
  min-height: 100vh;
  padding-top: 80px;
}

.cart-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.cart-page .page-header {
  background: linear-gradient(135deg, var(--card) 0%, hsla(175, 50%, 35%, 0.05) 100%);
  border: 1px solid var(--border);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.cart-page .page-header h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}

.cart-summary {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin: 0;
}

.cart-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .cart-content {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

/* Remove all conflicting cart styles - they are defined earlier in the file */

/* Coupon Section */
.coupon-section {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.coupon-section h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 1rem 0;
}

.coupon-form {
  margin: 0;
}

.coupon-toggle {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.coupon-toggle:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.coupon-input-group {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  align-items: center;
}

.coupon-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  font-size: 0.95rem;
}

.coupon-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Cart Totals */
.cart-totals {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  overflow: hidden;
  align-self: flex-start;
}

.cart-totals h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
  padding: 1.5rem 2rem;
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
}

.totals-section {
  padding: 1.5rem 2rem;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.totals-row:last-child {
  border-bottom: none;
}

.shipping-row {
  background: hsla(175, 50%, 35%, 0.05);
  margin: 0 -2rem;
  padding: 0.75rem 2rem;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--primary);
}

.order-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border);
  background: hsla(175, 50%, 35%, 0.05);
  margin-left: -2rem;
  margin-right: -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.totals-label {
  font-weight: 500;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.totals-value {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.95rem;
}

.order-total .totals-label,
.order-total .totals-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.checkout-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.btn-checkout {
  width: 100%;
  padding: 1rem 2rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.05em;
}

.btn-checkout:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
  color: white;
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.empty-cart-icon {
  margin-bottom: 2rem;
  color: var(--muted-foreground);
  opacity: 0.5;
}

.empty-cart h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.empty-cart p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .cart-page .container {
    padding: 1rem;
  }

  .cart-page .page-header {
    padding: 1.5rem;
  }

  .cart-page .page-header h1 {
    font-size: 2rem;
  }

  .cart-content {
    gap: 1.5rem;
  }

  .cart-items-header,
  .totals-section {
    padding: 1rem 1.5rem;
  }

  .cart-item {
    padding: 1rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }

  .cart-item-image {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .cart-item-quantity,
  .cart-item-actions {
    align-items: flex-start;
  }

  .quantity-controls {
    justify-content: center;
  }

  .cart-item-total {
    text-align: center;
  }

  .coupon-section {
    padding: 1rem 1.5rem;
  }

  .coupon-input-group {
    flex-direction: column;
    gap: 1rem;
  }

  .coupon-input {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cart-page .page-header h1 {
    font-size: 1.75rem;
  }

  .cart-summary {
    font-size: 1rem;
  }

  .cart-items-header h2 {
    font-size: 1.125rem;
  }

  .cart-item-title a {
    font-size: 1rem;
  }

  .cart-item-price .price {
    font-size: 1.125rem;
  }

  .item-total {
    font-size: 1.125rem;
  }
}