* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@custom-variant dark (&:is(.dark *));

:root {
  --font-size: 16px;

  /* Premium Color Palette */
  --background: linear-gradient(135deg, #fdfbf7 0%, #f8f4ec 100%);
  --background-solid: #fdfbf7;
  --foreground: #1a1614;
  --card: #ffffff;
  --card-foreground: #1a1614;
  --popover: #ffffff;
  --popover-foreground: #1a1614;
  --primary-color: #b8941f;
  --secondary-color: #2c3e50;
  --accent-color: #d4af37;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --success-color: #27ae60;
  --warning-color: #e74c3c;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  /* Luxury Gold & Deep Blue Theme */
  --primary: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  --primary-solid: #d4af37;
  --primary-foreground: #ffffff;
  --primary-dark: #1a365d;
  --primary-light: #f7f4e8;

  --secondary: #2d3748;
  --secondary-foreground: #ffffff;
  --muted: #f7fafc;
  --muted-foreground: #718096;
  --accent: #edf2f7;
  --accent-foreground: #2d3748;

  --destructive: #e53e3e;
  --destructive-foreground: #ffffff;
  --border: rgba(212, 175, 55, 0.15);
  --input: transparent;
  --input-background: #ffffff;
  --switch-background: #cbd5e0;
  --ring: #d4af37;
  --primary-gradient: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  --success-gradient: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  --warning-gradient: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
  --danger-gradient: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
  --info-gradient: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  --secondary-color: #3498db;
  --success-color: #27ae60;
  --border-radius: 16px;
  /* Premium Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-premium: 0 25px 50px -12px rgba(212, 175, 55, 0.25);

  /* Typography */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Responsive Sizing */
  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Mobile-first spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Container sizes */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;

  /* Charts */
  --chart-1: #d4af37;
  --chart-2: #2d3748;
  --chart-3: #4a5568;
  --chart-4: #e2e8f0;
  --chart-5: #f7fafc;
}

/* Responsive breakpoints for different screen sizes */
@media (max-width: 479px) {
  :root {
    --font-size: 14px;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --spacing-md: 0.75rem;
    --spacing-lg: 1rem;
    --spacing-xl: 1.5rem;
  }
}

@media (min-width: 768px) {
  :root {
    --font-size: 16px;
    --spacing-xl: 2.5rem;
    --spacing-2xl: 3.5rem;
    --spacing-3xl: 5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
  }
}

/* main {
  position: relative;
  top: 80px;
} */

.dark {
  --background: linear-gradient(135deg, #1a1614 0%, #2d2621 100%);
  --background-solid: #1a1614;
  --foreground: #f7fafc;
  --card: #2d2621;
  --card-foreground: #f7fafc;
  --popover: #2d2621;
  --popover-foreground: #f7fafc;
  --primary: linear-gradient(135deg, #d4af37 0%, #f6e05e 100%);
  --primary-solid: #d4af37;
  --primary-foreground: #1a1614;
  --secondary: #4a5568;
  --secondary-foreground: #f7fafc;
  --muted: #2d3748;
  --muted-foreground: #a0aec0;
  --accent: #4a5568;
  --accent-foreground: #f7fafc;
  --destructive: #fc8181;
  --destructive-foreground: #1a1614;
  --border: rgba(212, 175, 55, 0.2);
  --input: #2d3748;
  --ring: #d4af37;
}

@theme inline {
  --color-background: var(--background-solid);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary-solid);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-input-background: var(--input-background);
  --color-switch-background: var(--switch-background);
  --color-ring: var(--ring);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --radius-sm: var(--radius-sm);
  --radius-md: var(--radius);
  --radius-lg: var(--radius-lg);
  --radius-xl: var(--radius-xl);
}

@layer base {
  * {
    @apply border-border outline-ring/50;
  }

  body {
    /* background: var(--background); */
    color: var(--foreground);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
      "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
    font-variation-settings: "opsz" 32;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  /* Ensure images are responsive by default */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* Responsive Typography System */
@layer base {
  :where(:not(:has([class*=" text-"]), :not(:has([class^="text-"])))) {
    h1 {
      font-size: clamp(1.75rem, 5vw, 3.5rem);
      font-weight: var(--font-weight-bold);
      line-height: 1.1;
      letter-spacing: -0.02em;
      background: var(--primary);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 4px 8px rgba(212, 175, 55, 0.2);
      margin-bottom: clamp(1rem, 3vw, 2rem);
    }

    h2 {
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      font-weight: var(--font-weight-semibold);
      line-height: 1.2;
      letter-spacing: -0.01em;
      color: var(--foreground);
      margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
    }

    h3 {
      font-size: clamp(1.25rem, 3vw, 2rem);
      font-weight: var(--font-weight-semibold);
      line-height: 1.3;
      letter-spacing: -0.01em;
      color: var(--foreground);
      margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
    }

    h4 {
      font-size: clamp(1.125rem, 2.5vw, 1.5rem);
      font-weight: var(--font-weight-medium);
      line-height: 1.4;
      color: var(--foreground);
      margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    }

    p {
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      font-weight: var(--font-weight-normal);
      line-height: 1.6;
      color: var(--muted-foreground);
      margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    }

    label {
      font-size: clamp(0.8rem, 1.2vw, 0.875rem);
      font-weight: var(--font-weight-medium);
      line-height: 1.5;
      color: var(--foreground);
      letter-spacing: 0.01em;
    }

    button {
      font-size: clamp(0.8rem, 1.2vw, 0.875rem);
      font-weight: var(--font-weight-medium);
      line-height: 1.5;
      letter-spacing: 0.01em;
    }

    input {
      font-size: clamp(0.8rem, 1.2vw, 0.875rem);
      font-weight: var(--font-weight-normal);
      line-height: 1.5;
    }
  }
}

/* Premium Component Styles with Responsive Enhancements */
@layer components {
  .premium-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
  }

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

  @media (min-width: 768px) {
    .premium-card:hover {
      transform: translateY(-4px);
    }
  }

  .premium-button {
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 44px;
    /* Minimum touch target for mobile */
  }

  .premium-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent);
    transition: left 0.5s;
  }

  .premium-button:hover::before {
    left: 100%;
  }

  .premium-button:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-1px);
  }

  @media (min-width: 768px) {
    .premium-button:hover {
      transform: translateY(-2px);
    }
  }

  .premium-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }

  .premium-gradient-text {
    background: var(--primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .premium-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* Responsive container utilities */
  .responsive-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  @media (min-width: 640px) {
    .responsive-container {
      max-width: var(--container-sm);
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }

  @media (min-width: 768px) {
    .responsive-container {
      max-width: var(--container-md);
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .responsive-container {
      max-width: var(--container-lg);
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }
  }

  @media (min-width: 1280px) {
    .responsive-container {
      max-width: var(--container-xl);
    }
  }

  @media (min-width: 1536px) {
    .responsive-container {
      max-width: var(--container-2xl);
    }
  }

  /* Mobile-optimized touch targets */
  .touch-target {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Responsive grid utilities */
  .responsive-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
  }

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

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

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

/* Enhanced Responsive Animations */
@layer utilities {
  .animate-fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .animate-scale-in {
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Reduced motion for accessibility */
  @media (prefers-reduced-motion: reduce) {

    .animate-fade-in,
    .animate-slide-up,
    .animate-scale-in {
      animation: none;
    }

    .premium-card:hover,
    .premium-button:hover {
      transform: none;
    }
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
}

/* Enhanced Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

@media (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 8px;
  }
}

::-webkit-scrollbar-track {
  background: var(--muted);
  border-radius: var(--radius);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-solid);
  border-radius: var(--radius);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Mobile-specific optimizations */
@media (max-width: 767px) {
  .mobile-stack {
    flex-direction: column !important;
  }

  .mobile-full-width {
    width: 100% !important;
  }

  .mobile-center {
    text-align: center !important;
  }

  .mobile-hide {
    display: none !important;
  }

  .mobile-padding {
    padding: 1rem !important;
  }
}

/* Tablet optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
  .tablet-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Touch device optimizations */
@media (pointer: coarse) {

  .premium-button,
  button,
  [role="button"] {
    min-height: 44px;
    min-width: 44px;
  }

  input,
  textarea,
  select {
    min-height: 44px;
  }

  input[type="radio"] {
    height: 20px;
  }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .premium-card {
    box-shadow: var(--shadow-lg);
  }
}

/******************************  My CSS ************************/
:root {
  --bg-black: #2d3748;
  --btn-bg: #d1ad3c;
}

header {
  position: sticky;
  top: 0;
  z-index: 99;
  margin-bottom: 2%;
}

.btn-bg-color {
  background-color: var(--btn-bg) !important;
  color: white !important;
  font-size: 15px;
  font-weight: 600;
}

.category {
  background-color: var(--bg-black);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 1;
  position: relative;
}

.badge-premium {
  background-color: #f0b300;
  position: absolute;
  top: 3%;
  left: 5%;
}

.badge-sale {
  background-color: #fb2c36;
  position: absolute;
  top: 3%;
  right: 5%;
}

.nav-item-btn {
  position: relative;
}

.nav-item-btn .badge {
  position: absolute;
  top: -3%;
  right: -5%;
  background-color: #fb2c36;
  border-radius: 100%;
}

/*----------------------------------------- home page css start---------------------------------------- */
.hero-gradient {
  background: linear-gradient(to bottom right, #fffbeb, #fefce8, #fff7ed);
  position: relative;
  overflow: hidden;
}

.blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 4s infinite;
}

.top-blur {
  top: 0;
  left: 25%;
  width: 12rem;
  height: 12rem;
  background-color: rgba(253, 224, 71, 0.2);
}

.bottom-blur {
  bottom: 0;
  right: 25%;
  width: 12rem;
  height: 12rem;
  background-color: rgba(253, 186, 116, 0.2);
  animation-delay: 1s;
}

.viewGiftSets {
  border: 2px solid var(--primary-solid) !important;
  color: #000;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.premium-gradient-text {
  background-color: #d1ad3c;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-gradient .hero-img {
  width: 100%;
  height: 22.5rem;
  background: url("../images/home_hero_section.avif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  border-radius: 20px;
  position: relative;
}

.hero-gradient .hero-img .banner-review {
  position: absolute;
  bottom: -10%;
  right: -4%;
  z-index: 1;
  border-radius: 20px;
}

.filter-search {
  position: relative;
  top: -50px;
  z-index: 98;
}

.product .card .card-img-top,
.related-products .card .card-img-top,
.wishlist .card .card-img-top {
  aspect-ratio: 6/6;
}

.product .card,
.related-products .card,
.wishlist .card {
  overflow: hidden;
}

.product .card .card-header,
.related-products .card .card-header,
.wishlist .card .card-header {
  position: relative;
  /* transition: all 0.3s ease; */
}

.product .card .card-header img,
.related-products .card .card-header img,
.wishlist .card .card-header img {
  transition: all 0.3s ease;
  transform: scale(1);
}

.product .card .card-header:hover img,
.related-products .card .card-header:hover img,
.wishlist .card .card-header:hover img {
  transform: scale(1.2);
}

.product .card .card-header .wisthlist-icon,
.related-products .card .card-header .wisthlist-icon,
.wishlist .card .card-header .wisthlist-icon {
  position: absolute;
  right: 3%;
  bottom: 3%;
}

.wisthlist-icon {
  background-color: #fff;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  /* color: #fb2c36; */
  padding: 20px;
  font-size: 22px;
}

.wisthlist-icon .active {
  color: #fb2c36;
}

.wisthlist-icon:hover {
  /* color: #fff; */
  padding: 20px;
  font-size: 22px;
  /* background-color: #fb2c36; */
  cursor: pointer;
}

.product .card a,
.related-products .card a,
.wishlist .card a {
  color: black;
  font-weight: 600;
  font-size: 20px;
  transition: all 0.5s linear;
}

.product .card a:hover,
.related-products .card a:hover,
.wishlist .card a:hover {
  color: var(--btn-bg);
}

.premium-feature .feature-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.premium-feature .premium1 {
  background: linear-gradient(to right bottom, #f0b300, #d58e00);
}

.premium-feature .premium2 {
  background: linear-gradient(to right bottom, #3383ff, #1963fc);
}

.premium-feature .premium3 {
  background: linear-gradient(to right bottom, #00ce63, #00ad44);
}

.premium-feature .premium4 {
  background: linear-gradient(to right bottom, #bc71ff, #9b20fb);
}

.input-group-text {
  padding: 15px;
}

/*----------------------------------------- home page css end---------------------------------------- */

/*-------------------------------------- about us css start --------------------------------------------------- */

:root {
  --premium-gold: #f59e0b;
  --premium-gold-dark: #d97706;
  --navbar-bg: #fefefe;
  --footer-bg: #2d3748;
  --footer-text: #a0aec0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  margin: 0;
  background-color: #fdfbf7;
  padding: 0;
}

/* Navbar Styles - Matching Image 1 */
.premium-navbar {
  background-color: var(--navbar-bg);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 10px;
}

.navbar-brand:hover {
  color: inherit;
}

.brand-icon {
  color: var(--premium-gold);
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.brand-text h1 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  font-weight: 700;
  font-size: 24px;
  background: -webkit-linear-gradient(#d4af37, #b8941f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0px;
}

.brand-subtitle {
  font-size: 0.65rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: -2px;
  font-weight: 500;
}

.navbar-nav {
  gap: 0.5rem;
}

.nav-item-btn {
  background: transparent;
  border: none;
  padding: 12px 16px;
  border-radius: 0.5rem;
  font-size: 16px;
  font-weight: 400;
  color: #4a5568;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-item-btn:hover {
  background-color: #f7fafc;
  color: #2d3748;
}

.nav-item-btn.active {
  background-image: linear-gradient(to right, #eab308, #ca8a04);
  color: white;
}

.nav-item-btn i {
  font-size: 0.875rem;
}

/* Mobile navbar toggle */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile menu styles */
.mobile-nav-item {
  padding: 0.75rem 1rem;
  color: #4a5568;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.5rem;
  margin: 0.25rem 0;
  transition: all 0.2s ease;
}

.mobile-nav-item:hover {
  background-color: #f7fafc;
  color: #2d3748;
}

.mobile-nav-item.active {
  background-color: var(--premium-gold);
  color: white;
}

/* Footer Styles - Matching Image 2 */
.premium-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  margin-top: 4rem;
}

.footer-content {
  padding: 3rem 0 2rem 0;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-brand i {
  color: var(--premium-gold);
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

.footer-brand h3 {
  color: var(--premium-gold);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.footer-tagline {
  color: var(--footer-text);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

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

.footer-links a:hover {
  color: var(--premium-gold);
}

.footer-separator {
  color: #4a5568;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-copyright {
  color: var(--footer-text);
  font-size: 0.875rem;
}

/* about  content for demo */

.about-conttend {
  width: 896px;
}

#about-page {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-title {
  font-weight: 400;
  font-size: 48px;
}

.about-conttend p {
  font-size: 18px;
  font-weight: 400;
}

.svgColor {
  color: rgb(204 141 4);
  font-size: 16px;
}

.footer-title {
  background: -webkit-linear-gradient(#d4af37, #b8941f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* loging and register  */
.loginBtn:hover {
  background-color: color-mix(in oklab, var(--primary-solid) 90%, transparent);
  box-shadow: 5px 5px 8px rgb(214, 212, 212);
}

.loginBtn {
  background-image: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
}

.text-primary {
  color: #d4af37 !important;
}

.outline-color {
  background-color: #fdfbf7;
  outline: 1px solid #eed994bb;
}

.regirsterInput:focus {
  outline: 2px solid #d4af37 !important;
}

.registerIcon {
  top: 12px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-nav {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-separator {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .brand-text h1 {
    font-size: 1.25rem;
  }

  .brand-subtitle {
    font-size: 0.6rem;
  }

  .footer-content {
    padding: 2rem 0 1.5rem 0;
  }
}

/* about  content for demo */

.about-conttend {
  width: 896px;
}

#about-page {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-title {
  font-weight: 400;
  font-size: 48px;
}

.about-conttend p {
  font-size: 18px;
  font-weight: 400;
}

.svgColor {
  color: rgb(204 141 4);
  font-size: 16px;
}

.footer-title {
  background: -webkit-linear-gradient(#d4af37, #b8941f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* product detail page css start */
.product-details-tabs .nav-item {
  margin: 0 160px 0 0;
}

.product-details-tabs .nav-item .active,
.product-detail .nav-item .active {
  border: 0;
}

.product-details-tabs .nav-item .nav-link {
  color: black;
}

.product-details-tabs .nav-tabs {
  background-color: #f7fafc;
}

.related-products .swiper {
  width: 100%;
  height: 100%;
}

.related-products .swiper-slide {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.related-products .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-products .swiper .swiper-button-next,
.related-products .swiper .swiper-button-prev {
  color: var(--btn-bg);
}

.checkout .form-check-input:checked {
  background-color: var(--btn-bg);
  border-color: var(--btn-bg);
}

.checkout input {
  border-radius: 20px;
}

/* Profiel page --------> */
/* Sidebar */
.sidebar {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.profile-header {
  background: -webkit-linear-gradient(#d4af37, #b8941f);
  padding: 2rem 1.5rem;
  text-align: center;
  color: white;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #000, #000);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

/* .profile-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>') center/50% no-repeat;
} */

.profile-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.profile-email {
  opacity: 0.9;
  font-size: 0.9rem;
}

.sidebar-menu {
  padding: 1rem 0;
}

.sidebar-menu .nav-link {
  color: var(--text-primary);
  padding: 1rem 1.5rem;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.sidebar-menu .nav-link:hover {
  background: var(--light-bg);
  border-left-color: var(--primary-color);
}

.sidebar-menu .nav-link.active {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.1), transparent);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
}

/* Main Content */
.main-content {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.content-header {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.profile-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.profile-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
}

.content-body {
  padding: 2rem;
}

/* Form Styles */
.form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.required {
  color: var(--danger-color);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--card-bg);
}

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

.form-control:hover {
  border-color: var(--primary-color);
}

/* File Input */
.file-input-wrapper {
  position: relative;
}

.file-input-wrapper input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-input-label {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 2px dashed var(--border-color);
  border-radius: 12px;
  background: var(--light-bg);
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-secondary);
}

.file-input-label:hover {
  border-color: var(--primary-color);
  background: rgba(37, 99, 235, 0.05);
  color: var(--primary-color);
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.btn-update {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--primary-dark));
  color: white;
  box-shadow: var(--shadow);
}

.btn-update:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-add-address {
  background: linear-gradient(135deg, var(--success-color), #059669);
  color: white;
  box-shadow: var(--shadow);
}

.btn-add-address:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-edit {
  background: var(--warning-color);
  color: white;
  font-size: 0.85rem;
  padding: 8px 16px;
}

.btn-delete {
  background: var(--danger-color);
  color: white;
  font-size: 0.85rem;
  padding: 8px 16px;
}

.btn-edit:hover,
.btn-delete:hover {
  transform: translateY(-1px);
  color: white;
}

/* Address Cards */
.address-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.address-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.address-default-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--success-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.address-card h6 {
  color: var(--success-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.address-card p {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.address-card strong {
  color: var(--text-primary);
}

.address-actions {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

/* Modal Enhancements */
.modal-content {
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-bottom: 1px solid var(--border-color);
  border-radius: 16px 16px 0 0;
}


/* Responsive Design */
@media (max-width: 768px) {
  .premium-navbar {
    padding: 0.75rem 0;
  }

  .profile-container {
    padding: 0 0.5rem;
  }

  .sidebar {
    margin-bottom: 2rem;
  }

  .profile-header {
    padding: 1.5rem 1rem;
  }

  .profile-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .content-header,
  .content-body {
    padding: 1.5rem;
  }

  .profile-title {
    font-size: 1.5rem;
  }
}

/* Loading Animation */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading .btn {
  position: relative;
}

.loading .btn::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.top-nav {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 15px 0;
  margin-bottom: 30px;
}

.breadcrumb-nav {
  color: #6c757d;
  font-size: 14px;
}

.breadcrumb-nav a {
  color: #6c757d;
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.sidebar {
  background-color: #e9ecef;
  min-height: 500px;
  border-radius: 8px;
  padding: 0;
}



.profile-avatar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ff6b6b"/><rect x="20" y="20" width="60" height="60" fill="%234ecdc4"/><rect x="40" y="40" width="20" height="20" fill="%2345b7d1"/></svg>'); */
  border-radius: 50%;
}

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

.sidebar-menu li {
  border-bottom: 1px solid #dee2e6;
}

.sidebar-menu li:last-child {
  border-bottom: none;
}

.sidebar-menu a {
  display: block;
  padding: 15px 25px;
  color: #495057;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sidebar-menu a:hover {
  background-color: #dee2e6;
  color: #212529;
}

.sidebar-menu .active a {
  background: linear-gradient(to right, #eab308, #ca8a04);
  color: white;
}

.profile-content {
  background-color: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-title {
  font-size: 28px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 30px;
}

.form-label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 8px;
}

.required {
  color: #dc3545;
}

.form-control {
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 12px 15px;
  font-size: 14px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-update {
  background: linear-gradient(to right, #eab308, #ca8a04);
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  color: white;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-update:hover {
  background-color: #5a6268;
  color: white;
}

.file-input-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.file-input-wrapper input[type="file"] {
  position: absolute;
  left: -9999px;
}

.file-input-label {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  padding: 12px 15px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  color: #6c757d;
  transition: all 0.3s ease;
}

.file-input-label:hover {
  background-color: #e9ecef;
}

.btn-add-address {
  background: linear-gradient(to right, #eab308, #ca8a04);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  color: white;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-bottom: 30px;
}

.btn-add-address:hover {
  background-color: #5a7da2;
  color: white;
}

.btn-edit {
  background: linear-gradient(to right, #eab308, #ca8a04);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.btn-edit:hover {
  background-color: #5a7da2;
  color: white;
}

.btn-delete {
  background-color: #dc3545;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.btn-delete:hover {
  background-color: #c82333;
  color: white;
}

.address-card {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  height: 100%;
}

.address-card h6 {
  color: #495057;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}

.address-card p {
  margin-bottom: 5px;
  color: #6c757d;
  font-size: 14px;
}

.address-card .address-actions {
  margin-top: 15px;
}

.address-default-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #28a745;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.file-input-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.file-input-wrapper input[type="file"] {
  position: absolute;
  left: -9999px;
}

.file-input-label {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  padding: 12px 15px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  color: #6c757d;
  transition: all 0.3s ease;
}

.file-input-label:hover {
  background-color: #e9ecef;
}

.tab-content {
  width: 100%;
}

.tab-pane {
  display: none;
}

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

/* order css ------> */

.success-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  margin-bottom: 50px;
  overflow: hidden;
}

.success-header {
  /* background: linear-gradient(to right, #eab308, #ca8a04); */
  color: #cb8b04;
  padding: 3rem 0;
  text-align: center;
  position: relative;
}

.viewOrderBtn {
  background: linear-gradient(to right, #eab308, #ca8a04);
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounceIn 1s ease-out;
}

.main-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-header-order {
  background: var(--primary);
  color: white;
  padding: 2rem;
  border: none;
  position: relative;
  overflow: hidden;
}

.orderImage {
  height: 150px;
  width: 150px;
}

.card-header-order::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.card-title {
  /* font-size: 2rem; */
  font-weight: 700;
  /* margin: 0; */
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  /* padding: 15px; */
}

.controls-section {
  padding: 1.5rem 2rem;
  background: rgba(248, 249, 250, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.entries-control {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: white;
}

.form-select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.table-container {
  overflow-x: auto;
}

.orders-table {
  margin: 0;
}

.orders-table thead {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.orders-table th {
  border: none;
  padding: 1.5rem 1rem;
  font-weight: 600;
  color: #495057;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.orders-table th::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  opacity: 0.1;
}

.orders-table tbody tr {
  transition: all 0.3s ease;
  border: none;
}

.orders-table tbody tr:hover {
  background: rgba(102, 126, 234, 0.02);
  transform: scale(1.005);
}

.orders-table td {
  padding: 1.5rem 1rem;
  border: none;
  vertical-align: middle;
  font-weight: 500;
}

.order-number {
  font-family: "Courier New", monospace;
  font-weight: 600;
  color: #495057;
  background: rgba(102, 126, 234, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  display: inline-block;
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  position: relative;
  overflow: hidden;
}

.status-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.badge-placed {
  background: var(--primary);
  color: white;
}

.badge-shipped {
  background: var(--warning-gradient);
  color: #8b4513;
}

.badge-delivered {
  background: var(--success-gradient);
  color: white;
}

.badge-cancelled {
  background: var(--danger-gradient);
  color: white;
}

.badge-processing {
  background: var(--info-gradient);
  color: white;
}

.order-date {
  font-weight: 500;
  color: #6c757d;
}

.product-qty {
  background: rgba(108, 117, 125, 0.1);
  color: #495057;
  padding: 0.5rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  min-width: 2.5rem;
  text-align: center;
}

.order-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
}

.view-btn {
  background: #fdfbf7;
  color: #ba9621;
  border: 2px solid #ba9621;
  padding: 0.5rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.view-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.view-btn:hover {
  color: white;
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.view-btn:hover::before {
  left: 0;
}

.pagination-section {
  padding: 1.5rem 2rem;
  background: rgba(248, 249, 250, 0.8);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.pagination-info {
  color: #6c757d;
  font-weight: 500;
}

.pagination {
  margin: 0;
}

.page-link {
  border: 2px solid #e9ecef;
  color: #495057;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0 0.25rem;
}

.page-link:hover {
  background: var(--primary);
  border-color: #667eea;
  color: white;
  transform: translateY(-1px);
}

.page-item.active .page-link {
  background: var(--primary);
  border-color: #fff;
  color: white;
}

.page-item.disabled .page-link {
  opacity: 0.5;
  pointer-events: none;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-card {
  animation: fadeInUp 0.6s ease-out;
}

.orders-table tbody tr {
  animation: fadeInUp 0.6s ease-out;
}

.orders-table tbody tr:nth-child(1) {
  animation-delay: 0.1s;
}

.orders-table tbody tr:nth-child(2) {
  animation-delay: 0.2s;
}

.orders-table tbody tr:nth-child(3) {
  animation-delay: 0.3s;
}

.orders-table tbody tr:nth-child(4) {
  animation-delay: 0.4s;
}

.orders-table tbody tr:nth-child(5) {
  animation-delay: 0.5s;
}

@media (max-width: 768px) {
  .container {
    padding: 1rem 0.5rem;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .controls-section,
  .pagination-section {
    padding: 1rem;
  }

  .orders-table th,
  .orders-table td {
    padding: 1rem 0.5rem;
    font-size: 0.875rem;
  }

  .pagination-section {
    flex-direction: column;
    text-align: center;
  }
}

.order-header {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  color: white;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.order-status {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.status-processing {
  background-color: var(--warning-color);
  color: white;
}

.status-shipped {
  background-color: var(--secondary-color);
  color: white;
}

.status-delivered {
  background-color: var(--success-color);
  color: white;
}

.card {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.card-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  font-weight: 600;
  padding: 15px;
}

.product-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.order-timeline {
  position: relative;
  padding-left: 2rem;
}

.order-timeline::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #dee2e6;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--secondary-color);
}

.timeline-item.completed::before {
  background-color: var(--success-color);
  box-shadow: 0 0 0 2px var(--success-color);
}

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



.table th {
  border-top: none;
  font-weight: 600;
  color: var(--primary-color);
}

.orderCard {
  height: 100%;
}

.orderCol {
  padding-bottom: 20px;
}

/* terms pag =========> */

.content-section {
  padding: 60px 0;
}

.privacy-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-color);
  transition: transform 0.3s ease;
}

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

.privacy-card h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-card h3 i {
  color: var(--accent-color);
}

.privacy-card p {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.privacy-card ul {
  color: var(--text-dark);
}

.privacy-card ul li {
  margin-bottom: 0.5rem;
}

.last-updated {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 2rem;
  border: 2px dashed var(--primary-color);
  font-size: 25px;
}

.privacyTitle {
  font-size: 25px;
  font-weight: 500;
}

.contact-section {
  background: var(--bg-light);
  padding: 40px 0;
  text-align: center;
}

.privacy-card strong {
  color: #000;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: inline-block;
  /* margin: 1rem; */
  width: 100%;
  height: 100%;
}

.btn-primary {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}



@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .privacy-card {
    padding: 1.5rem;
  }
}

.terms-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-color);
  transition: transform 0.3s ease;
}

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

.terms-card h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-card h3 i {
  color: var(--accent-color);
}

.terms-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.terms-card ul,
.terms-card ol {
  color: var(--text-light);
}

.terms-card ul li,
.terms-card ol li {
  margin-bottom: 0.5rem;
}

.last-updated {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 2rem;
  border: 2px dashed var(--primary-color);
}

.important-notice {
  background: linear-gradient(135deg, #ffe5e5, #fff5f5);
  border-left: 5px solid var(--warning-color);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.important-notice h4 {
  color: var(--warning-color);
  margin-bottom: 1rem;
}

.contact-section {
  background: var(--bg-light);
  padding: 40px 0;
  text-align: center;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: inline-block;
  /* margin: 1rem; */
}

.footer {
  background: var(--secondary-color);
  color: white;
  padding: 40px 0 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}



.highlight-box {
  background: linear-gradient(135deg, #e8f5e8, #f0fff0);
  border-left: 5px solid var(--success-color);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1rem 0;
}

.table-of-contents {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border: 1px solid #e0e0e0;
}

.table-of-contents h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.table-of-contents ul {
  list-style: none;
  padding-left: 0;
}

.table-of-contents ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.table-of-contents ul li:last-child {
  border-bottom: none;
}

.table-of-contents ul li a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.table-of-contents ul li a:hover {
  color: var(--primary-color);
}

/* contatc us  ===> */

/* .contact-methods {
            padding: 80px 0;
            background: var(--bg-light);
        } */
.contactTitle {
  font-size: 25px;
  font-weight: 500;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.contact-card .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.contact-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-form-section {
  padding: 80px 0;
}

.form-container {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--primary-color);
}

.form-container h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 700;
}

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

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--accent-color));
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  width: 100%;
}



.quick-help {
  background: var(--bg-light);
  padding: 60px 0;
}

.help-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

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

.help-item h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.help-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

.map-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.map-container {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.map-placeholder {
  background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
  height: 400px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
}

.operating-hours {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  /* margin-top: 2rem; */
}

.operating-hours h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

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

.day {
  font-weight: 600;
  color: var(--text-dark);
}

.time {
  color: var(--text-light);
}

/* forgot password  */

/* Forgot Password Button */
.forgot-password-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.forgot-password-btn:hover {
  color: var(--primary-dark);
  background: rgba(37, 99, 235, 0.05);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.forgot-password-btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Modal Enhancements */
.modal {
  backdrop-filter: blur(8px);
}

.modal-backdrop {
  background: rgba(15, 23, 42, 0.7);
}

.forgot-password-modal .modal-content {
  border: none;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}

.modal-header {
  background: linear-gradient(to right, #eab308, #ca8a04);
  color: white;
  padding: 2rem;
  border: none;
  text-align: center;
  position: relative;
}

.modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><linearGradient id="a" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></linearGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>') repeat-x;
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 1;
}

.modal-subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
  color: #fff;
}

.modal-body {
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 0 0 16px 16px;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

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

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--card-bg);
  position: relative;
}

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

.form-control:hover {
  border-color: var(--primary-light);
}

.form-control.is-invalid {
  border-color: var(--danger-color);
}

.form-control.is-valid {
  border-color: var(--success-color);
}

.invalid-feedback,
.valid-feedback {
  display: block;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.invalid-feedback {
  color: var(--danger-color);
}

.valid-feedback {
  color: var(--success-color);
}

/* Input Group for Email */
.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  z-index: 2;
  transition: all 0.3s ease;
}

.form-control.with-icon {
  padding-left: 48px;
}

.form-control.with-icon:focus+.input-icon {
  color: var(--primary-color);
}

/* Buttons */
.btn {
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  min-height: 48px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(to right, #eab308, #ca8a04);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: var(--light-bg);
  color: var(--text-secondary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--border-color);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.btn-link {
  background: none;
  color: var(--primary-color);
  text-decoration: none;
  padding: 8px 0;
  font-weight: 500;
}

.btn-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Success/Error States */
.alert {
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: none;
  font-size: 0.9rem;
}

.alert-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  color: var(--success-color);
  border-left: 4px solid var(--success-color);
}

.alert-danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
  color: var(--danger-color);
  border-left: 4px solid var(--danger-color);
}

/* Loading State */
.loading {
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Step Indicator */
.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.step.active {
  background: var(--primary-color);
  color: white;
}

.step.completed {
  background: var(--success-color);
  color: white;
}

.step-line {
  width: 40px;
  height: 2px;
  background: var(--border-color);
  transition: all 0.3s ease;
}

.step-line.completed {
  background: var(--success-color);
}

/* Responsive */
@media (max-width: 576px) {
  .demo-container {
    padding: 20px;
    margin: 10px;
  }

  .modal-header {
    padding: 1.5rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .modal-title {
    font-size: 1.25rem;
  }

  .demo-title {
    font-size: 1.5rem;
  }
}

/* Animation */
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: translate(0, 0);
}

/* Security Tips */
.security-tips {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.03));
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
}

.security-tips h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.security-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-tips li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.security-tips li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}


.reset-page-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.reset-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  max-width: 450px;
  width: 100%;
  position: relative;
}

.reset-header-gradient {
  height: 4px;
  background: linear-gradient(90deg, #eab308, #ca8a04);
}

.reset-content {
  padding: 40px 32px;
}

.reset-icon-section {
  text-align: center;
  margin-bottom: 32px;
}

.reset-icon-container {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-color), #ca8a04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
}

.reset-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.reset-description {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: block;
}

.input-container {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

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

.form-input.error {
  border-color: var(--error-color);
}

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: var(--primary-color);
}

.password-strength {
  margin-top: 12px;
}

.strength-bar {
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}

.strength-fill {
  height: 100%;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.strength-label {
  font-size: 14px;
  font-weight: 500;
}

.error-message {
  color: var(--error-color);
  font-size: 14px;
  margin-top: 8px;
  display: block;
}

.reset-submit-button {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), #ca8a04);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.reset-submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.reset-submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

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

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

  100% {
    transform: rotate(360deg);
  }
}

.reset-footer {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.footer-text {
  color: var(--text-secondary);
  margin: 0;
}

.footer-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.success-message {
  background: #f0f9ff;
  color: var(--success-color);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: none;
}

/* Responsive design */
@media (max-width: 576px) {
  .reset-content {
    padding: 32px 24px;
  }

  .reset-title {
    font-size: 24px;
  }

  .reset-description {
    font-size: 15px;
  }
}

/* Password requirements tooltip */
.password-requirements {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
  margin-top: 8px;
  font-size: 13px;
  display: none;
}

.password-requirements.show {
  display: block;
}

.requirement {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  color: var(--text-secondary);
}

.requirement:last-child {
  margin-bottom: 0;
}

.requirement.met {
  color: var(--success-color);
}

.requirement i {
  margin-right: 8px;
  font-size: 12px;
}

.checkout .card .accordian input[type="radio"] {

  height: auto !important;
}

/* custome css for alert by aadil */
 .custome-alert{
    position: fixed;
    top: 80px;
    right: 10px;
    z-index: 1999;
}
.alert svg{
    height: 1rem;
    width: 1rem;
}