/*
 * Tailwind CSS compiled for Consentido WordPress theme
 * This file contains the essential Tailwind utility classes for the theme
 */

/* Base styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary, 'Inter', system-ui, -apple-system, sans-serif);
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Brand colors and fonts */
:root {
  --brand-yellow: #FDBF00;
  --brand-red: #D92929;
  --brand-gray: #F2F2F2;
  --brand-white: #FEFFFE;
  --brand-black: #010001;
  
  /* Font families */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
}

/* Layout utilities */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.flex { display: flex; }
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }

/* Flexbox utilities */
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-end { justify-content: end; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1 1 0%; }
.flex-none { flex: none; }
.flex-shrink-0 { flex-shrink: 0; }

/* Position utilities */
.sticky { position: sticky; }
.fixed { position: fixed; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0px; right: 0px; bottom: 0px; left: 0px; }
.top-0 { top: 0px; }
.right-0 { right: 0px; }
.left-0 { left: 0px; }
.-top-1 { top: -0.25rem; }
.-right-1 { right: -0.25rem; }
.-top-2 { top: -0.5rem; }
.-right-2 { right: -0.5rem; }

/* Z-index utilities */
.z-50 { z-index: 50; }

/* Size utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-1/2 { width: 50%; }
.w-1/3 { width: 33.333333%; }
.w-2/3 { width: 66.666667%; }
.w-1/4 { width: 25%; }
.w-3/4 { width: 75%; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.h-36 { height: 9rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.min-h-full { min-height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }
.min-w-0 { min-width: 0px; }
.min-w-full { min-width: 100%; }

/* Spacing utilities */
.p-0 { padding: 0px; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-0 { padding-left: 0px; padding-right: 0px; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-0 { padding-top: 0px; padding-bottom: 0px; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-0 { padding-top: 0px; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pb-0 { padding-bottom: 0px; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pl-0 { padding-left: 0px; }
.pl-1 { padding-left: 0.25rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }
.pr-0 { padding-right: 0px; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-3 { padding-right: 0.75rem; }
.pr-4 { padding-right: 1rem; }
.pr-6 { padding-right: 1.5rem; }
.pr-8 { padding-right: 2rem; }
.m-0 { margin: 0px; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-6 { margin: 1.5rem; }
.m-8 { margin: 2rem; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-0 { margin-left: 0px; margin-right: 0px; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mx-8 { margin-left: 2rem; margin-right: 2rem; }
.my-0 { margin-top: 0px; margin-bottom: 0px; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.mt-0 { margin-top: 0px; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-0 { margin-bottom: 0px; }
.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-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-0 { margin-left: 0px; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-6 { margin-left: 1.5rem; }
.ml-8 { margin-left: 2rem; }
.mr-0 { margin-right: 0px; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.mr-6 { margin-right: 1.5rem; }
.mr-8 { margin-right: 2rem; }

/* Gap utilities */
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-12 { gap: 3rem; }
.space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
.space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }

/* Background utilities */
.bg-white { background-color: rgb(255 255 255); }
.bg-gray-50 { background-color: rgb(249 250 251); }
.bg-gray-100 { background-color: rgb(243 244 246); }
.bg-red-500 { background-color: rgb(239 68 68); }
.bg-yellow-400 { background-color: rgb(251 191 36); }
.bg-black { background-color: rgb(0 0 0); }
.bg-opacity-40 { background-color: rgb(0 0 0 / 0.4); }
.bg-opacity-50 { background-color: rgb(0 0 0 / 0.5); }

/* Background size */
.bg-cover{background-size: cover;}

/* Background opacity */
.bg-white\/60 { background-color: rgb(255 255 255 / 0.60); }
.bg-white\/95 { background-color: rgb(255 255 255 / 0.95); }

/* Backdrop blur */
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* Gradient backgrounds */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-yellow-400 { --tw-gradient-from: #fbbf24; --tw-gradient-to: rgb(251 191 36 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-brand-yellow { --tw-gradient-from: var(--brand-yellow); --tw-gradient-to: rgba(253,191,0,0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-red-500 { --tw-gradient-to: rgb(239 68 68 / 0); --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to); }
.to-yellow-400 { --tw-gradient-to: #fbbf24; }
.to-red-500 { --tw-gradient-to: #ef4444; }
.to-brand-red { --tw-gradient-to: var(--brand-red); }

/* Text colors */
.text-black { color: rgb(0 0 0); }
.text-white { color: rgb(255 255 255); }
.text-gray-50 { color: rgb(249 250 251); }
.text-gray-100 { color: rgb(243 244 246); }
.text-gray-200 { color: rgb(229 231 235); }
.text-gray-300 { color: rgb(209 213 219); }
.text-gray-400 { color: rgb(156 163 175); }
.text-gray-500 { color: rgb(107 114 128); }
.text-gray-600 { color: rgb(75 85 99); }
.text-gray-700 { color: rgb(55 65 81); }
.text-gray-800 { color: rgb(31 41 55); }
.text-gray-900 { color: rgb(17 24 39); }
.text-orange-500 { color: rgb(249 115 22); }
.text-orange-600 { color: rgb(234 88 12); }
.text-blue-500 { color: rgb(59 130 246); }
.text-blue-600 { color: rgb(37 99 235); }
.text-red-500 { color: rgb(239 68 68); }
.text-red-600 { color: rgb(220 38 38); }
.text-green-500 { color: rgb(34 197 94); }
.text-green-600 { color: rgb(22 163 74); }
.text-yellow-400 { color: rgb(251 191 36); }
.text-yellow-500 { color: rgb(234 179 8); }

/* Typography scale */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

/* Font utilities */
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }

/* Border utilities */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-gray-200 { border-color: rgb(229 231 235); }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Shadow utilities */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); }
.shadow-yellow-500\/25 { box-shadow: 0 10px 15px -3px rgb(234 179 8 / 0.25), 0 4px 6px -4px rgb(234 179 8 / 0.25); }
.shadow-brand-yellow\/20 { box-shadow: 0 10px 15px -3px rgb(253 191 0 / 0.2), 0 4px 6px -4px rgb(253 191 0 / 0.2); }
.shadow-brand-red\/20 { box-shadow: 0 10px 15px -3px rgb(217 41 41 / 0.2), 0 4px 6px -4px rgb(217 41 41 / 0.2); }

/* Filter utilities */
.filter { filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); }
.brightness-110 { --tw-brightness: brightness(1.1); filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); }

/* Opacity utilities */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Visibility utilities */
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Transition utilities */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.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-transform { transition-property: transform; 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; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Transform utilities */
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.translate-x-0 { --tw-translate-x: 0px; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.translate-x-1 { --tw-translate-x: 0.25rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.-translate-x-1 { --tw-translate-x: -0.25rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.translate-y-0 { --tw-translate-y: 0px; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.-translate-y-2 { --tw-translate-y: -0.5rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.translate-x-full { --tw-translate-x: 100%; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.scale-105 { --tw-scale-x: 1.05; --tw-scale-y: 1.05; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.rotate-180 { --tw-rotate: 180deg; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }

/* Focus utilities */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); }
.focus\:ring-yellow-400:focus { --tw-ring-color: rgb(251 191 36); }
.focus\:ring-yellow-500:focus { --tw-ring-color: rgb(234 179 8); }
.focus\:ring-offset-2:focus { --tw-ring-offset-width: 2px; }

/* Hover utilities */
.hover\:bg-gray-50:hover { background-color: rgb(249 250 251); }
.hover\:bg-gray-100:hover { background-color: rgb(243 244 246); }
.hover\:text-black:hover { color: rgb(0 0 0); }
.hover\:text-yellow-400:hover { color: rgb(251 191 36); }
.hover\:text-yellow-500:hover { color: rgb(234 179 8); }
.hover\:text-orange-600:hover { color: rgb(234 88 12); }
.hover\:text-blue-600:hover { color: rgb(37 99 235); }
.hover\:text-red-600:hover { color: rgb(220 38 38); }
.hover\:scale-105:hover { --tw-scale-x: 1.05; --tw-scale-y: 1.05; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.hover\:translate-x-1:hover { --tw-translate-x: 0.25rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.hover\:-translate-x-1:hover { --tw-translate-x: -0.25rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.hover\:-translate-y-2:hover { --tw-translate-y: -0.5rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04); }
.hover\:shadow-yellow-500\/25:hover { box-shadow: 0 10px 15px -3px rgb(234 179 8 / 0.25), 0 4px 6px -4px rgb(234 179 8 / 0.25); }

/* Group hover utilities */
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:visible { visibility: visible; }
.group:hover .group-hover\:rotate-180 { --tw-rotate: 180deg; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.group:hover .group-hover\:scale-105 { --tw-scale-x: 1.05; --tw-scale-y: 1.05; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.group:hover .group-hover\:shadow-yellow-500\/25 { box-shadow: 0 10px 15px -3px rgb(234 179 8 / 0.25), 0 4px 6px -4px rgb(234 179 8 / 0.25); }

/* Responsive utilities */
/* Small screens (640px+) */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
}

/* Medium screens (768px+) */
@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:items-center { align-items: center; }
  .md\:justify-center { justify-content: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { margin-top: 0; }
  .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
  .md\:space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:w-1/2 { width: 50%; }
  .md\:w-1/3 { width: 33.333333%; }
  .md\:w-2/3 { width: 66.666667%; }
  .md\:h-24 { height: 6rem; }
  .md\:h-32 { height: 8rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-center { text-align: center; }
  .md\:text-left { text-align: left; }
}

/* Large screens (1024px+) */
@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:grid { display: grid; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-start { align-items: flex-start; }
  .lg\:items-center { align-items: center; }
  .lg\:justify-start { justify-content: flex-start; }
  .lg\:justify-center { justify-content: center; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:w-1/3 { width: 33.333333%; }
  .lg\:w-1/4 { width: 25%; }
  .lg\:w-2/3 { width: 66.666667%; }
  .lg\:w-3/4 { width: 75%; }
  .lg\:h-28 { height: 7rem; }
  .lg\:h-32 { height: 8rem; }
  .lg\:h-40 { height: 10rem; }
  .lg\:max-w-4xl { max-width: 56rem; }
  .lg\:max-w-6xl { max-width: 72rem; }
  .lg\:text-left { text-align: left; }
  .lg\:text-center { text-align: center; }
  .lg\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
}

/* Extra large screens (1280px+) */
@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .xl\:px-0 { padding-left: 0px; padding-right: 0px; }
  .xl\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .xl\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .xl\:max-w-7xl { max-width: 80rem; }
}

/* 2X Large screens (1536px+) */
@media (min-width: 1536px) {
  .\32xl\:px-0 { padding-left: 0px; padding-right: 0px; }
  .\32xl\:max-w-8xl { max-width: 88rem; }
  .\32xl\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

/* Custom brand colors */
.text-brand-yellow { color: var(--brand-yellow); }
.text-brand-red { color: var(--brand-red); }
.text-brand-gray { color: var(--brand-gray); }
.text-brand-white { color: var(--brand-white); }
.text-brand-black { color: var(--brand-black); }

.bg-brand-yellow { background-color: var(--brand-yellow); }
.bg-brand-red { background-color: var(--brand-red); }
.bg-brand-gray { background-color: var(--brand-gray); }
.bg-brand-white { background-color: var(--brand-white); }
.bg-brand-black { background-color: var(--brand-black); }

.border-brand-yellow { border-color: var(--brand-yellow); }
.border-brand-red { border-color: var(--brand-red); }
.border-brand-gray { border-color: var(--brand-gray); }
.border-brand-white { border-color: var(--brand-white); }
.border-brand-black { border-color: var(--brand-black); }

/* Brand color variants */
.text-brand-muted { color: #6B7280; } /* Replaces text-gray-600 */
.text-brand-light { color: #9CA3AF; } /* Replaces text-gray-400 */
.text-brand-lighter { color: #D1D5DB; } /* Replaces text-gray-300 */
.text-brand-dark { color: #374151; } /* Replaces text-gray-700 */

.bg-brand-muted { background-color: #6B7280; }
.bg-brand-light { background-color: #F9FAFB; } /* Replaces bg-gray-50 */
.bg-brand-lighter { background-color: #F3F4F6; } /* Replaces bg-gray-100 */
.bg-brand-dark { background-color: #1F2937; } /* Replaces bg-gray-900 */

.border-brand-muted { border-color: #6B7280; }
.border-brand-light { border-color: #E5E7EB; } /* Replaces border-gray-200 */
.border-brand-lighter { border-color: #D1D5DB; } /* Replaces border-gray-300 */

/* Hover states for brand colors */
.hover\:text-brand-yellow:hover { color: var(--brand-yellow); }
.hover\:text-brand-red:hover { color: var(--brand-red); }
.hover\:text-brand-black:hover { color: var(--brand-black); }
.hover\:text-brand-muted:hover { color: #6B7280; }

.hover\:bg-brand-yellow:hover { background-color: var(--brand-yellow); }
.hover\:bg-brand-red:hover { background-color: var(--brand-red); }
.hover\:bg-brand-light:hover { background-color: #F9FAFB; }
.hover\:bg-brand-lighter:hover { background-color: #F3F4F6; }

/* Focus ring for brand colors */
.focus\:ring-brand-yellow:focus { --tw-ring-color: var(--brand-yellow); }
.focus\:ring-brand-red:focus { --tw-ring-color: var(--brand-red); }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Animation utilities */
.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
  opacity: 0;
  transform: translateX(-50px);
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
  opacity: 0;
  transform: translateX(50px);
}

/* Animation delays */
.animation-delay-200 {
  animation-delay: 200ms;
}

.animation-delay-400 {
  animation-delay: 400ms;
}

.animation-delay-600 {
  animation-delay: 600ms;
}

.animation-delay-800 {
  animation-delay: 800ms;
}

/* ========================================
   CUSTOM SWIPER BRAND STYLING
======================================== */

/* Custom Swiper Navigation Arrows - Minimalist Design */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  border-color: var(--brand-yellow);
  background: rgba(253, 191, 0, 0.1);
}

.hero-slider .swiper-button-next:hover::after,
.hero-slider .swiper-button-prev:hover::after {
  color: var(--brand-yellow);
}

.hero-slider .swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.hero-slider .swiper-button-disabled:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

/* Custom Swiper Pagination */
.hero-slider .swiper-pagination {
  bottom: 80px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  opacity: 1;
}

.hero-slider .swiper-pagination-bullet:hover {
  background: rgba(253, 191, 0, 0.6);
  border-color: var(--brand-yellow);
  transform: scale(1.2);
}

.hero-slider .swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--brand-yellow) 0%, var(--brand-red) 100%);
  border-color: var(--brand-yellow);
  box-shadow: 0 0 16px rgba(253, 191, 0, 0.6);
  transform: scale(1.1);
}

/* Slide Content Enhancements */
.hero-slider .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(253, 191, 0, 0.15) 0%,
    rgba(217, 41, 41, 0.15) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-slider .swiper-slide .slide-content {
  position: relative;
  z-index: 2;
}

/* Brand Accent Border */
.hero-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-yellow) 0%, var(--brand-red) 100%);
  z-index: 10;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .hero-slider .swiper-button-next::after,
  .hero-slider .swiper-button-prev::after {
    font-size: 16px;
  }
  
  .hero-slider .swiper-pagination {
    bottom: 60px;
  }
  
  .hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  
  .hero-slider .swiper-pagination-bullet-active {
    width: 24px;
  }
}

/* Animation duration utilities */
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }

/* Animation timing functions */
.ease-linear { transition-timing-function: linear; }
.ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Keyframe animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

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

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

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

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

/* Hover animations */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Page transition animations */
.page-enter {
  animation: pageEnter 0.6s ease-out forwards;
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* WordPress specific resets */
.wp-block-group {
  margin-bottom: 2rem;
}

.wp-block-image {
  margin-bottom: 1rem;
}

/* Custom component styles */
.main_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main_menu li {
  position: relative;
}

.main_menu a {
  text-decoration: none;
  display: inline-block;
}

/* Footer component styles */
.footer-bg-pattern {
  background: radial-gradient(circle at 30% 20%, rgba(253,191,0,0.05) 0%, transparent 40%), 
              radial-gradient(circle at 80% 80%, rgba(217,41,41,0.05) 0%, transparent 40%);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-grid > * {
  min-width: 0;
}

/* Footer responsive grid */
@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* Footer section alignment */
.footer-section {
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-section {
    text-align: left;
  }
}

.footer-section-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .footer-section-flex {
    align-items: flex-start;
  }
}

.footer-social-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .footer-social-wrapper {
    justify-content: flex-start;
  }
}

/* Footer navigation styles */
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin: 0;
}

.footer-nav a {
  display: block;
  text-decoration: none;
  color: rgb(75 85 99);
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 0;
  transition: color 0.2s ease-in-out;
}

.footer-nav a:hover {
  color: rgb(0 0 0);
}

/* Grid utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.text-center { text-align: center; }
.flex-col { flex-direction: column; }
.col-span-full { grid-column: 1 / -1; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Notification styles */
.notification {
  --tw-translate-x: 100%;
  --tw-translate-y: 0px;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
}

/* Enhanced Modal with Advanced Animations */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8) rotateY(10deg);
  background: white;
  border-radius: 1rem;
  padding: 0;
  max-width: 70vw;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.15),
    0 16px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(253, 191, 0, 0.1);
  z-index: 1001;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  perspective: 1000px;
}

/* Responsive modal sizing */
@media (max-width: 768px) {
  .modal-content {
    max-width: 95vw;
    max-height: 95vh;
  }
}

@media (max-width: 1024px) {
  .modal-content {
    max-width: 85vw;
  }
}

.modal-overlay.active .modal-content {
  transform: translate(-50%, -50%) scale(1) rotateY(0deg);
}

/* Modal entrance animation variants */
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) translateY(0);
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.modal-content.animate-slide-in {
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.modal-content.animate-fade-in {
  animation: modalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #666;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-close:hover {
  background: var(--brand-yellow);
  color: var(--brand-black);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(253, 191, 0, 0.3);
}

.modal-close:active {
  transform: scale(0.95) rotate(90deg);
}

/* Product Modal Button Styles */
.modal-content .btn {
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-content .btn-primary {
  background: var(--brand-yellow);
  color: var(--brand-black);
  border: 2px solid var(--brand-yellow);
}

.modal-content .btn-primary:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  transform: translateY(-1px);
}

.modal-content .btn-outline {
  background: transparent;
  color: var(--brand-black);
  border: 2px solid #e5e5e5;
}

.modal-content .btn-outline:hover {
  border-color: var(--brand-yellow);
  color: var(--brand-yellow);
}

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

.modal-content .btn-secondary:hover {
  background: #22c55e;
  border-color: #22c55e;
  transform: translateY(-1px);
}

/* Cart drawer styles */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 400px;
  max-width: 90vw;
  background: white;
  box-shadow: -10px 0 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

.cart-drawer.active {
  transform: translateX(0);
}

/* Product card states */
.product-card {
  position: relative;
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--brand-yellow);
}

.product-card.featured {
  border-color: var(--brand-yellow);
  box-shadow: 0 10px 15px -3px rgba(253, 191, 0, 0.2), 0 4px 6px -4px rgba(253, 191, 0, 0.2);
}

.product-card.out-of-stock {
  opacity: 0.6;
}

.product-card.out-of-stock .product-image {
  filter: grayscale(100%);
}

.product-card .quick-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .quick-actions {
  transform: translateY(0);
}

.product-image-container {
  position: relative;
  overflow: hidden;
}

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

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

/* Loading states */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.loading-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.loading-spinner {
  width: 2rem;
  height: 2rem;
  border: 2px solid #e5e7eb;
  border-top: 2px solid var(--brand-yellow);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Enhanced Button States with Micro-interactions */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}

.btn:active:not(:disabled) {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, #f7b500 100%);
  color: var(--brand-black);
  border: 2px solid transparent;
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, #e6ac00 100%);
  color: var(--brand-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(253, 191, 0, 0.4);
}

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

.btn-secondary:hover:not(:disabled) {
  background: #22c55e;
  border-color: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

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

.btn-outline:hover:not(:disabled) {
  background: var(--brand-yellow);
  color: var(--brand-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(253, 191, 0, 0.3);
}

/* Loading state for buttons */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 1.25rem;
  margin: -0.625rem 0 0 -0.625rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Focus states for accessibility */
.btn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(253, 191, 0, 0.3);
}

/* Notification toast */
.toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: white;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 10000 !important;
  border-left: 4px solid var(--brand-yellow);
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  border-left-color: #22c55e;
}

.toast.error {
  border-left-color: #ef4444;
}

/* Toast container z-index fix */
#toast-container {
  z-index: 9999 !important;
}

/* Image aspect ratios */
.aspect-square {
  aspect-ratio: 1 / 1;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.aspect-[4/3] {
  aspect-ratio: 4 / 3;
}

/* Object fit utilities */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.object-center {
  object-position: center;
}

/* Cursor utilities */
.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

/* Additional states */
.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.loading {
  position: relative;
  pointer-events: none;
}

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

/* Line clamp utilities */
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* Text decoration utilities */
.line-through {
  text-decoration: line-through;
}

.no-underline {
  text-decoration: none;
}

.underline {
  text-decoration: underline;
}

/* Text alignment utilities */
.text-left {
  text-align: left;
}

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

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

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

/* Display utilities */
.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.table {
  display: table;
}

.table-cell {
  display: table-cell;
}

.table-row {
  display: table-row;
}

/* Flexbox direction utilities */
.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

/* Flex wrap utilities */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

/* Align items utilities */
.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

/* Justify content utilities */
.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

/* Modern Product Card Styles */
.modern-product-card {
  transition: all 0.3s ease;
  margin: 15px;
}

.modern-product-card:hover {
  transform: translateY(-4px);
}

/* Line clamp utilities */
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Modern card hover effects */
.modern-product-card .product-info-default {
  width: 100%;
  position: absolute;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-product-card:hover .product-info-default {
  opacity: 0;
  transform: translateY(100%);
}

.modern-product-card .product-actions-hover {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-product-card:hover .product-actions-hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Ensure smooth transitions on product info backdrop */
.product-info-backdrop {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradient backgrounds */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-orange-400 {
  --tw-gradient-from: rgb(251 146 60);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(251 146 60 / 0));
}

.to-orange-500 {
  --tw-gradient-to: rgb(249 115 22);
}

.from-emerald-400 {
  --tw-gradient-from: rgb(52 211 153);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(52 211 153 / 0));
}

.to-emerald-500 {
  --tw-gradient-to: rgb(16 185 129);
}

.from-blue-400 {
  --tw-gradient-from: rgb(96 165 250);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(96 165 250 / 0));
}

.to-blue-500 {
  --tw-gradient-to: rgb(59 130 246);
}

.from-purple-400 {
  --tw-gradient-from: rgb(196 181 253);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(196 181 253 / 0));
}

.to-purple-500 {
  --tw-gradient-to: rgb(168 85 247);
}

.from-pink-400 {
  --tw-gradient-from: rgb(244 114 182);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(244 114 182 / 0));
}

.to-pink-500 {
  --tw-gradient-to: rgb(236 72 153);
}

.from-indigo-400 {
  --tw-gradient-from: rgb(129 140 248);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(129 140 248 / 0));
}

.to-indigo-500 {
  --tw-gradient-to: rgb(99 102 241);
}

.from-teal-400 {
  --tw-gradient-from: rgb(45 212 191);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(45 212 191 / 0));
}

.to-teal-500 {
  --tw-gradient-to: rgb(20 184 166);
}

.from-red-400 {
  --tw-gradient-from: rgb(248 113 113);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(248 113 113 / 0));
}

.to-red-500 {
  --tw-gradient-to: rgb(239 68 68);
}

/* White/opacity utilities */
.text-white\/80 {
  color: rgb(255 255 255 / 0.8);
}

.text-white\/60 {
  color: rgb(255 255 255 / 0.6);
}

.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}

.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}

.bg-white\/80 {
  background-color: rgb(255 255 255 / 0.8);
}

.bg-white\/90 {
  background-color: rgb(255 255 255 / 0.9);
}

.bg-black\/20 {
  background-color: rgb(0 0 0 / 0.2);
}

/* Additional utilities for modern cards */
.rounded-2xl {
  border-radius: 1rem;
}

.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Height utilities */
.h-80 {
  height: 20rem;
}

.w-32 {
  width: 8rem;
}

.h-32 {
  height: 8rem;
}

.w-40 {
  width: 10rem;
}

.h-40 {
  height: 10rem;
}

.w-44 {
  width: 11rem;
}

.h-44 {
  height: 11rem;
}

.w-52 {
  width: 13rem;
}

.h-52 {
  height: 13rem;
}

.w-20 {
  width: 5rem;
}

.h-20 {
  height: 5rem;
}

/* Object fit */
.object-contain {
  object-fit: contain;
}

.object-cover {
  object-fit: cover;
}

/* Backdrop blur */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

/* Opacity utilities */
.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

/* Visibility utilities */
.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

/* Text shadow utilities for better contrast */
.text-shadow-lg {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.4);
}

.text-shadow-md {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.text-shadow-sm {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Product info area with backdrop for readability */
.product-info-backdrop {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1), transparent);
  backdrop-filter: blur(2px);
}

/* Product Modal Layout - Following the HTML Example Structure */
.modal-content {
  display: flex;
  flex-direction: column;
  height: 90vh;
  max-height: 90vh;
  overflow: hidden; /* Prevents modal body scroll */
}

/* Modal content area - Grid layout for large screens */
#modal-content-area {
  height: 100%;
  max-height: 90vh;
  overflow: hidden;
}

/* Product info column - Container with flexbox structure */
.product-info-column {
  display: flex;
  flex-direction: column;
  height: 100%; /* Match parent modal height */
  max-height: 90vh; /* Ensure it never exceeds modal height */
  overflow: hidden; /* Prevents container scroll */
}

/* Header section - Fixed at top (like header in example) */
.product-info-header {
  background: white;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0; /* Never shrinks - stays fixed */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 100;
}

/* Main content area - Takes all available space (like main-content in example) */
.product-info-content {
  flex: 1; /* Takes all available space */
  overflow-y: auto; /* Scroll when needed */
  padding: 1.5rem;
  background: #f8f9fa;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-yellow) #f1f1f1;
}

/* Custom scrollbar styling */
.product-info-content::-webkit-scrollbar {
  width: 6px;
}

.product-info-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.product-info-content::-webkit-scrollbar-thumb {
  background: var(--brand-yellow);
  border-radius: 3px;
}

.product-info-content::-webkit-scrollbar-thumb:hover {
  background: #e6ac00;
}

/* Footer section - Fixed at bottom (like footer in example) */
.product-actions-fixed {
  background: white;
  padding: 1rem;
  flex-shrink: 0; /* Never shrinks - stays fixed */
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  border-top: 1px solid #e5e7eb;
  z-index: 100;
  min-height: 80px; /* Debug: ensure it has height */
}

/* Enhanced Accordion Styles with Chevron Icons */
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  color: var(--brand-black);
  text-align: left;
}

.accordion-header:hover {
  border-color: var(--brand-yellow);
  background: rgba(253, 191, 0, 0.05);
}

.accordion-header.active {
  border-color: var(--brand-yellow);
  background: rgba(253, 191, 0, 0.1);
  color: var(--brand-black);
}

.accordion-header .chevron {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--brand-yellow);
  flex-shrink: 0;
}

.accordion-header.active .chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 2px solid #e5e7eb;
  border-right: 2px solid #e5e7eb;
  border-bottom: 2px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
  margin-top: -2px;
}

.accordion-content.active {
  max-height: 200px;
  opacity: 1;
  border-color: var(--brand-yellow);
}

.accordion-content-inner {
  padding: 1rem;
  background: white;
  border-radius: 0 0 0.375rem 0.375rem;
}

/* Enhanced Quantity Selector with Brand Colors */
.quantity-selector {
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.quantity-selector:hover,
.quantity-selector:focus-within {
  border-color: var(--brand-yellow);
  box-shadow: 0 4px 12px rgba(253, 191, 0, 0.15);
}

.quantity-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--brand-yellow);
  color: var(--brand-black);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.quantity-btn:hover {
  background: var(--brand-red);
  color: white;
  transform: scale(1.05);
}

.quantity-btn:active {
  transform: scale(0.95);
}

.quantity-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.quantity-btn.decrease {
  border-radius: 0;
}

.quantity-btn.increase {
  border-radius: 0;
}

.quantity-input {
  width: 4rem;
  height: 2.5rem;
  text-align: center;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-black);
  background: white;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Quantity selector with icon support */
.quantity-btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

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

/* Focus indicators for accessibility */
.quantity-input:focus {
  background: rgba(253, 191, 0, 0.05);
  outline: 2px solid var(--brand-yellow);
  outline-offset: -2px;
}

.accordion-header:focus {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 2px;
}

/* Cart Quantity Selector - Compact Version */
.cart-quantity-selector {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  max-width: 80px; /* Compact width */
}

.cart-quantity-selector:hover,
.cart-quantity-selector:focus-within {
  border-color: var(--brand-yellow);
  box-shadow: 0 2px 4px rgba(253, 191, 0, 0.15);
}

.cart-quantity-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem; /* Smaller than modal version */
  height: 1.75rem;
  background: var(--brand-yellow);
  color: var(--brand-black);
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cart-quantity-btn:hover {
  background: var(--brand-red);
  color: white;
  transform: scale(1.05);
}

.cart-quantity-btn:active {
  transform: scale(0.95);
}

.cart-quantity-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.cart-quantity-btn svg {
  width: 0.75rem; /* Smaller icons */
  height: 0.75rem;
  transition: transform 0.2s ease;
}

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

.cart-quantity-input {
  width: 2.5rem; /* Compact input width */
  height: 1.75rem;
  text-align: center;
  border: none;
  font-weight: 500;
  font-size: 0.75rem; /* Smaller font */
  color: var(--brand-black);
  background: white;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.cart-quantity-input::-webkit-outer-spin-button,
.cart-quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-quantity-input:focus {
  background: rgba(253, 191, 0, 0.05);
  outline: 1px solid var(--brand-yellow);
  outline-offset: -1px;
}

/* Cart Remove Button - Compact Red Style */
.remove-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  background: #ef4444;
  color: white;
  border: 1px solid #ef4444;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(239, 68, 68, 0.15);
}

.remove-item:hover {
  background: #dc2626;
  border-color: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.25);
}

.remove-item:active {
  transform: translateY(0) scale(0.98);
}

.remove-item svg {
  width: 0.75rem;
  height: 0.75rem;
  transition: transform 0.2s ease;
}

.remove-item:hover svg {
  transform: scale(1.1);
}