/* Amazon Account Management - JSRdigi | Tailwind CSS (Local) */
/* Compiled for PHP project - all utilities used in partials */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  --background: #FFFFFF;
  --foreground: #232F3E;
  --primary: #FF9900;
  --primary-foreground: #FFFFFF;
  --secondary: #232F3E;
  --border: #E8E8E8;
  --ring: #FF9900;
}

html { scroll-behavior: smooth; }
* { box-sizing: border-box; border-color: var(--border); }
body { margin: 0; font-family: 'Geist', ui-sans-serif, system-ui, sans-serif; background: var(--background); color: var(--foreground); -webkit-font-smoothing: antialiased; }

/* Interactive elements */
button, a, [role="button"], input[type="submit"], input[type="button"] { cursor: pointer; }
button:disabled, [disabled] { cursor: not-allowed; }

/* Layout */
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Flex/Grid */
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-baseline { align-items: baseline; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* 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)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }

/* Spacing */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Sizing */
.w-full { width: 100%; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.min-w-0 { min-width: 0; }
.min-h-screen { min-height: 100vh; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-7xl { max-width: 80rem; }

/* Padding */
.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-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-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.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-8 { padding-top: 2rem; padding-bottom: 2rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-8 { padding-bottom: 2rem; }

/* Margin */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.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; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.italic { font-style: italic; }

/* Colors */
.text-white { color: #fff; }
.text-gray-100 { color: rgb(243 244 246); }
.text-gray-200 { color: rgb(229 231 235); }
.text-gray-300 { color: rgb(209 213 219); }
.text-gray-500 { color: rgb(107 114 128); }
.text-gray-600 { color: rgb(75 85 99); }
.bg-transparent { background-color: transparent; }
.text-red-500 { color: rgb(239 68 68); }
.text-red-700 { color: rgb(185 28 28); }
.text-balance { text-wrap: balance; }

/* Backgrounds */
.bg-background { background-color: var(--background); }
.bg-white { background-color: #fff; }
.bg-red-50 { background-color: rgb(254 242 242); }

/* Border */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-2 { border-width: 2px; }
.border-red-200 { border-color: rgb(254 202 202); }
.border-red-500 { border-color: rgb(239 68 68); }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }

/* Effects */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.transition { transition-property: color, background-color, border-color, box-shadow, transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 200ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 200ms; }
.transition-shadow { transition-property: box-shadow; transition-duration: 200ms; }
.transition-transform { transition-property: transform; transition-duration: 200ms; }
.transition-all { transition-property: all; transition-duration: 200ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.outline-none { outline: none; }
.object-cover { object-fit: cover; }
.disabled\:opacity-50:disabled { opacity: 0.5; }
.touch-highlight-transparent { -webkit-tap-highlight-color: transparent; }

/* Fill */
.fill-\[\#FF9900\] { fill: #FF9900; }

/* Animations */
.animate-spin { animation: spin 1s linear infinite; }
.animate-fade-in { animation: fadeIn 0.3s ease-out forwards; }
.rotate-180 { transform: rotate(180deg); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* Responsive - sm */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:text-4xl { font-size: 2.25rem; }
  .sm\:text-base { font-size: 1rem; }
  .sm\:h-80 { height: 20rem; }
  .sm\:gap-6 { gap: 1.5rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:flex-row { flex-direction: row; }
}

/* Responsive - md */
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:gap-3 { gap: 0.75rem; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:space-y-3 > * + * { margin-top: 0.75rem; }
  .md\:space-y-4 > * + * { margin-top: 1rem; }
  .md\:space-y-5 > * + * { margin-top: 1.25rem; }
  .md\:space-y-6 > * + * { margin-top: 1.5rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .md\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .md\:py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .md\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:pt-24 { padding-top: 6rem; }
  .md\:pb-20 { padding-bottom: 5rem; }
  .md\:mb-2 { margin-bottom: 0.5rem; }
  .md\:mb-3 { margin-bottom: 0.75rem; }
  .md\:mb-4 { margin-bottom: 1rem; }
  .md\:mb-6 { margin-bottom: 1.5rem; }
  .md\:mb-8 { margin-bottom: 2rem; }
  .md\:mb-12 { margin-bottom: 3rem; }
  .md\:mb-16 { margin-bottom: 4rem; }
  .md\:mt-12 { margin-top: 3rem; }
  .md\:text-sm { font-size: 0.875rem; }
  .md\:text-base { font-size: 1rem; }
  .md\:text-lg { font-size: 1.125rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:h-5 { height: 1.25rem; }
  .md\:h-6 { height: 1.5rem; }
  .md\:h-7 { height: 1.75rem; }
  .md\:h-10 { height: 2.5rem; }
  .md\:h-12 { height: 3rem; }
  .md\:w-5 { width: 1.25rem; }
  .md\:w-6 { width: 1.5rem; }
  .md\:w-7 { width: 1.75rem; }
  .md\:w-10 { width: 2.5rem; }
  .md\:w-14 { width: 3.5rem; }
  .md\:w-24 { width: 6rem; }
  .md\:h-96 { height: 24rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .md\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:pt-8 { padding-top: 2rem; }
  .md\:pb-8 { padding-bottom: 2rem; }
}

/* Responsive - lg */
@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:top-12 { top: 3rem; }
  .lg\:left-full { left: 100%; }
  .lg\:w-8 { width: 2rem; }
  .lg\:h-0\.5 { height: 0.125rem; }
}

/* Responsive - xl */
@media (min-width: 1280px) {
  .lg\:text-6xl { font-size: 3.75rem; }
}

/* Arbitrary values */
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }
.relative { position: relative; }
.order-1 { order: 1; }
.order-2 { order: 2; }

/* Hover states */
.hover\:border-\[\#FF9900\]:hover { border-color: #FF9900; }
.hover\:border-\[\#232F3E\]:hover { border-color: #232F3E; }
.hover\:text-white:hover { color: #fff; }
.hover\:text-\[\#FF9900\]:hover { color: #FF9900; }
.hover\:bg-\[\#1a252f\]:hover { background-color: #1a252f; }
.hover\:bg-\[\#FF7700\]:hover { background-color: #FF7700; }
.hover\:bg-\[\#FFF5E6\]:hover { background-color: #FFF5E6; }
.hover\:bg-\[\#20ba5a\]:hover { background-color: #20ba5a; }
.hover\:bg-\[\#20BA5A\]:hover { background-color: #20BA5A; }
.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); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }

/* Hover lift/scale for cards and buttons */
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:scale-\[0\.98\]:active { transform: scale(0.98); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.active\:scale-95:active { transform: scale(0.95); }
.active\:scale-\[0\.98\]:active { transform: scale(0.98); }
.border-transparent { border-color: transparent; }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* Active states */
.active\:bg-\[\#FF6600\]:active { background-color: #FF6600; }
.active\:bg-\[\#000000\]:active { background-color: #000; }
.active\:bg-\[\#1ba854\]:active { background-color: #1ba854; }
.active\:bg-\[\#FFE8CC\]:active { background-color: #FFE8CC; }
.active\:shadow-md:active { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }

/* Arbitrary color classes */
.bg-\[\#232F3E\] { background-color: #232F3E; }
.bg-\[\#FFFFFF\] { background-color: #FFFFFF; }
.bg-\[\#F8F8F8\] { background-color: #F8F8F8; }
.bg-\[\#FFF5E6\] { background-color: #FFF5E6; }
.bg-\[\#FF9900\] { background-color: #FF9900; }
.bg-\[\#25D366\] { background-color: #25D366; }
.text-\[\#232F3E\] { color: #232F3E; }
.text-\[\#666666\] { color: #666666; }
.text-\[\#FF9900\] { color: #FF9900; }
.border-\[\#E8E8E8\] { border-color: #E8E8E8; }
.border-\[\#3d4d5f\] { border-color: #3d4d5f; }
.border-\[\#FF9900\] { border-color: #FF9900; }

/* Opacity modifiers */
.bg-\[\#232F3E\]\/95 { background-color: rgb(35 47 62 / 0.95); }
.border-white\/20 { border-color: rgb(255 255 255 / 0.2); }
.hover\:border-white\/20:hover { border-color: rgb(255 255 255 / 0.2); }
.text-white\/70 { color: rgb(255 255 255 / 0.7); }
.text-white\/60 { color: rgb(255 255 255 / 0.6); }
.border-white\/10 { border-color: rgb(255 255 255 / 0.1); }
.bg-\[\#FF9900\]\/30 { background-color: rgb(255 153 0 / 0.3); }
.text-\[\#FF9900\]\/40 { color: rgb(255 153 0 / 0.4); }

/* Input/Focus - proper focus ring for inputs */
.focus\:border-\[\#FF9900\]:focus { border-color: #FF9900; outline: none; }
.focus\:ring-2:focus { outline: none; box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgb(255 153 0 / 0.5); }
.focus\:ring-\[\#FF9900\]\/50:focus { outline: none; box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgb(255 153 0 / 0.5); }
.focus-visible\:outline-none:focus-visible { outline: none; }
.focus-visible\:ring-2:focus-visible { box-shadow: 0 0 0 2px rgb(255 153 0 / 0.5); }

/* Gradient */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-\[\#232F3E\] { --tw-gradient-from: #232F3E; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(35 47 62 / 0)); }
.via-\[\#2d3f52\] { --tw-gradient-via: #2d3f52; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgb(45 63 82 / 0)); }
.to-\[\#232F3E\] { --tw-gradient-to: #232F3E; }

/* Font */
.font-sans { font-family: 'Geist', ui-sans-serif, system-ui, sans-serif; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
