/* Base Styles & Fonts */
:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-300: #fda4af;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --rose-700: #be123c;
  --rose-800: #9f1239;
  --rose-900: #881337;

  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;

  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --pink-800: #9d174d;
  --pink-900: #831843;

  --green-400: #4ade80;
  --emerald-500: #10b981;
  --blue-400: #60a5fa;
  --cyan-500: #06b6d4;
  --orange-400: #fb923c;
}

body {
  margin: 0;
  font-family: "Inter", "system-ui", sans-serif;
  direction: rtl;
  text-align: right;
  background: linear-gradient(to bottom right, var(--rose-50), var(--pink-50), var(--amber-50));
  min-height: 100vh;
  overflow-x: hidden;
}

.font-arabic {
  font-family: "Cairo", "Tajawal", "Amiri", "system-ui", sans-serif;
}

.hidden {
  display: none !important;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-16 {
  margin-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.sm\:px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.lg\:px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.max-w-7xl {
  max-width: 80rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-lg {
  max-width: 32rem;
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.z-10 {
  z-index: 10;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}

.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.flex-col {
  flex-direction: column;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-12 {
  gap: 3rem;
}
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lg\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.xl\:grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.justify-items-center {
  justify-items: center;
}

.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.bg-white {
  background-color: #fff;
}
.bg-white\/80 {
  background-color: rgba(255, 255, 255, 0.8);
}
.bg-white\/30 {
  background-color: rgba(255, 255, 255, 0.3);
}
.bg-white\/20 {
  background-color: rgba(255, 255, 255, 0.2);
}
.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.backdrop-blur-md {
  backdrop-filter: blur(8px);
}
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}
.backdrop-blur-lg {
  backdrop-filter: blur(12px);
}

.text-white {
  color: #fff;
}
.text-amber-900 {
  color: var(--amber-900);
}
.text-amber-800 {
  color: var(--amber-800);
}
.text-amber-700 {
  color: var(--amber-700);
}
.text-amber-400 {
  color: var(--amber-400);
}
.text-rose-700 {
  color: var(--rose-700);
}
.text-rose-600 {
  color: var(--rose-600);
}
.text-rose-500 {
  color: var(--rose-500);
}
.text-rose-400 {
  color: var(--rose-400);
}
.text-rose-200 {
  color: var(--rose-200);
}
.text-rose-100 {
  color: var(--rose-100);
}
.text-pink-500 {
  color: var(--pink-500);
}
.text-yellow-300 {
  color: #fde047;
}

.text-sm {
  font-size: 0.875rem; /* 14px */
}
.text-base {
  font-size: 1rem; /* 16px */
}
.text-lg {
  font-size: 1.125rem; /* 18px */
}
.text-xl {
  font-size: 1.25rem; /* 20px */
}
.text-2xl {
  font-size: 1.5rem; /* 24px */
}
.text-3xl {
  font-size: 1.875rem; /* 30px */
}
.text-4xl {
  font-size: 2.25rem; /* 36px */
}
.text-5xl {
  font-size: 3rem; /* 48px */
}
.text-6xl {
  font-size: 3.75rem; /* 60px */
}
.text-7xl {
  font-size: 4.5rem; /* 72px */
}

.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.font-extrabold {
  font-weight: 800;
}
.italic {
  font-style: italic;
}
.leading-relaxed {
  line-height: 1.625;
}

.transition-all {
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Splash Screen */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, var(--rose-100), var(--pink-100), var(--amber-100));
  opacity: 1;
  transition: opacity 0.8s ease-out;
}

.splash-screen.fade-out {
  opacity: 0;
  pointer-events: none; /* Disable interactions during fade-out */
}

.splash-content {
  text-align: center;
  z-index: 10;
}

.splash-logo-container {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 1.5rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  box-shadow: 0 0 20px rgba(239, 169, 169, 0.5);
  animation: pulse-shadow 2s infinite ease-in-out;
}

@keyframes pulse-shadow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(239, 169, 169, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(239, 169, 169, 0.8);
  }
}

.splash-logo {
  max-width: 300px;
  height: 150px;
  display: block;
  margin: 0 auto;
}

.splash-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--amber-900);
  margin-bottom: 0.5rem;
  font-family: "Cairo", sans-serif;
}

.splash-subtitle {
  font-size: 1.125rem;
  color: var(--rose-700);
  margin-bottom: 2rem;
}

.splash-button {
  background: linear-gradient(to right, var(--rose-400), var(--pink-500));
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  animation: bounce-scale 1s infinite alternate;
}

.splash-button:hover {
  background: linear-gradient(to right, var(--rose-500), var(--pink-600));
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@keyframes bounce-scale {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

/* Main Content Fade In */
.main-content {
  opacity: 0;
  transition: opacity 0.8s ease-in;
}

.main-content.visible {
  opacity: 1;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rose-100);
  height: 4rem; /* h-16 */
  display: flex;
  align-items: center;
  transition: transform 0.5s ease-out; /* Added transition for potential future animations */
}

.navbar-container {
  max-width: 80rem; /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.navbar-logo img {
  height: 3.5rem; /* h-14 */
  width: auto;
  transition: transform 0.2s ease-in-out;
}

.navbar-logo img:hover {
  transform: scale(1.05);
}

.navbar-menu {
  display: none; /* Hidden on mobile */
  margin-left: 2.5rem; /* ml-10 */
  align-items: baseline;
  gap: 2rem; /* space-x-8 */
}

@media (min-width: 768px) {
  .navbar-menu {
    display: flex;
  }
}

.navbar-item {
  color: var(--amber-900);
  padding: 0.5rem 0.75rem; /* px-3 py-2 */
  border-radius: 0.375rem; /* rounded-md */
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
  transition: color 0.2s ease;
  text-decoration: none;
  text-align: right;
  display: block;
}

.navbar-item:hover {
  color: var(--rose-600);
}

.navbar-cart {
  display: none; /* Hidden on mobile */
  align-items: center;
  gap: 1rem; /* space-x-4 */
}

@media (min-width: 768px) {
  .navbar-cart {
    display: flex;
  }
}

.cart-button {
  padding: 0.5rem; /* p-2 */
  color: var(--amber-900);
  position: relative;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cart-button:hover {
  color: var(--rose-600);
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -0.25rem; /* -top-1 */
  right: -0.25rem; /* -right-1 */
  background-color: var(--rose-500);
  color: white;
  font-size: 0.75rem; /* text-xs */
  border-radius: 9999px; /* rounded-full */
  height: 1.25rem; /* h-5 */
  width: 1.25rem; /* w-5 */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile menu button (cart icon) */
@media (max-width: 767px) {
  .navbar-cart {
    display: flex; /* Show on mobile */
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 4rem; /* pt-16 */
  background: linear-gradient(to bottom right, var(--rose-50), var(--pink-50), var(--amber-50));
}

.hero-background-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-background-particle {
  position: absolute;
  width: 2rem; /* w-8 */
  height: 2rem; /* h-8 */
  background: linear-gradient(to bottom right, var(--rose-300), var(--amber-300));
  border-radius: 9999px; /* rounded-full */
  opacity: 0.2;
}

.hero-container {
  max-width: 80rem; /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem; /* gap-12 */
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: right;
  }
}

.hero-title {
  font-size: 3rem; /* 5xl */
  font-weight: bold;
  margin-bottom: 1.5rem; /* mb-6 */
  text-align: right;
  font-family: "Cairo", sans-serif;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem; /* 7xl */
  }
}

.hero-title-gradient {
  background: linear-gradient(to right, var(--rose-600), var(--pink-600), var(--amber-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-title-amber {
  color: var(--amber-900);
}

.hero-subtitle {
  font-size: 1.25rem; /* xl */
  color: var(--rose-700);
  margin-bottom: 1rem; /* mb-4 */
  text-align: right;
}

.hero-description {
  font-size: 1.125rem; /* lg */
  color: var(--amber-800);
  margin-bottom: 2rem; /* mb-8 */
  max-width: 32rem; /* max-w-lg */
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  line-height: 1.625; /* leading-relaxed */
}

@media (min-width: 1024px) {
  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* gap-4 */
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-button {
  padding: 0.75rem 2rem; /* px-8 py-3 */
  border-radius: 9999px; /* rounded-full */
  font-size: 1.125rem; /* text-lg */
  font-weight: 600; /* font-semibold */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-button.primary {
  background: linear-gradient(to right, var(--rose-500), var(--pink-600));
  color: white;
}

.hero-button.primary:hover {
  background: linear-gradient(to right, var(--rose-600), var(--pink-700));
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-button.outline {
  border: 2px solid var(--rose-400);
  color: var(--rose-600);
  background-color: transparent;
}

.hero-button.outline:hover {
  background-color: var(--rose-50);
}

.hero-button svg {
  margin-left: 0.5rem; /* ml-2 */
  height: 1.25rem; /* h-5 */
  width: 1.25rem; /* w-5 */
}

.hero-image-container {
  position: relative;
}

.hero-main-image-wrapper {
  position: relative;
  z-index: 10;
  width: 24rem; /* w-96 */
  height: 24rem; /* h-96 */
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(to bottom right, var(--rose-200), var(--amber-200));
  border-radius: 1.5rem; /* rounded-3xl */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-image 4s infinite ease-in-out;
}

@keyframes float-image {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.hero-main-image {
  border-radius: 1rem; /* rounded-2xl */
  max-width: 350px;
  max-height: 350px;
}

.hero-floating-elements img {
  position: absolute;
  width: 4rem; /* w-16 */
  height: 4rem; /* h-16 */
  background: linear-gradient(to bottom right, var(--rose-300), var(--amber-300));
  border-radius: 9999px; /* rounded-full */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  object-fit: cover;
}

/* Specific positions for floating elements (simplified from JS animation) */
.hero-floating-elements img:nth-child(1) {
  top: 20%;
  left: 10%;
  animation: float-rotate 3s infinite ease-in-out 0s;
}
.hero-floating-elements img:nth-child(2) {
  top: 35%;
  left: 80%;
  animation: float-rotate 3.5s infinite ease-in-out 0.2s;
}
.hero-floating-elements img:nth-child(3) {
  top: 50%;
  left: 15%;
  animation: float-rotate 4s infinite ease-in-out 0.4s;
}
.hero-floating-elements img:nth-child(4) {
  top: 65%;
  left: 70%;
  animation: float-rotate 4.5s infinite ease-in-out 0.6s;
}
.hero-floating-elements img:nth-child(5) {
  top: 80%;
  left: 20%;
  animation: float-rotate 5s infinite ease-in-out 0.8s;
}
.hero-floating-elements img:nth-child(6) {
  top: 95%;
  left: 60%;
  animation: float-rotate 5.5s infinite ease-in-out 1s;
}

@keyframes float-rotate {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-20px) rotate(180deg) scale(1.1);
  }
}

/* Jewel Benefits Section (Mobile Only) */
.jewel-benefits-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom right, var(--rose-100), var(--amber-100));
  position: relative;
  overflow: hidden;
}

.jewel-benefits-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  z-index: 10;
}

.jewel-benefits-header {
  text-align: center;
  margin-bottom: 4rem;
}

.jewel-benefits-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--amber-900);
  margin-bottom: 1rem;
  font-family: "Cairo", sans-serif;
  animation: pulse-scale-text 2s infinite ease-in-out;
}

@keyframes pulse-scale-text {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@media (min-width: 1024px) {
  .jewel-benefits-title {
    font-size: 3rem;
  }
}

.jewel-benefits-subtitle {
  font-size: 1.25rem;
  color: var(--rose-700);
  margin-bottom: 0.5rem;
}

.jewel-benefits-description {
  font-size: 1.125rem;
  color: var(--amber-800);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.mobile-benefits-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .mobile-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .mobile-benefits-grid {
    display: none; /* Hide on desktop, as the original React component returned null */
  }
}

.mobile-benefit-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
}

.mobile-benefit-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.mobile-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.mobile-benefit-card-image-wrapper {
  width: 6rem; /* w-24 */
  height: 6rem; /* h-24 */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.mobile-benefit-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

.mobile-benefit-card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--amber-100);
  margin-bottom: 0.25rem;
  font-family: "Cairo", sans-serif;
}

.mobile-benefit-card-subtitle {
  color: var(--rose-200);
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
}

.mobile-benefit-card-description-container {
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
  height: 0;
  opacity: 0;
}

.mobile-benefit-card.expanded .mobile-benefit-card-description-container {
  height: auto;
  opacity: 1;
}

.mobile-benefit-card-description-arabic {
  color: var(--rose-100);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-family: "Cairo", sans-serif;
}

.mobile-benefit-card-description-english {
  color: var(--rose-100);
  font-size: 0.75rem;
  opacity: 0.8;
  font-family: "Inter", sans-serif;
}

.jewel-benefits-bottom-strip {
  text-align: center;
  margin-top: 4rem;
  background: linear-gradient(to right, var(--rose-200), var(--amber-200));
  border-radius: 9999px;
  padding: 1rem 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.jewel-benefits-strip-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--amber-900);
  font-family: "Cairo", sans-serif;
}

/* Shop Grid Section */
.shop-grid-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom right, var(--amber-50), var(--rose-50));
}

.shop-grid-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.shop-grid-header {
  text-align: center;
  margin-bottom: 4rem;
}

.shop-grid-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--amber-900);
  margin-bottom: 1rem;
  font-family: "Cairo", sans-serif;
}

@media (min-width: 1024px) {
  .shop-grid-title {
    font-size: 3rem;
  }
}

.shop-grid-subtitle {
  font-size: 1.25rem;
  color: var(--rose-700);
  margin-bottom: 0.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 1rem;
  opacity: 0;
  transform: scale(0.8);
}

.product-card.in-view {
  opacity: 1;
  transform: scale(1);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: var(--rose-200);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 12rem; /* h-48 */
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s ease, rotate 0.3s ease;
}

.product-image-wrapper:hover .product-image {
  transform: scale(1.1) rotate(2deg);
}

.product-info {
  padding: 1.5rem; /* p-6 */
}

.product-name {
  font-size: 1.125rem; /* lg */
  font-weight: bold;
  color: var(--amber-900);
  margin-bottom: 0.25rem; /* mb-1 */
  font-family: "Cairo", sans-serif;
  text-align: right;
}

.product-name-en {
  color: var(--rose-600);
  font-size: 0.875rem; /* sm */
  margin-bottom: 0.75rem; /* mb-3 */
  text-align: right;
}

.product-price {
  font-size: 1.25rem; /* xl */
  font-weight: bold;
  color: var(--rose-600);
  margin-bottom: 1rem; /* mb-4 */
  text-align: right;
}

.add-to-cart-button {
  width: 100%;
  background: linear-gradient(to right, var(--rose-500), var(--pink-600));
  color: white;
  border-radius: 9999px; /* rounded-full */
  padding: 0.5rem 0; /* py-2 */
  font-weight: 600; /* font-semibold */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-to-cart-button:hover {
  background: linear-gradient(to right, var(--rose-600), var(--pink-700));
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.add-to-cart-button svg {
  margin-left: 0.5rem; /* ml-2 */
  height: 1rem; /* h-4 */
  width: 1rem; /* w-4 */
}

/* USP Section */
.usp-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom right, var(--amber-50), var(--rose-50));
}

.usp-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.usp-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.usp-section.in-view .usp-header {
  opacity: 1;
  transform: translateY(0);
}

.usp-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--amber-900);
  margin-bottom: 1rem;
  font-family: "Cairo", sans-serif;
}

@media (min-width: 1024px) {
  .usp-title {
    font-size: 3rem;
  }
}

.usp-subtitle {
  font-size: 1.25rem;
  color: var(--rose-700);
  margin-bottom: 0.5rem;
}

.usp-description {
  font-size: 1.125rem;
  color: var(--amber-800);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.usp-features-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .usp-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .usp-features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.usp-feature-card {
  background-color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
}

.usp-section.in-view .usp-feature-card {
  opacity: 1;
  transform: translateY(0);
}

.usp-feature-card:nth-child(1) {
  transition-delay: 0.2s;
}
.usp-feature-card:nth-child(2) {
  transition-delay: 0.4s;
}
.usp-feature-card:nth-child(3) {
  transition-delay: 0.6s;
}
.usp-feature-card:nth-child(4) {
  transition-delay: 0.8s;
}

.usp-feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.usp-icon-wrapper {
  width: 4rem;
  height: 4rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease;
}

.usp-feature-card:hover .usp-icon-wrapper {
  transform: scale(1.1) rotate(10deg);
}

.usp-icon-wrapper.green {
  background: linear-gradient(to right, var(--green-400), var(--emerald-500));
}
.usp-icon-wrapper.blue {
  background: linear-gradient(to right, var(--blue-400), var(--cyan-500));
}
.usp-icon-wrapper.rose {
  background: linear-gradient(to right, var(--rose-400), var(--pink-500));
}
.usp-icon-wrapper.amber {
  background: linear-gradient(to right, var(--amber-400), var(--orange-500));
}

.usp-icon-wrapper svg {
  height: 2rem;
  width: 2rem;
  color: white;
}

.usp-feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--amber-900);
  margin-bottom: 0.5rem;
  font-family: "Cairo", sans-serif;
  transition: color 0.3s ease;
}

.usp-feature-card:hover .usp-feature-title {
  color: var(--rose-600);
}

.usp-feature-subtitle {
  color: var(--rose-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.usp-feature-description {
  color: var(--amber-800);
  line-height: 1.625;
}

.usp-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: linear-gradient(to right, var(--rose-400), var(--pink-500)); /* Default gradient */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.usp-feature-card:hover::before {
  opacity: 0.1;
}

.usp-feature-card:nth-child(1)::before {
  background: linear-gradient(to right, var(--green-400), var(--emerald-500));
}
.usp-feature-card:nth-child(2)::before {
  background: linear-gradient(to right, var(--blue-400), var(--cyan-500));
}
.usp-feature-card:nth-child(3)::before {
  background: linear-gradient(to right, var(--rose-400), var(--pink-500));
}
.usp-feature-card:nth-child(4)::before {
  background: linear-gradient(to right, var(--amber-400), var(--orange-500));
}

/* Testimonials Section */
.testimonials-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom right, var(--amber-50), var(--rose-50));
}

.testimonials-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--amber-900);
  margin-bottom: 1rem;
  font-family: "Cairo", sans-serif;
}

@media (min-width: 1024px) {
  .testimonials-title {
    font-size: 3rem;
  }
}

.testimonials-description {
  font-size: 1.125rem;
  color: var(--amber-800);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.testimonial-carousel {
  position: relative;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden; /* To hide exiting testimonials */
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.carousel-button:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background-color: var(--rose-50);
}

.carousel-button.prev {
  left: 1rem;
}

.carousel-button.next {
  right: 1rem;
}

.carousel-button svg {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--amber-900);
}

.testimonial-card {
  background-color: white;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 2rem;
  text-align: center;
  margin-left: 2rem; /* mx-8 */
  margin-right: 2rem; /* mx-8 */
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-card.fade-out-left {
  opacity: 0;
  transform: translateX(-100px);
}

.testimonial-card.fade-in-right {
  opacity: 0;
  transform: translateX(100px);
}

.testimonial-card.fade-in-right.active {
  opacity: 1;
  transform: translateX(0);
}

.customer-image-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.customer-image {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 4px solid var(--rose-200);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  object-fit: cover;
}

.star-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background-color: var(--rose-500);
  border-radius: 9999px;
  padding: 0.25rem;
  animation: pulse-star 2s infinite;
}

@keyframes pulse-star {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.star-badge svg {
  height: 1rem;
  width: 1rem;
  color: white;
  fill: currentColor;
}

.rating-stars {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.rating-stars svg {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--amber-400);
  fill: currentColor;
  margin: 0 0.25rem;
}

.testimonial-text {
  font-size: 1.25rem;
  color: var(--amber-900);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.625;
  text-align: center; /* Changed from right to center */
}

.customer-name {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--amber-900);
  font-family: "Cairo", sans-serif;
}

.customer-location {
  color: var(--amber-700);
  font-size: 0.875rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: var(--rose-200);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: var(--rose-500);
  transform: scale(1.25);
}

/* Contact Section */
.contact-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom right, var(--amber-50), var(--rose-50));
}

.contact-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--amber-900);
  margin-bottom: 1rem;
  font-family: "Cairo", sans-serif;
}

@media (min-width: 1024px) {
  .contact-title {
    font-size: 3rem;
  }
}

.contact-subtitle {
  font-size: 1.25rem;
  color: var(--rose-700);
  margin-bottom: 0.5rem;
}

.contact-description {
  font-size: 1.125rem;
  color: var(--amber-800);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-social-media {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}

.social-media-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.social-media-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--amber-900);
  margin-bottom: 1.5rem;
  font-family: "Cairo", sans-serif;
}

.social-media-subtitle {
  color: var(--rose-700);
  margin-bottom: 1rem;
}

.social-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .social-media-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.social-media-card {
  display: block;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  color: white;
  text-align: center;
  text-decoration: none;
}

.social-media-card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.social-media-card.instagram {
  background: linear-gradient(to right, var(--pink-500), var(--rose-500));
}
.social-media-card.facebook {
  background: linear-gradient(to right, #1877f2, #3b5998); /* Facebook blue */
}
.social-media-card.tiktok {
  background: linear-gradient(to right, #000, #222); /* TikTok dark */
}
.social-media-card.whatsapp {
  background: linear-gradient(to right, #25d366, #128c7e); /* WhatsApp green */
}

.social-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.social-icon svg {
  width: 2rem;
  height: 2rem;
}

.social-name {
  font-weight: bold;
  font-size: 1.125rem;
  font-family: "Cairo", sans-serif;
  margin-bottom: 0.25rem;
}

.social-name-en {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.social-handle {
  font-size: 0.75rem;
  font-family: monospace;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
  display: inline-block;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rose-200);
}

.footer-logo {
  height: 4rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.1);
}

.footer-text-arabic {
  color: var(--amber-900);
  margin-bottom: 0.5rem;
}

.footer-text-english {
  color: var(--rose-700);
  font-size: 0.875rem;
}

/* Cart Modal */
.cart-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-modal-overlay.visible {
  opacity: 1;
}

.cart-modal {
  position: relative;
  width: 100%;
  max-width: 28rem; /* max-w-md */
  background: linear-gradient(to bottom right, var(--rose-50), var(--pink-50), var(--amber-50));
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}

.cart-modal-overlay.visible .cart-modal {
  transform: translateX(0);
}

.cart-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rose-200);
}

.cart-modal-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--amber-900);
  font-family: "Cairo", sans-serif;
}

.cart-modal-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rose-600);
  transition: color 0.2s ease;
  padding: 0.5rem;
}

.cart-modal-close-btn:hover {
  color: var(--rose-800);
}

.cart-modal-close-btn svg {
  height: 1.5rem;
  width: 1.5rem;
}

.cart-items-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.empty-cart-message {
  text-align: center;
  color: var(--amber-800);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.empty-cart-message svg {
  height: 5rem;
  width: 5rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  color: var(--rose-400);
}

.empty-cart-text-arabic {
  font-size: 1.25rem;
  font-family: "Cairo", sans-serif;
  margin-bottom: 0.5rem;
}

.empty-cart-text-english {
  font-size: 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1rem;
}

.cart-item img {
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  text-align: right;
}

.cart-item-name {
  font-weight: bold;
  color: var(--amber-900);
  font-family: "Cairo", sans-serif;
}

.cart-item-name-en {
  color: var(--rose-600);
  font-size: 0.875rem;
}

.cart-item-price {
  color: var(--amber-800);
  font-size: 0.875rem;
}

.cart-item-quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-button {
  height: 2rem;
  width: 2rem;
  border-radius: 9999px;
  border: 1px solid var(--rose-300);
  color: var(--rose-600);
  background: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.quantity-button:hover {
  background-color: var(--rose-50);
}

.quantity-button svg {
  height: 1rem;
  width: 1rem;
}

.item-quantity {
  font-weight: 600;
  color: var(--amber-900);
}

.remove-item-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rose-500);
  transition: color 0.2s ease;
}

.remove-item-btn:hover {
  color: var(--rose-700);
}

.remove-item-btn svg {
  height: 1.25rem;
  width: 1.25rem;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--rose-200);
}

.cart-total-label {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--amber-900);
  font-family: "Cairo", sans-serif;
}

.cart-total-value {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--rose-700);
}

.cart-actions {
  margin-top: 1.5rem;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}

.clear-cart-button {
  width: 100%;
  background-color: var(--rose-100);
  color: var(--rose-700);
  border-radius: 9999px;
  padding: 0.75rem 0;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.clear-cart-button:hover {
  background-color: var(--rose-200);
}

.checkout-button {
  width: 100%;
  background: linear-gradient(to right, var(--rose-500), var(--pink-600));
  color: white;
  border-radius: 9999px;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.checkout-button:hover {
  background: linear-gradient(to right, var(--rose-600), var(--pink-700));
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  min-width: 200px;
  max-width: 300px;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-title {
  font-weight: bold;
  color: var(--amber-900);
  margin-bottom: 0.25rem;
}

.toast-description {
  font-size: 0.875rem;
  color: var(--rose-700);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .hero-buttons {
    flex-direction: column;
  }
  .navbar-menu {
    display: none;
  }
  .navbar-cart {
    display: flex;
  }
  .social-media-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  .px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .px-4 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
