/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.bun/next@15.5.21+b9dddf7a905b9773/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!../../node_modules/.bun/next@15.5.21+b9dddf7a905b9773/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/colors.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
    /* Neutral colors are the foundation of the color system. Almost everything in UI design — text, fields, backgrounds, dividers — are usually gray. */
    --neutral-0: 255, 255, 255;
    --neutral-25: 245, 247, 250;
    --neutral-50: 215, 221, 230;
    --neutral-100: 223, 230, 239;
    --neutral-200: 198, 198, 198;
    --neutral-300: 163, 163, 163;
    --neutral-400: 102, 112, 133;
    --neutral-500: 93, 102, 115;
    --neutral-600: 64, 64, 64;
    --neutral-700: 38, 38, 38;
    --neutral-800: 27, 27, 27;
    --neutral-900: 22, 22, 22;
    --neutral-1000: 32, 32, 32;

    /* Brand colors are used across all interactive elements such as buttons, links, inputs, etc. This color can define the overall feel and can elicit emotion. */
    --brand-25: 255, 255, 255;
    --brand-50: 238, 238, 238;
    --brand-100: 226, 226, 226;
    --brand-200: 198, 198, 198;
    --brand-300: 163, 163, 163;
    --brand-400: 115, 115, 115;
    --brand-500: 82, 82, 82;
    --brand-600: 64, 64, 64;
    --brand-700: 115, 21, 18;
    --brand-800: 141, 23, 20;
    --brand-900: 179, 35, 30;
    
    /* Red colors are used across error states and in "destructive" actions. */
    --red-25: 254, 243, 242;
    --red-50: 254, 228, 226;
    --red-100: 255, 205, 201;
    --red-200: 253, 170, 164;
    --red-300: 250, 121, 111;
    --red-400: 241, 78, 66;
    --red-500: 217, 45, 32;
    --red-600: 187, 37, 26;
    --red-700: 155, 34, 25;
    --red-800: 128, 35, 28;
    --red-900: 70, 13, 9;

    /* Green colors communicate a positive action, positive trend, or a successful confirmation. */
    --green-25: 239, 253, 244;
    --green-50: 220, 252, 231;
    --green-100: 187, 247, 208;
    --green-200: 135, 239, 172;
    --green-300: 73, 222, 128;
    --green-400: 34, 197, 93;
    --green-500: 23, 163, 74;
    --green-600: 23, 128, 61;
    --green-700: 22, 101, 52;
    --green-800: 20, 83, 45;
    --green-900: 5, 46, 22;

    /* Yellow colors may indicate a problem or that an action is potentially destructive or "on-hold". */
    --yellow-25: 255, 251, 237;
    --yellow-50: 255, 247, 212;
    --yellow-100: 255, 235, 168;
    --yellow-200: 255, 218, 113;
    --yellow-300: 255, 191, 56;
    --yellow-400: 253, 167, 18;
    --yellow-500: 247, 144, 9;
    --yellow-600: 197, 106, 9;
    --yellow-700: 157, 83, 15;
    --yellow-800: 126, 69, 16;
    --yellow-900: 68, 33, 6;

    /* Blue colors are used to provide users with information about any actions or states of an application or system. */
    --blue-25: 245, 250, 255;
    --blue-50: 235, 244, 255;
    --blue-100: 204, 228, 255;
    --blue-200: 173, 211, 255;
    --blue-300: 148, 198, 255;
    --blue-400: 112, 179, 255;
    --blue-500: 77, 160, 255;
    --blue-600: 44, 138, 245;
    --blue-700: 12, 102, 204;
    --blue-800: 0, 67, 143;
    --blue-900: 0, 24, 51;
    --bg-primary: var(--neutral-0);
    --bg-secondary: var(--neutral-25);
    --bg-tertiary: var(--neutral-1000);

    --bg-component-primary: var(--neutral-0);
    --bg-component-primary-hover: var(--neutral-25);
    --bg-component-primary-pressed: var(--neutral-50);
    --bg-component-secondary: var(--neutral-25);
    --bg-component-secondary-hover: var(--neutral-50);
    --bg-component-secondary-pressed: var(--neutral-100);

    --bg-action-primary: var(--brand-900);
    --bg-action-primary-hover: var(--brand-800);
    --bg-action-primary-pressed: var(--brand-700);
    --bg-action-secondary: rgba(var(--neutral-1000), 0.05);
    --bg-action-secondary-hover: rgba(var(--neutral-1000), 0.1);
    --bg-action-secondary-pressed: rgba(var(--neutral-1000), 0.2);
    --bg-action-tertiary: rgba(var(--neutral-1000), 0.05);
    --bg-action-tertiary-hover: rgba(var(--neutral-1000), 0.1);
    --bg-action-tertiary-pressed: rgba(var(--neutral-1000), 0.2);

    --bg-negative-primary: var(--red-600);
    --bg-negative-primary-hover: var(--red-700);
    --bg-negative-primary-pressed: var(--red-800);
    --bg-negative-secondary: var(--red-50);
    --bg-negative-secondary-hover: var(--red-100);
    --bg-negative-secondary-pressed: var(--red-200);

    --bg-positive-primary: var(--green-700);
    --bg-positive-primary-hover: var(--green-800);
    --bg-positive-primary-pressed: var(--green-900);
    --bg-positive-secondary: var(--green-50);
    --bg-positive-secondary-hover: var(--green-100);
    --bg-positive-secondary-pressed: var(--green-200);

    --bg-warning-primary: var(--yellow-700);
    --bg-warning-primary-hover: var(--yellow-800);
    --bg-warning-primary-pressed: var(--yellow-900);
    --bg-warning-secondary: var(--yellow-50);
    --bg-warning-secondary-hover: var(--yellow-100);
    --bg-warning-secondary-pressed: var(--yellow-200);

    --bg-disabled: var(--neutral-200);

    --content-primary: var(--neutral-1000);
    --content-secondary: var(--neutral-500);
    --content-tertiary: var(--neutral-0);

    --content-action-primary: var(--brand-900);
    --content-action-primary-hover: var(--brand-800);
    --content-action-primary-pressed: var(--brand-700);
    --content-action-on-primary: var(--brand-25);
    --content-action-on-secondary: var(--neutral-1000);
    --content-action-on-tertiary: var(--neutral-0);

    --content-positive-primary: var(--green-800);
    --content-positive-on-primary: var(--neutral-0);
    --content-positive-on-secondary: var(--green-800);

    --content-negative-primary: var(--red-700);
    --content-negative-on-primary: var(--neutral-0);
    --content-negative-on-secondary: var(--red-800);

    --content-warning-primary: var(--yellow-800);
    --content-warning-on-primary: var(--neutral-0);
    --content-warning-on-secondary: var(--yellow-800);

    --content-disabled: var(--neutral-400);

    --border-primary: var(--neutral-50);
    --border-secondary: var(--neutral-800);
    --border-action: var(--brand-900);
    --border-negative-primary: var(--red-700);
    --border-negative-secondary: var(--red-200);
    --border-positive-primary: var(--green-800);
    --border-positive-secondary: var(--green-200);
    --border-warning-primary: var(--yellow-800);
    --border-warning-secondary: var(--yellow-50);
    --border-disabled: var(--neutral-400);
  --armoza-navy: #071a42;
  --armoza-orange: #b95624;
  --armoza-canvas: #f2f4f7;
  --armoza-navigation: #dfe6ef;
  --armoza-max-width: 1420px;
}

/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.bun/next@15.5.21+b9dddf7a905b9773/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!../../node_modules/.bun/next@15.5.21+b9dddf7a905b9773/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* Defined colors variables */

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: rgba(var(--border-primary)); /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

body { font-family: Arial, Helvetica, sans-serif; line-height: 1.5; }

h1, h2, h3, h4 { color: var(--armoza-navy); text-wrap: balance; }

button, input, select, textarea { font: inherit; }

button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }

:focus-visible { outline: 2px solid var(--armoza-orange) !important; outline-offset: 3px; }

input, select, textarea { min-width: 0; }

button { cursor: pointer; }

button:disabled { cursor: not-allowed; }

img { max-width: 100%; }
.container{
  width: 100%;
}
@media (min-width: 640px){

  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){

  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){

  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){

  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){

  .container{
    max-width: 1536px;
  }
}
.armoza-page { min-height: 55vh; }
.armoza-kicker { color: var(--armoza-orange); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.armoza-panel { border: 1px solid rgb(var(--border-primary)); border-radius: .5rem; background: #fff; padding: clamp(1rem, 2.5vw, 2rem); min-width: 0; }
.armoza-section-heading { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.armoza-section-heading::after { content: ''; height: 1px; background: rgb(var(--border-primary)); flex: 1; }
.armoza-section-heading h2 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); font-weight: 800; }
.armoza-section-heading a { color: var(--armoza-navy); font-weight: 700; font-size: .875rem; }
.armoza-header { position: relative; z-index: 30; background: #f6f7f9; border-bottom: 1px solid #cfd5df; }
.armoza-topbar { background: var(--armoza-orange); color: white; padding: .5rem 1rem; text-align: center; font-size: .75rem; font-weight: 700; letter-spacing: .06em; }
.armoza-header-main { max-width: 1600px; margin: auto; padding: 1.75rem 1.5rem; display: grid; grid-template-columns: minmax(150px, 230px) minmax(180px, 1fr) auto; align-items: center; gap: 2rem; }
.armoza-logo { display: block; width: 210px; height: auto; }
.armoza-header-actions { display: flex; gap: .75rem; align-items: center; justify-content: flex-end; }
.armoza-header-action { position: relative; display: flex; align-items: center; justify-content: center; gap: .625rem; min-height: 52px; padding: .75rem 1rem; border: 1px solid #cfd5df; border-radius: .625rem; background: #fff; color: var(--armoza-navy); font-weight: 700; }
.armoza-header-action:hover { background: #edf1f6; }
.armoza-header-action svg { flex-shrink: 0; }
.armoza-search input { height: 54px; padding-left: 3rem; border-radius: 2rem; border: 1px solid #d7dde6; background: #fff; font-size: 1rem; box-shadow: 0 2px 8px #071a420b; }
.armoza-search label:empty { display: none; }
.armoza-search > div > div { margin-top: 0; }
.armoza-search button { top: 11px; }
.armoza-navbar { background: var(--armoza-navigation); }
.armoza-navbar-inner { max-width: 1600px; margin: auto; padding: .65rem 1.5rem; display: flex; align-items: center; gap: 1.5rem; }
.armoza-parent-nav { display: flex; align-items: center; gap: 1.5rem; overflow-x: auto; min-width: 0; }
.armoza-parent-nav a { white-space: nowrap; padding: .5rem 0; font-size: .875rem; font-weight: 700; }
.armoza-footer { margin-top: 3rem; border-top: 1px solid #d7dde6; background: #f5f7fa; }
.armoza-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-block: 2.5rem; }
.armoza-footer a:hover { color: var(--armoza-orange); }
.armoza-footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid #d7dde6; color: #667085; font-size: .8125rem; }
.armoza-home { max-width: var(--armoza-max-width); margin: auto; padding: 1.5rem; }
.armoza-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--armoza-navy); min-height: 380px; display: flex; align-items: center; padding: clamp(1.5rem, 5vw, 4rem); }
.armoza-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.armoza-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #071a42f2 10%, #071a42a8 55%, #b9562438); z-index: -1; }
.armoza-hero-copy { max-width: 640px; }
.armoza-hero h1 { color: white; font-size: clamp(2rem, 4.5vw, 3.75rem); font-weight: 800; line-height: 1.08; margin: 1rem 0; }
.armoza-hero p { max-width: 520px; color: #edf2f7; font-size: 1.0625rem; }
.armoza-hero-links { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.armoza-hero-links a { display: inline-flex; align-items: center; gap: 1.5rem; min-height: 48px; padding: .8rem 1.25rem; background: #b3231e; color: #fff; border-radius: 3px; font-weight: 700; }
.armoza-hero-links a + a { background: #ffffff18; border: 1px solid #ffffff60; }
.armoza-hero-links a:hover { background: #8d1714; }
.armoza-category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.armoza-category-tile { position: relative; display: flex; flex-direction: column; gap: 1rem; min-height: 140px; padding: 1.5rem; background: #f5f7fa; border: 1px solid #d7dde6; border-bottom: 3px solid #b95624; }
.armoza-category-tile:hover { background: #eaf0f6; }
.armoza-category-tile h3 { font-size: 1.125rem; font-weight: 700; }
.armoza-category-tile span { color: #667085; font-size: .8125rem; margin-top: auto; }
.armoza-catalog-page > h1 { padding-bottom: 1.25rem; border-bottom: 1px solid #d7dde6; }
.armoza-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.armoza-product-card { overflow: hidden; background: #fff; border: 1px solid #d7dde6; border-radius: 4px; display: flex; flex-direction: column; min-width: 0; height: 100%; transition: border-color .15s, box-shadow .15s; }
.armoza-product-card:hover { border-color: #a7b1bf; box-shadow: 0 5px 20px #071a4210; }
.armoza-product-photo { display: block; position: relative; aspect-ratio: 1; padding: 1rem; border-bottom: 1px solid #edf0f4; }
.armoza-product-photo img { width: 100%; height: 100%; object-fit: contain; }
.armoza-product-info { display: flex; flex: 1; flex-direction: column; padding: 1rem; }
.armoza-product-info h3 { font-size: .9375rem; font-weight: 700; line-height: 1.45; min-height: 2.9em; overflow-wrap: anywhere; }
.armoza-product-price { margin-top: auto; padding-top: 1rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem; font-variant-numeric: tabular-nums; }
.armoza-product-price strong { color: var(--armoza-navy); font-size: 1.25rem; }
.armoza-product-more { margin-top: 1rem; border-top: 1px solid #edf0f4; padding-top: .75rem; color: #b3231e; font-weight: 700; font-size: .8125rem; }
.armoza-product-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 2.5rem; align-items: start; }
.armoza-gallery { min-width: 0; background: #fff; border: 1px solid #d7dde6; border-radius: .5rem; padding: 1rem; }
.armoza-product-details { min-width: 0; }
.armoza-buybox { border: 1px solid #d7dde6; border-top: 3px solid #b95624; border-radius: .5rem; background: #fff; padding: 1.5rem; margin-bottom: 1rem; }
.armoza-cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 1.5rem; align-items: start; }
.armoza-summary { position: sticky; top: 1.5rem; }
.armoza-account { background: var(--armoza-canvas); min-height: 65vh; padding-bottom: 2rem; }
.armoza-user-nav { background: #fff; border: 1px solid #d7dde6; border-top: 3px solid #b95624; padding: .75rem; border-radius: .5rem; }
.armoza-account-content { min-width: 0; background: white; border: 1px solid #d7dde6; border-radius: .5rem; padding: clamp(1rem, 2.5vw, 2rem); }
.armoza-account-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.armoza-auth-shell { background: var(--armoza-canvas); min-height: 65vh; padding-block: 2rem; }
.armoza-empty { padding: clamp(2rem, 6vw, 5rem) 1.5rem; text-align: center; background: #f5f7fa; border: 1px solid #d7dde6; border-radius: .5rem; }
.armoza-empty p { max-width: 36rem; margin-inline: auto; }
.armoza-checkout-header { background: #f6f7f9; border-bottom: 1px solid #d7dde6; }
.armoza-checkout-header > div { max-width: var(--armoza-max-width); margin: auto; min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem; }
.armoza-checkout { background: var(--armoza-canvas); min-height: 80vh; }
.armoza-checkout-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 440px); gap: 1.5rem; align-items: start; }
.armoza-seller-heading { padding: 2rem; border: 1px solid #d7dde6; border-top: 3px solid #b95624; background: #f5f7fa; border-radius: .5rem; }
@media (max-width: 1100px) {
    .armoza-header-main { gap: 1rem; grid-template-columns: 160px minmax(150px, 1fr) auto; }
    .armoza-header-action span { display: none; }
    .armoza-header-action { padding: .75rem; }
    .armoza-header-actions label { display: none; }
    .armoza-category-grid, .armoza-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .armoza-cart-layout { grid-template-columns: minmax(0, 1fr) 320px; }
  }
@media (max-width: 1023px) {
    .armoza-header-main { grid-template-columns: minmax(0, 1fr) auto; padding: 1rem; }
    .armoza-header-search { grid-column: 1 / -1; grid-row: 2; }
    .armoza-navbar { display: none; }
    .armoza-logo { width: 160px; }
  }
@media (max-width: 767px) {
    .armoza-header-main { gap: .75rem; }
    .armoza-header-actions { gap: .4rem; }
    .armoza-header-action { min-height: 44px; padding: .625rem; }
    .armoza-logo { width: 125px; }
    .armoza-home { padding: 1rem; }
    .armoza-hero { min-height: 360px; }
    .armoza-category-grid, .armoza-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .625rem; }
    .armoza-category-tile { min-height: 130px; padding: 1rem; }
    .armoza-category-tile h3 { font-size: 1rem; overflow-wrap: anywhere; }
    .armoza-product-info { padding: .75rem; }
    .armoza-product-info h3 { font-size: .875rem; }
    .armoza-product-price strong { font-size: 1.0625rem; }
    .armoza-product-photo { padding: .5rem; }
    .armoza-product-layout, .armoza-cart-layout, .armoza-checkout-grid { grid-template-columns: minmax(0, 1fr); gap: 1rem; }
    .armoza-summary { position: static; }
    .armoza-account-links { grid-template-columns: 1fr; }
    .armoza-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .armoza-footer-grid > :first-child { grid-column: 1 / -1; }
    .armoza-footer-bottom { flex-direction: column; }
    .armoza-checkout-header > div { padding: 1rem; min-height: 80px; }
  }
@media (prefers-reduced-motion: reduce) {
    .armoza-storefront *, .armoza-storefront *::before, .armoza-storefront *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  }
.armoza-catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1100px) { .armoza-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.armoza-account .armoza-card, .armoza-checkout .armoza-card { background: white; }
.armoza-topbar { padding: .25rem 1rem; }
.armoza-topbar-inner { max-width: 1552px; margin: auto; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.armoza-topbar-inner label { color: white; font-family: inherit; font-size: .75rem; }
.armoza-topbar-inner button { height: 30px; color: var(--armoza-navy); background: white; }
.armoza-topbar-inner [role="option"] { color: var(--armoza-navy); }
.armoza-checkout h2 { font-weight: 700; }
.armoza-account-content h1 { margin-bottom: 1.5rem; }
.armoza-user-nav a { border-radius: 4px; padding: .875rem .75rem; }
.armoza-steps { display: flex; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.armoza-step { display: flex; flex: 1; min-width: 0; flex-direction: column; align-items: center; gap: .5rem; text-align: center; color: #667085; font-size: .75rem; padding-bottom: .75rem; border-bottom: 2px solid #d7dde6; }
.armoza-step-number { display: grid; place-items: center; width: 1.75rem; height: 1.75rem; border: 1px solid #d7dde6; border-radius: 50%; background: #fff; font-weight: 700; }
.armoza-step-complete { border-bottom-color: #b95624; color: var(--armoza-navy); font-weight: 700; }
.armoza-step-complete .armoza-step-number { background: var(--armoza-navy); border-color: var(--armoza-navy); color: white; }
.pointer-events-none{
  pointer-events: none;
}
.pointer-events-auto{
  pointer-events: auto;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.inset-0{
  inset: 0px;
}
.inset-y-0{
  top: 0px;
  bottom: 0px;
}
.-bottom-6{
  bottom: -1.5rem;
}
.-right-2{
  right: -0.5rem;
}
.-top-2{
  top: -0.5rem;
}
.bottom-0{
  bottom: 0px;
}
.bottom-3{
  bottom: 0.75rem;
}
.left-0{
  left: 0px;
}
.left-1{
  left: 0.25rem;
}
.left-24{
  left: 6rem;
}
.left-3{
  left: 0.75rem;
}
.left-\[16px\]{
  left: 16px;
}
.left-\[3px\]{
  left: 3px;
}
.left-\[8px\]{
  left: 8px;
}
.right-0{
  right: 0px;
}
.right-2{
  right: 0.5rem;
}
.right-3{
  right: 0.75rem;
}
.right-4{
  right: 1rem;
}
.right-\[16px\]{
  right: 16px;
}
.top-0{
  top: 0px;
}
.top-3{
  top: 0.75rem;
}
.top-4{
  top: 1rem;
}
.top-\[10px\]{
  top: 10px;
}
.top-\[16px\]{
  top: 16px;
}
.top-\[3px\]{
  top: 3px;
}
.top-\[47px\]{
  top: 47px;
}
.top-\[8px\]{
  top: 8px;
}
.top-full{
  top: 100%;
}
.-z-10{
  z-index: -10;
}
.z-10{
  z-index: 10;
}
.z-20{
  z-index: 20;
}
.z-40{
  z-index: 40;
}
.z-50{
  z-index: 50;
}
.col-span-2{
  grid-column: span 2 / span 2;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-0{
  margin-top: 0px;
  margin-bottom: 0px;
}
.my-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-12{
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-2{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-8{
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.-mt-4{
  margin-top: -1rem;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-12{
  margin-bottom: 3rem;
}
.mb-16{
  margin-bottom: 4rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-5{
  margin-bottom: 1.25rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-auto{
  margin-left: auto;
}
.mt-0{
  margin-top: 0px;
}
.mt-0\.5{
  margin-top: 0.125rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-5{
  margin-top: 1.25rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-\[26px\]{
  margin-top: 26px;
}
.mt-auto{
  margin-top: auto;
}
.line-clamp-2{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.grid{
  display: grid;
}
.\!hidden{
  display: none !important;
}
.hidden{
  display: none;
}
.aspect-\[4\/3\]{
  aspect-ratio: 4/3;
}
.aspect-square{
  aspect-ratio: 1 / 1;
}
.size-2\.5{
  width: 0.625rem;
  height: 0.625rem;
}
.size-4{
  width: 1rem;
  height: 1rem;
}
.\!h-\[4px\]{
  height: 4px !important;
}
.h-0\.5{
  height: 0.125rem;
}
.h-1{
  height: 0.25rem;
}
.h-1\.5{
  height: 0.375rem;
}
.h-10{
  height: 2.5rem;
}
.h-11{
  height: 2.75rem;
}
.h-12{
  height: 3rem;
}
.h-16{
  height: 4rem;
}
.h-4{
  height: 1rem;
}
.h-5{
  height: 1.25rem;
}
.h-6{
  height: 1.5rem;
}
.h-7{
  height: 1.75rem;
}
.h-8{
  height: 2rem;
}
.h-96{
  height: 24rem;
}
.h-\[100dvh\]{
  height: 100dvh;
}
.h-\[10px\]{
  height: 10px;
}
.h-\[120px\]{
  height: 120px;
}
.h-\[132px\]{
  height: 132px;
}
.h-\[14px\]{
  height: 14px;
}
.h-\[20px\]{
  height: 20px;
}
.h-\[2px\]{
  height: 2px;
}
.h-\[320px\]{
  height: 320px;
}
.h-\[32px\]{
  height: 32px;
}
.h-\[350px\]{
  height: 350px;
}
.h-\[40px\]{
  height: 40px;
}
.h-\[48px\]{
  height: 48px;
}
.h-\[66px\]{
  height: 66px;
}
.h-\[90px\]{
  height: 90px;
}
.h-\[calc\(100\%-3rem\)\]{
  height: calc(100% - 3rem);
}
.h-\[calc\(100vh-200px\)\]{
  height: calc(100vh - 200px);
}
.h-\[min\(500px\2c 60dvh\)\]{
  height: min(500px, 60dvh);
}
.h-\[min\(655px\2c 75dvh\)\]{
  height: min(655px, 75dvh);
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.h-min{
  height: min-content;
}
.h-px{
  height: 1px;
}
.max-h-60{
  max-height: 15rem;
}
.max-h-\[22\.5rem\]{
  max-height: 22.5rem;
}
.max-h-\[248px\]{
  max-height: 248px;
}
.max-h-\[25rem\]{
  max-height: 25rem;
}
.max-h-\[360px\]{
  max-height: 360px;
}
.max-h-\[472px\]{
  max-height: 472px;
}
.max-h-\[698px\]{
  max-height: 698px;
}
.max-h-\[700px\]{
  max-height: 700px;
}
.max-h-\[calc\(100dvh-2rem\)\]{
  max-height: calc(100dvh - 2rem);
}
.min-h-10{
  min-height: 2.5rem;
}
.min-h-11{
  min-height: 2.75rem;
}
.min-h-\[70vh\]{
  min-height: 70vh;
}
.\!w-\[4px\]{
  width: 4px !important;
}
.w-1\.5{
  width: 0.375rem;
}
.w-1\/2{
  width: 50%;
}
.w-1\/3{
  width: 33.333333%;
}
.w-1\/4{
  width: 25%;
}
.w-10{
  width: 2.5rem;
}
.w-12{
  width: 3rem;
}
.w-16{
  width: 4rem;
}
.w-2\/5{
  width: 40%;
}
.w-3\/5{
  width: 60%;
}
.w-32{
  width: 8rem;
}
.w-4{
  width: 1rem;
}
.w-4\/5{
  width: 80%;
}
.w-5{
  width: 1.25rem;
}
.w-5\/6{
  width: 83.333333%;
}
.w-8{
  width: 2rem;
}
.w-96{
  width: 24rem;
}
.w-\[100px\]{
  width: 100px;
}
.w-\[14px\]{
  width: 14px;
}
.w-\[200px\]{
  width: 200px;
}
.w-\[20px\]{
  width: 20px;
}
.w-\[233px\]{
  width: 233px;
}
.w-\[320px\]{
  width: 320px;
}
.w-\[32px\]{
  width: 32px;
}
.w-\[40px\]{
  width: 40px;
}
.w-\[48px\]{
  width: 48px;
}
.w-\[50px\]{
  width: 50px;
}
.w-\[66px\]{
  width: 66px;
}
.w-\[80px\]{
  width: 80px;
}
.w-\[calc\(100\%-24px\)\]{
  width: calc(100% - 24px);
}
.w-\[calc\(100\%-8px\)\]{
  width: calc(100% - 8px);
}
.w-fit{
  width: fit-content;
}
.w-full{
  width: 100%;
}
.w-max{
  width: max-content;
}
.min-w-0{
  min-width: 0px;
}
.min-w-10{
  min-width: 2.5rem;
}
.min-w-5{
  min-width: 1.25rem;
}
.max-w-4xl{
  max-width: 56rem;
}
.max-w-96{
  max-width: 24rem;
}
.max-w-\[1420px\]{
  max-width: 1420px;
}
.max-w-\[466px\]{
  max-width: 466px;
}
.max-w-\[640px\]{
  max-width: 640px;
}
.max-w-\[calc\(100vw-2rem\)\]{
  max-width: calc(100vw - 2rem);
}
.max-w-fit{
  max-width: fit-content;
}
.max-w-full{
  max-width: 100%;
}
.max-w-lg{
  max-width: 32rem;
}
.max-w-md{
  max-width: 28rem;
}
.max-w-sm{
  max-width: 24rem;
}
.max-w-xl{
  max-width: 36rem;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-none{
  flex: none;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.shrink-0{
  flex-shrink: 0;
}
.flex-grow{
  flex-grow: 1;
}
.-translate-x-2{
  --tw-translate-x: -0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-2\.5{
  --tw-translate-y: -0.625rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-4{
  --tw-translate-y: -1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-0{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-full{
  --tw-translate-x: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-rotate-90{
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45{
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-100{
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-50{
  --tw-scale-x: .5;
  --tw-scale-y: .5;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-75{
  --tw-scale-x: .75;
  --tw-scale-y: .75;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-90{
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-95{
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  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));
}
.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));
}
@keyframes pulse{

  50%{
    opacity: .5;
  }
}
.animate-pulse{
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin{

  to{
    transform: rotate(360deg);
  }
}
.animate-spin{
  animation: spin 1s linear infinite;
}
.\!cursor-default{
  cursor: default !important;
}
.cursor-default{
  cursor: default;
}
.cursor-not-allowed{
  cursor: not-allowed;
}
.cursor-pointer{
  cursor: pointer;
}
.select-none{
  user-select: none;
}
.resize{
  resize: both;
}
.appearance-none{
  appearance: none;
}
.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));
}
.flex-row{
  flex-direction: row;
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-center{
  align-items: center;
}
.items-baseline{
  align-items: baseline;
}
.justify-end{
  justify-content: flex-end;
}
.\!justify-center{
  justify-content: center !important;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.justify-around{
  justify-content: space-around;
}
.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-x-1{
  column-gap: 0.25rem;
}
.gap-x-2{
  column-gap: 0.5rem;
}
.gap-x-4{
  column-gap: 1rem;
}
.gap-x-8{
  column-gap: 2rem;
}
.gap-y-10{
  row-gap: 2.5rem;
}
.gap-y-2{
  row-gap: 0.5rem;
}
.gap-y-3{
  row-gap: 0.75rem;
}
.gap-y-4{
  row-gap: 1rem;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.justify-self-end{
  justify-self: end;
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-x-auto{
  overflow-x: auto;
}
.overflow-y-auto{
  overflow-y: auto;
}
.overflow-x-scroll{
  overflow-x: scroll;
}
.overflow-y-scroll{
  overflow-y: scroll;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.whitespace-pre-line{
  white-space: pre-line;
}
.break-words{
  overflow-wrap: break-word;
}
.rounded-full{
  border-radius: 1000px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-md{
  border-radius: 16px;
}
.rounded-none{
  border-radius: 0px;
}
.rounded-sm{
  border-radius: 8px;
}
.rounded-xs{
  border-radius: 4px;
}
.rounded-b-sm{
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.rounded-b-xs{
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.rounded-t-sm{
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.\!border-0{
  border-width: 0px !important;
}
.border{
  border-width: 1px;
}
.border-0{
  border-width: 0px;
}
.border-2{
  border-width: 2px;
}
.border-y{
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-l{
  border-left-width: 1px;
}
.border-l-0{
  border-left-width: 0px;
}
.border-l-2{
  border-left-width: 2px;
}
.border-r{
  border-right-width: 1px;
}
.border-t{
  border-top-width: 1px;
}
.border-t-0{
  border-top-width: 0px;
}
.border-none{
  border-style: none;
}
.\!border-disabled{
  border-color: rgba(var(--border-disabled)) !important;
}
.\!border-negative{
  border-color: rgba(var(--border-negative-primary)) !important;
}
.border-action{
  border-color: rgba(var(--border-action));
}
.border-disabled{
  border-color: rgba(var(--border-disabled));
}
.border-disabled\/50{
  border-color: rgba(var(--border-disabled), 0.5);
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-negative{
  border-color: rgba(var(--border-negative-primary));
}
.border-primary{
  border-color: rgba(var(--border-primary));
}
.border-primary\/20{
  border-color: rgba(var(--border-primary), 0.2);
}
.border-red-700{
  --tw-border-opacity: 1;
  border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}
.border-secondary{
  border-color: rgba(var(--border-secondary));
}
.border-tertiary{
  border-color: rgba(var(--content-tertiary));
}
.border-transparent{
  border-color: transparent;
}
.border-b-transparent{
  border-bottom-color: transparent;
}
.border-l-secondary{
  border-left-color: rgba(var(--border-secondary));
}
.border-t-secondary{
  border-top-color: rgba(var(--border-secondary));
}
.\!bg-action{
  background-color: rgba(var(--bg-action-primary)) !important;
}
.\!bg-disabled{
  background-color: rgba(var(--bg-disabled)) !important;
}
.\!bg-transparent{
  background-color: transparent !important;
}
.bg-\[\#1B1B1B\]{
  --tw-bg-opacity: 1;
  background-color: rgb(27 27 27 / var(--tw-bg-opacity, 1));
}
.bg-\[\#EEEEEE\]{
  --tw-bg-opacity: 1;
  background-color: rgb(238 238 238 / var(--tw-bg-opacity, 1));
}
.bg-\[\#ff9d00\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 157 0 / var(--tw-bg-opacity, 1));
}
.bg-\[rgba\(0\2c 67\2c 143\2c 1\)\]{
  background-color: rgba(0,67,143,1);
}
.bg-\[rgba\(217\2c 45\2c 32\2c 1\)\]{
  background-color: rgba(217,45,32,1);
}
.bg-\[rgba\(23\2c 163\2c 74\2c 1\)\]{
  background-color: rgba(23,163,74,1);
}
.bg-\[rgba\(247\2c 144\2c 9\2c 1\)\]{
  background-color: rgba(247,144,9,1);
}
.bg-\[rgba\(255\2c 191\2c 58\2c 1\)\]{
  background-color: rgba(255,191,58,1);
}
.bg-\[rgba\(255\2c 255\2c 255\2c 1\)\]{
  background-color: rgba(255,255,255,1);
}
.bg-\[rgba\(77\2c 160\2c 255\2c 1\)\]{
  background-color: rgba(77,160,255,1);
}
.bg-\[rgba\(82\2c 82\2c 82\2c 1\)\]{
  background-color: rgba(82,82,82,1);
}
.bg-\[rgba\(9\2c 9\2c 9\2c 1\)\]{
  background-color: rgba(9,9,9,1);
}
.bg-action{
  background-color: rgba(var(--bg-action-primary));
}
.bg-action-secondary{
  background-color: var(--bg-action-secondary);
}
.bg-component{
  background-color: rgba(var(--bg-component-primary));
}
.bg-component-secondary{
  background-color: rgba(var(--bg-component-secondary));
}
.bg-disabled{
  background-color: rgba(var(--bg-disabled));
}
.bg-negative{
  background-color: rgba(var(--bg-negative-primary));
}
.bg-positive{
  background-color: rgba(var(--bg-positive-primary));
}
.bg-primary{
  background-color: rgba(var(--bg-primary));
}
.bg-primary\/10{
  background-color: rgba(var(--bg-primary), 0.1);
}
.bg-primary\/80{
  background-color: rgba(var(--bg-primary), 0.8);
}
.bg-secondary{
  background-color: rgba(var(--bg-secondary));
}
.bg-secondary\/10{
  background-color: rgba(var(--bg-secondary), 0.1);
}
.bg-secondary\/5{
  background-color: rgba(var(--bg-secondary), 0.05);
}
.bg-secondary\/70{
  background-color: rgba(var(--bg-secondary), 0.7);
}
.bg-tertiary{
  background-color: rgba(var(--bg-tertiary));
}
.bg-tertiary\/10{
  background-color: rgba(var(--bg-tertiary), 0.1);
}
.bg-tertiary\/50{
  background-color: rgba(var(--bg-tertiary), 0.5);
}
.bg-tertiary\/60{
  background-color: rgba(var(--bg-tertiary), 0.6);
}
.bg-transparent{
  background-color: transparent;
}
.bg-warning{
  background-color: rgba(var(--bg-warning-primary));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.object-contain{
  object-fit: contain;
}
.object-cover{
  object-fit: cover;
}
.object-center{
  object-position: center;
}
.object-top{
  object-position: top;
}
.p-0{
  padding: 0px;
}
.p-1{
  padding: 0.25rem;
}
.p-2{
  padding: 0.5rem;
}
.p-2\.5{
  padding: 0.625rem;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-5{
  padding: 1.25rem;
}
.p-6{
  padding: 1.5rem;
}
.\!py-2{
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-12{
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[16px\]{
  padding-left: 16px;
  padding-right: 16px;
}
.px-\[24px\]{
  padding-left: 24px;
  padding-right: 24px;
}
.px-\[58px\]{
  padding-left: 58px;
  padding-right: 58px;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-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;
}
.py-\[10px\]{
  padding-top: 10px;
  padding-bottom: 10px;
}
.py-\[12px\]{
  padding-top: 12px;
  padding-bottom: 12px;
}
.py-\[52px\]{
  padding-top: 52px;
  padding-bottom: 52px;
}
.py-\[8px\]{
  padding-top: 8px;
  padding-bottom: 8px;
}
.pb-1{
  padding-bottom: 0.25rem;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pb-5{
  padding-bottom: 1.25rem;
}
.pb-8{
  padding-bottom: 2rem;
}
.pl-12{
  padding-left: 3rem;
}
.pl-2{
  padding-left: 0.5rem;
}
.pl-6{
  padding-left: 1.5rem;
}
.pl-\[38px\]{
  padding-left: 38px;
}
.pl-\[46px\]{
  padding-left: 46px;
}
.pr-10{
  padding-right: 2.5rem;
}
.pr-\[38px\]{
  padding-right: 38px;
}
.pt-2{
  padding-top: 0.5rem;
}
.pt-3{
  padding-top: 0.75rem;
}
.pt-4{
  padding-top: 1rem;
}
.pt-5{
  padding-top: 1.25rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-\[10px\]{
  font-size: 10px;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.\!font-bold{
  font-weight: 700 !important;
}
.\!font-light{
  font-weight: 300 !important;
}
.\!font-normal{
  font-weight: 400 !important;
}
.\!font-semibold{
  font-weight: 600 !important;
}
.font-bold{
  font-weight: 700;
}
.font-medium{
  font-weight: 500;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.capitalize{
  text-transform: capitalize;
}
.tabular-nums{
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.leading-none{
  line-height: 1;
}
.tracking-widest{
  letter-spacing: 0.1em;
}
.text-\[\#071a42\]{
  --tw-text-opacity: 1;
  color: rgb(7 26 66 / var(--tw-text-opacity, 1));
}
.text-\[\#1B1B1B\]{
  --tw-text-opacity: 1;
  color: rgb(27 27 27 / var(--tw-text-opacity, 1));
}
.text-\[\#EEEEEE\]{
  --tw-text-opacity: 1;
  color: rgb(238 238 238 / var(--tw-text-opacity, 1));
}
.text-action{
  color: rgba(var(--content-action-primary));
}
.text-action-on-primary{
  color: rgba(var(--content-action-on-primary));
}
.text-action-on-secondary{
  color: rgba(var(--content-action-on-secondary));
}
.text-disabled{
  color: rgba(var(--content-disabled));
}
.text-green-700{
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.text-negative{
  color: rgba(var(--content-negative-primary));
}
.text-negative-on-primary{
  color: rgba(var(--content-negative-on-primary));
}
.text-primary{
  color: rgba(var(--content-primary));
}
.text-red-700{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.text-rose-500{
  --tw-text-opacity: 1;
  color: rgb(244 63 94 / var(--tw-text-opacity, 1));
}
.text-secondary{
  color: rgba(var(--content-secondary));
}
.text-tertiary{
  color: rgba(var(--content-tertiary));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/80{
  color: rgb(255 255 255 / 0.8);
}
.line-through{
  text-decoration-line: line-through;
}
.antialiased{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opacity-0{
  opacity: 0;
}
.opacity-100{
  opacity: 1;
}
.opacity-25{
  opacity: 0.25;
}
.opacity-30{
  opacity: 0.3;
}
.opacity-70{
  opacity: 0.7;
}
.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-none{
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-sm{
  --tw-blur: blur(4px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.brightness-0{
  --tw-brightness: brightness(0);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert{
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-sm{
  --tw-backdrop-blur: blur(4px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.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;
}
.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-100{
  transition-duration: 100ms;
}
.duration-150{
  transition-duration: 150ms;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-300{
  transition-duration: 300ms;
}
.ease-in{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.scrollbar-hide{
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar{
  display: none;
}

/* Typography */
.text-xl{
  font-weight: 400;
  letter-spacing: 0em;
}
.text-lg{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0em;
}
.text-md{
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
}
.text-sm{
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0em;
}

.label-sm{
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
}
.label-md{
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
}
.label-lg{
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
}
.label-xl{
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0em;
}

.heading-xs{
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0em;
}
.heading-sm{
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
}
.heading-md{
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0em;
}
@media not all and (min-width: 768px){

  .heading-md{
    font-size: 20px;
    line-height: 28px;
  }
}
.heading-lg{
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0em;
}
@media not all and (min-width: 768px){

  .heading-lg{
    font-size: 24px;
    line-height: 32px;
  }
}
.heading-xl{
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0em;
}
@media not all and (min-width: 768px){

  .heading-xl{
    font-size: 32px;
    line-height: 40px;
  }
}

.display-sm{
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 0em;
}

@media not all and (min-width: 768px){

  .display-sm{
    font-size: 32px;
    line-height: 40px;
  }
}
.display-md{
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: 0em;
}
@media not all and (min-width: 768px){

  .display-md{
    font-size: 40px;
    line-height: 48px;
  }
}
.container{
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px){

  .container{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px){

  .container{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.container {
  max-width: var(--armoza-max-width);
  margin-inline: auto;
}

/* Atoms components */

.button-icon{
  background-color: rgba(var(--bg-primary));
}

.button-icon:hover{
  background-color: var(--bg-action-secondary-hover);
}

.button-icon:active{
  background-color: var(--bg-action-secondary-pressed);
}

.button-icon:disabled{
  background-color: rgba(var(--bg-primary));
}
.button-icon svg path{
  fill: rgba(var(--content-action-on-secondary));
}

.button-filled{
  background-color: rgba(var(--bg-action-primary));
}

.button-filled:hover{
  background-color: rgba(var(--bg-action-primary-hover));
}

.button-filled:active{
  background-color: rgba(var(--bg-action-primary-pressed));
}

.button-filled:disabled{
  background-color: rgba(var(--bg-disabled));
}
.button-filled svg path{
  fill: rgba(var(--content-action-on-primary));
}

.button-tonal{
  background-color: var(--bg-action-secondary);
}

.button-tonal:hover{
  background-color: var(--bg-action-secondary-hover);
}

.button-tonal:active{
  background-color: var(--bg-action-secondary-pressed);
}

.button-tonal:disabled{
  background-color: rgba(var(--bg-disabled));
}
.button-tonal svg path{
  fill: rgba(var(--content-action-on-secondary));
}

button:disabled svg path{
  fill: rgba(var(--content-disabled));
}

.button-text-filled svg path{
  fill: rgba(var(--content-tertiary));
}

.checkbox-wrapper{
  height: 20px;
  width: 20px;
  cursor: pointer;
  border-radius: 4px;
  border-width: 1px;
  border-color: rgba(var(--border-secondary));
  background-color: rgba(var(--bg-component-secondary));
}
.checkbox-wrapper svg{
  pointer-events: none;
}
.checkbox-wrapper svg path{
  fill: rgba(var(--content-action-on-primary));
}

.chip-wrapper{
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  border-width: 1px;
  background-color: rgba(var(--bg-component-primary));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
}

.chip-wrapper:hover{
  background-color: rgba(var(--bg-component-primary-hover));
}
.chip-wrapper svg path{
  fill: rgba(var(--content-action-on-secondary));
}
.chip-wrapper[data-disabled="true"] svg path{
  fill: rgba(var(--content-action-on-primary));
}

.multi-gradient {
  background: conic-gradient(
    from 180deg at 50% 50%,
    #00438f 0deg,
    #4da0ff 50.4deg,
    #17a34a 108deg,
    #ffbf38 165.6deg,
    #c56a09 217.8deg,
    #d92d20 282.6deg,
    #00438f 360deg
  );
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product-details{
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
}
.product-details ul{
  list-style-type: disc;
  padding-left: 1.25rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
}
.embla__container {
  touch-action: pan-y pinch-zoom;
}
.embla__slide {
  transform: translate3d(0, 0, 0);
  flex: 0 0 100%;
  min-width: 0;
}

.no-arrows-number-input::-webkit-inner-spin-button,
.no-arrows-number-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.no-arrows-number-input {
  -moz-appearance: textfield;
}

/* Shared ARMOZA surfaces; behavior stays in the existing React components. */

.hover\:scale-110:hover{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:rounded-full:hover{
  border-radius: 1000px;
}

.hover\:border-primary:hover{
  border-color: rgba(var(--border-primary));
}

.hover\:bg-action-hover:hover{
  background-color: rgba(var(--bg-action-primary-hover));
}

.hover\:bg-action-secondary-hover:hover{
  background-color: var(--bg-action-secondary-hover);
}

.hover\:bg-component:hover{
  background-color: rgba(var(--bg-component-primary));
}

.hover\:bg-component-hover:hover{
  background-color: rgba(var(--bg-component-primary-hover));
}

.hover\:bg-component-secondary-hover:hover{
  background-color: rgba(var(--bg-component-secondary-hover));
}

.hover\:bg-component-secondary\/40:hover{
  background-color: rgba(var(--bg-component-secondary), 0.4);
}

.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.hover\:bg-negative-hover:hover{
  background-color: rgba(var(--bg-negative-primary-hover));
}

.hover\:bg-primary:hover{
  background-color: rgba(var(--bg-primary));
}

.hover\:bg-secondary:hover{
  background-color: rgba(var(--bg-secondary));
}

.hover\:bg-secondary\/10:hover{
  background-color: rgba(var(--bg-secondary), 0.1);
}

.hover\:bg-secondary\/30:hover{
  background-color: rgba(var(--bg-secondary), 0.3);
}

.hover\:text-action:hover{
  color: rgba(var(--content-action-primary));
}

.hover\:text-red-500:hover{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.hover\:opacity-80:hover{
  opacity: 0.8;
}

.focus\:border-action:focus{
  border-color: rgba(var(--border-action));
}

.focus\:border-negative:focus{
  border-color: rgba(var(--border-negative-primary));
}

.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-0:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-visible\:border-gray-300:focus-visible{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}

.focus-visible\:ring-2:focus-visible{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-visible\:ring-white:focus-visible{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
}

.focus-visible\:ring-opacity-75:focus-visible{
  --tw-ring-opacity: 0.75;
}

.focus-visible\:ring-offset-2:focus-visible{
  --tw-ring-offset-width: 2px;
}

.focus-visible\:ring-offset-gray-300:focus-visible{
  --tw-ring-offset-color: #d1d5db;
}

.active\:bg-action-pressed:active{
  background-color: rgba(var(--bg-action-primary-pressed));
}

.active\:bg-action-secondary-pressed:active{
  background-color: var(--bg-action-secondary-pressed);
}

.active\:bg-negative-pressed:active{
  background-color: rgba(var(--bg-negative-primary-pressed));
}

.disabled\:bg-disabled:disabled{
  background-color: rgba(var(--bg-disabled));
}

.disabled\:text-disabled:disabled{
  color: rgba(var(--content-disabled));
}

.disabled\:opacity-50:disabled{
  opacity: 0.5;
}

.group:hover .group-hover\:translate-x-0{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:opacity-100{
  opacity: 1;
}

.group:disabled .group-disabled\:shadow-none{
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.dark\:bg-action-tertiary:is(.dark *){
  background-color: var(--bg-action-tertiary);
}

.dark\:bg-primary:is(.dark *){
  background-color: rgba(var(--bg-primary));
}

.dark\:hover\:bg-action-tertiary-hover:hover:is(.dark *){
  background-color: var(--bg-action-tertiary-hover);
}

.dark\:active\:bg-action-tertiary-pressed:active:is(.dark *){
  background-color: var(--bg-action-tertiary-pressed);
}

.dark\:disabled\:bg-disabled:disabled:is(.dark *){
  background-color: rgba(var(--bg-disabled));
}

@media (min-width: 640px){

  .sm\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .sm\:mt-20{
    margin-top: 5rem;
  }

  .sm\:flex{
    display: flex;
  }

  .sm\:hidden{
    display: none;
  }

  .sm\:w-1\/2{
    width: 50%;
  }

  .sm\:w-\[100px\]{
    width: 100px;
  }

  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .sm\:flex-row{
    flex-direction: row;
  }

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

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

  .sm\:gap-4{
    gap: 1rem;
  }

  .sm\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 768px){

  .md\:relative{
    position: relative;
  }

  .md\:z-10{
    z-index: 10;
  }

  .md\:col-span-1{
    grid-column: span 1 / span 1;
  }

  .md\:col-span-3{
    grid-column: span 3 / span 3;
  }

  .md\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .md\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

  .md\:my-0{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .md\:mb-0{
    margin-bottom: 0px;
  }

  .md\:ml-auto{
    margin-left: auto;
  }

  .md\:mt-0{
    margin-top: 0px;
  }

  .md\:block{
    display: block;
  }

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

  .md\:flex{
    display: flex;
  }

  .md\:hidden{
    display: none;
  }

  .md\:h-full{
    height: 100%;
  }

  .md\:w-1\/2{
    width: 50%;
  }

  .md\:w-1\/3{
    width: 33.333333%;
  }

  .md\:w-2\/3{
    width: 66.666667%;
  }

  .md\:w-\[426px\]{
    width: 426px;
  }

  .md\:max-w-full{
    max-width: 100%;
  }

  .md\:flex-shrink-0{
    flex-shrink: 0;
  }

  .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\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .md\:flex-row{
    flex-direction: row;
  }

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

  .md\:gap-8{
    gap: 2rem;
  }

  .md\:overflow-x-auto{
    overflow-x: auto;
  }

  .md\:overflow-y-auto{
    overflow-y: auto;
  }

  .md\:whitespace-nowrap{
    white-space: nowrap;
  }

  .md\:border-b{
    border-bottom-width: 1px;
  }

  .md\:border-primary{
    border-color: rgba(var(--border-primary));
  }

  .md\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:px-24{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .md\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:pt-0{
    padding-top: 0px;
  }

  .md\:opacity-100{
    opacity: 1;
  }

  .md\:scrollbar-hide{
    scrollbar-width: none;
  }

  .md\:scrollbar-hide::-webkit-scrollbar{
    display: none;
  }
}

@media (min-width: 1024px){

  .lg\:bottom-auto{
    bottom: auto;
  }

  .lg\:top-3{
    top: 0.75rem;
  }

  .lg\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .lg\:mb-0{
    margin-bottom: 0px;
  }

  .lg\:mb-4{
    margin-bottom: 1rem;
  }

  .lg\:mb-48{
    margin-bottom: 12rem;
  }

  .lg\:mt-0{
    margin-top: 0px;
  }

  .lg\:block{
    display: block;
  }

  .lg\:flex{
    display: flex;
  }

  .lg\:hidden{
    display: none;
  }

  .lg\:aspect-auto{
    aspect-ratio: auto;
  }

  .lg\:\!h-\[4px\]{
    height: 4px !important;
  }

  .lg\:h-\[680px\]{
    height: 680px;
  }

  .lg\:h-fit{
    height: fit-content;
  }

  .lg\:h-full{
    height: 100%;
  }

  .lg\:\!w-\[4px\]{
    width: 4px !important;
  }

  .lg\:w-\[200px\]{
    width: 200px;
  }

  .lg\:w-\[460px\]{
    width: 460px;
  }

  .lg\:w-auto{
    width: auto;
  }

  .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-\[1fr_auto\]{
    grid-template-columns: 1fr auto;
  }

  .lg\:flex-row{
    flex-direction: row;
  }

  .lg\:justify-start{
    justify-content: flex-start;
  }

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

  .lg\:gap-4{
    gap: 1rem;
  }

  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

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

  .lg\:opacity-0{
    opacity: 0;
  }
}

@media (min-width: 1280px){

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

  .xl\:flex{
    display: flex;
  }

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

@media (min-width: 1536px){

  .\32xl\:h-\[400px\]{
    height: 400px;
  }

  .\32xl\:w-\[400px\]{
    width: 400px;
  }
}

.\[\&\>div\]\:flex-grow>div{
  flex-grow: 1;
}

.\[\&\>path\]\:fill-gray-200>path{
  fill: #e5e7eb;
}

.\[\&\>path\]\:fill-secondary>path{
  fill: rgba(var(--content-action-on-secondary));
}

