/* TAG USA Website - Simple HTML/CSS Version */
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove default button borders and outlines */
button, input[type="button"], input[type="submit"], input[type="reset"] {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button:focus, input[type="button"]:focus, input[type="submit"]:focus, input[type="reset"]:focus {
  outline: none;
}

button:active, input[type="button"]:active, input[type="submit"]:active, input[type="reset"]:active {
  outline: none;
}

button::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="reset"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Ensure custom styled buttons maintain their styling */
.btn, .button, [class*="btn-"], [class*="button-"] {
  border: none !important;
  outline: none !important;
}

/* Remove borders from form elements */
input, textarea, select {
  border: none;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  outline: none;
}

body {
  font-family: ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
  color: #333;
  background: #11204b;
  -webkit-font-smoothing: antialiased;
}

/* Remove text decoration from all elements */
* {
  text-decoration: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Brand Colors */
:root {
  --brand-300: #f06a78;
  --brand-400: #e23a4b;
  --brand-500: #c41e32;
  --brand-600: #a51a2b;
  --navy: #11204b;
  --red-bg: #c41e32;
  --dark-red: #a51a2b;
  --white: #ffffff;
  --light-gray: #f8f9fa;
}

/* Basic Utilities */
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Position */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }

/* Layout */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.top-2 { top: 0.5rem; }
.top-4 { top: 1rem; }
.top-8 { top: 2rem; }
.top-16 { top: 4rem; }
.top-20 { top: 5rem; }
.top-32 { top: 8rem; }
.top-36 { top: 9rem; }
.top-44 { top: 11rem; }
.top-48 { top: 12rem; }
.right-2 { right: 0.5rem; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }

/* Bottom positioning */
.bottom-6 { bottom: 1.5rem; }
.bottom-8 { bottom: 2rem; }
.bottom-24 { bottom: 6rem; }
.bottom-40 { bottom: 10rem; }

/* Negative positioning */
.-top-2 { top: -0.5rem; }
.-right-2 { right: -0.5rem; }
.right-8 { right: 2rem; }
.right-12 { right: 3rem; }
.bottom-0 { bottom: 0; }
.bottom-2 { bottom: 0.5rem; }
.bottom-4 { bottom: 1rem; }
.bottom-6 { bottom: 1.5rem; }
.bottom-24 { bottom: 6rem; }
.left-2 { left: 0.5rem; }
.left-4 { left: 1rem; }
.left-8 { left: 2rem; }
.left-1\/2 { left: 50%; }
.left-1\/4 { left: 25%; }
.right-1\/3 { right: 33.333333%; }
.right-1\/4 { right: 25%; }

/* Z-Index */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[60\] { z-index: 60; }

/* Width & Height */
.w-0 { width: 0; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.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-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }

.h-0 { height: 0; }
.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-9 { height: 2.25rem; }
.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-48 { height: 12rem; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.min-w-6 { min-width: 1.5rem; }
.h-\[320px\] { height: 320px; }

/* Max Width */
.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: 0; }
.min-w-full { min-width: 100%; }

/* Flexbox */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.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-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; }
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-initial { flex: 0 1 auto; }
.flex-none { flex: none; }
.flex-shrink { flex-shrink: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }
.flex-grow-0 { flex-grow: 0; }

/* 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)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

/* Gap */
.gap-0 { gap: 0; }
.gap-0\.5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* Spacing */
.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-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.25rem; }

/* Margin */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-4 { margin: 1rem; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.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; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }

/* Padding */
.p-0 { padding: 0; }
.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; }

.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; }

.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.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-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-\[110px\] { padding-top: 110px; }
.pb-0 { padding-bottom: 0; }
.pb-24 { padding-bottom: 6rem; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-\[11px\] { font-size: 11px; }
.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; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }

/* Colors */
.text-white { color: rgb(255 255 255); }
.text-black { color: rgb(0 0 0); }
.text-slate-500 { color: rgb(100 116 139); }
.text-slate-600 { color: rgb(71 85 105); }
.text-slate-700 { color: rgb(51 65 85); }
.text-slate-800 { color: rgb(30 41 59); }
.text-slate-900 { color: rgb(15 23 42); }
.text-brand-300 { color: var(--brand-300); }
.text-brand-500 { color: var(--brand-500); }

/* Gray colors */
.text-gray-600 { color: rgb(75 85 99); }
.text-gray-500 { color: rgb(107 114 128); }
.text-gray-400 { color: rgb(156 163 175); }

/* Red colors */
.text-red-600 { color: rgb(220 38 38); }
.text-red-500 { color: rgb(239 68 68); }
.text-red-400 { color: rgb(248 113 113); }

/* Green colors */
.text-green-600 { color: rgb(16 185 129); }
.text-green-700 { color: rgb(4 120 87); }

/* Blue colors */
.text-blue-700 { color: rgb(29 78 216); }
.text-white\/70 { color: rgb(255 255 255 / 0.7); }
.text-white\/80 { color: rgb(255 255 255 / 0.8); }
.text-white\/85 { color: rgb(255 255 255 / 0.85); }
.text-white\/90 { color: rgb(255 255 255 / 0.9); }

/* Background Colors */
.bg-white { background-color: rgb(255 255 255); }
.bg-black { background-color: rgb(0 0 0); }
.bg-slate-50 { background-color: rgb(248 250 252); }
.bg-slate-100 { background-color: rgb(241 245 249); }
.bg-slate-900\/40 { background-color: rgb(15 23 42 / 0.4); }
.bg-slate-950\/90 { background-color: rgb(2 6 23 / 0.9); }
.bg-brand-500 { background-color: var(--brand-500); }
.bg-brand-600 { background-color: var(--brand-600); }
.bg-navy { background-color: var(--navy); }
.bg-white\/5 { background-color: rgb(255 255 255 / 0.05); }
.bg-white\/10 { background-color: rgb(255 255 255 / 0.1); }
.bg-white\/90 { background-color: rgb(255 255 255 / 0.9) !important; }
.bg-white\/95 { background-color: rgb(255 255 255 / 0.95); }
.bg-black\/60 { background-color: rgb(0 0 0 / 0.6); }

/* Gradients */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.from-slate-900 { --tw-gradient-from: #0f172a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(15 23 42 / 0)); }
.to-slate-950 { --tw-gradient-to: #020617; }

/* Border */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-slate-200 { border-color: rgb(226 232 240); }
.border-white\/10 { border-color: rgb(255 255 255 / 0.1); }

/* Border Radius */
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-t-lg { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }
.rounded-t-2xl { border-top-left-radius: 1rem; border-top-right-radius: 1rem; }

/* Shadows */
.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px 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-glow { box-shadow: 0 0 0 3px rgb(244 63 94 / 20%); }

/* Effects */
.opacity-20 { opacity: 0.2; }
.opacity-90 { opacity: 0.9; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

.object-cover { object-fit: cover; }

.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }

.select-none { user-select: none; }

.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Scroll */
.scroll-smooth { scroll-behavior: smooth; }
.snap-x { scroll-snap-type: x mandatory; }
.snap-mandatory { scroll-snap-type: x mandatory; }
.snap-start { scroll-snap-align: start; }

/* Basis */
.basis-1\/2 { flex-basis: 50%; }

/* Shrink */
.shrink-0 { flex-shrink: 0; }

/* Animations */
.animate-bounce { animation: bounce 1s infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50% { transform: none; animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

/* Transitions */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.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; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* Backdrop */
.backdrop-blur { backdrop-filter: blur(8px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* Hover States */
.hover\:bg-brand-500:hover { background-color: var(--brand-500); }
.hover\:bg-brand-600:hover { background-color: var(--brand-600); }
.hover\:bg-white\/10:hover { background-color: rgb(255 255 255 / 0.1); }
.hover\:bg-white\/20:hover { background-color: rgb(255 255 255 / 0.2); }
.hover\:bg-slate-100:hover { background-color: rgb(241 245 249); }
.hover\:text-white:hover { color: rgb(255 255 255); }
.hover\:text-slate-700:hover { color: rgb(51 65 85); }
.hover\:text-slate-800:hover { color: rgb(30 41 59); }
.hover\:text-slate-900:hover { color: rgb(15 23 42); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

/* Background colors */
.bg-slate-50 { background-color: rgb(248 250 252); }
.bg-slate-100 { background-color: rgb(241 245 249); }
.bg-slate-200 { background-color: rgb(226 232 240); }
.bg-red-100 { background-color: rgb(254 226 226); }
.bg-red-200 { background-color: rgb(254 202 202); }
.bg-green-50 { background-color: rgb(240 253 244); }
.bg-green-200 { background-color: rgb(187 247 208); }
.bg-blue-100 { background-color: rgb(219 234 254); }
.bg-blue-200 { background-color: rgb(191 219 254); }

/* Hover background colors */
.hover\:bg-slate-100:hover { background-color: rgb(241 245 249); }
.hover\:bg-slate-200:hover { background-color: rgb(226 232 240); }
.hover\:bg-red-100:hover { background-color: rgb(254 226 226); }
.hover\:bg-red-200:hover { background-color: rgb(254 202 202); }
.hover\:bg-green-700:hover { background-color: rgb(21 128 61); }
.hover\:bg-blue-200:hover { background-color: rgb(191 219 254); }
.hover\:bg-white\/20:hover { background-color: rgb(255 255 255 / 0.2); }
.hover\:text-red-600:hover { color: rgb(220 38 38); }
.hover\:text-gray-600:hover { color: rgb(75 85 99); }

/* Focus States */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--brand-500); }
.focus\:ring-brand-500:focus { box-shadow: 0 0 0 2px var(--brand-500); }

/* Group Hover */
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }

/* Selection */
.selection\:bg-brand-500 *::selection { background-color: var(--brand-500); }
.selection\:text-white *::selection { color: rgb(255 255 255); }
.selection\:bg-brand-500::selection { background-color: var(--brand-500); }
.selection\:text-white::selection { color: rgb(255 255 255); }

/* Responsive - Mobile First */
@media (min-width: 640px) {
  .sm\:inline-flex { display: inline-flex; }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:p-5 { padding: 1.25rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}

@media (min-width: 768px) {
  .md\:bottom-6 { bottom: 1.5rem; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:h-full { height: 100%; }
  .md\:h-48 { height: 12rem; }
  .md\:basis-1\/3 { flex-basis: 33.333333%; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex-col { flex-direction: column; }
  .md\:pb-0 { padding-bottom: 0; }
  .md\:pt-28 { padding-top: 7rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* Custom Classes */
.glass {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .08);
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Animations */
@keyframes floaty-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes floaty-slower {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-1deg); }
}

.animate-floaty-slow { animation: floaty-slow 6s ease-in-out infinite; }
.animate-floaty-slower { animation: floaty-slower 8s ease-in-out infinite; }

/* Product Card Styles */
.product-card img {
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card .image-container {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.product-card .image-fallback {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #64748b;
}

/* Dice Game Styles */
.pip {
  display: block;
  width: 14px;
  height: 14px;
  margin: auto;
  border-radius: 9999px;
  background: #111;
}

.dice-face {
  box-shadow: inset 0 4px 16px rgba(0,0,0,.15), 0 10px 24px rgba(0,0,0,.3);
  background: linear-gradient(180deg, #efe5db 0%, #ebe2d9 100%);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.15);
  cursor: pointer;
}

.rolling {
  animation: spin .6s ease-in-out;
}

.pip.on {
  background: #111;
}

.pip.hidden {
  visibility: hidden;
}

@keyframes spin {
  0% { transform: rotate(0) scale(1); }
  50% { transform: rotate(180deg) scale(.95); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Additional animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: calc(200px + 100%) 0; }
}

.animate-fadeUp { animation: fadeUp 0.6s ease-out; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  background-size: 200px 100%;
  animation: shimmer 2s infinite;
}

/* Size utilities */
.size-6 { width: 1.5rem; height: 1.5rem; }

/* Enhanced Menu Styles */
.tab-btn {
  position: relative;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.tab-btn:hover::before {
  left: 100%;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1429 100%);
  color: white;
  border-color: var(--brand-500);
  box-shadow: 0 8px 25px rgba(17, 32, 75, 0.3);
  transform: translateY(-2px);
}

.tab-btn:not(.active) {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.tab-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Tab Optimization */
@media (max-width: 768px) {
  .tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    border-radius: 1.5rem;
    font-weight: 500;
    min-width: auto;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .tab-btn.active {
    background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 100%);
    border-color: var(--brand-400);
    box-shadow: 0 2px 8px rgba(196, 30, 50, 0.3);
    transform: none;
  }
  
  .tab-btn:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .tab-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.15);
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 480px) {
  .tab-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.6875rem;
    border-radius: 1.25rem;
    font-weight: 500;
  }
}




.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(196, 30, 50, 0.3);
  border-color: var(--brand-500);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  border-radius: 0;
  display: block;
}

.product-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.1);
}

.image-container {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.product-card:hover .image-container::after {
  transform: translateX(100%);
}

.image-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #64748b;
  font-size: 3.5rem;
  height: 200px;
}

.menu-section {
  margin-bottom: 4rem;
  position: relative;
}

.menu-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
   
    position: relative;
    text-align: left;
}



/* Menu Grid - Perfect Responsive Design */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1rem 0;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Large Desktop */
@media (min-width: 1400px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Desktop */
@media (min-width: 1025px) and (max-width: 1399px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* Mobile - Medium */
@media (min-width: 481px) and (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Mobile - Small */
@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .menu-section h3 {
    padding: 0!important;
    margin-bottom: 10px!important;
  }
}

/* Enhanced product card content */
.product-content {
  padding: 1.25rem;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
}

.product-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  text-align: center;
}

.product-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-300);
  margin-bottom: 1rem;
  text-align: center;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.add-to-cart-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--navy) 0%, #0a1429 100%);
  color: white;
  border: 1px solid var(--brand-500);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.add-to-cart-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.add-to-cart-btn:hover::before {
  left: 100%;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 100%);
  border-color: var(--brand-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 50, 0.4);
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Enhanced Search Bar */
.search-container {
  position: relative;
  max-width: 28rem;
  margin: 2rem auto 0;
}
ul {
    list-style-type: none;
}
footer ul li a {
    color: rgb(71 85 105);
}
.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(196, 30, 50, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transition: color 0.3s ease;
  z-index: 10;
  font-size: 1.1rem;
}

.search-input:focus + .search-icon {
  color: var(--brand-300);
}

.clear-search {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.25rem;
  border-radius: 0.5rem;
}

.clear-search:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* Enhanced Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.bottom-nav-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.bottom-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
  padding: 0.75rem 0;
}

.bottom-link {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 1rem;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.bottom-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(196, 30, 50, 0.1);
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bottom-link:hover::before {
  opacity: 1;
}

.bottom-link:hover {
  color: white;
  transform: translateY(-2px);
}

.bottom-link span:first-child {
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.bottom-link span:last-child {
  position: relative;
  z-index: 1;
  font-weight: 500;
}

@media (min-width: 768px) {
  .bottom-nav {
    display: none;
  }
}

/* Menu Page Header Enhancement */
.menu-header {
  background: linear-gradient(135deg, rgba(17, 32, 75, 0.9) 0%, rgba(17, 32, 75, 0.7) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.menu-header-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.menu-header h1 {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.menu-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Floating Action Buttons */
.floating-btn {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 100%);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 0 8px 25px rgba(196, 30, 50, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 40;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 35px rgba(196, 30, 50, 0.6);
}

.cart-btn {
  bottom: 10rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.cart-btn:hover {
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* Floating Cart Button */
#cartBtn {
  background: linear-gradient(135deg, #c41e32 0%, #a51a2b 100%);
  border: 2px solid #e23a4b;
  box-shadow: 0 4px 15px rgba(196, 30, 50, 0.3);
  transition: all 0.3s ease;
}

#cartBtn:hover {
  background: linear-gradient(135deg, #e23a4b 0%, #c41e32 100%);
  box-shadow: 0 6px 20px rgba(196, 30, 50, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .floating-btn {
    bottom: 5rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
  .card-image-container,
  .product-card img {
    height:155px!important;

}
  .cart-btn {
    bottom: 8.5rem;
  }
}

/* Fix text colors and spacing for menu page */
.menu-page-content {
  color: white;
}

.menu-page-content h1,
.menu-page-content h2,
.menu-page-content h3 {
  color: white;
}

.menu-page-content p {
  color: rgba(255, 255, 255, 0.8);
}

.menu-page-content .text-white {
  color: white !important;
}

.menu-page-content .text-white\/70 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.menu-page-content .text-white\/80 {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Fix spacing for menu sections */
.menu-section {
  margin-bottom: 3rem;

}



/* Fix product card spacing */
.product-card {
  margin-bottom: 1rem;
}

/* Perfect Product Card Design for All Screens */
.card-container {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(17, 32, 75, 0.95) 0%, rgba(10, 20, 41, 0.98) 100%);
  border: 1px solid rgba(196, 30, 50, 0.4);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  height: 100%;
  width: 100%;
}

.card-container:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(196, 30, 50, 0.5);
  border-color: var(--brand-500);
}

/* Image Container */
.card-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-container:hover .card-image {
  transform: scale(1.1);
  filter: brightness(1.1) contrast(1.1);
}

.card-image-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #64748b;
  font-size: 3rem;
}

/* Price Badge */
.price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(196, 30, 50, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-text {
  font-size: 0.875rem;
  font-weight: 700;
}

/* Content Section */
.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
}

/* Price display in content area for desktop */
.card-content::before {
  content: attr(data-price);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-300);
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Ensure price is always visible - higher specificity */
.product-card .card-content::before {
  content: attr(data-price) !important;
  display: block !important;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-300);
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.card-header {
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Size Options */
.size-options {
  display: flex;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.size-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.size-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.size-btn.active {
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 100%);
  border-color: var(--brand-400);
  box-shadow: 0 4px 12px rgba(196, 30, 50, 0.3);
}

/* Add to Cart Button */
.card-actions {
  margin-top: auto;
}

.add-to-cart-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 100%);
  color: white;
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(196, 30, 50, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-400) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 50, 0.4);
}

.btn-icon {
  font-size: 1.125rem;
}

.btn-text {
  font-size: 1rem;
  font-weight: 700;
}

/* Mobile Design - Dark Theme with Zomato/Swiggy Layout */
@media (max-width: 768px) {
  .card-container {
    flex-direction: row;
    height: auto;
    min-height: 100px;
    border-radius: 12px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(17, 32, 75, 0.95) 0%, rgba(10, 20, 41, 0.98) 100%);
    border: 1px solid rgba(196, 30, 50, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(20px);
  }
  
  .card-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--brand-500);
  }
  
  .card-image-container {
    width: 100px;

    flex-shrink: 0;
    border-radius: 0;
    margin: 0;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  }
  
  .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }
  
  .card-image-fallback {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #64748b;
    font-size: 2rem;
  }
  
  .price-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(196, 30, 50, 0.4);
  }
  
  .card-content {
    padding: 12px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    background: transparent;
  }
  
  .card-header {
    margin-bottom: 0;
  }
  
  .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    margin: 0 0 4px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .size-options {
    display: flex;
    gap: 6px;
    margin: 6px 0;
  }
  
  .size-btn {
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
  }
  
  .size-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: none;
  }
  
  .size-btn.active {
    background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 100%);
    color: white;
    border-color: var(--brand-400);
    box-shadow: 0 2px 8px rgba(196, 30, 50, 0.3);
  }
  
  .card-actions {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .add-to-cart-btn {
    background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(196, 30, 50, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
    justify-content: center;
  }
  
  .add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-400) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(196, 30, 50, 0.4);
  }
  
  .btn-icon {
    font-size: 0.875rem;
  }
  
  .btn-text {
    font-size: 0.875rem;
    font-weight: 600;
  }
  
  /* Price display in content area */
  .card-content::before {
    content: attr(data-price);
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-300);
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
}

/* Small Mobile Optimization - Dark Theme */
@media (max-width: 480px) {
  .card-container {
    min-height: 90px;
    margin-bottom: 10px;
    border-radius: 10px;
  }
  
  .card-image-container {
    width: 90px;
  
  }
  
  .card-content {
    padding: 10px 12px;
    gap: 6px;
  }
  
  .card-title {
    font-size: 0.875rem;
    margin-bottom: 2px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  .size-options {
    gap: 4px;
    margin: 4px 0;
  }
  
  .size-btn {
    padding: 3px 6px;
    font-size: 0.6875rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .size-btn.active {
    background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 100%);
    border-color: var(--brand-400);
  }
  
  .add-to-cart-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 80px;
    background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .price-badge {
    bottom: 6px;
    right: 6px;
    padding: 3px 6px;
    font-size: 0.6875rem;
    background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .card-content::before {
    color: var(--brand-300);
    font-size: 0.875rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
}

/* Tablet Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
  .card-container {
    flex-direction: column;
    height: auto;
    min-height: 350px;
  }
  
  .card-image-container {
    height: 180px;
  }
  
  .card-content {
    padding: 1.25rem;
  }
  
  .card-content::before {
    content: attr(data-price);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-300);
    margin-bottom: 0.625rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: block;
  }
  
  .card-title {
    font-size: 1.125rem;
  }
}

/* Desktop Responsive Design */
@media (min-width: 1025px) {
  .card-container {
    flex-direction: column;
    height: auto;
    min-height: 400px;
  }
  
  .card-image-container {
    height: 200px;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .card-content::before {
    content: attr(data-price);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-300);
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: block;
  }
  
  .card-title {
    font-size: 1.125rem;
  }
}

/* Fix search bar spacing */
.search-container {
  margin-bottom: 2rem;
}

/* Mobile Menu Header Improvements */
@media (max-width: 768px) {
  /* Override flex layout for mobile centering */
  .flex.items-end.justify-between {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1rem !important;
  }
  
  .menu-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  
  .menu-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  
  .menu-header p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    text-align: center;
  }
  
  /* Center the text container */
  .flex.items-end.justify-between > div:first-child {
    text-align: center !important;
  }
  
  .flex.items-end.justify-between > div:first-child h2 {
    text-align: center !important;
  }
  
  .flex.items-end.justify-between > div:first-child p {
    text-align: center !important;
  }
  
  /* Mobile Tab Container */
  .tab-container {
    margin-bottom: 1.5rem;
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  /* Mobile Search Bar */
  .search-container {
    padding: 0 1rem;
    margin: 1.5rem auto 1.5rem;
    max-width: 100%;
  }
  
  .search-input {
    font-size: 0.9rem;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border-radius: 1.5rem;
  }
  
  .search-icon {
    left: 1rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .menu-header h1 {
    font-size: 1.5rem;
  }
  
  .menu-header p {
    font-size: 0.8rem;
  }
  
  .tab-container {
    gap: 0.375rem;
  }
}

/* Mobile Checkout Modal - Simple Design */
@media (max-width: 768px) {
  #checkoutModal .h-full.w-full.flex.items-center.justify-center.p-4 {
    padding: 0.5rem;
    align-items: flex-end;
  }
  
  #checkoutModal .w-full.max-w-md {
    max-width: 100%;
    border-radius: 0.75rem 0.75rem 0 0;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  #checkoutModal .px-6.py-4 {
    padding: 1rem;
  }
  
  #checkoutModal .p-6 {
    padding: 1rem;
  }
  
  #checkoutModal .space-y-4 > * + * {
    margin-top: 1rem;
  }
  
  #checkoutModal .grid.grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  #checkoutModal input,
  #checkoutModal select,
  #checkoutModal textarea {
    padding: 0.75rem;
    font-size: 1rem;
    border: 2px solid #d1d5db;
  }
  
  #checkoutModal button {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
  }
  
  #checkoutModal label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
  }
}

/* Fix Checkout Modal Button Styling */
#closeCheckout {
  background: transparent !important;
  border: none !important;
  color: white !important;
  font-size: 1.25rem !important;
  font-weight: bold !important;
  padding: 0.5rem !important;
  border-radius: 50% !important;
  transition: background-color 0.2s ease !important;
}

#closeCheckout:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

#detectNearest {
  background: #3b82f6 !important;
  color: white !important;
  border: 2px solid #2563eb !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
}

#detectNearest:hover {
  background: #2563eb !important;
  border-color: #1d4ed8 !important;
}

#detectNearest span {
  color: white !important;
  font-weight: 600 !important;
}

#placeWhatsapp {
  background: #16a34a !important;
  color: white !important;
  border: 2px solid #15803d !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

#placeWhatsapp:hover {
  background: #15803d !important;
  border-color: #166534 !important;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15) !important;
}

/* WhatsApp button icon specifically */
#placeWhatsapp span {
  color: white !important;
}

#placeWhatsapp span:first-child {
  color: white !important;
  font-size: 1.2rem !important;
}

/* Modal Scrolling Fix */
#checkoutModal {
  overflow: hidden;
}

#checkoutModal .w-full.max-w-md {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f1f5f9;
}

#checkoutModal .w-full.max-w-md::-webkit-scrollbar {
  width: 6px;
}

#checkoutModal .w-full.max-w-md::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

#checkoutModal .w-full.max-w-md::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

#checkoutModal .w-full.max-w-md::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Fix tab navigation spacing */
.tab-navigation {
  margin-bottom: 2rem;
  padding: 0 1rem;
}

/* Fix main content spacing */
.menu-main-content {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Fix size buttons to use dark colors */
.size-btn.active {
  background: var(--navy) !important;
  color: white !important;
  border: 1px solid var(--brand-500) !important;
}

.size-btn:not(.active) {
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.size-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Fix Catering & Franchise Button Colors */
.catering-franchise-btn {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--brand-300) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 1rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(10px) !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.catering-franchise-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: var(--brand-200) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* Mobile Catering Button */
@media (max-width: 768px) {
  .catering-franchise-btn {
    padding: 0.625rem 1.25rem !important;
    font-size: 0.875rem !important;
    border-radius: 0.75rem !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* Fix Social Media Icons Colors */
.social-icon {
  color: white !important;
  transition: color 0.3s ease !important;
}

/* Top Bar Social Media Icons */
.top-bar .social-icon,
header .social-icon,
nav .social-icon {
  color: white !important;
  fill: white !important;
}

/* Ensure all social media links are white */
a[href*="facebook"] svg,
a[href*="instagram"] svg,
a[href*="twitter"] svg,
a[href*="youtube"] svg,
a[href*="whatsapp"] svg {
  color: white !important;
  fill: white !important;
}

/* Social media icons in header */
.header .social-icon,
.navbar .social-icon {
  color: white !important;
  fill: white !important;
}

.social-icon:hover {
  color: var(--brand-300) !important;
}

/* Force white color for all social media icons */
svg[class*="social"],
svg[class*="icon"],
.social-links svg,
.social-media svg,
.top-bar svg,
header svg {
  color: white !important;
  fill: white !important;
}

/* Specific targeting for common social media classes */
.facebook-icon,
.instagram-icon,
.twitter-icon,
.youtube-icon,
.whatsapp-icon {
  color: white !important;
  fill: white !important;
}

/* Make all SVG icons white in top bar/header */
header svg,
.top-bar svg,
nav svg,
.search-icon svg,
.mobile-menu svg {
  color: rgb(0, 0, 0) !important;
  stroke: rgb(0, 0, 0) !important;
  fill: rgb(0, 0, 0) !important;
}

/* Search icon specifically - keep it white */
.search-icon {
  color: white !important;
}

.search-icon svg {
  color: white !important;
  stroke: white !important;
  fill: white !important;
}

/* Override any black search icon rules */
.search-icon,
.search-container .search-icon,
.search-input + .search-icon,
[class*="search"] .search-icon {
  color: white !important;
  stroke: white !important;
  fill: white !important;
}

/* WhatsApp icon specifically */
.whatsapp-icon,
[class*="whatsapp"],
[href*="whatsapp"] svg,
button[class*="whatsapp"] svg {
  color: white !important;
  fill: white !important;
  stroke: white !important;
}

/* WhatsApp button icon */
#placeWhatsapp svg,
#placeWhatsapp span[class*="whatsapp"],
button[class*="whatsapp"] {
  color: white !important;
  fill: white !important;
}

/* All WhatsApp related elements */
*[class*="whatsapp"] svg,
*[href*="whatsapp"] svg,
*[id*="whatsapp"] svg {
  color: white !important;
  fill: white !important;
  stroke: white !important;
}

/* Menu icons - make them black (but exclude search icon) */
.menu-icon,
.menu-icons,
.menu-item-icon,
.menu-section-icon,
.menu-category-icon,
[class*="menu"] svg:not(.search-icon),
[class*="menu"] .icon:not(.search-icon),
.menu-grid svg:not(.search-icon),
.menu-grid .icon:not(.search-icon),
.product-card svg:not(.search-icon),
.product-card .icon:not(.search-icon) {
  color: #000 !important;
  fill: #000 !important;
  stroke: #000 !important;
}

/* Specific menu icon targeting */
.menu-section .icon,
.menu-item .icon,
.menu-category .icon,
.menu-grid .icon,
.product-card .icon {
  color: #000 !important;
  fill: #000 !important;
  stroke: #000 !important;
}

/* Menu page specific icons */
.menu-page svg,
.menu-page .icon,
.menu-container svg,
.menu-container .icon,
.menu-content svg,
.menu-content .icon {
  color: #000 !important;
  fill: #000 !important;
  stroke: #000 !important;
}

/* Override any white menu icons */
.menu-icon.white,
.menu-icon[style*="white"],
.menu-icon[style*="#fff"],
.menu-icon[style*="#ffffff"] {
  color: #000 !important;
  fill: #000 !important;
  stroke: #000 !important;
}

/* ========================================
   LOCATION PAGE STYLES
======================================== */

/* Location Cards */
.location-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.location-card:hover::before {
  opacity: 1;
}

/* Location Header */
.location-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.location-icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.3;
}

/* Location Address */
.location-address {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  min-height: 2.25rem;
}

/* Location Actions */
.location-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.directions-btn {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.directions-btn:hover {
  background: rgba(59, 130, 246, 0.3);
  color: #93c5fd;
  transform: translateY(-1px);
}

.whatsapp-btn {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.whatsapp-btn:hover {
  background: rgba(34, 197, 94, 0.3);
  color: #86efac;
  transform: translateY(-1px);
}

/* Contact Info Section */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 140px;
  justify-content: center;
}

.phone-btn {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: white;
  border: 1px solid var(--brand-500);
}

.phone-btn:hover {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .location-card {
    padding: 1.25rem;
  }
  
  .location-header {
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
  
  .location-icon {
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }
  
  .location-title {
    font-size: 1.125rem;
  }
  
  .location-address {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
  
  .location-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .action-btn {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
  
  .contact-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .location-card {
    padding: 1rem;
  }
  
  .location-title {
    font-size: 1rem;
  }
  
  .location-address {
    font-size: 0.8rem;
  }
  
  .action-btn {
    padding: 0.75rem 0.875rem;
    font-size: 0.8rem;
  }
}

/* ========================================
   BLOG PAGE STYLES
======================================== */

/* Blog CTA Button */
.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--brand-500);
}

.blog-cta-btn:hover {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Blog Cards */
.blog-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card:hover::before {
  opacity: 1;
}

/* Blog Image Container */
.blog-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Blog Content */
.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.blog-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

.blog-excerpt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-400);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: var(--brand-300);
  gap: 0.75rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .blog-card {
    border-radius: 1rem;
  }
  
  .blog-image-container {
    height: 180px;
  }
  
  .blog-content {
    padding: 1.25rem;
  }
  
  .blog-title {
    font-size: 1.125rem;
  }
  
  .blog-excerpt {
    font-size: 0.875rem;
  }
  
  .blog-cta-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .blog-image-container {
    height: 160px;
  }
  
  .blog-content {
    padding: 1rem;
  }
  
  .blog-title {
    font-size: 1rem;
  }
  
  .blog-excerpt {
    font-size: 0.8rem;
  }
}

/* ========================================
   BLOG DETAILS PAGE STYLES
======================================== */

/* Blog Details Container */
.blog-details-container {
  max-width: 4xl;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Back to Blogs Button */
.blog-back-link {
  margin-bottom: 2rem;
}

.back-to-blogs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-blogs-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(-2px);
}

/* Blog Image Section */
.blog-image-section {
  margin-bottom: 2rem;
}

.blog-featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Blog Content Section */
.blog-content-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.blog-article-content {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.blog-article-content p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.blog-article-content p:last-child {
  margin-bottom: 0;
}

/* Blog Share Section */
.blog-share-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-share-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
}

.blog-share-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: 1px solid;
}

.facebook-btn {
  background: rgba(24, 119, 242, 0.2);
  color: #60a5fa;
  border-color: rgba(24, 119, 242, 0.3);
}

.facebook-btn:hover {
  background: rgba(24, 119, 242, 0.3);
  color: #93c5fd;
  transform: translateY(-2px);
}

.twitter-btn {
  background: rgba(29, 161, 242, 0.2);
  color: #60a5fa;
  border-color: rgba(29, 161, 242, 0.3);
}

.twitter-btn:hover {
  background: rgba(29, 161, 242, 0.3);
  color: #93c5fd;
  transform: translateY(-2px);
}

.whatsapp-btn {
  background: rgba(37, 211, 102, 0.2);
  color: #4ade80;
  border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.3);
  color: #86efac;
  transform: translateY(-2px);
}

/* FAQ Section */
.blog-faq-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: var(--brand-400);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .blog-featured-image {
    height: 250px;
  }
  
  .blog-content-section {
    padding: 1.5rem;
  }
  
  .blog-article-content {
    font-size: 1rem;
  }
  
  .blog-share-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .share-btn {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  .back-to-blogs-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .blog-featured-image {
    height: 200px;
  }
  
  .blog-content-section {
    padding: 1.25rem;
  }
  
  .blog-article-content {
    font-size: 0.95rem;
  }
  
  .blog-share-title {
    font-size: 1.125rem;
  }
}

/* ========================================
   CALORIES CALCULATOR STYLES
======================================== */

/* Calculator Container */
.calories-calculator-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.calories-calculator-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-500));
  opacity: 0.8;
}

/* Calculator Header */
.calculator-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.calculator-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.calculator-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calculator-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin: 0;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-wide {
  grid-column: 1 / -1;
}

/* Form Labels */
.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.label-icon {
  font-size: 1.1rem;
}

/* Form Inputs */
.form-input,
.form-select {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--brand-400);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: #1e293b;
  color: white;
}

/* Height Inputs */
.height-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Calculate Button */
.calculate-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: white;
  border: none;
  border-radius: 1rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.calculate-btn:hover {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-icon {
  font-size: 1.2rem;
}

/* Results Container */
.results-container {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  display: none;
}

.results-container.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Results Styling */
.results-header {
  text-align: center;
  margin-bottom: 2rem;
}

.results-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.results-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.result-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.result-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.result-card-highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.1) 100%);
  border-color: rgba(59, 130, 246, 0.3);
}

.result-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.result-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.result-card-highlight .result-value {
  color: var(--brand-300);
}

.result-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .calories-calculator-container {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
  
  .calculator-title {
    font-size: 1.5rem;
  }
  
  .calculator-subtitle {
    font-size: 1rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .form-group-wide {
    grid-column: 1;
  }
  
  .height-inputs {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .calculate-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .result-card {
    padding: 1.25rem;
  }
  
  .results-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .calories-calculator-container {
    padding: 1.25rem;
  }
  
  .calculator-icon {
    font-size: 2.5rem;
  }
  
  .calculator-title {
    font-size: 1.25rem;
  }
  
  .form-input,
  .form-select {
    padding: 0.75rem 0.875rem;
    font-size: 0.95rem;
  }
  
  .result-card {
    padding: 1rem;
  }
  
  .result-value {
    font-size: 1.25rem;
  }
  
  .result-icon {
    font-size: 1.5rem;
  }
}

/* ========================================
   DICE GAME STYLES
======================================== */

/* Dice Game Container */
.dice-game-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.dice-game-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-500));
  opacity: 0.8;
}

/* Game Header */
.game-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.game-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.game-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin: 0;
}

/* Game Content */
.game-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Dice Section */
.dice-section {
  text-align: center;
}

.dice-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.dice-face {
  width: 120px;
  height: 120px;
  background: linear-gradient(180deg, #efe5db 0%, #ebe2d9 100%);
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.12), 0 10px 24px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dice-face:hover {
  transform: scale(1.05);
  box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.12), 0 15px 30px rgba(0, 0, 0, 0.4);
}

.dice-face.rolling {
  animation: diceRoll 0.6s ease-in-out;
}

@keyframes diceRoll {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(90deg) scale(0.95); }
  50% { transform: rotate(180deg) scale(0.9); }
  75% { transform: rotate(270deg) scale(0.95); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Game Controls */
.game-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.game-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.roll-btn {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: white;
}

.roll-btn:hover {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.reset-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.reset-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 1.1rem;
}

/* Dice Message */
.dice-message {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
}

/* Game Info */
.game-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.info-icon {
  font-size: 1.5rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.item-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.item-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .dice-game-container {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
  
  .game-title {
    font-size: 1.5rem;
  }
  
  .game-subtitle {
    font-size: 1rem;
  }
  
  .game-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .dice-face {
    width: 100px;
    height: 100px;
  }
  
  .game-controls {
    flex-direction: column;
    align-items: center;
  }
  
  .game-btn {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  .info-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .info-item {
    padding: 0.875rem;
  }
}

@media (max-width: 480px) {
  .dice-game-container {
    padding: 1.25rem;
  }
  
  .game-icon {
    font-size: 2.5rem;
  }
  
  .game-title {
    font-size: 1.25rem;
  }
  
  .dice-face {
    width: 80px;
    height: 80px;
  }
  
  .game-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .info-item {
    padding: 0.75rem;
  }
  
  .item-text {
    font-size: 0.9rem;
  }
}

/* ========================================
   ABOUT PAGE STYLES
======================================== */

/* About Container */
.about-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* About Content */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* About Text */
.about-text {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.about-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-paragraph {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-paragraph:last-child {
  margin-bottom: 0;
}

/* About Features */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* About Stats */
.about-stats {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.about-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-500));
  opacity: 0.8;
}

.stats-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.stats-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.stats-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-300);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.stat-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text {
    padding: 1.5rem;
  }
  
  .about-title {
    font-size: 1.5rem;
  }
  
  .about-paragraph {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 1.25rem;
  }
  
  .feature-title {
    font-size: 1.125rem;
  }
  
  .about-stats {
    padding: 2rem;
  }
  
  .stats-title {
    font-size: 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1.25rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .about-text {
    padding: 1.25rem;
  }
  
  .about-title {
    font-size: 1.25rem;
  }
  
  .about-paragraph {
    font-size: 0.95rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .feature-icon {
    font-size: 1.5rem;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .feature-description {
    font-size: 0.9rem;
  }
  
  .about-stats {
    padding: 1.5rem;
  }
  
  .stats-title {
    font-size: 1.25rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-icon {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

/* ========================================
   CONTACT PAGE STYLES
======================================== */

/* Contact Container */
.contact-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Contact Content */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-500));
  opacity: 0.8;
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Override any existing input styles */
.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0.75rem !important;
  padding: 0.875rem 1rem !important;
  color: white !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(5px) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none !important;
  border-color: var(--brand-400) !important;
  background: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

/* Override any existing label styles */
.contact-form label {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  color: white !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  margin-bottom: 0.75rem !important;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-wide {
  grid-column: 1 / -1;
}

/* Form Labels */
.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.label-icon {
  font-size: 1.1rem;
}

/* Form Inputs */
.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0.75rem !important;
  padding: 0.875rem 1rem !important;
  color: white !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(5px) !important;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.form-input:focus,
.form-textarea:focus {
  outline: none !important;
  border-color: var(--brand-400) !important;
  background: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.submit-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: white;
  border: none;
  border-radius: 1rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.form-status {
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.25rem;
}

/* Contact Info Section */
.contact-info-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Info Header */
.info-header {
  text-align: center;
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.info-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.contact-item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-item-content {
  flex: 1;
}

.contact-item-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item-value {
  color: white;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-item-link {
  color: var(--brand-300);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-item-link:hover {
  color: var(--brand-200);
}

/* Map Container */
.map-container {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.contact-map {
  width: 100%;
  height: 250px;
  border: none;
  display: block;
}

/* Map Actions */
.map-actions {
  display: flex;
  justify-content: center;
}

.map-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.map-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form-section,
  .contact-info-section {
    padding: 2rem;
  }
  
  .form-title {
    font-size: 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .form-group-wide {
    grid-column: 1;
  }
  
  .info-title {
    font-size: 1.25rem;
  }
  
  .contact-item {
    padding: 1rem;
  }
  
  .contact-map {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .contact-form-section,
  .contact-info-section {
    padding: 1.5rem;
  }
  
  .form-icon {
    font-size: 2.5rem;
  }
  
  .form-title {
    font-size: 1.25rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.75rem 0.875rem;
    font-size: 0.95rem;
  }
  
  .submit-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .info-icon {
    font-size: 2rem;
  }
  
  .info-title {
    font-size: 1.125rem;
  }
  
  .contact-item {
    padding: 0.875rem;
  }
  
  .contact-item-icon {
    font-size: 1.25rem;
  }
  
  .contact-map {
    height: 180px;
  }
}

/* ========================================
   NEW CONTACT PAGE STYLES
======================================== */

/* Contact Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.card-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.card-link {
  color: var(--brand-300);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: var(--brand-200);
}

/* Main Content Grid */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.form-header {
  margin-bottom: 2rem;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.field-label {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.field-input,
.field-textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.field-input:focus,
.field-textarea:focus {
  outline: none;
  border-color: var(--brand-400);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.field-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: white;
  border: none;
  border-radius: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.submit-button:hover {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.button-icon {
  font-size: 1.2rem;
}

.form-status {
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Map Wrapper */
.map-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.map-header {
  text-align: center;
}

.map-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.map-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.map-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
}

.detail-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.detail-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

/* Mobile Responsive for New Design */
@media (max-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-form-wrapper,
  .map-wrapper {
    padding: 1.5rem;
  }
  
  .form-title {
    font-size: 1.5rem;
  }
  
  .map-title {
    font-size: 1.25rem;
  }
  
  .map-iframe {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-card {
    padding: 1.25rem;
  }
  
  .card-icon {
    font-size: 2rem;
  }
  
  .card-title {
    font-size: 1.125rem;
  }
  
  .contact-form-wrapper,
  .map-wrapper {
    padding: 1.25rem;
  }
  
  .form-title {
    font-size: 1.25rem;
  }
  
  .field-input,
  .field-textarea {
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
  }
  
  .submit-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .map-iframe {
    height: 200px;
  }
}

/* ========================================
   PRIVACY & TERMS PAGES STYLES
======================================== */

/* Privacy Container */
.privacy-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 3rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.privacy-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-500));
  opacity: 0.8;
}

/* Terms Container */
.terms-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 3rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.terms-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-500));
  opacity: 0.8;
}

/* Privacy & Terms Content */
.privacy-content,
.terms-content {
  position: relative;
  z-index: 1;
}

/* Header Section */
.privacy-header,
.terms-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-icon,
.terms-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.privacy-title,
.terms-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;

}

.privacy-subtitle,
.terms-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
}

/* Section Styling */
.privacy-section,
.terms-section {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.privacy-section:hover,
.terms-section:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 1.5rem;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  border-radius: 2px;
}

.section-content {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.section-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.section-content p:last-child {
  margin-bottom: 0;
}

/* Subsection Titles */
.subsection-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-200);
  margin: 1.5rem 0 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.subsection-title::before {
  content: '•';
  color: var(--brand-400);
  font-weight: bold;
}

/* Content Lists */
.content-list {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.content-list li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  position: relative;
}

.content-list li::marker {
  color: var(--brand-400);
}

.content-list li:last-child {
  margin-bottom: 0;
}

/* Links */
.content-link {
  color: var(--brand-300);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.content-link:hover {
  color: var(--brand-200);
  text-decoration: underline;
}

/* Contact Info Card */
.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-info-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.contact-info-link {
  color: var(--brand-300);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-info-link:hover {
  color: var(--brand-200);
}

/* Footer */
.privacy-footer,
.terms-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .privacy-container,
  .terms-container {
    padding: 2rem;
    margin: 1rem;
  }
  
  .privacy-header,
  .terms-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  
  .privacy-icon,
  .terms-icon {
    font-size: 2.5rem;
  }
  
  .privacy-title,
  .terms-title {
    font-size: 1.75rem;
  }
  
  .privacy-section,
  .terms-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.25rem;
  }
  
  .contact-info-card {
    padding: 1.25rem;
  }
  
  .contact-info-item {
    padding: 0.625rem;
  }
}

@media (max-width: 480px) {
  .privacy-container,
  .terms-container {
    padding: 1.5rem;
    margin: 0.5rem;
  }
  
  .privacy-header,
  .terms-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  
  .privacy-icon,
  .terms-icon {
    font-size: 2rem;
  }
  
  .privacy-title,
  .terms-title {
    font-size: 1.5rem;
  }
  
  .privacy-section,
  .terms-section {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
  }
  
  .section-title {
    font-size: 1.125rem;
  }
  
  .section-content p {
    font-size: 0.95rem;
  }
  
  .content-list {
    padding-left: 1.25rem;
  }
  
  .contact-info-card {
    padding: 1rem;
  }
  
  .contact-info-item {
    padding: 0.5rem;
    gap: 0.75rem;
  }
  
  .contact-info-icon {
    font-size: 1.125rem;
  }
  
  .contact-info-text,
  .contact-info-link {
    font-size: 0.9rem;
  }
}

/* Fix top bar social media icons */
.top-bar .social-icon,
.header .social-icon,
nav .social-icon {
  color: white !important;
}

.top-bar .social-icon:hover,
.header .social-icon:hover,
nav .social-icon:hover {
  color: var(--brand-300) !important;
}

/* Fix Navigation Links Colors */
.nav-link {
    color: #000000 !important;
    transition: color 0.3s ease !important;
}

.nav-link:hover {
  color: rgb(2, 2, 2) !important;
}

/* Fix Footer Navigation Colors */
.footer-nav {
  color: var(--brand-300) !important;
}

.footer-nav li {
  color: var(--brand-300) !important;
}

.footer-nav a {
  color: var(--brand-300) !important;
  transition: color 0.3s ease !important;
}

.footer-nav a:hover {
  color: white !important;
}

/* Sub Banner Styles */
.sub-banner {
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 100%);
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.sub-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.sub-banner h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation: fadeUp 0.8s ease-out;
}

.sub-banner p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.sub-banner-decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

.sub-banner-decoration:nth-child(1) {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}

.sub-banner-decoration:nth-child(2) {
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  animation-delay: -15s;
  animation-direction: reverse;
}

.sub-banner-decoration:nth-child(3) {
  top: 50%;
  left: 10px;
  width: 40px;
  height: 40px;
  animation-delay: -10s;
}

.sub-banner-decoration:nth-child(4) {
  top: 30%;
  right: 10px;
  width: 80px;
  height: 80px;
  animation-delay: -5s;
  animation-direction: reverse;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive sub banner */
@media (max-width: 768px) {
  .sub-banner {
    min-height: 150px;
    padding: 2rem 1rem;
  }
  
  .sub-banner h1 {
    font-size: 2rem;
  }
  
  .sub-banner p {
    font-size: 1rem;
  }
  
  .sub-banner-decoration {
    width: 60px;
    height: 60px;
  }
  
  .sub-banner-decoration:nth-child(2) {
    width: 40px;
    height: 40px;
  }
  
  .sub-banner-decoration:nth-child(3) {
    width: 30px;
    height: 30px;
  }
  
  .sub-banner-decoration:nth-child(4) {
    width: 50px;
    height: 50px;
  }
}

/* Cart Drawer Styles */
#cartDrawer {
  z-index: 60;
}

#cartDrawer aside {
  background: white;
  color: #1e293b;
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  right: 0 !important;
  left: auto !important;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 28rem;
}

#cartDrawer:not(.hidden) aside {
  transform: translateX(0);
}

#cartBackdrop {
  background: rgba(0, 0, 0, 0.6);
}

/* Checkout Modal Styles */
#checkoutModal {
  z-index: 70;
}

#checkoutModal .bg-white {
  background: white;
  color: #1e293b;
}

/* Close Button Styles */
#closeCart, #closeCheckout {
  border: none;
  background: white;
  cursor: pointer;
}

#closeCart:hover, #closeCheckout:hover {
  background: #fef2f2;
  transform: scale(1.05);
}

/* Success Modal Close Button */
#closeSuccess {
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#closeSuccess:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.h-full.w-full.flex.items-center.justify-center.p-4.relative {
    background: #000000bd;
}
section.iam-blg {
    padding: 70px 0;
}
div#blogList {
    padding-top: 25px;
}