/* Tailwind CSS Local - Complete Utilities */
/* Comprehensive Tailwind CSS implementation for ReadyGlaze theme */

/* Reset and Base */
*, *::before, *::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
}

body {
  margin: 0;
  line-height: inherit;
}

/* Display */
.block { display: block !important; }
.inline-block { display: inline-block !important; }
.inline { display: inline !important; }
.flex { display: flex !important; }
.inline-flex { display: inline-flex !important; }
.table { display: table !important; }
.inline-table { display: inline-table !important; }
.table-caption { display: table-caption !important; }
.table-cell { display: table-cell !important; }
.table-column { display: table-column !important; }
.table-column-group { display: table-column-group !important; }
.table-footer-group { display: table-footer-group !important; }
.table-header-group { display: table-header-group !important; }
.table-row-group { display: table-row-group !important; }
.table-row { display: table-row !important; }
.flow-root { display: flow-root !important; }
.grid { display: grid !important; }
.inline-grid { display: inline-grid !important; }
.contents { display: contents !important; }
.list-item { display: list-item !important; }
.hidden { display: none !important; }

/* Flexbox */
.flex-row { flex-direction: row !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }
.flex-col { flex-direction: column !important; }
.flex-col-reverse { flex-direction: column-reverse !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-wrap-reverse { flex-wrap: wrap-reverse !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.flex-1 { flex: 1 1 0% !important; }
.flex-auto { flex: 1 1 auto !important; }
.flex-initial { flex: 0 1 auto !important; }
.flex-none { flex: none !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-shrink { flex-shrink: 1 !important; }
.flex-grow-0 { flex-grow: 0 !important; }
.flex-grow { flex-grow: 1 !important; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }

/* Spacing */
.space-x-1 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.25rem !important; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem !important; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem !important; }
.space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem !important; }
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem !important; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem !important; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem !important; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem !important; }

/* Width */
.w-1/3 { width: 33.333333% !important; }
.w-1/2 { width: 50% !important; }
.w-2/3 { width: 66.666667% !important; }
.w-full { width: 100% !important; }
.w-auto { width: auto !important; }

/* Height */
.h-64 { height: 16rem !important; }
.h-auto { height: auto !important; }
.min-h-screen { min-height: 100vh !important; }

/* Padding */
.p-3 { padding: 0.75rem !important; }
.p-4 { padding: 1rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }

/* Margin */
.m-0 { margin: 0 !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-16 { margin-bottom: 4rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-8 { margin-top: 2rem !important; }

/* Text */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-xs { font-size: 0.75rem !important; line-height: 1rem !important; }
.text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }
.text-base { font-size: 1rem !important; line-height: 1.5rem !important; }
.text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
.text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; }
.text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
.text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; }
.text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; }
.text-5xl { font-size: 3rem !important; line-height: 1 !important; }
.text-6xl { font-size: 3.75rem !important; line-height: 1 !important; }

/* Font Weight */
.font-light { font-weight: 300 !important; }
.font-normal { font-weight: 400 !important; }
.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.font-extrabold { font-weight: 800 !important; }

/* Colors */
.text-white { color: rgb(255 255 255) !important; }
.text-gray-300 { color: rgb(209 213 219) !important; }
.text-gray-500 { color: rgb(107 114 128) !important; }
.text-gray-600 { color: rgb(75 85 99) !important; }
.text-gray-700 { color: rgb(55 65 81) !important; }
.text-gray-800 { color: rgb(31 41 55) !important; }
.text-gray-900 { color: rgb(17 24 39) !important; }
.text-blue-600 { color: rgb(37 99 235) !important; }
.text-blue-800 { color: rgb(30 64 175) !important; }

/* Background Colors */
.bg-white { background-color: rgb(255 255 255) !important; }
.bg-gray-50 { background-color: rgb(249 250 251) !important; }
.bg-gray-100 { background-color: rgb(243 244 246) !important; }
.bg-gray-200 { background-color: rgb(229 231 235) !important; }
.bg-gray-300 { background-color: rgb(209 213 219) !important; }
.bg-gray-800 { background-color: rgb(31 41 55) !important; }
.bg-gray-900 { background-color: rgb(17 24 39) !important; }
.bg-blue-500 { background-color: rgb(59 130 246) !important; }
.bg-blue-600 { background-color: rgb(37 99 235) !important; }
.bg-blue-700 { background-color: rgb(29 78 216) !important; }

/* Gradients */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; }
.from-blue-500 { --tw-gradient-from: #3b82f6 !important; --tw-gradient-to: rgb(59 130 246 / 0) !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important; }
.to-blue-700 { --tw-gradient-to: #1d4ed8 !important; }

/* Border */
.border { border-width: 1px !important; }
.border-t { border-top-width: 1px !important; }
.border-b { border-bottom-width: 1px !important; }
.border-gray-200 { border-color: rgb(229 231 235) !important; }
.border-gray-700 { border-color: rgb(55 65 81) !important; }
.rounded { border-radius: 0.25rem !important; }
.rounded-lg { border-radius: 0.5rem !important; }
.rounded-full { border-radius: 9999px !important; }

/* Shadow */
.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1) !important; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1) !important; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1) !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }

/* Position */
.relative { position: relative !important; }
.absolute { position: absolute !important; }
.inset-0 { top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important; }
.top-1/2 { top: 50% !important; }
.left-4 { left: 1rem !important; }
.right-4 { right: 1rem !important; }

/* Transform */
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; }
.-translate-y-1/2 { --tw-translate-y: -50% !important; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; }

/* Transition */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.transition-transform { transition-property: transform !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.duration-300 { transition-duration: 300ms !important; }
.duration-500 { transition-duration: 500ms !important; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; }

/* Hover */
.hover\:text-white:hover { color: rgb(255 255 255) !important; }
.hover\:text-blue-800:hover { color: rgb(30 64 175) !important; }
.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) !important; }
.hover\:bg-opacity-100:hover { --tw-bg-opacity: 1 !important; }

/* Focus */
.focus\:outline-none:focus { outline: 2px solid transparent !important; outline-offset: 2px !important; }

/* Z-index */
.z-10 { z-index: 10 !important; }

/* Responsive */
@media (min-width: 640px) {
  .sm\:flex { display: flex !important; }
  .sm\:hidden { display: none !important; }
  .sm\:flex-row { flex-direction: row !important; }
  .sm\:space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem !important; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .md\:text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
  .md\:text-5xl { font-size: 3rem !important; line-height: 1 !important; }
  .md\:text-6xl { font-size: 3.75rem !important; line-height: 1 !important; }
}

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

/* Additional Essential Classes */
.bg-opacity-20 { --tw-bg-opacity: 0.2; }
.bg-opacity-10 { --tw-bg-opacity: 0.1; }
.bg-black { background-color: rgb(0 0 0); }
.bg-opacity-20 { --tw-bg-opacity: 0.2; }
.group:hover .group-hover\:bg-opacity-10 { --tw-bg-opacity: 0.1; }
.group:hover .group-hover\:bg-opacity-20 { --tw-bg-opacity: 0.2; }

/* Carousel specific classes */
.transition-transform { transition-property: transform !important; }
.duration-500 { transition-duration: 500ms !important; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; }

/* Transform utilities */
.translate-x-0 { transform: translateX(0) !important; }
.-translate-x-full { transform: translateX(-100%) !important; }
