
:root {
  /* Colors - Red and White Theme */
  --color-foreground: 0, 0, 0;
  --color-background: 255, 255, 255;
  --color-background-contrast: 248, 248, 248;
  --color-button: 245, 78, 78;
  --color-button-text: 255, 255, 255;
  --color-secondary-button: 255, 255, 255;
  --color-secondary-button-text: 0, 0, 0;
  --color-shadow: 0, 0, 0;
  --color-accent: 245, 78, 78;
  --color-text: 0, 0, 0;
  --color-text-light: 102, 102, 102;
  
  /* Typography */
  --font-body-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-body-style: normal;
  --font-body-weight: 400;
  --font-body-scale: 1;
  
  /* Layout */
  --page-width: 120rem;
  
  /* Buttons */
  --buttons-radius: 4px;
  --buttons-border-width: 1px;
  --buttons-border-opacity: 0.1;
  --buttons-border-offset: 0px;
  --buttons-shadow-horizontal-offset: 0px;
  --buttons-shadow-vertical-offset: 4px;
  --buttons-shadow-opacity: 0.1;
  
  /* Badges */
  --badge-corner-radius: 4px;
  
  /* Border radius */
  --border-radius: 8px;
  
  /* Gradients - Red Theme */
  --gradient-background: linear-gradient(135deg, rgba(245, 78, 78, 1) 0%, rgba(245, 78, 78, 0.8) 100%);
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: calc(var(--font-body-scale) * 62.5%);
  height: 100%;
}

body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100%;
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.06rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  color: rgba(var(--color-foreground), 0.75);
  background-color: rgb(var(--color-background));
}


/* Utility Classes */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

  .page-width {
    padding: 0 5rem;
}

/* Button Styles - Shopify Theme */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: 0;
  padding: 0 3rem;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  font-weight: 400;
  font-size: 1.5rem;
  text-decoration: none;
  color: rgb(var(--color-button-text));
  background-color: rgb(var(--color-button));
  border-radius: var(--buttons-radius);
  border-width: var(--buttons-border-width);
  border-color: rgba(var(--color-button), var(--buttons-border-opacity));
  border-style: solid;
  box-shadow: 0 0 0 var(--buttons-border-offset) rgba(var(--color-button), var(--buttons-border-opacity)), 0 0 0 var(--buttons-shadow-horizontal-offset) var(--buttons-shadow-vertical-offset) rgba(var(--color-shadow), var(--buttons-shadow-opacity));
  min-height: 4.4rem;
  min-width: 12rem;
  transition: box-shadow 0.1s ease;
  position: relative;
  overflow: hidden;
}

.button:hover {
  box-shadow: 0 0 0 var(--buttons-border-offset) rgba(var(--color-button), var(--buttons-border-opacity)), 0 0.2rem 0.4rem rgba(var(--color-shadow), var(--buttons-shadow-opacity));
}

.button:focus {
  outline: 0;
  box-shadow: 0 0 0 var(--buttons-border-offset) rgba(var(--color-button), var(--buttons-border-opacity)), 0 0 0 0.3rem rgba(var(--color-button), 0.3), 0 0.2rem 0.4rem rgba(var(--color-shadow), var(--buttons-shadow-opacity));
}

.button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 var(--buttons-border-offset) rgba(var(--color-button), var(--buttons-border-opacity)), 0 0 0 0.3rem rgba(var(--color-button), 0.3), 0 0.2rem 0.4rem rgba(var(--color-shadow), var(--buttons-shadow-opacity));
}

.button:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: 0 0 0 var(--buttons-border-offset) rgba(var(--color-button), var(--buttons-border-opacity)), 0 0.2rem 0.4rem rgba(var(--color-shadow), var(--buttons-shadow-opacity));
}

.button:focus-visible:not(:focus) {
  outline: 0;
  box-shadow: 0 0 0 var(--buttons-border-offset) rgba(var(--color-button), var(--buttons-border-opacity)), 0 0 0 0.3rem rgba(var(--color-button), 0.3), 0 0.2rem 0.4rem rgba(var(--color-shadow), var(--buttons-shadow-opacity));
}

.button:active {
  box-shadow: 0 0 0 var(--buttons-border-offset) rgba(var(--color-button), var(--buttons-border-opacity)), 0 0.1rem 0.2rem rgba(var(--color-shadow), var(--buttons-shadow-opacity));
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.button:disabled:hover {
  box-shadow: 0 0 0 var(--buttons-border-offset) rgba(var(--color-button), var(--buttons-border-opacity));
}

.button--primary {
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
}

.button--secondary {
  background-color: rgb(var(--color-secondary-button));
  color: rgb(var(--color-secondary-button-text));
  border-color: rgba(var(--color-secondary-button), var(--buttons-border-opacity));
}

.button--small {
  min-height: 3.2rem;
  min-width: 8rem;
  padding: 0 1.5rem;
  font-size: 1.3rem;
}

.button--add-to-cart {
  width: 100%;
  margin-top: 1rem;
}

/* Notification Bar Styles */
.notification-bar {
  background:  rgb(245, 78, 78);;
  color: white;
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
  z-index: 1000;
}

.notification-container {
  position: relative;
  height: 2.4rem;
  overflow: hidden;
}

.notification-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s ease;
}

.notification-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.notification-slide.prev {
  transform: translateX(-100%);
}

.notification-text {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}



/* Header Styles - Shopify Theme */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: rgb(var(--color-background));
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
}

.header {
  padding: 0;
  background: white;
  color: rgb(245, 78, 78);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
}

.section-header {
  position: sticky;
  margin-bottom: 0px;
}

  .section-header {
    margin-bottom: 0px;
}

  .header {
    padding: 1rem 3rem;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0;
  position: relative;
  z-index: 20;
}

.header__heading {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
}

.header__heading-link {
  text-decoration: none;
  color: inherit;
}

.header__heading-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 1rem;
  border-radius: 50%;
  margin: 0.5rem;
  z-index: 10;
  cursor: pointer;
}

.header__heading-logo:hover {
  background: rgba(245, 78, 78, 0.2);
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(245, 78, 78, 0.3);
}

.header__heading-logo::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  bottom: -1rem;
  border: 4px solid rgba(245, 78, 78, 0.5);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.header__heading-logo:hover::before {
  opacity: 1;
  border-color: rgba(245, 78, 78, 1);
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(245, 78, 78, 0.6);
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1.15);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.9;
  }
}

.header-logo-img {
  height: 10rem;
  width: auto;
  /* Remove filter to show original logo colors */
  transition: all 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
}

.header__heading-logo:hover .header-logo-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}


/* Logo image hover effects enabled */

/* Smaller logo for subpages */
.subpage .header__heading-logo {
  font-size: 2.2rem;
}

/* Navigation */
.header__inline-menu {
  display: flex;
  justify-content: center;
}

.list-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-menu--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.list-menu__item {
  position: relative;
}

.header__menu-item {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.8rem;
  transition: none;
  position: relative;
  padding: 1rem 1.5rem;
  border-radius: 0;
  overflow: visible;
}

.header__menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: rgb(245, 78, 78);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.header__menu-item:hover::before {
  width: 100%;
}

/* Current page indicator */
.header__menu-item.active::before {
  width: 100%;
  background: rgb(245, 78, 78);
}

.header__menu-item:hover {
  background: none;
  transform: none;
  box-shadow: none;
}

.header__menu-item:hover {
  color: #333;
}

/* Header Icons */
.header__icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Header background animation elements - same as hero section */
.header::before,
.header::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35%;
  background: linear-gradient(135deg, rgba(245, 78, 78, 0.25) 0%, rgba(245, 78, 78, 0.25) 100%);
  z-index: 1;
  pointer-events: none;
}

.header::before {
  left: 0;
  background: linear-gradient(90deg, rgba(245, 78, 78, 0.3) 0%, transparent 100%);
}

.header::after {
  right: 0;
  background: linear-gradient(270deg, rgba(245, 78, 78, 0.3) 0%, transparent 100%);
}

/* Header pattern elements */
.header-pattern-left,
.header-pattern-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}

.header-pattern-left {
  left: 5%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(245, 78, 78, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(245, 78, 78, 0.3) 0%, transparent 50%);
  animation: floatLeft 6s ease-in-out infinite;
}

.header-pattern-right {
  right: 5%;
  background: 
    radial-gradient(circle at 70% 30%, rgba(245, 78, 78, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(245, 78, 78, 0.3) 0%, transparent 50%);
  animation: floatRight 6s ease-in-out infinite reverse;
}

/* User Account Styles */
.user-account {
  position: relative;
}

.header__icon--user {
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}

.header__icon--user:hover {
  background-color: rgba(245, 78, 78, 0.1);
  transform: scale(1.1);
  color: rgb(245, 78, 78);
}

.user-menu {
  position: fixed;
  top: auto;
  right: auto;
  width: 280px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(var(--color-foreground), 0.1);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  display: none;
}

.user-menu.active,
.user-menu[style*="display: block"] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  display: block !important;
}

.user-menu__header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-menu__avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.user-menu__info {
  flex: 1;
}

.user-menu__name {
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  margin-bottom: 0.3rem;
}

.user-menu__phone {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.7);
}

.user-menu__actions {
  padding: 1rem;
}

.user-menu__action {
  width: 100%;
  padding: 1rem;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgb(var(--color-foreground));
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background-color 0.2s ease;
  text-align: left;
}

.user-menu__action:hover {
  background-color: rgba(var(--color-foreground), 0.05);
}

.user-menu__action svg {
  color: rgba(var(--color-foreground), 0.7);
}

/* Login Modal Styles */
.login-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.login-modal.active {
  display: flex;
}

.login-modal__content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.login-modal__header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login-modal__title {
  font-size: 2rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  margin: 0;
}

.login-modal__close {
  background: none;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
  color: rgba(var(--color-foreground), 0.7);
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.login-modal__close:hover {
  background-color: rgba(var(--color-foreground), 0.1);
  color: rgb(var(--color-foreground));
}

.login-modal__body {
  padding: 2rem;
}

.login-step {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.phone-input-group {
  display: flex;
  align-items: center;
  border: 1px solid rgba(var(--color-foreground), 0.2);
  border-radius: 6px;
  overflow: hidden;
}

.country-code {
  background: rgba(var(--color-foreground), 0.05);
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  border-right: 1px solid rgba(var(--color-foreground), 0.2);
}

.phone-input-group .form-input {
  border: none;
  border-radius: 0;
  flex: 1;
}

.otp-input-group {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.otp-input {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(var(--color-foreground), 0.2);
  border-radius: 8px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

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

.otp-timer {
  text-align: center;
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.7);
  margin-top: 1rem;
}

.otp-countdown {
  color: rgb(var(--color-accent));
  font-weight: 600;
}

.form-help {
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.6);
  margin: 0.5rem 0 0 0;
  line-height: 1.4;
}

.login-loading {
  text-align: center;
  padding: 2rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(var(--color-foreground), 0.1);
  border-top-color: rgb(var(--color-accent));
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

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

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  color: #333;
  text-decoration: none;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  overflow: visible;
  z-index: 10;
}

.header__icon:hover {
  background-color: rgba(245, 78, 78, 0.1);
  transform: scale(1.1);
  color: rgb(245, 78, 78);
}

.header__icon::before {
  display: none;
}

.header__icon:hover::before {
  display: none;
}

.header__icon:hover {
  transform: none;
  box-shadow: none;
}

.header__icon svg {
  width: 2rem;
  height: 2rem;
}

/* Cart count bubble - Matching index.html exactly */
.cart-count-bubble {
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgb(var(--color-accent));
  color: white;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  transform: scale(1);
  transition: transform 0.2s ease;
}

.cart-count-bubble:not(:empty) {
  transform: scale(1.1);
}

/* Mobile Menu - Hide drawer container */
  .menu-drawer-container {
    display: none;
}

.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 30;
  display: none;
}

.menu-drawer[open] {
  display: block;
}

.menu-drawer__inner-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 40rem;
  height: 100%;
  background-color: white;
  padding: 2rem;
  overflow-y: auto;
}

.menu-drawer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-drawer__menu-item {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
  text-decoration: none;
  color: rgb(var(--color-foreground));
  font-weight: 500;
}



/* Search Results Styles */
.search-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.search-filters {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.search-filter {
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(var(--color-foreground), 0.2);
  border-radius: 4px;
  font-size: 1.4rem;
  background: white;
  cursor: pointer;
}

.search-filter:focus {
  outline: none;
  border-color: rgba(var(--color-button), 0.5);
  box-shadow: 0 0 0 2px rgba(var(--color-button), 0.1);
}

.search-results-container {
  min-height: 400px;
}


/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  color: rgb(245, 78, 78);
  padding: 0.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 15vh;
  display: flex;
  align-items: center;
}

/* Hero section animations removed - clean background only */

.hero-content {
  max-width: 90rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Decorative pattern elements */
/* Hero pattern elements removed */

/* Hero pattern left removed */

.hero-pattern-right {
  right: 5%;
  background: 
    radial-gradient(circle at 70% 30%, rgba(245, 78, 78, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(245, 78, 78, 0.2) 0%, transparent 50%);
  animation: floatRight 6s ease-in-out infinite reverse;
}

/* Hero geometric elements removed */

/* Hero dots pattern removed */

/* Hero extra elements removed */

/* Hero texture elements removed */

/* Hero large elements removed */

/* Hero large left removed */

.hero-large-right {
  right: 1%;
  background: 
    radial-gradient(circle at 80% 20%, rgba(245, 78, 78, 0.6) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(245, 78, 78, 0.4) 0%, transparent 60%);
  animation: floatRight 8s ease-in-out infinite reverse;
}

/* Additional floating elements for maximum visual impact */
.hero-float-top-left,
.hero-float-top-right {
  position: absolute;
  top: 5%;
  width: 120px;
  height: 120px;
  opacity: 0.5;
  z-index: 1;
}

.hero-float-top-left {
  left: 25%;
  background: 
    conic-gradient(from 0deg, transparent, rgba(245, 78, 78, 0.8), transparent, rgba(245, 78, 78, 0.6), transparent);
  border-radius: 50%;
  animation: pulseLeft 3s ease-in-out infinite;
}

.hero-float-top-right {
  right: 25%;
  background: 
    conic-gradient(from 180deg, transparent, rgba(245, 78, 78, 0.8), transparent, rgba(245, 78, 78, 0.6), transparent);
  border-radius: 50%;
  animation: pulseRight 3s ease-in-out infinite;
}

.hero-decoration {
  position: absolute;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
}

.hero-decoration.top-line {
  top: 0;
  left: 10%;
  right: 10%;
  animation: slideInFromLeft 1s ease-out;
}

.hero-decoration.bottom-line {
  bottom: 0;
  left: 10%;
  right: 10%;
  animation: slideInFromRight 1s ease-out 0.3s both;
}

.hero-main {
  margin: 0.5rem 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.title-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.2s;
}

/* Hero subtitle and CTA removed */

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hero-btn.primary {
  background: white;
  color: rgba(245, 78, 78, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-btn svg {
  transition: transform 0.3s ease;
}

.hero-btn:hover svg {
  transform: scale(1.2);
}

.hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  font-size: 1.8rem;
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  top: 40%;
  left: 80%;
  animation-delay: 4s;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* Section Titles */
.section-title {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4rem;
  color: rgb(var(--color-foreground));
}

/* Featured Collections */
.featured-collections {
  padding: 8rem 0;
  background-color: rgb(var(--color-background));
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.collection-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.collection-card__image {
  height: 25rem;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.4rem;
}

.collection-card__content {
  padding: 2rem;
}

.collection-card__title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgb(var(--color-foreground));
}

.collection-card__description {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.7);
  margin-bottom: 2rem;
}

/* Product Grid */
.product-grid {
  padding: clamp(2rem, 4vw, 4rem) 0;
  background-color: rgba(var(--color-background), 0.5);
}

/* More padding on desktop */
@media (min-width: 768px) {
  .product-grid {
    padding: 4rem 0;
  }
}

/* Legacy products-grid - will be overridden by Rawayi styles */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-card__image {
  height: 30rem;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.4rem;
  position: relative;
}

.product-card__badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--badge-corner-radius);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge--sale {
  background-color: rgba(245, 78, 78, 1);
  color: white;
}

.product-card__content {
  padding: 2rem;
}

.product-card__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgb(var(--color-foreground));
}

.product-card__price {
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1.6rem;
  font-weight: 600;
}

.price--regular {
  color: rgb(var(--color-foreground));
}

.price--sale {
  color: rgba(245, 78, 78, 1);
  margin-right: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  background-color: rgb(var(--color-background));
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.contact-card {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card__icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-card__icon svg {
  width: 3rem;
  height: 3rem;
}

.contact-card__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgb(var(--color-foreground));
}

.contact-card__text {
  font-size: 1.6rem;
  color: rgba(var(--color-foreground), 0.7);
}

/* Policy Section Styles */
.policy-section {
  padding: 8rem 0;
  background-color: rgb(var(--color-background-contrast));
}

.policy-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.policy-card {
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.policy-card:hover {
  transform: translateY(-5px);
}

.policy-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.policy-icon svg {
  width: 48px;
  height: 48px;
  color: rgb(var(--color-accent));
}

.policy-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: rgb(var(--color-foreground));
  text-align: center;
}

.policy-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.8);
  margin-bottom: 2rem;
  text-align: center;
}

.policy-requirements h4,
.policy-notes h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgb(var(--color-foreground));
}

.policy-requirements ul,
.policy-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-requirements li,
.policy-notes li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.8);
  position: relative;
  padding-left: 2rem;
}

.policy-requirements li:before,
.policy-notes li:before {
  content: "•";
  color: rgb(var(--color-accent));
  font-weight: bold;
  position: absolute;
  left: 0;
}

.policy-requirements li:last-child,
.policy-notes li:last-child {
  border-bottom: none;
}

.policy-requirements strong,
.policy-notes strong {
  color: rgb(var(--color-foreground));
  font-weight: 600;
}

/* Policy section styles */
  .policy-card {
    padding: 2rem;
  }
  
  .policy-title {
    font-size: 2rem;
  }
  
  .policy-text {
    font-size: 1.4rem;
  }
  
  .policy-requirements h4,
  .policy-notes h4 {
    font-size: 1.6rem;
  }
  
  .policy-requirements li,
  .policy-notes li {
    font-size: 1.3rem;
    padding-left: 1.5rem;
}

/* Footer */
.footer {
  background-color: rgb(var(--color-background-contrast));
  color: rgb(var(--color-foreground));
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: rgb(var(--color-foreground));
}

.footer-description {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.7);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link {
  color: rgb(var(--color-foreground));
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  display: block;
}

.social-link:hover {
  color: rgba(var(--color-foreground), 0.7);
}

.footer-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: rgb(var(--color-foreground));
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(var(--color-foreground), 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-text {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.7);
  margin-bottom: 1.5rem;
}

.payment-icons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.payment-icon {
  padding: 0.4rem 0.8rem;
  background: rgba(var(--color-foreground), 0.1);
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(var(--color-foreground), 0.7);
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease, width 0.3s ease;
  z-index: 10000 !important;
  display: flex;
  flex-direction: column;
}

.cart-drawer[open],
.cart-drawer.open {
  right: 0;
}


/* Cart Drawer Styles - Matching index.html exactly */
.cart-header {
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}


/* Ensure cart items images are small, not enlarged - OVERRIDE ALL OTHER RULES */
.cart-content img,
#cart-items img,
.cart-item img,
.cart-drawer img,
.cart-drawer .cart-content img,
.cart-drawer #cart-items img,
.cart-drawer .cart-item img {
  width: 60px !important;
  height: 60px !important;
  object-fit: cover !important;
  border-radius: 4px !important;
  max-width: 60px !important;
  max-height: 60px !important;
  min-width: 60px !important;
  min-height: 60px !important;
  display: block !important;
  flex-shrink: 0 !important;
}

/* Prevent any product-card styles from affecting cart */
.cart-content .product-card,
.cart-content .product-card-image,
#cart-items .product-card,
#cart-items .product-card-image {
  display: none !important;
}

.cart-footer {
  padding: 20px;
  padding-bottom: clamp(24px, 4vw, 32px);
  border-top: 1px solid #f1f1f1;
  background: #ffffff;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.06);
}


.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 1.5rem;
  color: #111;
}

/* Checkout button in cart drawer - use theme color - HIGHEST SPECIFICITY */
.cart-footer .button#checkout-btn,
.cart-footer #checkout-btn.button,
.cart-footer #checkout-btn,
#cart-drawer .cart-footer #checkout-btn,
#cart-drawer #checkout-btn,
.button#checkout-btn,
#checkout-btn.button,
#checkout-btn,
.button--checkout {
  width: 100% !important;
  background: linear-gradient(135deg, #b8141a, #f54e4e) !important;
  color: white !important;
  border: none !important;
  border-color: transparent !important;
  padding: clamp(16px, 3vw, 20px) 28px !important;
  min-height: clamp(52px, 6vw, 60px) !important;
  font-weight: 600 !important;
  font-size: clamp(15px, 2vw, 17px) !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
  box-shadow: 0 18px 35px rgba(245, 78, 78, 0.35) !important;
  margin: 0 0 clamp(12px, 2vw, 16px) 0 !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}


.cart-footer .button#checkout-btn:hover,
.cart-footer #checkout-btn.button:hover,
.cart-footer #checkout-btn:hover,
#cart-drawer .cart-footer #checkout-btn:hover,
#cart-drawer #checkout-btn:hover,
.button#checkout-btn:hover,
#checkout-btn.button:hover,
#checkout-btn:hover,
.button--checkout:hover {
  background: linear-gradient(135deg, #a40f15, #e54545) !important;
  box-shadow: 0 22px 35px rgba(245, 78, 78, 0.4) !important;
}

.cart-footer .button#checkout-btn:disabled,
.cart-footer #checkout-btn.button:disabled,
.cart-footer #checkout-btn:disabled,
#cart-drawer .cart-footer #checkout-btn:disabled,
#cart-drawer #checkout-btn:disabled,
.button#checkout-btn:disabled,
#checkout-btn.button:disabled,
#checkout-btn:disabled,
.button--checkout:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  background-color: rgba(245, 78, 78, 0.5) !important;
  background: rgba(245, 78, 78, 0.5) !important;
}

/* Cart Item Styles - Matching index.html exactly */
.cart-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  gap: 15px;
}


.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 600;
}

.cart-item-price {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #666;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-quantity button {
  width: 25px;
  height: 25px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-quantity button:hover {
  background: #f5f5f5;
}

.cart-item-quantity span {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  border-radius: 3px;
}

.cart-item-remove:hover {
  background: #f5f5f5;
  color: #666;
}


/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.collection-card,
.product-card,
.contact-card {
  animation: fadeIn 0.6s ease-out;
}

/* Focus styles for accessibility */
.link:focus,
.button:focus,
.header__icon:focus {
  outline: 2px solid rgba(var(--color-button), 0.5);
  outline-offset: 2px;
}

/* Skip to content link */
.skip-to-content-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  z-index: 100;
  transition: top 0.3s ease;
}

 .skip-to-content-link:focus {
   top: 1rem;
 }

/* Contact Form Styles */
.contact-form-section {
  padding: 8rem 0;
  background-color: rgba(var(--color-background), 0.5);
}

.contact-form-container {
  max-width: 60rem;
  margin: 0 auto;
  background: white;
  padding: 4rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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


.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  color: rgb(var(--color-foreground));
  font-size: 1.4rem;
}

.form-input {
  padding: 1.2rem;
  border: 1px solid rgba(var(--color-foreground), 0.2);
  border-radius: 4px;
  font-size: 1.6rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: rgba(var(--color-button), 0.5);
  box-shadow: 0 0 0 2px rgba(var(--color-button), 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 12rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  margin-top: 2rem;
}


/* Business Hours Styles */
.business-hours-section {
  padding: 8rem 0;
  background-color: rgb(var(--color-background));
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.hours-card {
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hours-card:hover {
  transform: translateY(-5px);
}

.hours-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: rgb(var(--color-foreground));
  text-align: center;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
}

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

.day {
  font-weight: 600;
  color: rgb(var(--color-foreground));
}

.time {
  color: rgba(var(--color-foreground), 0.7);
  font-weight: 500;
}

.response-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.response-info p {
  margin: 0;
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.8);
}

.contact-card__subtext {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.6);
  margin-top: 0.5rem;
  font-style: italic;
} 

/* Empty State Styles */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--gradient-background);
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.empty-state__icon {
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.empty-state__icon svg {
  width: 64px;
  height: 64px;
}

.empty-state__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.empty-state__description {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.empty-state__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.empty-state__actions .button {
  min-width: 160px;
}

/* Responsive adjustments for empty state */

/* Fabric Options Styles */
.fabric-options {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 4rem 0;
  flex-wrap: wrap;
}

.fabric-option {
  position: relative;
  width: 200px;
  height: 200px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  background: none;
  padding: 0;
}

.fabric-option:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.fabric-option:active {
  transform: scale(0.98);
}

.fabric-option__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.velvet-bg {
  background-image: linear-gradient(135deg, #8B4513, #A0522D, #CD853F);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="velvet" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="%238B4513"/><circle cx="10" cy="10" r="2" fill="%23A0522D"/></pattern></defs><circle cx="100" cy="100" r="100" fill="url(%23velvet)"/></svg>');
}

.silk-bg {
  background-image: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="silk" patternUnits="userSpaceOnUse" width="15" height="15"><rect width="15" height="15" fill="%23FFD700"/><path d="M0 0 L15 15 M15 0 L0 15" stroke="%23FFA500" stroke-width="1"/></pattern></defs><circle cx="100" cy="100" r="100" fill="url(%23silk)"/></svg>');
}

.fabric-option__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 100%;
  padding: 0 1rem;
}

.fabric-option__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fabric-option__description {
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Results Section Styles */
.results-section {
  margin-top: 4rem;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.results-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin: 0;
}

.back-to-options {
  background: none;
  border: 2px solid var(--color-button);
  color: var(--color-button);
  padding: 0.8rem 1.5rem;
  border-radius: var(--buttons-radius);
  cursor: pointer;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.back-to-options:hover {
  background-color: var(--color-button);
  color: var(--color-button-text);
}

.fabric-results {
  animation: fadeIn 0.5s ease-in-out;
}

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

.result-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--color-foreground), 0.1);
}

.result-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.result-item__image {
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.velvet-item-1 {
  background-image: linear-gradient(135deg, #8B4513, #A0522D);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 250"><defs><pattern id="velvet1" patternUnits="userSpaceOnUse" width="30" height="30"><rect width="30" height="30" fill="%238B4513"/><circle cx="15" cy="15" r="3" fill="%23A0522D"/></pattern></defs><rect width="300" height="250" fill="url(%23velvet1)"/></svg>');
}

.velvet-item-2 {
  background-image: linear-gradient(135deg, #A0522D, #CD853F);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 250"><defs><pattern id="velvet2" patternUnits="userSpaceOnUse" width="25" height="25"><rect width="25" height="25" fill="%23A0522D"/><rect x="5" y="5" width="15" height="15" fill="%23CD853F"/></pattern></defs><rect width="300" height="250" fill="url(%23velvet2)"/></svg>');
}

.velvet-item-3 {
  background-image: linear-gradient(135deg, #CD853F, #DEB887);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 250"><defs><pattern id="velvet3" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="%23CD853F"/><polygon points="10,2 18,18 2,18" fill="%23DEB887"/></pattern></defs><rect width="300" height="250" fill="url(%23velvet3)"/></svg>');
}

.silk-item-1 {
  background-image: linear-gradient(135deg, #FFD700, #FFA500);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 250"><defs><pattern id="silk1" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="%23FFD700"/><path d="M0 0 L20 20 M20 0 L0 20" stroke="%23FFA500" stroke-width="1"/></pattern></defs><rect width="300" height="250" fill="url(%23silk1)"/></svg>');
}

.silk-item-2 {
  background-image: linear-gradient(135deg, #FFA500, #FF8C00);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 250"><defs><pattern id="silk2" patternUnits="userSpaceOnUse" width="15" height="15"><rect width="15" height="15" fill="%23FFA500"/><circle cx="7.5" cy="7.5" r="3" fill="%23FF8C00"/></pattern></defs><rect width="300" height="250" fill="url(%23silk2)"/></svg>');
}

.silk-item-3 {
  background-image: linear-gradient(135deg, #FF8C00, #FF6347);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 250"><defs><pattern id="silk3" patternUnits="userSpaceOnUse" width="25" height="25"><rect width="25" height="25" fill="%23FF8C00"/><path d="M0 12.5 L25 12.5 M12.5 0 L12.5 25" stroke="%23FF6347" stroke-width="1"/></pattern></defs><rect width="300" height="250" fill="url(%23silk3)"/></svg>');
}

.result-item__content {
  padding: 2rem;
}

.result-item__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin: 0 0 1rem 0;
}

.result-item__description {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.7);
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}

.result-item__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-button);
  margin: 0 0 1.5rem 0;
}

.add-to-cart-btn {
  width: 100%;
  margin-top: 1rem;
  background-color: rgba(245, 78, 78, 1) !important;
  color: white !important;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background-color: rgba(245, 78, 78, 0.9) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 78, 78, 0.4);
}

.add-to-cart-btn:disabled {
  background-color: rgba(245, 78, 78, 0.5) !important;
  cursor: not-allowed;
  opacity: 0.6;
}

.submit-review-btn {
  background-color: rgba(245, 78, 78, 1) !important;
  color: white !important;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-review-btn:hover {
  background-color: rgba(245, 78, 78, 0.9) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 78, 78, 0.3);
}

/* Section Subtitle */
.section-subtitle {
  text-align: center;
  font-size: 1.6rem;
  color: rgba(var(--color-foreground), 0.7);
  margin: 1rem 0 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design for Fabric Options */

/* Checkout Page Styles */
.checkout-section {
  padding: 4rem 0;
  background-color: rgba(var(--color-background), 0.5);
  min-height: 100vh;
}

.checkout-container {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.checkout-form-container {
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.checkout-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: rgb(var(--color-foreground));
  text-align: center;
}

.order-summary {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.order-summary h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: rgb(var(--color-foreground));
}

.checkout-items {
  margin-bottom: 2rem;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
}

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

.checkout-item__details h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: rgb(var(--color-foreground));
}

.checkout-item__details p {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.7);
  margin: 0;
}

.checkout-item__price {
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
}

.checkout-total {
  border-top: 2px solid rgba(var(--color-foreground), 0.1);
  padding-top: 1.5rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.total-row:last-child {
  margin-bottom: 0;
}

.total-final {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgb(var(--color-foreground));
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
  padding-top: 1rem;
  margin-top: 1rem;
}

.form-section {
  margin-bottom: 3rem;
}

.form-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: rgb(var(--color-foreground));
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(var(--color-foreground), 0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-method:hover {
  border-color: rgba(var(--color-button), 0.5);
  background-color: rgba(var(--color-button), 0.05);
}

.payment-method input[type="radio"] {
  margin: 0;
}

.payment-method label {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgb(var(--color-foreground));
  cursor: pointer;
  margin: 0;
}

.form-actions {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 3rem;
}


/* Search Results Page Styles */
.search-results-section {
  padding: 4rem 0;
  background-color: rgba(var(--color-background), 0.5);
}

.search-results-count {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.7);
  font-weight: 500;
}

.search-results-count span {
  font-weight: 700;
  color: rgb(var(--color-foreground));
} 

/* Product Detail Page Styles */
.product-detail-section {
    padding: 4rem 0;
    background-color: rgb(var(--color-background));
}

/* Hide "Back to Products" button */
.back-btn {
    display: none !important;
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hide breadcrumb navigation */
.breadcrumb {
    display: none !important;
}

.breadcrumb a {
    color: rgba(var(--color-foreground), 0.7);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: rgba(var(--color-foreground), 0.9);
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-image {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(var(--color-shadow), 0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-images {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 80px;
    height: 96px;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: rgb(var(--color-accent));
}

.thumbnail:hover {
    border-color: rgba(var(--color-accent), 0.5);
}

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

.product-title {
    font-size: 3.2rem;
    font-weight: 600;
    color: rgba(var(--color-foreground), 0.9);
    margin: 0;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price--regular {
    font-size: 2.4rem;
    font-weight: 600;
    color: rgba(var(--color-foreground), 0.9);
}

.price--compare {
    font-size: 1.8rem;
    color: rgba(var(--color-foreground), 0.5);
    text-decoration: line-through;
}

.price--discount {
    background-color: rgb(var(--color-accent));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    font-weight: 600;
}

.product-description {
    font-size: 1.6rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground), 0.7);
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-label {
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(var(--color-foreground), 0.9);
}

.size-options {
    display: flex;
    gap: 1rem;
}

.size-option {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(var(--color-foreground), 0.2);
    background: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.size-option:hover {
    border-color: rgba(var(--color-accent), 0.5);
}

.size-option.active {
    border-color: rgb(var(--color-accent));
    background-color: rgb(var(--color-accent));
    color: white;
}

.color-options {
    display: flex;
    gap: 1rem;
}

.color-option {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(var(--color-foreground), 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-option:hover {
    border-color: rgba(var(--color-accent), 0.5);
    transform: scale(1.1);
}

.color-option.active {
    border-color: rgb(var(--color-accent));
    transform: scale(1.1);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 150px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(var(--color-foreground), 0.2);
    background: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    border-color: rgba(var(--color-accent), 0.5);
    background-color: rgba(var(--color-accent), 0.1);
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: 2px solid rgba(var(--color-foreground), 0.2);
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.product-actions .button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.product-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    color: rgba(var(--color-foreground), 0.7);
}

.feature svg {
    color: rgb(var(--color-accent));
}

.product-tabs {
    margin-top: 4rem;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid rgba(var(--color-foreground), 0.1);
    margin-bottom: 3rem;
}

.tab-button {
    padding: 1.2rem 2rem;
    background: none;
    border: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(var(--color-foreground), 0.5);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: rgba(var(--color-foreground), 0.8);
}

.tab-button.active {
    color: rgb(var(--color-accent));
    border-bottom-color: rgb(var(--color-accent));
}

.tab-content {
    min-height: 300px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: rgba(var(--color-foreground), 0.9);
    margin-bottom: 2rem;
}

.tab-panel p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground), 0.7);
    margin-bottom: 1.5rem;
}

.tab-panel ul {
    font-size: 1.6rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground), 0.7);
    padding-left: 2rem;
}

.tab-panel li {
    margin-bottom: 0.8rem;
}

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

.specs-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
    font-size: 1.6rem;
}

.specs-table td:first-child {
    font-weight: 600;
    color: rgba(var(--color-foreground), 0.9);
    width: 40%;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review {
    padding: 2rem;
    background-color: rgb(var(--color-background-contrast));
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(var(--color-shadow), 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(var(--color-foreground), 0.9);
}

.review-rating {
    color: #FFD700;
    font-size: 1.4rem;
}

.review p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground), 0.7);
    margin: 0;
}

.related-products {
    margin-top: 4rem;
}

.related-products h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: rgba(var(--color-foreground), 0.9);
    margin-bottom: 2rem;
    text-align: center;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.related-product {
    text-align: center;
    padding: 1.5rem;
    background-color: rgb(var(--color-background-contrast));
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(var(--color-shadow), 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(var(--color-shadow), 0.15);
}

.related-product img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.related-product h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(var(--color-foreground), 0.9);
    margin-bottom: 0.5rem;
}

.related-product .price {
    font-size: 1.4rem;
    color: rgba(var(--color-foreground), 0.7);
}

/* Shipping & Returns Page Styles */
.shipping-returns-section {
  padding: 4rem 0;
  background-color: rgb(var(--color-background));
}

.shipping-returns-container {
  max-width: 800px;
  margin: 0 auto;
}

.shipping-info,
.returns-info {
  margin-bottom: 3rem;
}

.shipping-info h2,
.returns-info h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: rgba(var(--color-foreground), 0.9);
  margin-bottom: 2rem;
  text-align: center;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background-color: rgb(var(--color-background-contrast));
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(var(--color-shadow), 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(var(--color-shadow), 0.15);
}

.info-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background: var(--gradient-background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.info-icon svg {
  width: 2rem;
  height: 2rem;
}

.info-content {
  flex: 1;
}

.info-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(var(--color-foreground), 0.9);
  margin-bottom: 1rem;
}

.info-content p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.7);
  margin-bottom: 1rem;
}

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

.contact-support {
  text-align: center;
  padding: 3rem;
  background-color: rgb(var(--color-background-contrast));
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(var(--color-shadow), 0.1);
}

.contact-support h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: rgba(var(--color-foreground), 0.9);
  margin-bottom: 1rem;
}

.contact-support p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.7);
  margin-bottom: 2rem;
}

.contact-support .button {
  font-size: 1.6rem;
  padding: 1.2rem 2.4rem;
}

  
  .info-icon {
    align-self: center;
  }
  
  .contact-support {
    padding: 2rem;
  }
  
  .contact-support .button {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }

/* Product Card Clickable Styles */
.product-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(var(--color-foreground), 0.15);
}

.product-card:active {
    transform: translateY(-2px);
}

.product-card__image {
    position: relative;
    overflow: hidden;
}

.product-card__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--color-foreground), 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover .product-card__image::after {
    opacity: 1;
}

.product-card__content {
    position: relative;
}

/* Prevent button clicks from triggering card click */
.product-card .button--add-to-cart {
    position: relative;
    z-index: 2;
}

/* Result item styles for indowestern page */
.result-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(var(--color-foreground), 0.15);
}

.result-item__image {
    position: relative;
    overflow: hidden;
}

.result-item__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--color-foreground), 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.result-item:hover .result-item__image::after {
    opacity: 1;
}

.result-item__content {
    position: relative;
}

/* Prevent button clicks from triggering item click */
.result-item .button--add-to-cart {
    position: relative;
    z-index: 2;
}

/* User Orders Section Styles */
.user-orders {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.user-orders h3 {
    color: rgb(var(--color-accent));
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-card {
    border: 1px solid rgba(var(--color-foreground), 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.order-card:hover {
    border-color: rgb(var(--color-accent));
    box-shadow: 0 4px 16px rgba(var(--color-accent), 0.1);
    transform: translateY(-2px);
}

.order-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
}

.order-card__id {
    font-size: 1.6rem;
    font-weight: 600;
    color: rgb(var(--color-accent));
}

.order-card__status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d1ecf1;
    color: #0c5460;
}

.status-shipped {
    background: #d4edda;
    color: #155724;
}

.status-delivered {
    background: #c3e6cb;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.order-card__details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-card__detail {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.order-card__detail-label {
    font-size: 1.2rem;
    color: rgba(var(--color-foreground), 0.7);
    font-weight: 500;
}

.order-card__detail-value {
    font-size: 1.4rem;
    color: rgb(var(--color-foreground));
    font-weight: 600;
}

.order-card__items {
    margin-bottom: 1rem;
}

.order-card__items-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgb(var(--color-foreground));
    margin-bottom: 0.8rem;
}

.order-card__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.05);
}

.order-card__item:last-child {
    border-bottom: none;
}

.order-card__item-name {
    font-size: 1.3rem;
    color: rgb(var(--color-foreground));
}

.order-card__item-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgb(var(--color-accent));
}

.order-card__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(var(--color-foreground), 0.1);
    font-size: 1.6rem;
    font-weight: 700;
}

.order-card__total-label {
    color: rgb(var(--color-foreground));
}

.order-card__total-amount {
    color: rgb(var(--color-accent));
}

.order-card__actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-end;
}

.order-card__action-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.order-card__action-btn--track {
    background: rgb(var(--color-accent));
    color: white;
}

.order-card__action-btn--track:hover {
    background: rgba(var(--color-accent), 0.8);
    transform: translateY(-1px);
}

.order-card__action-btn--details {
    background: rgba(var(--color-foreground), 0.1);
    color: rgb(var(--color-foreground));
}

.order-card__action-btn--details:hover {
    background: rgba(var(--color-foreground), 0.2);
    transform: translateY(-1px);
}

.no-orders {
    text-align: center;
    padding: 3rem;
    color: rgba(var(--color-foreground), 0.7);
}

.no-orders__icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-orders__title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(var(--color-foreground));
}

.no-orders__description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.no-orders__action {
    background: rgb(var(--color-accent));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.no-orders__action:hover {
    background: rgba(var(--color-accent), 0.8);
    transform: translateY(-2px);
}

    .order-card__actions {
        flex-direction: column;
        align-items: stretch;
    }
    
/* Quick Login Section Styles */
.quick-login-section {
    background: linear-gradient(135deg, rgba(var(--color-accent), 0.1) 0%, rgba(var(--color-accent), 0.05) 100%);
    border: 1px solid rgba(var(--color-accent), 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.quick-login-content h3 {
    color: rgb(var(--color-accent));
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.quick-login-content p {
    color: rgba(var(--color-foreground), 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.quick-login-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.quick-login-form .phone-input-group {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid rgba(var(--color-foreground), 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.quick-login-form .country-code {
    background: rgba(var(--color-accent), 0.1);
    color: rgb(var(--color-accent));
    padding: 1rem 0.8rem;
    font-weight: 600;
    font-size: 1.4rem;
    border-right: 1px solid rgba(var(--color-foreground), 0.1);
}

.quick-login-form .form-input {
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 1rem;
    font-size: 1.4rem;
    min-width: 200px;
}

.quick-login-form .form-input:focus {
    box-shadow: none;
}

.quick-login-form .button {
    padding: 1rem 2rem;
    font-size: 1.4rem;
    white-space: nowrap;
}

/* User Orders Section Styles */
.user-orders {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.user-orders h3 {
    color: rgb(var(--color-accent));
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-card {
    background: rgba(var(--color-accent), 0.05);
    border: 1px solid rgba(var(--color-accent), 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--color-accent), 0.15);
}

.order-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(var(--color-accent), 0.1);
}

.order-card__id {
    font-weight: 600;
    color: rgb(var(--color-accent));
    font-size: 1.4rem;
}

.order-card__status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: capitalize;
}

.order-card__status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #856404;
}

.order-card__status.confirmed {
    background: rgba(0, 123, 255, 0.2);
    color: #004085;
}

.order-card__status.shipped {
    background: rgba(40, 167, 69, 0.2);
    color: #155724;
}

.order-card__status.delivered {
    background: rgba(40, 167, 69, 0.2);
    color: #155724;
}

.order-card__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-card__detail {
    display: flex;
    flex-direction: column;
}

.order-card__detail-label {
    font-size: 1.2rem;
    color: rgba(var(--color-foreground), 0.6);
    margin-bottom: 0.3rem;
}

.order-card__detail-value {
    font-size: 1.4rem;
    color: rgb(var(--color-foreground));
    font-weight: 500;
}

.order-card__items {
    margin-bottom: 1rem;
}

.order-card__items-title {
    font-size: 1.3rem;
    color: rgb(var(--color-foreground));
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.order-card__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
}

.order-card__item:last-child {
    border-bottom: none;
}

.order-card__item-name {
    font-size: 1.3rem;
    color: rgb(var(--color-foreground));
}

.order-card__item-price {
    font-size: 1.3rem;
    color: rgb(var(--color-accent));
    font-weight: 600;
}

.order-card__total {
    text-align: right;
    font-size: 1.6rem;
    font-weight: 700;
    color: rgb(var(--color-accent));
    padding-top: 1rem;
    border-top: 2px solid rgba(var(--color-accent), 0.2);
}

.order-card__actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.order-card__action-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.order-card__action-btn--primary {
    background: rgb(var(--color-accent));
    color: white;
}

.order-card__action-btn--secondary {
    background: rgba(var(--color-foreground), 0.1);
    color: rgb(var(--color-foreground));
}

.order-card__action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.no-orders {
    text-align: center;
    padding: 3rem;
    color: rgba(var(--color-foreground), 0.7);
}

.no-orders__icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-orders__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: rgb(var(--color-foreground));
}

.no-orders__description {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Quick Login Section Styles */
.quick-login-section {
    background: linear-gradient(135deg, rgba(var(--color-accent), 0.1) 0%, rgba(var(--color-accent), 0.05) 100%);
    border: 1px solid rgba(var(--color-accent), 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.quick-login-content h3 {
    color: rgb(var(--color-accent));
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.quick-login-content p {
    color: rgba(var(--color-foreground), 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.quick-login-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.quick-login-form .phone-input-group {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid rgba(var(--color-foreground), 0.2);
    border-radius: 6px;
    overflow: hidden;
}

.quick-login-form .country-code {
    background: rgba(var(--color-accent), 0.1);
    color: rgb(var(--color-accent));
    padding: 0.8rem 1rem;
    font-weight: 600;
    font-size: 1.4rem;
    border-right: 1px solid rgba(var(--color-foreground), 0.1);
}

.quick-login-form .form-input {
    border: none;
    padding: 0.8rem 1rem;
    font-size: 1.4rem;
    min-width: 200px;
}

.quick-login-form .form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--color-accent), 0.1);
}

.quick-login-form .button {
    padding: 0.8rem 2rem;
    font-size: 1.4rem;
    white-space: nowrap;
}

/* Announcement Bar */
.announcement-bar {
  width: 100%;
  background: linear-gradient(135deg, rgba(245, 78, 78, 1) 0%, rgba(245, 78, 78, 0.8) 100%);
  color: #fff;
  overflow: hidden;
}

.announcement-inner {
  white-space: nowrap;
  padding: 0.6rem 0;
}

.announcement-track {
  display: inline-block;
  padding-left: 100%;
  animation: marquee-left 12s linear infinite;
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.page-loader--visible {
  opacity: 1;
  pointer-events: auto;
}

.page-loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.page-loader__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.page-loader__spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(102, 126, 234, 0.25);
  border-top-color: #667eea;
  animation: spin 0.9s linear infinite;
}

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

/* Product Filtering System Styles */
.filter-system {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

/* Hide filter sidebar on smaller screens - give full width to products */
@media (max-width: 1024px) {
  .filter-system {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .filter-sidebar {
    display: none !important;
  }
  
  /* Products grid takes full width when filters hidden */
  .filter-system > *:not(.filter-sidebar) {
    width: 100%;
  }
}

.filter-sidebar {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
}

.filter-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
}

.clear-filters {
  background: none;
  border: none;
  color: rgb(var(--color-accent));
  font-size: 1.4rem;
  cursor: pointer;
  text-decoration: underline;
}

.clear-filters:hover {
  color: rgb(var(--color-foreground));
}

.filter-group {
  margin-bottom: 2.5rem;
}

.filter-group-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: rgb(var(--color-foreground));
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-group-toggle {
  background: none;
  border: none;
  color: rgb(var(--color-foreground));
  cursor: pointer;
  font-size: 1.2rem;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 0.5rem 0;
}

.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: rgb(var(--color-accent));
}

.filter-option label {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.8);
  cursor: pointer;
  flex: 1;
}

.filter-option .count {
  background: rgba(var(--color-foreground), 0.1);
  color: rgba(var(--color-foreground), 0.6);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 1.2rem;
  min-width: 24px;
  text-align: center;
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.price-slider-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-slider {
  position: relative;
  height: 4rem;
  display: flex;
  align-items: center;
}

.price-slider-track {
  position: absolute;
  width: 100%;
  height: 4px;
  background: rgba(var(--color-foreground), 0.2);
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.price-range-input {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
  pointer-events: none;
  appearance: none;
  top: 50%;
  transform: translateY(-50%);
}

.price-range-input::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: rgb(var(--color-accent));
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.price-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.price-range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: rgb(var(--color-accent));
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.price-range-input::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.price-values {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.7);
  font-weight: 500;
}

/* Product Grid Improvements - Enhanced */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Enhanced header spacing on desktop */
@media (min-width: 768px) {
  .products-header {
    margin-bottom: 3.5rem;
    padding: 2.5rem 0;
  }
}

.products-count {
  font-size: 1.6rem;
  color: rgba(var(--color-foreground), 0.7);
}

.products-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.sort-select {
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(var(--color-foreground), 0.2);
  border-radius: 4px;
  font-size: 1.4rem;
  background: white;
  cursor: pointer;
}

.view-toggle {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.view-btn {
  padding: 0.8rem;
  border: 1px solid rgba(var(--color-foreground), 0.2);
  background: white;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  color: rgba(var(--color-foreground), 0.7);
}

.view-btn svg {
  transition: transform 0.2s ease;
}

.view-btn:hover {
  border-color: rgb(var(--color-accent));
  color: rgb(var(--color-accent));
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(var(--color-accent), 0.2);
}

.view-btn:hover svg {
  transform: scale(1.1);
}

.view-btn.active {
  background: rgb(var(--color-accent));
  color: white;
  border-color: rgb(var(--color-accent));
  box-shadow: 0 2px 12px rgba(var(--color-accent), 0.3);
}

.view-btn.active svg {
  transform: scale(1.05);
}

/* Enhanced Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

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

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

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

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

/* Enhanced Product Cards */
.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-card__image {
  position: relative;
  height: 320px;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-card__badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-badge {
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-badge.sale {
  background: rgba(245, 78, 78, 1);
  color: white;
}

.product-badge.new {
  background: #2ed573;
  color: white;
}

.product-card__content {
  padding: 1.5rem;
}

.product-card__title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgb(var(--color-foreground));
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__category {
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.6);
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.price--regular {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgb(var(--color-foreground));
}

.price--compare {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.5);
  text-decoration: line-through;
}

.price--discount {
  background: rgba(245, 78, 78, 1);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 600;
}

.product-card__actions {
  display: flex;
  gap: 1rem;
}

.button--add-to-cart {
  flex: 1;
  padding: 1rem;
  background: rgb(var(--color-accent));
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.button--add-to-cart:hover {
  background: rgb(var(--color-foreground));
}



/* Filter Mobile Toggle - Hidden on all screens to give more space to products */
.filter-mobile-toggle {
  display: none !important;
}



/* Page Transition Animation */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 78, 78, 1);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.page-transition-overlay.active {
  opacity: 1;
}

.transition-content {
  text-align: center;
  color: white;
}

.transition-logo {
  width: 12rem;
  height: 12rem;
  /* Remove filter to show original logo colors */
  margin-bottom: 2rem;
  animation: logoFloat 2s ease-in-out infinite;
  position: relative;
}

.transition-spinner {
  width: 4rem;
  height: 4rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Rotating circle around the logo */
.transition-logo::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  bottom: -1rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

/* Second rotating circle with different speed */
.transition-logo::after {
  content: '';
  position: absolute;
  top: -2rem;
  left: -2rem;
  right: -2rem;
  bottom: -2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: spin 3s linear infinite reverse;
}

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

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

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

@keyframes rotateLeft {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateRight {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes pulseLeft {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

@keyframes pulseRight {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Admin Backup & Restore Styles */
.backup-section {
  background: white;
  border: 1px solid rgba(var(--color-foreground), 0.1);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.backup-section h3 {
  color: rgb(var(--color-foreground));
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.backup-section p {
  color: rgba(var(--color-foreground), 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.backup-section .button {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.button--warning {
  background: #f59e0b;
  color: white;
}

.button--warning:hover {
  background: #d97706;
}

.button--danger {
  background: rgba(245, 78, 78, 1);
  color: white;
}

.button--danger:hover {
  background: rgba(245, 78, 78, 1);
}

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

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(10px) rotate(-5deg);
  }
}

/* ===========================================
   UNIVERSAL RESPONSIVE HEADER - RAWAYI STYLE
   Applied to ALL pages automatically
   =========================================== */

/* Header Layout Override */
.header__content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

/* Desktop Layout */
.header__heading {
    flex-shrink: 0 !important;
}

.header__inline-menu {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
}

.header__icons {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

/* Mobile menu styles are in index.html inline styles - no conflicts */

/* Cart and Header Icons Override */
.header__icon {
    position: relative !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 10px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.header__icon:hover {
    background: rgba(var(--color-foreground), 0.08) !important;
    transform: translateY(-1px) !important;
}

.header__icon svg {
    width: 24px !important;
    height: 24px !important;
    color: rgb(var(--color-foreground)) !important;
}

.cart-count-bubble {
    position: absolute !important;
    top: 2px !important;
    right: 2px !important;
    background: rgb(var(--color-accent)) !important;
    color: white !important;
    border-radius: 50% !important;
    min-width: 18px !important;
    height: 18px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 11 !important;
    transform: scale(1) !important;
    transition: transform 0.2s ease !important;
}

.cart-count-bubble:not(:empty) {
    transform: scale(1.1) !important;
}

/* ===========================================
   END UNIVERSAL RESPONSIVE HEADER
   =========================================== */

/* ===========================================
   RAWAYI-INSPIRED DESIGN SYSTEM
   Clean, minimal, responsive design patterns
   =========================================== */

/* Fluid Typography - Scales naturally */
html {
  font-size: clamp(50%, 1.5vw, 62.5%);
}

body {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 1.6;
  color: #1a1a1a;
}

/* Responsive Container - Natural padding */
.page-width {
  max-width: 120rem;
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2rem);
}

/* Product Grid - Rawayi Style: Default 2 columns with reduced gaps */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.6rem, 1.5vw, 1rem);
  margin-top: 2rem;
}

/* Ensure 2 columns on very small screens */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
}

/* 2 columns on tablet with slightly more gap */
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2vw, 1.2rem);
  }
}

/* 2 columns on desktop with minimal gap increase */
@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.2rem, 2.5vw, 1.5rem);
  }
}

/* 2 columns on large desktop */
@media (min-width: 1400px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Product Cards - Clean, minimal, Rawayi aesthetic - Enhanced */
.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.12);
}

/* Enhanced hover on desktop */
@media (min-width: 768px) {
  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
  }
}

.product-card__image,
.product-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f8f8f8;
  min-height: 200px;
}

/* Larger images on bigger screens */
@media (min-width: 768px) {
  .product-card__image,
  .product-card-image {
    min-height: 240px;
  }
}

@media (min-width: 1024px) {
  .product-card__image,
  .product-card-image {
    min-height: 280px;
  }
}

/* Better aspect ratio on very small screens */
@media (max-width: 480px) {
  .product-card__image,
  .product-card-image {
    aspect-ratio: 2.5 / 3.5;
    min-height: 160px;
  }
}

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

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

.product-card__content,
.product-card-content {
  padding: clamp(1.2rem, 2.2vw, 1.8rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* More spacious content on larger screens */
@media (min-width: 768px) {
  .product-card__content,
  .product-card-content {
    padding: 1.8rem;
    gap: 0.8rem;
  }
}

/* Tighter spacing on small screens */
@media (max-width: 480px) {
  .product-card__content,
  .product-card-content {
    padding: 0.9rem;
    gap: 0.3rem;
  }
}

.product-card__title,
.product-card-title {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Larger titles on desktop */
@media (min-width: 768px) {
  .product-card__title,
  .product-card-title {
    font-size: 1.7rem;
    line-height: 1.45;
  }
}

/* Smaller title on very small screens */
@media (max-width: 480px) {
  .product-card__title,
  .product-card-title {
    font-size: 1.2rem;
    line-height: 1.3;
  }
}

.product-card__category,
.product-card-category {
  font-size: clamp(1.1rem, 1.5vw, 1.2rem);
  color: rgba(26, 26, 26, 0.6);
  text-transform: capitalize;
  margin: 0;
}

.product-card__price,
.product-card-price {
  margin: 0.5rem 0;
}

.price--regular {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 600;
  color: #b3261e;
}

/* Larger prices on desktop */
@media (min-width: 768px) {
  .price--regular {
    font-size: 1.8rem;
  }
}

/* Slightly smaller price on very small screens */
@media (max-width: 480px) {
  .price--regular {
    font-size: 1.3rem;
  }
}

.price--compare {
  font-size: clamp(1.2rem, 1.5vw, 1.3rem);
  color: rgba(26, 26, 26, 0.5);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

/* Buttons - Pill-shaped, Rawayi style */
.button,
.button--add-to-cart,
.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.9rem, 2vw, 1.1rem) clamp(1.8rem, 4vw, 2.4rem);
  border-radius: 999px;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: #b3261e;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(179, 38, 30, 0.2);
}

.button:hover,
.button--add-to-cart:hover,
.add-to-cart-btn:hover {
  background: #8b1e18;
  box-shadow: 0 6px 16px rgba(179, 38, 30, 0.3);
  transform: translateY(-1px);
}

.product-card__actions,
.product-card-actions {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.5rem;
}

.product-card__actions .button,
.product-card-actions .button,
.add-to-cart-btn {
  width: 100%;
  min-height: 3.8rem;
  font-size: clamp(1.3rem, 1.8vw, 1.5rem);
}

/* Larger buttons on desktop */
@media (min-width: 768px) {
  .product-card__actions .button,
  .product-card-actions .button,
  .add-to-cart-btn {
    min-height: 4.2rem;
    font-size: 1.5rem;
  }
}

/* Cart Drawer - Clean, minimal */
.cart-drawer {
  width: min(400px, 100vw);
  right: -100%;
}

.cart-drawer.open {
  right: 0;
}

.cart-footer {
  padding: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.cart-total {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

#checkout-btn {
  width: 100%;
  border-radius: 999px;
  padding: clamp(1.2rem, 2.5vw, 1.6rem) clamp(1.8rem, 3vw, 2.4rem);
  min-height: clamp(52px, 6vw, 60px);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  background: linear-gradient(135deg, #b3261e, #d32f2f);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(179, 38, 30, 0.3);
  margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
}

#checkout-btn:hover {
  background: linear-gradient(135deg, #8b1e18, #b71c1c);
  box-shadow: 0 8px 24px rgba(179, 38, 30, 0.4);
}

/* Hero Section - Clean, minimal */
.hero-slider {
  width: min(95%, 1400px);
  margin: clamp(1.5rem, 3vw, 2.5rem) auto;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.hero-slider .slide-image img,
.mobile-slider .slide-image img {
  width: 100%;
  height: auto;
  max-height: clamp(280px, 50vh, 500px);
  object-fit: cover;
  border-radius: 16px;
}

/* Section Titles */
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

/* Enhanced section titles on desktop */
@media (min-width: 768px) {
  .section-title {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
}

/* Header - Clean, minimal */
.header {
  padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1rem, 3vw, 2rem);
}

.header__icon svg {
  width: clamp(20px, 2.5vw, 24px);
  height: clamp(20px, 2.5vw, 24px);
}

/* Forms - Clean spacing */
.form-input,
.form-label {
  padding: clamp(0.8rem, 1.5vw, 1rem);
  font-size: clamp(1.3rem, 1.8vw, 1.5rem);
}

/* Minimum Order Banner */
.minimum-order-banner {
  background: #fff7e6;
  border: 1px solid rgba(179, 38, 30, 0.2);
  border-radius: 12px;
  padding: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
  font-size: clamp(1.3rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  color: #1a1a1a;
}

.minimum-order-banner strong {
  color: #b3261e;
}