/**
* Template Name: EasyFolio
* Template URL: https://bootstrapmade.com/easyfolio-bootstrap-portfolio-template/
* Updated: Feb 21 2025 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  --nav-font: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

/* Accessibility - Visually Hidden for Screen Readers */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Default font styles */
body {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 0;
  padding-top: 0;
  letter-spacing: -0.01em;
}

/* Heading font styles */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Navigation font styles */
.navmenu,
.mobile-nav-toggle {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
}

/* Utility font classes */
.inter {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.poppins {
  font-family: "Poppins", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

.inter-light {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
}

.inter-medium {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
}

.inter-semibold {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

.poppins-bold {
  font-family: "Poppins", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.poppins-extrabold {
  font-family: "Poppins", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
}

.luxurious-roman {
  font-family: "Luxurious Roman", serif;
  font-weight: 400;
}

.noto-sans {
  font-family: "Noto Sans", sans-serif;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

/* Monochrome Design System - Light Theme */
:root {
  /* Core Colors - Only Black, White, Gray */
  --background-color: #ffffff;
  --surface-color: #ffffff;
  --text-primary: #000000;
  --text-secondary: #666666;
  --text-muted: #999999;
  --text-light: #cccccc;

  /* Accent Colors - Only Black/Gray */
  --accent-primary: #000000;
  --accent-secondary: #f5f5f5;
  --accent-hover: #333333;

  /* UI Colors - Only Gray Variations */
  --border-color: #e5e5e5;
  --border-light: #f0f0f0;
  --border-dark: #cccccc;
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.15);

  /* Interactive Colors - Only Black/White/Gray */
  --button-primary: #000000;
  --button-primary-hover: #333333;
  --button-secondary: #f5f5f5;
  --button-secondary-hover: #e5e5e5;
  --button-text: #ffffff;
  --button-text-secondary: #000000;

  /* Status Colors - Only Black/Gray */
  --success-color: #000000;
  --warning-color: #666666;
  --error-color: #666666;
  --info-color: #999999;

  /* Navigation - Only Black/White/Gray */
  --nav-background: #ffffff;
  --nav-text: #000000;
  --nav-text-hover: #333333;
  --nav-border: #e5e5e5;

  /* Dropdown - Only Black/White/Gray */
  --dropdown-background: #ffffff;
  --dropdown-text: #000000;
  --dropdown-hover: #f5f5f5;
  --dropdown-border: #e5e5e5;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Legacy compatibility */
  --default-color: var(--text-primary);
  --heading-color: var(--text-primary);
  --accent-color: var(--accent-primary);
  --contrast-color: var(--button-text);
  --nav-color: var(--nav-text);
  --nav-hover-color: var(--nav-text-hover);
  --nav-mobile-background-color: var(--surface-color);
  --nav-dropdown-background-color: var(--dropdown-background);
  --nav-dropdown-color: var(--dropdown-text);
  --nav-dropdown-hover-color: var(--nav-text-hover);
}

/* Dark Theme - Monochrome */
[data-theme="dark"] {
  --background-color: #000000;
  --surface-color: #111111;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #b0b0b0;
  --text-light: #888888;

  --accent-primary: #ffffff;
  --accent-secondary: #1a1a1a;
  --accent-hover: #e5e5e5;

  --border-color: #333333;
  --border-light: #222222;
  --border-dark: #555555;
  --shadow-light: rgba(255, 255, 255, 0.05);
  --shadow-medium: rgba(255, 255, 255, 0.1);
  --shadow-dark: rgba(255, 255, 255, 0.15);

  --button-primary: #ffffff;
  --button-primary-hover: #e5e5e5;
  --button-secondary: #1a1a1a;
  --button-secondary-hover: #333333;
  --button-text: #000000;
  --button-text-secondary: #ffffff;

  --nav-background: #000000;
  --nav-text: #ffffff;
  --nav-text-hover: #e5e5e5;
  --nav-border: #333333;

  --dropdown-background: #111111;
  --dropdown-text: #ffffff;
  --dropdown-hover: #1a1a1a;
  --dropdown-border: #333333;

  /* Legacy compatibility */
  --default-color: var(--text-primary);
  --heading-color: var(--text-primary);
  --accent-color: var(--accent-primary);
  --contrast-color: var(--button-text);
  --nav-color: var(--nav-text);
  --nav-hover-color: var(--nav-text-hover);
  --nav-mobile-background-color: var(--surface-color);
  --nav-dropdown-background-color: var(--dropdown-background);
  --nav-dropdown-color: var(--dropdown-text);
  --nav-dropdown-hover-color: var(--nav-text-hover);
}

/* Theme Transition */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Minimalist Typography */
body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

a:hover {
  color: var(--accent-hover);
  text-decoration: none;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-secondary {
  color: var(--text-secondary) !important;
}

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

/* Minimalist Form Elements */
.form-control {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--surface-color);
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: var(--button-primary);
  box-shadow: 0 0 0 3px var(--shadow-light);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Minimalist Cards */
.card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: none;
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-light);
  border-color: var(--border-dark);
}

.card-header {
  background-color: transparent;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  background-color: transparent;
  border-top: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
}

/* Minimalist Navbar Styling */
.navbar {
  background-color: var(--nav-background) !important;
  border-bottom: 1px solid var(--nav-border);
  box-shadow: none;
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.25rem;
}

.navbar-brand img {
  max-height: 32px;
  width: auto;
  filter: none;
}

.navbar-nav .nav-link {
  color: var(--nav-text) !important;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--nav-text-hover) !important;
  background-color: transparent;
}

.navbar-nav .dropdown-toggle::after {
  margin-left: 0.25rem;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  vertical-align: 0.1em;
}

.dropdown-menu {
  background-color: var(--dropdown-background) !important;
  border: 1px solid var(--dropdown-border) !important;
  box-shadow: var(--shadow-medium) !important;
  border-radius: 4px !important;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 200px;
}

.dropdown-item {
  color: var(--dropdown-text) !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.2s ease;
  border: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--dropdown-hover) !important;
  color: var(--nav-text-hover) !important;
}

.navbar-toggler {
  border: 1px solid var(--border-color) !important;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem var(--shadow-light) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Minimalist Button System */
.btn {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  line-height: 1.4;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--shadow-light);
}

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

.btn-primary:hover {
  background-color: var(--button-primary-hover);
  border-color: var(--button-primary-hover);
  color: var(--button-text);
}

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

.btn-secondary:hover {
  background-color: var(--button-secondary-hover);
  border-color: var(--border-dark);
  color: var(--button-text-secondary);
}

.btn-outline-primary {
  border: 1px solid var(--button-primary) !important;
  color: var(--button-primary) !important;
  background-color: transparent !important;
  font-weight: 400;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-outline-primary:hover {
  background-color: var(--button-primary) !important;
  border-color: var(--button-primary) !important;
  color: var(--button-text) !important;
  transform: none;
}

.btn-outline-secondary {
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  background-color: transparent;
}

.btn-outline-secondary:hover {
  background-color: var(--button-secondary);
  border-color: var(--border-dark);
  color: var(--text-primary);
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Simple Cart Design */
.header-social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: color 0.2s ease;
  padding: 0.5rem;
}

.cart-link:hover {
  color: var(--text-primary);
  text-decoration: none;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.cart-icon i {
  font-size: 1.1rem;
  color: inherit;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--text-primary);
  color: var(--background-color);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 500;
  border: 1px solid var(--background-color);
}

.cart-text {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cart-link:hover .cart-icon {
  color: var(--accent-hover);
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid var(--border-color);
  background-color: transparent;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.social-link i {
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link.tiktok {
  color: var(--text-secondary);
}

.social-link.tiktok:hover {
  background-color: var(--button-secondary);
  color: var(--text-primary);
  border-color: var(--border-dark);
}

.social-link.facebook {
  color: var(--text-secondary);
}

.social-link.facebook:hover {
  background-color: var(--button-secondary);
  color: var(--text-primary);
  border-color: var(--border-dark);
}

.social-link.instagram {
  color: var(--text-secondary);
}

.social-link.instagram:hover {
  background-color: var(--button-secondary);
  color: var(--text-primary);
  border-color: var(--border-dark);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .header-social-links {
    gap: 1rem;
    margin-left: 0.5rem;
  }

  .cart-icon {
    width: 20px;
    height: 20px;
  }

  .cart-icon i {
    font-size: 1rem;
  }

  .cart-text {
    display: none;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .social-link i {
    font-size: 0.9rem;
  }
}

/* Floating Theme Toggle Button */
.floating-theme-toggle {
  position: fixed;
  bottom: 15px;
  left: 15px;
  width: 44px;
  height: 44px;
  background-color: var(--accent-color);
  border: none;
  border-radius: 50px;
  color: var(--contrast-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 99999;
}

.floating-theme-toggle:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}


.floating-theme-toggle .sun-icon,
.floating-theme-toggle .moon-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  stroke: currentColor;
  fill: none;
}

.floating-theme-toggle .sun-icon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(180deg) scale(0.8);
}

.floating-theme-toggle .moon-icon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

[data-theme="dark"] .floating-theme-toggle .sun-icon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

[data-theme="dark"] .floating-theme-toggle .moon-icon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-180deg) scale(0.8);
}

/* Dark theme adjustments for floating button */
[data-theme="dark"] .floating-theme-toggle {
  background-color: var(--accent-color);
}

[data-theme="dark"] .floating-theme-toggle:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .floating-theme-toggle {
    bottom: 15px;
    left: 15px;
    width: 44px;
    height: 44px;
  }

  .floating-theme-toggle .sun-icon,
  .floating-theme-toggle .moon-icon {
    width: 20px;
    height: 20px;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .floating-theme-toggle,
  .floating-theme-toggle .sun-icon,
  .floating-theme-toggle .moon-icon {
    transition: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .floating-theme-toggle {
    border: 2px solid currentColor;
    background: var(--background-color);
    color: var(--text-color);
  }

  .floating-theme-toggle:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
  }
}

/* Apply Theme Colors to Elements */
body {
  background-color: var(--background-color);
  color: var(--default-color);
}

.header {
  background-color: var(--background-color);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: var(--background-color);
  box-shadow: 0 2px 20px var(--shadow-color);
  backdrop-filter: blur(10px);
}

.navmenu a {
  color: var(--default-color);
  transition: color 0.3s ease;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--accent-color);
}

  .navmenu .dropdown > a .toggle-dropdown {
    color: var(--default-color);
    padding: 0.2rem;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .navmenu .dropdown > a:hover .toggle-dropdown {
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu .dropdown.active > a .toggle-dropdown {
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

.dropdown-menu {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px var(--shadow-color);
}

.dropdown-item {
  color: var(--default-color);
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--accent-color);
}

.btn {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--link-hover-color);
  border-color: var(--link-hover-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 30%);
}

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

.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.card {
  background-color: var(--surface-color);
  border-color: var(--border-color);
  box-shadow: 0 2px 10px var(--shadow-color);
}

.card:hover {
  box-shadow: 0 4px 20px var(--shadow-color);
  transform: translateY(-2px);
}

.form-control,
.form-select {
  background-color: var(--surface-color);
  border-color: var(--border-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 25%);
  background-color: var(--background-color);
}

.table {
  color: var(--default-color);
}

.table th {
  background-color: var(--surface-color);
  border-color: var(--border-color);
  color: var(--heading-color);
}

.table td {
  border-color: var(--border-color);
}

.table-hover tbody tr:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 5%);
}

.modal-content {
  background-color: var(--background-color);
  border-color: var(--border-color);
}

.modal-header {
  border-bottom-color: var(--border-color);
  background-color: var(--surface-color);
}

.modal-footer {
  border-top-color: var(--border-color);
  background-color: var(--surface-color);
}

.pagination .page-link {
  background-color: var(--surface-color);
  border-color: var(--border-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

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

.pagination .page-item.disabled .page-link {
  background-color: var(--surface-color);
  border-color: var(--border-color);
  color: var(--text-muted);
}

/* Dark Mode Image Adjustments */
[data-theme="dark"] .image-placeholder {
  background: #333333;
}

[data-theme="dark"] .image-placeholder::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* Dark Mode Hero Section Adjustments */
[data-theme="dark"] .hero-section {
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
}

[data-theme="dark"] .hero-badge {
  background: linear-gradient(135deg, var(--accent-color), #ff6b35);
  box-shadow: 0 10px 25px rgba(255, 143, 76, 0.3);
}

[data-theme="dark"] .hero-stats .stat-item .stat-number {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #ff6b35);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .hero-actions .btn-primary:hover {
  box-shadow: 0 15px 35px rgba(255, 143, 76, 0.4);
}

[data-theme="dark"] .hero-actions .btn-outline:hover {
  box-shadow: 0 10px 25px rgba(255, 143, 76, 0.3);
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #faf9fb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  margin-bottom: 0;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
  color: var(--heading-color);
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  padding-left: 5px;
  font-weight: 500;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    color: var(--nav-color);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    border-radius: 25px;
    white-space: nowrap;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .current {
    color: var(--nav-hover-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu .dropdown ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0.5rem 0;
    z-index: 9999;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    border-radius: 15px;
    min-width: 200px;
    width: auto;
    max-height: none;
    overflow: visible;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .navmenu .dropdown.active ul {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
  }

  .navmenu .dropdown {
    position: relative;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    white-space: nowrap;
    display: block;
    width: 100%;
  }

  .navmenu .dropdown ul a {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    text-transform: none;
    font-weight: 400;
    color: var(--nav-dropdown-color);
    border-radius: 0;
    display: block;
    width: 100%;
    text-decoration: none;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .dropdown ul a i,
  .navmenu .dropdown ul a span:first-child {
    margin-right: 5px;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .toggle-dropdown {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .dropdown.active .toggle-dropdown {
    transform: rotate(180deg);
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

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

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  font-family: "Inter", sans-serif;
}

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

[data-theme="dark"] .footer-link {
  color: var(--text-secondary);
}

[data-theme="dark"] .footer-link:hover {
  color: var(--text-primary);
}

/* Return Policy Page Styling */
.return-policy-content {
  color: var(--text-primary);
}

.policy-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
}

.policy-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.policy-list {
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-list li {
  margin-bottom: 0.5rem;
}

.policy-list ol {
  padding-left: 1.5rem;
}

.contact-methods {
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.contact-methods p {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.contact-methods a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-methods a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

[data-theme="dark"] .policy-text,
[data-theme="dark"] .policy-list {
  color: var(--text-secondary);
}

[data-theme="dark"] .contact-methods {
  background-color: var(--surface-color);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 20px 0;
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(120deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title .title-shape {
  width: 200px;
  height: 20px;
  margin: 0 auto;
  color: var(--accent-color);
  opacity: 0.5;
}

.section-title .title-shape svg {
  width: 100%;
  height: 100%;
}

.section-title p {
  margin: 15px auto 0;
  font-size: 16px;
  max-width: 700px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 32px;
  }

  .section-title .subtitle-wrapper .subtitle {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero .content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .hero .content h2 {
    font-size: 2.5rem;
  }
}

.hero .content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .hero .cta-buttons {
    flex-direction: column;
  }
}

.hero .cta-buttons .btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.hero .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
  background: transparent;
}

.hero .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.hero .hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .hero .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.5rem;
  display: block;
}

.hero .hero-image {
  position: relative;
  padding: 2rem;
}

.hero .hero-image img {
  position: relative;
  z-index: 2;
}

.hero .hero-image .shape-1,
.hero .hero-image .shape-2 {
  position: absolute;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: 1;
}

.hero .hero-image .shape-1 {
  width: 300px;
  height: 300px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: -20px;
  right: -20px;
  animation: morphShape 15s linear infinite;
}

.hero .hero-image .shape-2 {
  width: 200px;
  height: 200px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  bottom: -20px;
  left: -20px;
  animation: morphShape 20s linear infinite reverse;
}

@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding: 60px 0;
  }

  .hero .cta-buttons {
    justify-content: center;
  }

  .hero .hero-stats {
    justify-content: center;
  }

  .hero .hero-image {
    margin-top: 3rem;
  }
}

@keyframes morphShape {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }

  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }

  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
  }

  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }

  100% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.about .about-image {
  position: relative;
}

.about .about-image img {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 15px;
}

[data-theme="dark"] .about .about-image img {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  filter: brightness(0.9);
}

.about .about-content {
  padding-left: 2rem;
  transition: color 0.3s ease;
}

@media (max-width: 991.98px) {
  .about .about-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}

.about .about-content .subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
  transition: color 0.3s ease;
}

.about .about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.about .about-content .lead {
  font-size: 1.1rem;
  color: var(--default-color);
  opacity: 0.85;
  transition: color 0.3s ease;
}

.about .personal-info {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

[data-theme="dark"] .about .personal-info {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  background-color: var(--surface-color);
}

.about .personal-info .info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about .personal-info .info-item .label {
  font-size: 0.875rem;
  color: var(--default-color);
  opacity: 0.7;
  transition: color 0.3s ease;
}

.about .personal-info .info-item .value {
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.about .signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

[data-theme="dark"] .about .signature {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  background-color: var(--surface-color);
}

.about .signature .signature-image {
  max-width: 150px;
  filter: brightness(1);
  transition: filter 0.3s ease;
}

[data-theme="dark"] .about .signature .signature-image {
  filter: brightness(1.2);
}

.about .signature .signature-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.about .signature .signature-info p {
  font-size: 0.875rem;
  color: var(--default-color);
  opacity: 0.7;
  margin: 0;
  transition: color 0.3s ease;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .skill-box {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.skills .skill-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.skills .skill-box p {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  opacity: 0.6;
}

.skills .skill-box .progress {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50px;
  height: 8px;
  margin-top: 5px;
  overflow: hidden;
}

.skills .skill-box .progress .progress-bar {
  background-color: var(--accent-color);
  height: 100%;
  position: relative;
  border-radius: 50px;
  transition: 0.9s;
  width: 1px;
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-wrapper .resume-block {
  margin-bottom: 3rem;
}

.resume .resume-wrapper .resume-block:last-child {
  margin-bottom: 0;
}

.resume .resume-wrapper .resume-block h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.resume .resume-wrapper .resume-block h2 span {
  color: var(--accent-color);
}

.resume .resume-wrapper .resume-block .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
}

.resume .resume-wrapper .timeline {
  position: relative;
}

.resume .resume-wrapper .timeline::before {
  content: "";
  position: absolute;
  left: 20%;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.resume .resume-wrapper .timeline .timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}

.resume .resume-wrapper .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-left {
  width: 20%;
  padding-right: 3rem;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-left .company {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-left .period {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: calc(20% + 1px);
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right {
  width: 70%;
  padding-left: 3rem;
  margin-top: -4px;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right .position {
  color: var(--heading-color);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right .description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right ul {
  padding-left: 15px;
}

.resume .resume-wrapper .timeline .timeline-item .timeline-right ul li {
  padding-bottom: 12px;
}

@media (max-width: 992px) {
  .resume .resume-wrapper .resume-block h2 {
    font-size: 2rem;
  }

  .resume .resume-wrapper .timeline::before {
    left: 1rem;
  }

  .resume .resume-wrapper .timeline .timeline-item {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .resume .resume-wrapper .timeline .timeline-item .timeline-left {
    width: 100%;
    text-align: left;
    padding-right: 0;
    padding-left: 2.5rem;
    margin-bottom: 1.6rem;
    margin-top: -4px;
  }

  .resume .resume-wrapper .timeline .timeline-dot {
    left: calc(1rem + 1px);
  }

  .resume .resume-wrapper .timeline .timeline-item .timeline-right {
    width: 100%;
    padding-left: 2.5rem;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-container {
  margin-bottom: 40px;
}

.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 30px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  color: var(--default-color);
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.portfolio .portfolio-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.portfolio .portfolio-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-card:hover .portfolio-overlay .portfolio-actions {
  transform: translateY(0);
}

.portfolio .portfolio-card .portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio .portfolio-card .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
}

.portfolio .portfolio-card .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions {
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a {
  width: 45px;
  height: 45px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio .portfolio-card .portfolio-content {
  padding: 25px;
}

.portfolio .portfolio-card .portfolio-content .category {
  font-size: 14px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.portfolio .portfolio-card .portfolio-content h3 {
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.portfolio .portfolio-card .portfolio-content h3:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-card .portfolio-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    padding: 6px 15px;
  }

  .portfolio .portfolio-card .portfolio-content {
    padding: 20px;
  }

  .portfolio .portfolio-card .portfolio-content h3 {
    font-size: 18px;
  }

  .portfolio .portfolio-card .portfolio-content p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonials .testimonial-item .profile {
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.services .servies-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.services .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.services .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.services .service-item:hover {
  transform: scale(1.05);
}

.services .service-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 15px;
}

.services .service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.services .service-item h3 a {
  color: var(--heading-color);
}

.services .service-item h3 a:hover {
  color: var(--accent-color);
}

.services .service-item p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

@media (max-width: 991px) {
  .services h2 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .section-category {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact .content h2 {
  font-weight: 700;
  line-height: 1.2;
}

.contact .content .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.contact .contact-info .info-item {
  font-size: 1.1rem;
}

.contact .contact-info .info-item i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.contact .contact-info .map-link {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact .contact-info .map-link i {
  transition: transform 0.3s ease;
}

.contact .contact-info .map-link:hover {
  color: var(--accent-color);
}

.contact .contact-info .map-link:hover i {
  transform: translateX(5px);
}

.contact .contact-form {
  background-color: var(--surface-color);
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.75rem 1.25rem;
  border-color: #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact .contact-form .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.contact .contact-form .btn-submit:active {
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-details-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.service-details .service-details-slider .swiper-wrapper {
  height: auto !important;
}

.service-details .service-details-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 2;
}

.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--contrast-color);
  opacity: 0.5;
  transition: 0.3s;
}

.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 20px;
  border-radius: 5px;
}

.service-details .content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-details .content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.service-details .content .features .feature-box {
  padding: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: 0.3s;
}

.service-details .content .features .feature-box:hover {
  transform: translateY(-5px);
}

.service-details .content .features .feature-box i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 15px;
}

.service-details .content .features .feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.service-details .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.service-details .service-info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .service-info .info-item {
  margin-bottom: 25px;
}

.service-details .service-info .info-item:last-child {
  margin-bottom: 0;
}

.service-details .service-info .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.service-details .service-info .info-item h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.service-details .service-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.service-details .related-services {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.service-details .related-services h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .related-services .service-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .related-services .service-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-details .related-services .service-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.service-details .related-services .service-item h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-details .related-services .service-item h5 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.service-details .related-services .service-item h5 a:hover {
  color: var(--accent-color);
}

.service-details .related-services .service-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-size: 14px;
}

@media (max-width: 991px) {

  .service-details .service-info,
  .service-details .related-services {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  padding: 2rem 0;
  background-color: var(--background-color);
}


.btn-curve {
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 100px 8px 100px 8px;
  transition: all 0.3s ease;
}
.btn-whatsapp {
  background-color: green;
  color: var(--contrast-color);
}
.btn-view {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.product .product-img .product-label {
    position: absolute;
    top: 15px;
    right: 15px;
}

.product .product-img .product-label>span {
    border: 2px solid;
    padding: 10px 10px;
    font-size: 12px;
}

.sale {
    color: #D10024;
    text-decoration: line-through;
}

.product .product-img .product-label>span.new {
    background-color: #D10024;
    border-color: #D10024;
    color: #FFF;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
    margin-bottom: 30px;
  }

  .shiping-details {
    margin-bottom: 30px;
  }

  .order-details {
    position: relative;
    padding: 0px 30px 30px;
    border-right: 1px solid #E4E7ED;
    border-left: 1px solid #E4E7ED;
    border-bottom: 1px solid #E4E7ED;
  }

  .order-details:before {
    content: "";
    position: absolute;
    left: -1px;
    right: -1px;
    top: -15px;
    height: 30px;
    border-top: 1px solid #E4E7ED;
    border-left: 1px solid #E4E7ED;
    border-right: 1px solid #E4E7ED;
  }

  .order-summary {
    margin: 15px 0px;
  }

  .order-summary .order-col {
    display: table;
    width: 100%;
  }

  .order-summary .order-col:after {
    content: "";
    display: block;
    clear: both;
  }

  .order-summary .order-col>div {
    display: table-cell;
    padding: 10px 0px;
  }

  .order-summary .order-col>div:first-child {
    width: calc(100% - 150px);
  }

  .order-summary .order-col>div:last-child {
    width: 150px;
    text-align: right;
  }

  .order-summary .order-col .order-total {
    font-size: 24px;
    color: #D10024;
  }

  .order-details .payment-method {
    margin: 30px 0px;
  }

  .order-details .order-submit {
    display: block;
    margin-top: 30px;
  }

/*--------------------------------------------------------------
# Welcome Page - Simplified UI Styles
--------------------------------------------------------------*/

/* Hero Section */
.hero-section {
  padding: 80px 0 80px;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero-section .min-vh-100 {
  min-height: calc(100vh - 80px);
}

/* Reduce top padding on larger screens */
@media (min-width: 992px) {
  .hero-section {
    padding: 50px 0 80px;
  }

  .hero-section .min-vh-100 {
    min-height: calc(100vh - 50px);
  }
}

@media (min-width: 1200px) {
  .hero-section {
    padding: 45px 0 80px;
  }

  .hero-section .min-vh-100 {
    min-height: calc(100vh - 45px);
  }
}

/* Ensure no extra spacing from main element */
.main {
  margin-top: 0;
  padding-top: 0;
}

/* Ensure hero section starts immediately after header */
.hero-section:first-child {
  margin-top: 0;
  padding-top: 40px;
}

@media (min-width: 992px) {
  .hero-section:first-child {
    padding-top: 45px;
  }
}

@media (min-width: 1200px) {
  .hero-section:first-child {
    padding-top: 40px;
  }
}

.hero-content {
  padding-right: 2rem;
}

@media (min-width: 992px) {
  .hero-content {
    padding-right: 1rem;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    padding-right: 0.5rem;
  }
}

.hero-title {
  font-family: "Poppins", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-family: "Poppins", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero-description {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-actions .btn-primary {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(232, 117, 50, 0.3);
}

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

.hero-actions .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.5rem;
  display: block;
}

.hero-visual {
  text-align: center;
  position: relative;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.hero-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, var(--accent-color), #ff6b35);
  color: var(--contrast-color);
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(232, 117, 50, 0.3);
  text-align: center;
  min-width: 120px;
  animation: pulse 2s infinite;
}

.hero-badge .badge-text {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}

.hero-badge .badge-offer {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced hero stats for better sales appeal */
.hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Enhanced hero actions for better conversion */
.hero-actions .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #ff6b35);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
}

.hero-actions .btn-primary:hover {
  background: linear-gradient(135deg, #ff6b35, var(--accent-color));
  border-color: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(232, 117, 50, 0.4);
}

.hero-actions .btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  font-weight: 600;
}

.hero-actions .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(232, 117, 50, 0.3);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: "Poppins", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Featured Product Section */
.featured-product-section {
  padding: 100px 0;
  background: var(--surface-color);
}

.featured-product-card {
  background: var(--background-color);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.product-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
  transition: transform 0.3s ease;
  display: block;
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-info {
  padding-left: 2rem;
}

.product-name {
  font-family: "Poppins", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
  min-height: 3rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.product-description {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.product-price {
  margin-bottom: 2rem;
}

.price-label {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.price-amount {
  font-family: "Poppins", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: -0.01em;
}

.product-actions .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

/* Promises Section */
.promises-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
}

.promise-card {
  background: var(--background-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}

.promise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.promise-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--contrast-color);
}

.promise-card h4 {
  font-family: "Poppins", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.promise-card p {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: var(--surface-color);
}

.process-timeline {
  margin-top: 3rem;
}

.process-group {
  margin-bottom: 3rem;
}

.process-group-title {
  font-family: "Poppins", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--heading-color);
  text-align: center;
  letter-spacing: -0.01em;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--background-color);
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.process-step:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: "Poppins", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

.step-content h4 {
  font-family: "Poppins", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.step-content p {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

/* Products Section */
.products-section {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
}

.products-filter {
  margin-bottom: 3rem;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}




.product-actions-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.product-actions-bottom .btn {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border: 2px solid #25D366;
}

.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  transform: translateY(-2px);
}

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

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

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--surface-color);
}

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

.contact-title {
  font-family: "Poppins", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.contact-subtitle {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.6;
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--background-color);
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  width: 30px;
  text-align: center;
}

.contact-item a {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item span {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--default-color);
  font-weight: 500;
}

.map-btn {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.map-btn:hover {
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 3rem;
  }

  .product-info {
    padding-left: 0;
    padding-top: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .featured-product-card {
    padding: 2rem;
  }

  .promise-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .featured-product-card {
    padding: 1.5rem;
  }

  .product-name {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 1.5rem;
  }
}

/* Product Filtering Enhancements */
.product-card {
  transition: all 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.product-card.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.product-card.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Ensure initial state */
.products-grid .product-card {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Smooth transitions for filter buttons */
.filter-btn {
  position: relative;
  overflow: hidden;
}

.filter-btn::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 ease;
}

.filter-btn:hover::before {
  left: 100%;
}





/* Ensure header doesn't add extra space */
.header {
  margin-bottom: 0;
}

/* Remove any default margins from first section */
.hero-section:first-of-type {
  margin-top: 0 !important;
}

/* Additional spacing optimizations */
@media (min-width: 768px) {
  .hero-section {
    margin-top: 0;
  }

  .hero-section .container {
    padding-top: 0;
  }
}

/* Extra compact spacing for desktop */
@media (min-width: 992px) {
  .hero-section .row {
    margin-top: 0;
  }

  .hero-section .row.align-items-center {
    align-items: flex-start !important;
    padding-top: 0;
  }

  .hero-visual {
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  .hero-section .container {
    padding-top: 0;
    margin-top: 0;
  }

  .hero-section .row {
    margin-top: 0;
    padding-top: 0;
  }
}

.hero-visual {
  text-align: center;
  position: relative;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Enhanced Header Social Links and Cart */
.header-social-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-right: 1rem;
}

/* Cart Styling */
.cart-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: color 0.2s ease;
  padding: 0.5rem;
}

.cart-link:hover {
  color: var(--text-primary);
  text-decoration: none;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.cart-link:hover .cart-icon {
  color: var(--accent-hover);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--text-primary);
  color: var(--background-color);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 500;
  border: 1px solid var(--background-color);
}

.cart-icon i {
  font-size: 1.1rem;
  color: inherit;
}

.cart-text {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Social Links Styling */
.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--nav-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: 1;
}

.social-link i {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link:hover i {
  color: var(--contrast-color);
}

/* Individual Social Platform Colors */
.social-link.tiktok {
  color: #000000;
}

.social-link.tiktok:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.social-link.facebook {
  color: #1877f2;
}

.social-link.facebook:hover {
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.3);
}

.social-link.instagram {
  color: #e4405f;
}

.social-link.instagram:hover {
  box-shadow: 0 6px 20px rgba(228, 64, 95, 0.3);
}

/* Dark Mode Adjustments */
[data-theme="dark"] .cart-link {
  color: var(--nav-color);
}

[data-theme="dark"] .cart-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

[data-theme="dark"] .social-link {
  color: var(--nav-color);
}

[data-theme="dark"] .social-link:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header-social-links {
    gap: 1rem;
    margin-right: 0.5rem;
  }

  .cart-text {
    font-size: 0.7rem;
  }

  .social-links {
    gap: 0.6rem;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .social-link i {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .header-social-links {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
  }

  .cart-link {
    flex-direction: row;
    gap: 0.5rem;
  }

  .cart-icon {
    margin-bottom: 0;
  }

  .cart-text {
    font-size: 0.8rem;
  }
}

/* Shop List Page Styles */
.shop-hero-section {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  text-align: center;
}

.shop-hero-title {
  font-family: "Poppins", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.shop-hero-subtitle {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  font-weight: 400;
}

.shop-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.shop-hero-stats .stat-item {
  text-align: center;
}

.shop-hero-stats .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.shop-hero-stats .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Products Section */
.products-section {
  padding: 40px 0;
  background: var(--surface-color);
}

.products-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.products-header .section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.products-header .section-subtitle {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Sort Dropdown */
.sort-dropdown .dropdown-toggle {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sort-dropdown .dropdown-toggle:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.sort-dropdown .dropdown-menu {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  min-width: 250px;
}

.sort-dropdown .dropdown-item {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-dropdown .dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.sort-dropdown .dropdown-item i {
  font-size: 0.9rem;
}



/* Product Labels */
.product-labels {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 3;
}

.product-label {
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--contrast-color);
}

.product-label.new {
  background: #2ed573;
}

.product-label.sale {
  background: #ff4757;
}

/* Product Price Styling */
.product-price {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.price-original {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  font-weight: 400;
}

.price-current {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* Pagination Wrapper */
.pagination-wrapper {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

/* Responsive Design */
@media (max-width: 991px) {
  .shop-hero-title {
    font-size: 2.5rem;
  }

  .shop-hero-stats {
    gap: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .shop-hero-section {
    padding: 60px 0 40px;
  }

  .shop-hero-title {
    font-size: 2rem;
  }

  .shop-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .products-header .section-title {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sort-dropdown {
    text-align: center;
    margin-top: 1rem;
  }
}

/* Dark Mode Adjustments */
[data-theme="dark"] .shop-hero-section {
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
}

[data-theme="dark"] .sort-dropdown .dropdown-menu {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

[data-theme="dark"] .sort-dropdown .dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

/* Product Card Improvements */
.product-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: auto;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

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

.product-image {
  position: relative;
  min-height: 250px;
  height: auto;
  overflow: hidden;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.product-image img {
  max-width: 100%;
  max-height: 350px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
  display: block;
}

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

.product-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-brand {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.2rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Compact Specifications */
.product-specs {
  margin-bottom: 1.5rem;
  min-height: 3rem;
}

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

.spec-item {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-description {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.5;
  font-style: italic;
  min-height: 3rem;
  display: flex;
  align-items: center;
}

/* Product Price Styling */
.product-price {
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-original {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  font-weight: 400;
}

.price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* Product Actions */
.product-actions-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}

.product-actions-bottom .btn {
  padding: 1rem 1.5rem;
  border-radius: 15px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: none;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

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

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

/* Responsive adjustments for Bootstrap grid */
@media (max-width: 768px) {
  .product-card {
    min-height: 450px;
  }

  .product-content {
    padding: 1.5rem;
  }

  .product-image {
    height: 200px;
  }

  .specs-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.6rem;
  }
}

/* Products Grid - Bootstrap-based Layout */
.products-grid {
  margin-bottom: 3rem;
}

.products-grid .row {
  margin: 0 -15px;
}

.products-grid .col-xl-4,
.products-grid .col-lg-6,
.products-grid .col-md-6,
.products-grid .col-sm-12 {
  padding: 0 15px;
  margin-bottom: 30px;
}

/* Product Item Spacing */
.product-item {
  height: 100%;
  display: block;
}

.product-item .product-card {
  height: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

/* Ensure proper Bootstrap grid behavior */
@media (min-width: 1200px) {
  .products-grid .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .products-grid .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .products-grid .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .products-grid .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Product View Page Styles */
.product-hero-section {
  padding: 40px 0 20px;
  background: var(--background-color);
}

.breadcrumb-wrapper .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-wrapper .breadcrumb-item a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.breadcrumb-wrapper .breadcrumb-item.active {
  color: var(--default-color);
}

.breadcrumb-wrapper .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: var(--accent-color);
  margin: 0 0.5rem;
}

/* Product Details Section */
.product-details-section {
  padding: 40px 0 80px;
  background: var(--surface-color);
}

/* Product Gallery */
.product-gallery {
  background: var(--background-color);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-image-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.main-image {
  border-radius: 15px;
  overflow: hidden;
  background: var(--background-color);
}

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

.product-labels-main {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 3;
}

.product-labels-main .product-label {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--contrast-color);
}

.product-labels-main .product-label.new {
  background: #2ed573;
}

.product-labels-main .product-label.sale {
  background: #ff4757;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0;
}

.thumbnail-item {
  flex: 0 0 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.thumbnail-item:hover,
.thumbnail-item.active {
  opacity: 1;
  border-color: var(--accent-color);
  transform: scale(1.05);
}

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

/* Product Information */
.product-info {
  background: var(--background-color);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.product-header {
  margin-bottom: 2rem;
}

.product-header .product-brand {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.product-header .product-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
  margin: 0;
}

/* Product Pricing */
.product-pricing {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
}

.price-original {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.price-current {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.discount-badge {
  display: inline-block;
  background: var(--button-primary);
  color: var(--button-text);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Product Actions */
.product-actions {
  margin-bottom: 1rem;
}

.quantity-selector {
  margin-bottom: 1rem;
}

.quantity-selector label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
}

.quantity-input {
  display: flex;
  align-items: center;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 0.8rem 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.qty-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.quantity-input input {
  border: none;
  text-align: center;
  padding: 0.8rem;
  width: 80px;
  font-size: 1.1rem;
  font-weight: 600;
}

.quantity-input input:focus {
  outline: none;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.action-buttons .btn {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: none;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

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

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

/* Product Features */
.product-features {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
}

.product-features h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--default-color);
}

.feature-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

/* Delivery and Contact Info */
.delivery-info,
.contact-info {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.delivery-info h5,
.contact-info h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.delivery-info h5 i,
.contact-info h5 i {
  color: var(--accent-color);
}

.delivery-info p,
.contact-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--default-color);
  line-height: 1.5;
}

.phone-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.phone-link:hover {
  text-decoration: underline;
}

/* Product Description Section */
.product-description-section {
  background: var(--background-color);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.description-tabs .nav-tabs {
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 2rem;
}

.description-tabs .nav-link {
  border: none;
  color: var(--default-color);
  font-weight: 500;
  padding: 1rem 1.5rem;
  margin-right: 1rem;
  border-radius: 10px 10px 0 0;
  transition: all 0.3s ease;
}

.description-tabs .nav-link:hover {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.description-tabs .nav-link.active {
  color: var(--accent-color);
  background: var(--background-color);
  border-bottom: 3px solid var(--accent-color);
}

.tab-content {
  padding: 1rem 0;
}

.description-content,
.specifications-content {
  line-height: 1.6;
  color: var(--default-color);
}

.specs-list {
  display: grid;
  gap: 1rem;
}

.spec-item {
  padding: 1rem;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.spec-label {
  font-weight: 500;
  color: var(--heading-color);
}

/* Responsive Design */
@media (max-width: 991px) {
  .product-gallery,
  .product-info {
    margin-bottom: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .product-header .product-title {
    font-size: 1.8rem;
  }

  .price-current {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .product-details-section {
    padding: 20px 0 40px;
  }

  .product-gallery,
  .product-info {
    padding: 1.5rem;
  }

  .thumbnail-gallery {
    gap: 0.5rem;
  }

  .thumbnail-item {
    flex: 0 0 60px;
    height: 60px;
  }

  .action-buttons .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Featured Product Card - Simplified */
.featured-product-card {
  background: var(--background-color);
  border-radius: 25px;
  padding: 3rem;
  margin-top: 2rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  box-shadow: none !important;
}

.featured-product-card .col-lg-6 {
  box-shadow: none !important;
  background: transparent !important;
}

.featured-product-card .col-lg-6 .product-info {
  box-shadow: none !important;
  background: transparent !important;
}

.featured-product-card .product-image-wrapper {
  position: relative;
  text-align: center;
}

.featured-product-card .product-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.featured-product-card .product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-product-card .product-info {
  padding-left: 2rem;
  box-shadow: none;
  background: transparent;
}

.featured-product-card .product-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.featured-product-card .product-specs {
  margin-bottom: 1.5rem;
  text-align: center;
}

.featured-product-card .specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.featured-product-card .spec-item {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-product-card .product-price {
  margin-bottom: 2rem;
  text-align: center;
}

.featured-product-card .price-label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.featured-product-card .price-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.featured-product-card .original-price {
  display: block;
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  text-decoration: line-through;
  font-weight: 400;
}

.featured-product-card .product-actions {
  text-align: center;
}

.featured-product-card .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.featured-product-card .btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .featured-product-card {
    padding: 2rem;
  }

  .featured-product-card .product-info {
    padding-left: 0;
    padding-top: 2rem;
    text-align: center;
  }

  .featured-product-card .product-name {
    font-size: 1.5rem;
  }

  .featured-product-card .price-amount {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .featured-product-card {
    padding: 1.5rem;
  }

  .featured-product-card .product-name {
    font-size: 1.3rem;
  }

  .featured-product-card .price-amount {
    font-size: 1.8rem;
  }
}

/* ==========================================
   COMPREHENSIVE MOBILE & RESPONSIVE DESIGN
   ========================================== */

/* Base Mobile-First Approach */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container Responsiveness */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Typography Responsiveness */
h1, .h1 {
  font-size: 2rem;
  line-height: 1.2;
}

h2, .h2 {
  font-size: 1.75rem;
  line-height: 1.3;
}

h3, .h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

h4, .h4 {
  font-size: 1.25rem;
  line-height: 1.4;
}

h5, .h5 {
  font-size: 1.1rem;
  line-height: 1.4;
}

h6, .h6 {
  font-size: 1rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  h1, .h1 { font-size: 2.5rem; }
  h2, .h2 { font-size: 2rem; }
  h3, .h3 { font-size: 1.75rem; }
  h4, .h4 { font-size: 1.5rem; }
  h5, .h5 { font-size: 1.25rem; }
  h6, .h6 { font-size: 1.1rem; }
}

@media (min-width: 1200px) {
  h1, .h1 { font-size: 3rem; }
  h2, .h2 { font-size: 2.5rem; }
  h3, .h3 { font-size: 2rem; }
  h4, .h4 { font-size: 1.75rem; }
  h5, .h5 { font-size: 1.5rem; }
  h6, .h6 { font-size: 1.25rem; }
}

/* Navigation Responsiveness */
.navbar {
  padding: 0.5rem 1rem;
}

.navbar-brand {
  font-size: 1.25rem;
}

.navbar-nav .nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--background-color);
    border-radius: 10px;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .dropdown-menu {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .dropdown-menu .dropdown-item {
    padding: 0.5rem 2rem;
    color: var(--default-color);
  }
}

@media (min-width: 992px) {
  .navbar {
    padding: 1rem 2rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

/* Hero Section Responsiveness */
.hero-section {
  padding: 2rem 0;
  min-height: 60vh;
}

.hero-content {
  text-align: center;
  padding: 1rem;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.hero-actions {
  flex-direction: column;
  gap: 1rem;
}

.hero-actions .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
}

.hero-stats {
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  font-size: 1.5rem;
}

.hero-stats .stat-label {
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 3rem 0;
    min-height: 70vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }

  .hero-actions .btn {
    width: auto;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .hero-section {
    padding: 4rem 0;
    min-height: 80vh;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }
}

@media (min-width: 1200px) {
  .hero-section {
    padding: 5rem 0;
    min-height: 90vh;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.6rem;
  }

  .hero-description {
    font-size: 1.2rem;
  }
}

/* Featured Product Section Responsiveness */
.featured-product-section {
  padding: 2rem 0;
}

.section-header {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 0.9rem;
}

.featured-product-card {
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.featured-product-card .product-name {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.featured-product-card .price-amount {
  font-size: 1.8rem;
}

.featured-product-card .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .featured-product-section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .featured-product-card {
    padding: 2rem;
  }

  .featured-product-card .product-name {
    font-size: 1.5rem;
  }

  .featured-product-card .price-amount {
    font-size: 2rem;
  }

  .featured-product-card .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .featured-product-section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .featured-product-card {
    padding: 3rem;
  }

  .featured-product-card .product-name {
    font-size: 1.8rem;
  }

  .featured-product-card .price-amount {
    font-size: 2.5rem;
  }
}

/* Products Grid Responsiveness */
.products-grid {
  gap: 1rem;
  margin-bottom: 2rem;
}

.products-grid .col-xl-4,
.products-grid .col-lg-6,
.products-grid .col-md-6,
.products-grid .col-sm-12 {
  padding: 0 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .products-grid {
    gap: 1.5rem;
  }

  .products-grid .col-xl-4,
  .products-grid .col-lg-6,
  .products-grid .col-md-6,
  .products-grid .col-sm-12 {
    padding: 0 0.75rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .products-grid {
    gap: 2rem;
  }

  .products-grid .col-xl-4,
  .products-grid .col-lg-6,
  .products-grid .col-md-6,
  .products-grid .col-sm-12 {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .products-grid {
    gap: 2.5rem;
  }

  .products-grid .col-xl-4,
  .products-grid .col-lg-6,
  .products-grid .col-md-6,
  .products-grid .col-sm-12 {
    padding: 0 1.5rem;
    margin-bottom: 2.5rem;
  }
}

/* Product Cards Responsiveness */
.product-card {
  min-height: 350px;
}

.product-content {
  padding: 1rem;
}

.product-title {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.product-price {
  margin: 0.75rem 0;
}

.price-current {
  font-size: 1.1rem;
}

.product-actions-bottom {
  gap: 0.75rem;
}

.product-actions-bottom .btn {
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
}

@media (min-width: 576px) {
  .product-card {
    min-height: 380px;
  }

  .product-content {
    padding: 1.2rem;
  }

  .product-title {
    font-size: 1.1rem;
  }

  .price-current {
    font-size: 1.2rem;
  }

  .product-actions-bottom .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (min-width: 768px) {
  .product-card {
    min-height: 420px;
  }

  .product-content {
    padding: 1.5rem;
  }

  .product-title {
    font-size: 1.2rem;
  }

  .price-current {
    font-size: 1.3rem;
  }

  .product-actions-bottom .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) {
  .product-card {
    min-height: 450px;
  }

  .product-content {
    padding: 1.8rem;
  }

  .product-title {
    font-size: 1.3rem;
  }

  .price-current {
    font-size: 1.4rem;
  }

  .product-actions-bottom .btn {
    padding: 1rem 1.8rem;
    font-size: 1rem;
  }
}

/* Promises Section Responsiveness */
.promises-section {
  padding: 2rem 0;
}

.promises-section .row {
  gap: 1rem;
}

.promise-card {
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.promise-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.promise-card p {
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .promises-section {
    padding: 3rem 0;
  }

  .promises-section .row {
    gap: 1.5rem;
  }

  .promise-card {
    padding: 2rem;
    margin-bottom: 0;
  }

  .promise-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .promise-card p {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .promises-section {
    padding: 4rem 0;
  }

  .promises-section .row {
    gap: 2rem;
  }

  .promise-card {
    padding: 2.5rem;
  }

  .promise-card h4 {
    font-size: 1.5rem;
  }

  .promise-card p {
    font-size: 1.1rem;
  }
}

/* Process Section Responsiveness */
.process-section {
  padding: 2rem 0;
}

.process-step {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .process-section {
    padding: 3rem 0;
  }

  .process-step {
    padding: 2rem;
    margin-bottom: 0;
  }

  .process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .process-step p {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .process-section {
    padding: 4rem 0;
  }

  .process-step {
    padding: 2.5rem;
  }

  .process-step h4 {
    font-size: 1.5rem;
  }

  .process-step p {
    font-size: 1.1rem;
  }
}

/* Contact Section Responsiveness */
.contact-section {
  padding: 2rem 0;
}

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

.contact-title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.contact-subtitle {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.contact-item {
  padding: 1rem;
  margin-bottom: 1rem;
}

.contact-item i {
  font-size: 1.2rem;
  width: 25px;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }

  .contact-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .contact-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .contact-item {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .contact-item i {
    font-size: 1.4rem;
    width: 30px;
  }
}

@media (min-width: 992px) {
  .contact-section {
    padding: 4rem 0;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }

  .contact-item {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .contact-item i {
    font-size: 1.5rem;
    width: 35px;
  }
}

/* Shop Pages Responsiveness */
.shop-hero-section {
  padding: 2rem 0;
}

.shop-hero-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.shop-hero-subtitle {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.shop-hero-stats {
  flex-direction: column;
  gap: 1rem;
}

.shop-hero-stats .stat-number {
  font-size: 1.5rem;
}

.shop-hero-stats .stat-label {
  font-size: 0.8rem;
}

.products-section {
  padding: 1rem 0;
}

.products-header .section-title {
  font-size: 1.75rem;
}

.products-header .section-subtitle {
  font-size: 0.9rem;
}

.sort-dropdown {
  text-align: center;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .shop-hero-section {
    padding: 3rem 0;
  }

  .shop-hero-title {
    font-size: 2.5rem;
  }

  .shop-hero-subtitle {
    font-size: 1.1rem;
  }

  .shop-hero-stats {
    flex-direction: row;
    gap: 2rem;
  }

  .shop-hero-stats .stat-number {
    font-size: 2rem;
  }

  .shop-hero-stats .stat-label {
    font-size: 0.9rem;
  }

  .products-section {
    padding: 1.5rem 0;
  }

  .products-header .section-title {
    font-size: 2rem;
  }

  .products-header .section-subtitle {
    font-size: 1rem;
  }

  .sort-dropdown {
    text-align: right;
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .shop-hero-section {
    padding: 4rem 0;
  }

  .shop-hero-title {
    font-size: 3rem;
  }

  .shop-hero-subtitle {
    font-size: 1.2rem;
  }

  .shop-hero-stats .stat-number {
    font-size: 2.5rem;
  }

  .products-section {
    padding: 2rem 0;
  }

  .products-header .section-title {
    font-size: 2.5rem;
  }

  .products-header .section-subtitle {
    font-size: 1.1rem;
  }
}

/* Product View Page Responsiveness */
.product-hero-section {
  padding: 2rem 0;
}

.product-details-section {
  padding: 2rem 0;
}

.product-gallery {
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.product-info {
  padding: 1.5rem;
}

.product-header .product-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.product-pricing {
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2rem;
}

.quantity-input {
  width: 100%;
  max-width: 200px;
}

.action-buttons .btn {
  width: 100%;
  margin-bottom: 0.5rem;
}

.thumbnail-gallery {
  gap: 0.5rem;
}

.thumbnail-item {
  flex: 0 0 60px;
  height: 60px;
}

@media (min-width: 768px) {
  .product-hero-section {
    padding: 3rem 0;
  }

  .product-details-section {
    padding: 3rem 0;
  }

  .product-gallery {
    padding: 2rem;
    margin-bottom: 0;
  }

  .product-info {
    padding: 2rem;
  }

  .product-header .product-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .product-pricing {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .action-buttons .btn {
    width: auto;
    margin-bottom: 0;
  }

  .thumbnail-gallery {
    gap: 1rem;
  }

  .thumbnail-item {
    flex: 0 0 80px;
    height: 80px;
  }
}

@media (min-width: 992px) {
  .product-hero-section {
    padding: 4rem 0;
  }

  .product-details-section {
    padding: 4rem 0;
  }

  .product-gallery {
    padding: 2.5rem;
  }

  .product-info {
    padding: 2.5rem;
  }

  .product-header .product-title {
    font-size: 2rem;
  }

  .product-pricing {
    padding: 2rem;
  }

  .price-amount {
    font-size: 3rem;
  }
}

/* Utility Classes for Responsiveness */
.d-none-mobile {
  display: none;
}

.d-block-mobile {
  display: block;
}

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

  .d-block-mobile {
    display: none;
  }
}

/* Touch-Friendly Elements */
@media (max-width: 768px) {
  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  input, select, textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .dropdown-toggle::after {
    margin-left: 0.5rem;
  }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .product-image,
  .hero-image,
  .featured-product-card .product-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hero-actions,
  .product-actions,
  .btn,
  .dropdown-menu {
    display: none !important;
  }

  .container {
    max-width: none !important;
    width: 100% !important;
  }

  .hero-section,
  .featured-product-section,
  .products-section {
    padding: 1rem 0 !important;
  }

  .product-card {
    break-inside: avoid;
    margin-bottom: 1rem !important;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark Mode Responsiveness */
@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #1a1a1a;
    --surface-color: #2d2d2d;
    --heading-color: #ffffff;
    --default-color: #e0e0e0;
    --accent-color: #4a9eff;
    --contrast-color: #ffffff;
  }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.dropdown-item:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--accent-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Mobile Navigation Toggle - Cleaned up */
.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--heading-color);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
  z-index: 1001;
}

.mobile-nav-toggle:hover {
  color: var(--accent-color);
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navmenu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background-color);
    border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .navmenu.mobile-nav-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navmenu ul {
    padding: 1rem 0;
    margin: 0;
    list-style: none;
  }

  .navmenu > ul > li {
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu > ul > li:last-child {
    border-bottom: none;
  }

  .navmenu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--default-color);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .navmenu a:hover,
  .navmenu a.active {
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 5%);
  }

  .navmenu .dropdown > a {
    position: relative;
  }

  .navmenu .dropdown > a .toggle-dropdown {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }

  .navmenu .dropdown.active > a .toggle-dropdown {
    transform: translateY(-50%) rotate(180deg);
  }

  .navmenu .dropdown ul {
    background: color-mix(in srgb, var(--accent-color), transparent 5%);
    padding-left: 2rem;
  }

  .navmenu .dropdown ul li {
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 20%);
  }

  .navmenu .dropdown ul li:last-child {
    border-bottom: none;
  }

  .navmenu .dropdown ul a {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }
}

/* Scrolled Header State */
.header.scrolled {
  background: var(--background-color);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

/* Mobile-First Grid System Overrides */
@media (max-width: 575.98px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .row {
    margin-left: -5px;
    margin-right: -5px;
  }

  .col,
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
  .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .col,
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
  .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Enhanced Touch Targets for Mobile */
@media (max-width: 768px) {
  .btn {
    min-height: 48px;
    min-width: 48px;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

  .dropdown-toggle {
    min-height: 48px;
    padding: 0.75rem 1rem;
  }

  .form-control,
  .form-select {
    min-height: 48px;
    font-size: 16px;
  }

  /* Prevent horizontal scrolling */
  .row {
    flex-wrap: wrap;
  }

  /* Ensure images don't overflow */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Better table handling on mobile */
  .table-responsive {
    border: none;
    margin-bottom: 1rem;
  }

  .table-responsive .table {
    font-size: 0.9rem;
  }

  /* Improved card spacing on mobile */
  .card {
    margin-bottom: 1rem;
  }

  .card-body {
    padding: 1rem;
  }

  /* Better modal handling on mobile */
  .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }

  .modal-body {
    padding: 1rem;
  }

  /* Improved pagination on mobile */
  .pagination {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .pagination .page-link {
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 50vh;
    padding: 1.5rem 0;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .featured-product-card {
    padding: 1rem;
  }

  .products-section {
    padding: 1rem 0;
  }
}

/* High DPI Mobile Devices */
@media (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px) {
  .btn,
  .nav-link,
  .dropdown-toggle {
    -webkit-tap-highlight-color: transparent;
  }

  .btn:active,
  .nav-link:active,
  .dropdown-toggle:active {
    -webkit-tap-highlight-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
}

/* Accessibility Improvements for Mobile */
@media (max-width: 768px) {
  /* Ensure sufficient color contrast */
  .text-muted {
    color: var(--default-color) !important;
  }

  /* Better focus indicators */
  .btn:focus,
  .nav-link:focus,
  .dropdown-toggle:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
  }

  /* Improved text readability */
  p, li, span {
    line-height: 1.6;
  }

  /* Better spacing for touch interfaces */
  .list-group-item {
    padding: 1rem;
    margin-bottom: 0.5rem;
  }

  /* Improved form layout */
  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-label {
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
}

/* ==========================================
   CSS VARIABLES & THEME SYSTEM
   ========================================== */

:root {
  /* Light Theme Colors */
  --background-color: #ffffff;
  --surface-color: #f8f9fa;
  --heading-color: #2c3e50;
  --default-color: #6c757d;
  --accent-color: #007bff;
  --contrast-color: #ffffff;
  --border-color: #dee2e6;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --text-muted: #6c757d;
  --link-color: #007bff;
  --link-hover-color: #0056b3;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
}

[data-theme="dark"] {
  /* Dark Theme Colors */
  --background-color: #1a1a1a;
  --surface-color: #2d2d2d;
  --heading-color: #ffffff;
  --default-color: #e0e0e0;
  --accent-color: #4a9eff;
  --contrast-color: #ffffff;
  --border-color: #404040;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --text-muted: #b0b0b0;
  --link-color: #4a9eff;
  --link-hover-color: #66b3ff;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
}

/* Theme Transition */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ==========================================
   COMPREHENSIVE MOBILE & RESPONSIVE DESIGN
   ========================================== */




/* Minimalist Product Cards - 3 Column Layout */
.product-card {
  overflow: hidden;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.product-image {
  width: 100%;
  min-height: 200px;
  height: auto;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.product-image img {
  max-width: 100%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Background Lazy Loading */
.lazy-image {
  opacity: 0;
  background-color: var(--accent-secondary);
}

.lazy-image.loaded {
  opacity: 1;
  background-color: transparent;
}

.product-content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.product-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.original-price {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.product-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.product-actions-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: var(--button-primary);
  color: var(--button-text);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Minimalist Grid Layout - 3 Column Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}

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

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

/* Minimalist Search and Filter */
.search-container {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

/* Sortby Component Styling */
.products-header {
  margin-bottom: 1rem;
}

/* Search Box Styling */
.search-box {
  position: relative;
  width: 100%;
}

.search-box .form-control {
  padding-right: 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--surface-color);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.search-box .form-control:focus {
  border-color: var(--button-primary);
  box-shadow: 0 0 0 3px var(--shadow-light);
  outline: none;
}

.search-box .form-control::placeholder {
  color: var(--text-muted);
}

.search-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

/* Mobile Responsive Search */
@media (max-width: 768px) {
  .products-header .row {
    flex-direction: column;
    gap: 1rem;
  }

  .products-header .col-lg-6 {
    width: 100%;
  }

  .brand-filter-dropdown {
    margin-bottom: 1rem;
  }

  .brand-filter-btn {
    width: 100%;
  }

  .search-box {
    margin-bottom: 1rem;
  }

  .sort-dropdown {
    text-align: center;
    width: 100%;
  }
}

/* Brand Filter Dropdown */
.brand-filter-dropdown {
  width: 100%;
}

.brand-filter-btn {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.brand-filter-btn i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.brand-filter-text {
  flex: 1;
  text-align: left;
}

.brand-filter-dropdown .dropdown-menu {
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
}

.brand-filter-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.2s ease;
}

.brand-filter-dropdown .dropdown-item i {
  font-size: 1rem;
  color: #6c757d;
}

.brand-filter-dropdown .dropdown-item.active {
  background-color: #f8f9fa;
  color: #000;
  font-weight: 600;
}

.brand-filter-dropdown .dropdown-item.active i {
  color: #000;
}

.brand-filter-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #000;
}

.brand-filter-dropdown .dropdown-divider {
  margin: 0.5rem 0;
}

/* Add to Cart Button Styling */
.add-to-cart-btn {
  background-color: var(--button-primary);
  color: var(--button-text);
  border: 1px solid var(--button-primary);
  transition: all 0.2s ease;
  font-weight: 500;
}

.add-to-cart-btn:hover {
  background-color: var(--button-primary-hover);
  border-color: var(--button-primary-hover);
  color: var(--button-text);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px var(--shadow-medium);
}

.add-to-cart-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px var(--shadow-light);
}

.add-to-cart-btn i {
  margin-right: 0.5rem;
}

/* Add to Cart Loading and Success States */
.add-to-cart-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

.add-to-cart-btn.success {
  background-color: #28a745 !important;
  border-color: #28a745 !important;
  color: white !important;
}

.add-to-cart-btn.error {
  background-color: #dc3545 !important;
  border-color: #dc3545 !important;
  color: white !important;
}

/* Spinner animation */
.fa-spinner.fa-spin {
  animation: fa-spin 1s infinite linear;
}

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

/* Modern Product Page */
.product-page {
  background-color: white;
  padding: 2rem 0;
}

.product-card-container {
  background-color: transparent;
  padding: 0;
  margin-bottom: 2rem;
}

.breadcrumb-nav {
  margin-bottom: 1rem;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.breadcrumb-item {
  color: var(--text-secondary);
}

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

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

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

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: var(--text-muted);
  margin: 0 0.5rem;
}


/* Product Gallery */
.product-gallery {
  position: relative;
}

.main-image-container {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f8f9fa;
}

.main-product-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image-container:hover .main-product-image {
  transform: scale(1.02);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #dc3545;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.thumbnail-gallery {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.thumbnail-item {
  width: 70px;
  height: 70px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.2s ease;
  background-color: #f8f9fa;
}

.thumbnail-item:hover,
.thumbnail-item.active {
  border-color: #007bff;
  transform: scale(1.05);
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Information */
.product-info {
  padding-left: 2rem;
}

/* Product Price */
.product-price {
  margin-bottom: 1rem;
}

.price-current {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.03em;
}

/* Discount Section */
.discount-section {
  margin-bottom: 1.5rem;
}

.discount-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.original-price {
  font-size: 1.1rem;
  color: #495057;
  text-decoration: line-through;
  font-weight: 500;
}

.discount-amount {
  font-size: 1rem;
  color: #28a745;
  font-weight: 600;
  background-color: #d4edda;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  display: inline-block;
  width: fit-content;
}

.discount-percentage {
  font-size: 1.1rem;
  color: #dc3545;
  font-weight: 700;
  background-color: #f8d7da;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
  border: 2px solid #f5c6cb;
}

/* Product Title */
.product-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
}

/* Special Offer */
.special-offer {
  margin-bottom: 1.5rem;
}

.offer-tag {
  background-color: #f8f9fa;
  color: #495057;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Dark Mode Overrides for Better Contrast */
[data-theme="dark"] .offer-tag {
  background-color: #1a1a1a;
  color: #e0e0e0;
}

[data-theme="dark"] .discount-amount {
  background-color: #1a3d1a;
  color: #90ee90;
}

[data-theme="dark"] .discount-percentage {
  background-color: #3d1a1a;
  color: #ff9999;
}

[data-theme="dark"] .product-description p,
[data-theme="dark"] .expanded-description p,
[data-theme="dark"] .contact-subtitle,
[data-theme="dark"] .contact-info-text,
[data-theme="dark"] .location-section-subtitle,
[data-theme="dark"] .more-info-link,
[data-theme="dark"] .original-price,
[data-theme="dark"] .related-price-original {
  color: var(--text-secondary);
}

[data-theme="dark"] .contact-form-subtitle,
[data-theme="dark"] .description-content {
  color: var(--text-secondary);
}

/* Product Description */
.product-description {
  margin-bottom: 1.5rem;
}

.product-description p {
  color: #495057;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.more-info-link {
  color: #495057;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}

.more-info-link:hover {
  color: #007bff;
  text-decoration: none;
}

.expanded-description {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.expanded-description p {
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Quantity Section */
.quantity-section {
  margin-bottom: 2rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  width: fit-content;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
}

.qty-btn {
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: white;
  transition: background-color 0.2s ease;
}

.qty-btn:hover {
  background-color: #f8f9fa;
}

.quantity-controls input {
  width: 60px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  background-color: white;
}

.quantity-controls input:focus {
  outline: none;
}

/* Dark Mode Overrides for Quantity Controls */
[data-theme="dark"] .quantity-controls {
  background-color: var(--surface-color);
  border-color: var(--border-color);
}

[data-theme="dark"] .qty-btn {
  background-color: var(--surface-color);
  color: var(--text-primary);
}

[data-theme="dark"] .qty-btn:hover {
  background-color: var(--accent-secondary);
}

[data-theme="dark"] .quantity-controls input {
  background-color: var(--surface-color);
  color: var(--text-primary);
}

[data-theme="dark"] .contact-info-title {
  color: var(--text-primary);
}

[data-theme="dark"] .contact-info-text a {
  color: var(--text-primary);
}

[data-theme="dark"] .contact-info-text a:hover {
  color: var(--accent-hover);
}

[data-theme="dark"] .contact-icon {
  color: var(--text-primary);
}

[data-theme="dark"] .contact-form-wrapper {
  background-color: var(--surface-color);
}

[data-theme="dark"] .location-section-title {
  color: var(--text-primary);
}

/* Order Section */
.order-section {
  margin-bottom: 1rem;
}

.add-to-cart-form {
  width: 100%;
}

.order-btn {
  width: 100%;
  background-color: #000;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

.order-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.order-btn i {
  font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-btn {
  width: 100%;
  background-color: #25D366;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn i {
  font-size: 1.1rem;
}

/* Product Features */
.product-features {
  margin-bottom: 1rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.feature-item i {
  color: var(--button-primary);
  font-size: 1.1rem;
}

/* Product Description */
.product-description-section {
  margin-top: 1rem;
  padding-top: 1rem;
}

.product-description-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.description-content {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-page {
    padding: 1rem 0;
  }

  .product-card-container {
    padding: 0;
    margin: 0 0 2rem 0;
  }

  .product-info {
    padding-left: 0;
    margin-top: 2rem;
  }

  .product-title {
    font-size: 1.3rem;
  }

  .price-current {
    font-size: 2.5rem;
  }

  .discount-info {
    gap: 0.4rem;
  }

  .original-price {
    font-size: 1rem;
  }

  .discount-amount {
    font-size: 0.9rem;
    padding: 0.2rem 0.6rem;
  }

  .discount-percentage {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }

  .main-product-image {
    height: 300px;
  }

  .thumbnail-item {
    width: 60px;
    height: 60px;
  }

  .order-btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .whatsapp-btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .quantity-controls {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .product-card-container {
    padding: 0;
    margin: 0 0 1.5rem 0;
  }

  .product-title {
    font-size: 1.2rem;
  }

  .price-current {
    font-size: 2rem;
  }

  .original-price {
    font-size: 0.9rem;
  }

  .discount-amount {
    font-size: 0.85rem;
    padding: 0.15rem 0.5rem;
  }

  .discount-percentage {
    font-size: 0.9rem;
    padding: 0.3rem 0.7rem;
  }

  .main-product-image {
    height: 250px;
  }

  .thumbnail-gallery {
    gap: 0.5rem;
  }

  .thumbnail-item {
    width: 50px;
    height: 50px;
  }

  .order-btn,
  .whatsapp-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* Related Products Section */
.related-products-section {
  margin-top: 3rem;
  padding: 2rem 0;
  background-color: #f8f9fa;
}

.related-products-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 2rem;
  text-align: center;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.related-product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.related-product-link:hover {
  text-decoration: none;
  color: inherit;
}

.related-product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.related-product-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: #dc3545;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.related-product-info {
  padding: 1rem;
}

.related-product-name {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-product-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.related-price-current {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
}

.related-price-original {
  font-size: 0.9rem;
  color: #495057;
  text-decoration: line-through;
}

/* Mobile Responsive for Related Products */
@media (max-width: 768px) {
  .related-products-section {
    margin-top: 2rem;
    padding: 1.5rem 0;
  }

  .related-products-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

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

  .related-product-image {
    height: 150px;
  }

  .related-product-info {
    padding: 0.75rem;
  }

  .related-product-name {
    font-size: 0.9rem;
  }

  .related-price-current {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .related-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
  }

  .related-product-image {
    height: 120px;
  }

  .related-product-info {
    padding: 0.5rem;
  }

  .related-product-name {
    font-size: 0.85rem;
  }

  .related-price-current {
    font-size: 0.9rem;
  }
}

/* Contact Page Styling */
.contact-page {
  padding: 3rem 0;
  background-color: white;
  min-height: 70vh;
}

.contact-header {
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #495057;
  margin: 0;
}

.contact-info-card {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.contact-icon {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1rem;
}

.contact-info-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.75rem;
  font-family: "Inter", sans-serif;
}

.contact-info-text {
  font-size: 1rem;
  color: #495057;
  margin: 0;
  line-height: 1.6;
}

.contact-info-text a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-info-text a:hover {
  color: #007bff;
  text-decoration: none;
}

.location-link {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.location-link:hover {
  color: #007bff;
  text-decoration: none;
}

.location-link i {
  font-size: 0.9rem;
}

.contact-form-wrapper {
  background-color: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
}

.contact-form-subtitle {
  font-size: 1rem;
  color: #495057;
  margin-bottom: 2rem;
}

.contact-form .form-label {
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.contact-form .form-control {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.2s ease;
  background-color: #ffffff;
  color: #000;
}

.contact-form .form-control:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  outline: none;
}

/* Dark Mode Overrides for Form Elements */
[data-theme="dark"] .contact-form .form-label {
  color: var(--text-primary);
}

[data-theme="dark"] .contact-form .form-control {
  background-color: var(--surface-color);
  border-color: var(--border-color);
  color: var(--text-primary);
}

[data-theme="dark"] .contact-form .form-control:focus {
  border-color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .contact-form .form-control::placeholder {
  color: var(--text-muted);
}

[data-theme="dark"] .contact-info-card {
  background-color: var(--surface-color);
}

[data-theme="dark"] .related-product-card {
  background-color: var(--surface-color);
  border-color: var(--border-color);
}

/* Dark Mode Overrides for Product Card Text Elements */
[data-theme="dark"] .product-card .product-brand {
  color: var(--text-primary);
}

[data-theme="dark"] .product-card .product-title,
[data-theme="dark"] .product-card .product-title-link {
  color: var(--text-primary);
}

[data-theme="dark"] .product-card .product-title-link:hover {
  color: var(--accent-hover);
}

[data-theme="dark"] .product-card .product-title-link:hover .product-title {
  color: var(--accent-hover);
}

[data-theme="dark"] .product-card .price-amount {
  color: var(--text-primary);
}

[data-theme="dark"] .product-card .original-price {
  color: var(--text-secondary);
}

[data-theme="dark"] .product-card .product-content {
  color: var(--text-primary);
}

.contact-submit-btn {
  background-color: #000;
  color: white;
  border: none;
  padding: 0.75rem 3rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
}

.contact-submit-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: white;
}

/* Location Section Styling */
.location-section {
  margin-top: 3rem;
}

.location-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  text-align: center;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
}

.location-section-subtitle {
  font-size: 1rem;
  color: #495057;
  margin-bottom: 2rem;
  text-align: center;
}

.map-container {
  position: relative;
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
  width: 100%;
}

.map-overlay-actions {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
}

.get-directions-btn {
  background-color: #000;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.get-directions-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  color: white;
  text-decoration: none;
}

.get-directions-btn i {
  font-size: 1rem;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
  .contact-page {
    padding: 2rem 0;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .contact-form-title {
    font-size: 1.5rem;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .location-section-title {
    font-size: 1.5rem;
  }

  .map-container iframe {
    height: 350px;
  }

  .map-overlay-actions {
    bottom: 0.5rem;
    right: 0.5rem;
  }

  .get-directions-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .contact-page {
    padding: 1.5rem 0;
  }

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

  .contact-title {
    font-size: 1.75rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem 1rem;
  }

  .contact-form-title {
    font-size: 1.3rem;
  }

  .location-section-title {
    font-size: 1.3rem;
  }

  .map-container iframe {
    height: 300px;
  }

  .get-directions-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* WhatsApp Button Styling */
.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: 1px solid #25D366;
  transition: all 0.2s ease;
  font-weight: 500;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  border-color: #128C7E;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp i {
  margin-right: 0.5rem;
}

/* Clickable Product Image and Title */
.product-image-link {
  display: block;
  text-decoration: none;
  transition: all 0.2s ease;
}

.product-image-link:hover {
  text-decoration: none;
}

.product-image-link:hover .product-image {
  box-shadow: var(--shadow-medium);
}

.product-title-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.product-title-link:hover {
  text-decoration: none;
  color: var(--accent-hover);
}

.product-title-link:hover .product-title {
  color: var(--accent-hover);
}

/* Product Actions Layout */
.product-actions-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
}

@media (max-width: 576px) {
  .product-actions-bottom {
    gap: 0.5rem;
  }

  .product-actions-bottom .btn {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
}

.sort-dropdown .btn {
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  background-color: var(--surface-color);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.sort-dropdown .btn:hover {
  background-color: var(--button-secondary);
  border-color: var(--border-dark);
  color: var(--text-primary);
}

.sort-dropdown .dropdown-menu {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: var(--shadow-medium);
  padding: 0.5rem 0;
}

.sort-dropdown .dropdown-item {
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.sort-dropdown .dropdown-item:hover {
  background-color: var(--button-secondary);
  color: var(--text-primary);
}

.sort-dropdown .dropdown-item i {
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

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

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

.filter-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--surface-color);
  color: var(--text-primary);
  font-size: 0.9rem;
}

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

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.page-link:hover {
  background-color: var(--button-secondary);
  color: var(--text-primary);
  border-color: var(--border-dark);
}

.page-link.active {
  background-color: var(--button-primary);
  color: var(--button-text);
  border-color: var(--button-primary);
}

/* Minimalist Loading States */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: var(--text-muted);
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-top: 2px solid var(--button-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 0.5rem;
}

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