/* CSS Main Design System - FastClim */

:root {
  --primary: #0055d4;
  --primary-hover: #0041a3;
  --secondary: #00a2e8;
  --secondary-hover: #008cc9;
  --dark: #07162c;
  --dark-light: #10243e;
  --light-bg: #f6f9fc;
  --white: #ffffff;
  --border: #e2e8f0;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --rating: #ffb800;
  --success: #10b981;
  --danger: #ef4444;
  --whatsapp: #25d366;
  --font-sans: 'Outfit', sans-serif;
  --font-rtl: 'Cairo', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(0, 85, 212, 0.05), 0 2px 10px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 40px rgba(0, 85, 212, 0.08), 0 4px 15px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 25px 50px rgba(0, 85, 212, 0.12), 0 10px 20px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Set Arabic font family when RTL is active */
[dir="rtl"] body,
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select,
[dir="rtl"] button {
  font-family: var(--font-rtl);
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Helper Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--white);
}

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

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

.hidden {
  display: none !important;
}

.margin-top-xs { margin-top: 0.5rem; }
.margin-top-md { margin-top: 1.5rem; }
.margin-top-lg { margin-top: 3rem; }
.margin-bottom-md { margin-bottom: 1.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

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

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

.btn-full {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 85, 212, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 85, 212, 0.35);
}

.btn-secondary {
  background: var(--dark);
  color: var(--white);
  border: none;
}

.btn-secondary:hover {
  background: var(--dark-light);
  transform: translateY(-2px);
}

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

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

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

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

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-danger {
  background-color: var(--danger);
  color: var(--white);
  border: none;
}

.btn-danger:hover {
  background-color: #d32f2f;
}

/* TOP BAR */
.top-bar {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--dark-light);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow: hidden;
}

.contact-info-top {
  display: flex;
  gap: 1.5rem;
}

.contact-info-top span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
}

.delivery-notice {
  font-weight: 500;
  color: var(--secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* HEADER styling */
.main-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-fast {
  color: var(--primary);
}

.logo-clim {
  color: var(--dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

[dir="rtl"] .nav-menu a::after {
  left: auto;
  right: 0;
}

.nav-contact-btn {
  background-color: var(--primary);
  color: var(--white) !important;
  padding: 0.6rem 1.3rem !important;
  border-radius: 50px;
}

.nav-contact-btn::after {
  display: none !important;
}

.nav-contact-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background-color: var(--white);
  color: var(--primary);
}

.lang-switch:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

/* HERO SECTION styling */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 5.5rem 0 13.5rem;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4rem;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 0.8s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  background-color: rgba(0, 85, 212, 0.25);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

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

/* Hero Feature Cards Panel */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(var(--active-cols, 3), 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: var(--max-w, 1100px);
  margin: 0 auto;
  animation: fadeInUp 0.8s ease;
}

.hero-feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition);
}

.feature-text-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-feature-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.12);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  flex-shrink: 0;
}

.hero-feature-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin: 0;
  white-space: nowrap;
}

.hero-feature-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.825rem;
  margin: 0;
  white-space: nowrap;
}

/* SECTION HEADER styling */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.section-header-start {
  margin-bottom: 2.5rem;
}

.section-header-start h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-divider-start {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  margin-top: 1rem;
  border-radius: 2px;
}

/* PRODUCT CARD GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

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

.product-badge {
  position: absolute;
  top: 1.25rem;
  inset-inline-start: 1.25rem;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 85, 212, 0.15);
}

.product-image {
  height: 240px;
  overflow: hidden;
  position: relative;
  background-color: #f7fafc;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--rating);
}

.product-rating span {
  color: var(--text-muted);
  margin-inline-start: 0.5rem;
}

.product-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  height: auto;
  min-height: 48px;
}

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

.product-description-preview {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  height: auto;
  line-height: 1.45;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.product-footer .btn-secondary-outline {
  padding: 0.4rem 0.8rem;
  font-size: 0.775rem;
  white-space: nowrap;
}

.product-price {
  color: var(--primary);
  white-space: nowrap;
}

.price-amount {
  font-size: 1.25rem;
  font-weight: 800;
}

.price-currency {
  font-size: 0.95rem;
  font-weight: 700;
  margin-inline-start: 0.1rem;
}

/* ABOUT US SECTION */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.experience-badge {
  position: absolute;
  bottom: 2rem;
  inset-inline-end: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 85, 212, 0.3);
  text-align: center;
}

.exp-number {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.section-subtitle {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0.5rem;
}

.about-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 1.5rem 0 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature-item {
  display: flex;
  gap: 1rem;
}

.about-feature-item i {
  color: var(--success);
  font-size: 1.4rem;
  margin-top: 0.15rem;
}

.about-feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.about-feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CONTACT SECTION & FORMS */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: opacity 0.3s ease;
}

.contact-form.loading {
  opacity: 0.5;
  pointer-events: none;
}

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

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

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.required {
  color: var(--danger);
  margin-inline-start: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  background-color: var(--light-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 85, 212, 0.1);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 85, 212, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--primary);
  flex-shrink: 0;
}

.info-card-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.info-card-content p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

.quick-whatsapp-card {
  border-color: rgba(37, 211, 102, 0.3);
}

.quick-whatsapp-card .info-card-icon {
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp);
}

.whatsapp-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--whatsapp);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.whatsapp-btn-link:hover {
  color: #1ebe54;
}

/* Alert Banners */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  font-weight: 500;
  animation: fadeIn 0.4s ease;
}

.alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

#featured-products {
  padding-bottom: 2.5rem;
}

#contact {
  padding-top: 2.5rem;
}

/* ALL PRODUCTS PAGE & SIDEBAR */
.products-page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.products-sidebar {
  background-color: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  position: sticky;
  top: 100px;
  z-index: 10;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

/* Custom scrollbar for sidebar */
.products-sidebar::-webkit-scrollbar {
  width: 6px;
}
.products-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.products-sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
.products-sidebar::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.18);
}

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

.sidebar-header h3 {
  font-size: 1.25rem;
}

.sidebar-close-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-muted);
}

.filter-group {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.filter-group:last-of-type {
  border: none;
  padding: 0;
  margin: 0;
}

.filter-group h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

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

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

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

.filter-checkbox-label:hover {
  color: var(--primary);
}

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

.price-range-wrapper input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

.price-range-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mobile-filter-bar {
  display: none;
  margin-bottom: 1.5rem;
}

.products-count-bar {
  background-color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  font-weight: 600;
}

.no-products-alert {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--white);
  border-radius: 20px;
  border: 1px dashed var(--border);
  margin-top: 2rem;
}

.no-products-alert i {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.no-products-alert h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.no-products-alert p {
  color: var(--text-muted);
}

/* PRODUCT DETAIL PAGE */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}

.product-detail-gallery {
  position: sticky;
  top: 100px;
}

.main-product-image-card {
  background-color: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 0;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
  overflow: hidden;
}

.main-product-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
}

.product-detail-category-badge {
  background-color: rgba(0, 85, 212, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  align-self: flex-start;
  margin-bottom: 1rem;
}

.product-detail-info h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.product-detail-rating .stars {
  color: var(--rating);
}

.product-detail-rating span {
  color: var(--text-muted);
  font-weight: 500;
}

.product-detail-price {
  background-color: rgba(0, 85, 212, 0.03);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 85, 212, 0.08);
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.detail-price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.detail-price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.price-tax-notice {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-inline-start: 1rem;
}

.product-detail-description h3,
.product-detail-specs h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.product-detail-description p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.product-detail-specs {
  margin-bottom: 2.5rem;
}

.product-detail-specs ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}

.product-detail-specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.product-detail-specs li i {
  color: var(--success);
}

.product-detail-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.product-delivery-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  gap: 2rem;
}

.pdf-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.pdf-item i {
  color: var(--primary);
  font-size: 1rem;
}

.breadcrumb-nav {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
}

.breadcrumb-nav a {
  color: var(--text-muted);
}

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

.breadcrumb-separator {
  margin: 0 0.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

[dir="rtl"] .breadcrumb-separator {
  transform: rotate(180deg);
}

/* BLOG DIRECTORY & DETAILS */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background-color: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

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

.blog-card-image {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.blog-card-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* BLOG DETAIL PAGE SPECIFIC */
.blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: flex-start;
}

.blog-detail-article {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.blog-detail-header {
  margin-bottom: 2rem;
}

.blog-detail-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-detail-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-detail-header h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
}

.blog-detail-image-card {
  margin-bottom: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-height: 450px;
}

.blog-detail-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-detail-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
}

.blog-detail-content h2 {
  font-size: 1.65rem;
  margin: 2.5rem 0 1rem;
}

.blog-detail-content p {
  margin-bottom: 1.5rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
  margin-bottom: 1.5rem;
  padding-inline-start: 2rem;
}

.blog-detail-content li {
  margin-bottom: 0.5rem;
}

.blog-detail-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.blog-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.blog-keywords strong {
  margin-inline-end: 0.5rem;
  font-size: 0.95rem;
}

.keyword-tag {
  background-color: var(--light-bg);
  color: var(--text-muted);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

.blog-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
}

.blog-cta-widget {
  text-align: center;
  background: linear-gradient(135deg, var(--dark), var(--dark-light));
  color: var(--white);
  border: none;
}

.blog-cta-widget h3 {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
}

.blog-cta-widget p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
}

.blog-cta-widget .cta-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  display: block;
}

.blog-contact-widget .contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.blog-contact-widget .contact-item i {
  font-size: 1.15rem;
  color: var(--primary);
  margin-top: 0.2rem;
}

.blog-contact-widget .contact-item.text-success i {
  color: var(--whatsapp);
}

.blog-contact-widget .contact-item strong {
  display: block;
  font-size: 0.9rem;
}

.blog-contact-widget .contact-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.blog-contact-widget .btn {
  margin-top: 0.5rem;
}

/* LOGIN CARD LAYOUT */
.login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}

.login-card {
  background-color: var(--white);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 440px;
  text-align: center;
}

.login-icon {
  width: 65px;
  height: 65px;
  background-color: rgba(0, 85, 212, 0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.login-card h2 {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}

.login-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: start;
}

[dir="rtl"] .login-form {
  text-align: right;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  top: 50%;
  inset-inline-start: 1.25rem;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.input-with-icon input {
  padding-inline-start: 3rem;
  background-color: var(--light-bg);
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  inset-inline-end: 30px;
  z-index: 99;
  cursor: pointer;
  border-radius: 50%;
  animation: pulseWhatsapp 2s infinite;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-icon-wrapper {
  transform: scale(1.08);
  background-color: #20ba59;
}

.whatsapp-tooltip {
  position: absolute;
  inset-inline-end: 75px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--dark);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  inset-inline-start: 100%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--dark);
}

[dir="rtl"] .whatsapp-tooltip::after {
  inset-inline-start: auto;
  inset-inline-end: 100%;
  border-color: transparent var(--dark) transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* MOBILE RESPONSIVE DRAWER & OVERLAY */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 22, 44, 0.4);
  backdrop-filter: blur(4px);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  inset-inline-end: -320px;
  width: 320px;
  height: 100%;
  background-color: var(--white);
  z-index: 150;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[dir="rtl"] .mobile-nav {
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open {
  transform: translateX(-320px);
}

[dir="rtl"] .mobile-nav.open {
  transform: translateX(320px);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  padding: 0.25rem 0;
}

.mobile-nav-links a.active {
  color: var(--primary);
}

.mobile-nav-footer {
  margin-top: auto;
  padding: 2rem 1.5rem;
  background-color: var(--light-bg);
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.mobile-nav-footer p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-switch-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
  font-weight: 700;
}

/* PAGE HEADER BANNERS */
.page-header-banner {
  background: linear-gradient(135deg, var(--dark), var(--dark-light));
  color: var(--white);
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header-banner h1 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.page-header-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* FOOTER styling */
.main-footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0;
  border-top: 1px solid var(--dark-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-footer .logo-clim {
  color: var(--white);
}

.footer-widget h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  inset-inline-start: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary);
}

.footer-about-text {
  font-size: 0.9rem;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.social-icons a:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.footer-widget ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.925rem;
}

.footer-widget ul a:hover {
  color: var(--white);
  padding-inline-start: 4px;
}

.contact-widget p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-widget p i {
  color: var(--primary);
  margin-top: 0.25rem;
}

.footer-bottom {
  background-color: #040d1b;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

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

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1199px) {
  .hero-container {
    gap: 2.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 4.5rem 0;
  }

  .nav-menu {
    display: none;
  }

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

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-features-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-feature-card h3,
  .hero-feature-card p {
    white-space: normal;
  }

  .about-container,
  .contact-grid,
  .product-detail-layout,
  .blog-detail-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-detail-gallery {
    position: static;
  }

  .main-product-image-card {
    height: 360px;
  }

  .blog-detail-sidebar,
  .blog-detail-sidebar {
    position: static;
  }

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

  /* Responsive filters drawer on mobile */
  .products-sidebar {
    position: fixed;
    top: 0;
    inset-inline-start: -100%;
    width: 300px;
    height: 100vh;
    max-height: 100vh; /* Reset desktop max-height cutoff */
    border-radius: 0;
    border: none;
    z-index: 199;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transition: inset-inline-start 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .products-sidebar.open {
    inset-inline-start: 0;
  }

  .sidebar-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--light-bg);
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    transition: background-color 0.2s, color 0.2s;
  }

  .sidebar-close-btn:hover {
    background-color: var(--border);
    color: var(--danger);
  }

  .mobile-filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
    position: sticky;
    top: 80px;
    background-color: var(--white);
    z-index: 90;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  }

  #mobileFilterBtn {
    width: 100%;
    max-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  /* Filter overlay backdrop */
  .filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(2px);
    z-index: 198;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .filter-overlay.visible {
    opacity: 1;
    visibility: visible;
  }

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

@media (max-width: 767px) {
  .hero-section {
    padding: 5rem 0 14rem !important;
  }

  .top-bar {
    display: none;
  }

  .hero-feature-card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: start;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    box-sizing: border-box;
    width: 100%;
  }

  .feature-text-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-content h1 {
    font-size: 2.15rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

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

  .contact-form-wrapper {
    padding: 2rem;
  }

  .product-detail-specs ul {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.25rem;
  }

  .product-detail-layout {
    padding: 0 1rem;
    gap: 2rem;
  }

  .product-detail-info {
    align-items: center;
    text-align: center;
  }

  .product-detail-category-badge {
    align-self: center;
  }

  .product-detail-rating {
    justify-content: center;
  }

  .product-detail-price {
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 1.5rem;
  }

  .product-detail-description,
  .product-detail-specs {
    text-align: start;
    width: 100%;
  }

  .product-quantity-selector {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #live-total-box {
    width: 100%;
    max-width: 100% !important;
    margin-left: 0;
    margin-right: 0;
    padding: 0.85rem 1.25rem !important;
  }

  #live-total-box > div {
    font-size: 0.92rem !important;
  }

  #live-total-price {
    font-size: 1.45rem !important;
  }

  .product-detail-ctas {
    flex-direction: row;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    gap: 0.75rem;
  }

  .product-detail-ctas .btn {
    flex: 1;
    font-size: 0.85rem;
    padding: 0.8rem 0.5rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
  }

  .product-delivery-features {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
  }

  .pdf-item {
    justify-content: center;
  }

  .blog-detail-article {
    padding: 1.75rem;
  }

  .blog-detail-header h1 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* ==========================================================================
     MOBILE PRODUCTS LAYOUT STYLING (CATALOG 2-COLUMNS VS HOMEPAGE 1-COLUMN)
     ========================================================================== */

  /* Global Product Card Overrides on Mobile */
  .product-card .product-badge {
    display: none !important; /* Hide category badge f all grids on mobile */
  }
  .product-card .product-description-preview {
    display: none !important; /* Hide description on mobile to stay compact */
  }

  /* ---------------------------------------------------------
     1. CATALOG PAGE AND RE-ROUTED GRIDS (2 COLUMNS PER ROW)
     --------------------------------------------------------- */
  #productsGrid,
  .products-page-layout .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }

  #productsGrid .product-card,
  .products-page-layout .product-card {
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
  }

  #productsGrid .product-card .product-image,
  .products-page-layout .product-card .product-image {
    padding: 0 !important;
    height: 125px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
  }

  #productsGrid .product-card .product-image img,
  .products-page-layout .product-card .product-image img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    transform: scale(1.25) !important;
  }

  #productsGrid .product-card .product-info,
  .products-page-layout .product-card .product-info {
    padding: 0.6rem !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.25rem !important;
  }

  #productsGrid .product-card .product-rating,
  .products-page-layout .product-card .product-rating {
    justify-content: center !important;
    font-size: 0.65rem !important;
    gap: 1px !important;
  }

  #productsGrid .product-card .product-title,
  .products-page-layout .product-card .product-title {
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
    height: auto !important; /* SHOW FULL TITLE WITHOUT CLAMPING OR CUT-OFF */
    overflow: visible !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    margin-bottom: 0.25rem !important;
    font-weight: 700 !important;
    width: 100% !important;
  }

  #productsGrid .product-card .product-footer,
  .products-page-layout .product-card .product-footer {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.35rem !important;
    margin-top: 0.25rem !important;
    width: 100% !important;
  }

  #productsGrid .product-card .product-price,
  .products-page-layout .product-card .product-price {
    align-items: center !important;
    width: 100% !important;
    gap: 1px !important;
  }

  #productsGrid .product-card .price-original,
  .products-page-layout .product-card .price-original {
    font-size: 0.7rem !important;
    margin-bottom: 0 !important;
  }

  #productsGrid .product-card .price-amount,
  .products-page-layout .product-card .price-amount {
    font-size: 0.95rem !important;
  }

  #productsGrid .product-card .product-footer .btn,
  .products-page-layout .product-card .product-footer .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.4rem 0.5rem !important;
    font-size: 0.75rem !important;
    border-radius: 6px !important;
  }

  /* ---------------------------------------------------------
     2. HOMEPAGE FEATURED PRODUCTS GRID (1 COLUMN PER ROW)
     --------------------------------------------------------- */
  .featured-products-section .products-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .featured-products-section .product-card {
    border-radius: 16px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
  }

  .featured-products-section .product-card .product-image {
    padding: 0.5rem !important;
    height: 150px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
  }

  .featured-products-section .product-card .product-image img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    transform: scale(1.25) !important;
  }

  .featured-products-section .product-card .product-info {
    padding: 1.25rem !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.5rem !important;
  }

  .featured-products-section .product-card .product-rating {
    justify-content: center !important;
    font-size: 0.8rem !important;
    gap: 2px !important;
  }

  .featured-products-section .product-card .product-title {
    font-size: 0.98rem !important;
    line-height: 1.4 !important;
    height: auto !important; /* SHOW FULL TITLE */
    overflow: visible !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    margin-bottom: 0.5rem !important;
    font-weight: 700 !important;
    width: 100% !important;
  }

  .featured-products-section .product-card .product-footer {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    margin-top: 0.5rem !important;
    width: 100% !important;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
  }

  .featured-products-section .product-card .product-price {
    align-items: flex-start !important;
    width: auto !important;
  }

  .featured-products-section .product-card .price-original {
    font-size: 0.78rem !important;
    margin-bottom: 2px !important;
  }

  .featured-products-section .product-card .price-amount {
    font-size: 1.15rem !important;
  }

  .featured-products-section .product-card .product-footer .btn {
    width: auto !important;
    justify-content: center !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
    border-radius: 8px !important;
  }
}

.contact-card-link,
.footer-link-active {
  color: inherit;
  transition: var(--transition);
  font-weight: 700;
}

.contact-card-link:hover {
  color: var(--primary);
}

.footer-link-active:hover {
  color: var(--white);
}

/* Order Modal Styles */
.order-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.order-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.order-modal-card {
  background-color: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 480px;
  padding: 2.25rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.order-modal-overlay.open .order-modal-card {
  transform: translateY(0);
}

.order-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.order-modal-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  color: var(--dark);
}

.order-modal-close {
  background: none;
  border: none;
  font-size: 1.15rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  transition: var(--transition);
}

.order-modal-close:hover {
  color: var(--dark);
}

.order-product-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--light);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  margin-bottom: 1.25rem;
}

.order-summary-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: contain;
  background-color: var(--white);
  border: 1px solid var(--border-color);
}

.order-summary-info h5 {
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0 0 0.15rem 0;
  color: var(--dark);
}

.order-summary-price {
  font-weight: 800;
  color: var(--primary);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .logo-description {
    display: none !important;
  }
}

/* ABOUT SECTION styling */
.about-section {
  background-color: var(--light);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-wrapper img {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.5s ease;
}
.about-image-wrapper img:hover {
  transform: scale(1.03);
}
.about-trust-badge {
  position: absolute;
  bottom: 1.5rem;
  inset-inline-start: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.9rem 1.4rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.about-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: start;
}
.about-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.25rem;
  align-self: flex-start;
}
.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin-top: 0.5rem;
}
.about-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image-wrapper img {
    height: 320px;
  }
}

/* Pagination Styling */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--white);
  color: var(--dark);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  user-select: none;
}
.pagination-btn:hover:not(.disabled) {
  border-color: var(--primary);
  color: var(--primary);
  background-color: rgba(3, 105, 161, 0.04);
  transform: translateY(-2px);
}
.pagination-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(3, 105, 161, 0.2);
}
.pagination-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: #f1f5f9;
  border-color: #e2e8f0;
}

/* Product Card Swatches & Image Cross-fade Transitions */
.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img.img-white {
  position: relative;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.product-image img.img-black {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.swatch-dot.active {
  transform: scale(1.2);
  border-color: var(--primary) !important;
  box-shadow: 0 0 5px rgba(3, 105, 161, 0.5) !important;
}

.swatch-dot:hover {
  transform: scale(1.2);
}

