/**
 * Butikk Frontend Kjerne-Stilark (style.css)
 * Komplett Tailwind-kompatibelt stilark med støtte for CSS-variabler,
 * mørkt admin-bar-tema, badges, glassmorphism, brand-ikoner og responsive grids.
 */

/* ==========================================================================
   1. CSS Variabler (Designinnstillinger)
   ========================================================================== */
:root {
    --color-primary: #ca7479;
    --color-primary-hover: #b86267;
    --color-secondary: #f3bcb0;
    --header-bg: #ffffff;
    --header-text: #374151;
    --bg-color1: #f9fafb;
    --bg-color2: #f3f4f6;
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    --tw-border-opacity: 1;
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-ring-color: rgba(202, 116, 121, 0.5);
}

/* ==========================================================================
   2. CSS Reset & Preflight
   ========================================================================== */
*, ::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: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    margin: 0;
    line-height: inherit;
    color: #1f2937;
    background-color: var(--bg-color1, #f9fafb);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: inherit;
}

b, strong {
    font-weight: bolder;
}

code, kbd, samp, pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
}

small { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sub { bottom: -0.25em; }
sup { top: -0.5em; }

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

button, select {
    text-transform: none;
}

button, [type='button'], [type='reset'], [type='submit'] {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
    cursor: pointer;
}

ol, ul, menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
    margin: 0;
}

textarea {
    resize: vertical;
}

input::placeholder, textarea::placeholder {
    opacity: 1;
    color: #9ca3af;
}

img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   3. Tilgjengelighet & Spesialklasser
   ========================================================================== */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
}

/* Glassmorphism & Backdrop Blur */
.backdrop-blur-none { -webkit-backdrop-filter: blur(0); backdrop-filter: blur(0); }
.backdrop-blur-sm { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.backdrop-blur { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.backdrop-blur-md { -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.backdrop-blur-lg { -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.backdrop-blur-xl { -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); }
.backdrop-blur-2xl { -webkit-backdrop-filter: blur(40px); backdrop-filter: blur(40px); }
.backdrop-blur-3xl { -webkit-backdrop-filter: blur(64px); backdrop-filter: blur(64px); }

.mix-blend-multiply { mix-blend-mode: multiply; }

/* ==========================================================================
   4. Basis Utility-klasser
   ========================================================================== */
/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Position */
.static { position: static; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }

.inset-0 { inset: 0px; }
.inset-x-0 { left: 0px; right: 0px; }
.inset-y-0 { top: 0px; bottom: 0px; }
.top-0 { top: 0px; }
.top-1 { top: 0.25rem; }
.top-1\.5 { top: 0.375rem; }
.top-2 { top: 0.5rem; }
.top-2\.5 { top: 0.625rem; }
.top-3 { top: 0.75rem; }
.top-4 { top: 1rem; }
.top-10 { top: 2.5rem; }
.top-12 { top: 3rem; }
.top-16 { top: 4rem; }
.top-24 { top: 6rem; }
.top-1\/2 { top: 50%; }
.top-full { top: 100%; }
.-top-2 { top: -0.5rem; }
.-top-4 { top: -1rem; }

.bottom-0 { bottom: 0px; }
.bottom-1 { bottom: 0.25rem; }
.bottom-2 { bottom: 0.5rem; }
.bottom-3 { bottom: 0.75rem; }
.bottom-4 { bottom: 1rem; }
.bottom-6 { bottom: 1.5rem; }
.bottom-8 { bottom: 2rem; }
.bottom-12 { bottom: 3rem; }
.bottom-14 { bottom: 3.5rem; }
.bottom-16 { bottom: 4rem; }
.bottom-20 { bottom: 5rem; }
.bottom-24 { bottom: 6rem; }

.left-0 { left: 0px; }
.left-1 { left: 0.25rem; }
.left-1\.5 { left: 0.375rem; }
.left-2 { left: 0.5rem; }
.left-3 { left: 0.75rem; }
.left-4 { left: 1rem; }
.left-6 { left: 1.5rem; }
.left-8 { left: 2rem; }
.left-auto { left: auto; }
.left-1\/2 { left: 50%; }
.-left-2 { left: -0.5rem; }
.-left-4 { left: -1rem; }

.right-0 { right: 0px; }
.right-1 { right: 0.25rem; }
.right-1\.5 { right: 0.375rem; }
.right-2 { right: 0.5rem; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.right-8 { right: 2rem; }
.right-auto { right: auto; }
.-right-2 { right: -0.5rem; }
.-right-4 { right: -1rem; }

/* Z-Index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-45 { z-index: 45; }
.z-50 { z-index: 50; }
.z-55 { z-index: 55; }
.z-60 { z-index: 60; }
.z-\[60\] { z-index: 60; }
.z-\[9998\] { z-index: 9998 !important; }
.z-\[9999\] { z-index: 9999 !important; }
.z-\[99998\] { z-index: 99998 !important; }
.z-\[99999\] { z-index: 99999 !important; }
.z-\[100000\] { z-index: 100000 !important; }
.z-auto { z-index: auto; }

/* Flexbox & Grid */
.flex-row { flex-direction: row; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-col { flex-direction: column; }
.flex-col-reverse { flex-direction: column-reverse; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-initial { flex: 0 1 auto; }
.flex-none { flex: none; }
.flex-grow { flex-grow: 1; }
.flex-grow-0 { flex-grow: 0; }
.grow { flex-grow: 1; }
.grow-0 { flex-grow: 0; }
.flex-shrink { flex-shrink: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.shrink { flex-shrink: 1; }
.shrink-0 { flex-shrink: 0; }

.basis-0 { flex-basis: 0px; }
.basis-auto { flex-basis: auto; }
.basis-full { flex-basis: 100%; }
.basis-1\/2 { flex-basis: 50%; }
.basis-1\/3 { flex-basis: 33.333333%; }
.basis-2\/3 { flex-basis: 66.666667%; }
.basis-1\/4 { flex-basis: 25%; }
.basis-3\/4 { flex-basis: 75%; }

/* Flex Box / Card Utilities for Page Builder */
.flex-box,
.flex-item {
    flex: 1 1 280px;
    max-width: 100%;
}
.flex-box-sm {
    flex: 1 1 200px;
    max-width: 100%;
}
.flex-box-lg {
    flex: 1 1 380px;
    max-width: 100%;
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-5 { grid-column: span 5 / span 5; }
.col-span-6 { grid-column: span 6 / span 6; }
.col-span-7 { grid-column: span 7 / span 7; }
.col-span-8 { grid-column: span 8 / span 8; }
.col-span-12 { grid-column: span 12 / span 12; }
.col-span-full { grid-column: 1 / -1; }

.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
.order-first { order: -9999; }
.order-last { order: 9999; }
.order-none { order: 0; }

/* Spacing - Gap */
.gap-0 { gap: 0px; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-3\.5 { gap: 0.875rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-x-1 { column-gap: 0.25rem; }
.gap-x-2 { column-gap: 0.5rem; }
.gap-x-3 { column-gap: 0.75rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-1 { row-gap: 0.25rem; }
.gap-y-2 { row-gap: 0.5rem; }
.gap-y-3 { row-gap: 0.75rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }

/* Spacing - Space between */
.space-x-1 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.25rem; }
.space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.375rem; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.625rem; }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
.space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
.-space-x-1 > :not([hidden]) ~ :not([hidden]) { margin-left: -0.25rem; }

.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.375rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.625rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.875rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }

/* Sizing - Width */
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-screen { width: 100vw; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }
.w-1\/5 { width: 20%; }
.w-2\/5 { width: 40%; }
.w-3\/5 { width: 60%; }
.w-4\/5 { width: 80%; }
.w-1\/6 { width: 16.666667%; }
.w-5\/6 { width: 83.333333%; }
.w-px { width: 1px; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-2\.5 { width: 0.625rem; }
.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-36 { width: 9rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-52 { width: 13rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-\[14rem\] { width: 14rem; }
.w-\[calc\(100vw-2rem\)\] { width: calc(100vw - 2rem); }
.w-\[380px\] { width: 380px; }
.min-w-0 { min-width: 0px; }
.min-w-full { min-width: 100%; }

/* Max Width */
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }
.max-w-none { max-width: none; }
.max-w-\[85\%\] { max-width: 85%; }
.max-w-\[384px\] { max-width: 384px; }
.max-w-\[460px\] { max-width: 460px; }

/* Sizing - Height */
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-0 { height: 0px; }
.h-px { height: 1px; }
.h-0\.5 { height: 0.125rem; }
.h-1 { height: 0.25rem; }
.h-1\.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-2\.5 { height: 0.625rem; }
.h-3 { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.h-36 { height: 9rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-52 { height: 13rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-\[520px\] { height: 520px; }

.min-h-0 { min-height: 0px; }
.min-h-full { min-height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-h-60 { max-height: 15rem; }
.max-h-80 { max-height: 20rem; }
.max-h-96 { max-height: 24rem; }
.max-h-full { max-height: 100%; }
.max-h-screen { max-height: 100vh; }
.max-h-\[80vh\] { max-height: 80vh; }

/* Padding */
.p-0 { padding: 0px; }
.p-0\.5 { padding: 0.125rem; }
.p-1 { padding: 0.25rem; }
.p-1\.5 { padding: 0.375rem; }
.p-2 { padding: 0.5rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-3\.5 { padding: 0.875rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-\[10px\] { padding: 10px; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-0 { padding-left: 0px; padding-right: 0px; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-0 { padding-top: 0px; padding-bottom: 0px; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-0 { padding-top: 0px; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pb-0 { padding-bottom: 0px; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-14 { padding-bottom: 3.5rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pl-0 { padding-left: 0px; }
.pl-1 { padding-left: 0.25rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }
.pl-10 { padding-left: 2.5rem; }
.pr-0 { padding-right: 0px; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-3 { padding-right: 0.75rem; }
.pr-4 { padding-right: 1rem; }
.pr-6 { padding-right: 1.5rem; }
.pr-8 { padding-right: 2rem; }
.pr-10 { padding-right: 2.5rem; }

/* Margin */
.m-0 { margin: 0px; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-auto { margin: auto; }
.-m-2 { margin: -0.5rem; }
.-m-3 { margin: -0.75rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-0 { margin-left: 0px; margin-right: 0px; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }
.my-0 { margin-top: 0px; margin-bottom: 0px; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.mt-0 { margin-top: 0px; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-2\.5 { margin-top: 0.625rem; }
.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-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-auto { margin-top: auto; }
.-mt-1 { margin-top: -0.25rem; }
.-mt-2 { margin-top: -0.5rem; }
.mb-0 { margin-bottom: 0px; }
.mb-0\.5 { margin-bottom: 0.125rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-2\.5 { margin-bottom: 0.625rem; }
.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; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-0 { margin-left: 0px; }
.ml-1 { margin-left: 0.25rem; }
.ml-1\.5 { margin-left: 0.375rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-2\.5 { margin-left: 0.625rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-5 { margin-left: 1.25rem; }
.ml-6 { margin-left: 1.5rem; }
.ml-8 { margin-left: 2rem; }
.ml-auto { margin-left: auto; }
.-ml-1 { margin-left: -0.25rem; }
.-ml-2 { margin-left: -0.5rem; }
.-ml-4 { margin-left: -1rem; }
.mr-0 { margin-right: 0px; }
.mr-1 { margin-right: 0.25rem; }
.mr-1\.5 { margin-right: 0.375rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-2\.5 { margin-right: 0.625rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.mr-5 { margin-right: 1.25rem; }
.mr-6 { margin-right: 1.5rem; }
.mr-8 { margin-right: 2rem; }
.mr-auto { margin-right: auto; }
.-mr-1 { margin-right: -0.25rem; }
.-mr-2 { margin-right: -0.5rem; }

/* 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-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[0\.65rem\] { font-size: 0.65rem; }
.text-\[0\.7rem\] { font-size: 0.7rem; }
.text-\[0\.875rem\] { font-size: 0.875rem; }

.font-sans { font-family: 'Inter', ui-sans-serif, system-ui, sans-serif; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.underline { text-decoration-line: underline; }
.no-underline { text-decoration-line: none; }
.line-through { text-decoration-line: line-through; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.select-none { user-select: none; }

/* Colors - Primary & Secondary */
.text-primary { color: var(--color-primary, #ca7479); }
.text-secondary { color: var(--color-secondary, #f3bcb0); }
.bg-primary { background-color: var(--color-primary, #ca7479); }
.bg-secondary { background-color: var(--color-secondary, #f3bcb0); }
.border-primary { border-color: var(--color-primary, #ca7479); }
.border-secondary { border-color: var(--color-secondary, #f3bcb0); }
.ring-primary { --tw-ring-color: var(--color-primary, #ca7479); }

/* Colors - Standard Palette */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-transparent { color: transparent; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }

.text-slate-200 { color: #e2e8f0; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-slate-900 { color: #0f172a; }

.text-orange-500 { color: #f97316; }
.text-orange-600 { color: #ea580c; }
.text-orange-700 { color: #c2410c; }
.text-orange-800 { color: #9a3412; }

.text-amber-300 { color: #fcd34d; }
.text-amber-400 { color: #fbbf24; }
.text-amber-500 { color: #f59e0b; }
.text-amber-600 { color: #d97706; }
.text-amber-700 { color: #b45309; }
.text-amber-800 { color: #92400e; }

.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.text-red-800 { color: #991b1b; }

.text-rose-300 { color: #fda4af; }
.text-rose-400 { color: #fb7185; }

.text-green-400 { color: #4ade80; }
.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }

.text-emerald-300 { color: #6ee7b7; }
.text-emerald-400 { color: #34d399; }
.text-emerald-600 { color: #059669; }
.text-emerald-700 { color: #047857; }

.text-blue-300 { color: #93c5fd; }
.text-blue-400 { color: #60a5fa; }
.text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }

.text-indigo-400 { color: #818cf8; }
.text-purple-300 { color: #d8b4fe; }
.text-purple-400 { color: #c084fc; }
.text-cyan-400 { color: #22d3ee; }
.text-violet-400 { color: #a78bfa; }
.text-yellow-300 { color: #fde047; }
.text-yellow-400 { color: #facc15; }
.text-yellow-700 { color: #a16207; }

/* Custom Brand Colors for Payment & Shipping Badges */
.text-\[\#FF5B24\] { color: #FF5B24 !important; }
.text-\[\#FFB3C7\] { color: #FFB3C7 !important; }
.text-\[\#1A1F71\] { color: #1A1F71 !important; }
.bg-\[\#EB001B\] { background-color: #EB001B !important; }
.bg-\[\#F79E1B\] { background-color: #F79E1B !important; }
.text-\[\#E3000F\] { color: #E3000F !important; }
.text-\[\#78D64B\] { color: #78D64B !important; }

.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }

/* Background Opacities */
.bg-opacity-0 { --tw-bg-opacity: 0; }
.bg-opacity-5 { --tw-bg-opacity: 0.05; }
.bg-opacity-10 { --tw-bg-opacity: 0.1; }
.bg-opacity-20 { --tw-bg-opacity: 0.2; }
.bg-opacity-25 { --tw-bg-opacity: 0.25; }
.bg-opacity-30 { --tw-bg-opacity: 0.3; }
.bg-opacity-40 { --tw-bg-opacity: 0.4; }
.bg-opacity-50 { --tw-bg-opacity: 0.5; }
.bg-opacity-60 { --tw-bg-opacity: 0.6; }
.bg-opacity-70 { --tw-bg-opacity: 0.7; }
.bg-opacity-75 { --tw-bg-opacity: 0.75; }
.bg-opacity-80 { --tw-bg-opacity: 0.8; }
.bg-opacity-90 { --tw-bg-opacity: 0.9; }
.bg-opacity-100 { --tw-bg-opacity: 1; }

/* Backgrounds with Opacity support */
.bg-white { background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1)); }
.bg-black { background-color: rgba(0, 0, 0, var(--tw-bg-opacity, 1)); }
.bg-transparent { background-color: transparent; }

.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white\/30 { background-color: rgba(255, 255, 255, 0.3); }
.bg-white\/40 { background-color: rgba(255, 255, 255, 0.4); }
.bg-white\/50 { background-color: rgba(255, 255, 255, 0.5); }
.bg-white\/60 { background-color: rgba(255, 255, 255, 0.6); }
.bg-white\/70 { background-color: rgba(255, 255, 255, 0.7); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }

.bg-black\/5 { background-color: rgba(0, 0, 0, 0.05); }
.bg-black\/10 { background-color: rgba(0, 0, 0, 0.1); }
.bg-black\/20 { background-color: rgba(0, 0, 0, 0.2); }
.bg-black\/30 { background-color: rgba(0, 0, 0, 0.3); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }

.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-300 { background-color: #d1d5db; }
.bg-gray-700 { background-color: #374151; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }
.bg-\[\#1a1a1a\] { background-color: #1a1a1a; }

.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-700 { background-color: #334155; }
.bg-slate-800 { background-color: #1e293b; }
.bg-slate-900 { background-color: #0f172a; }
.bg-slate-800\/80 { background-color: rgba(30, 41, 59, 0.8); }
.bg-slate-800\/95 { background-color: rgba(30, 41, 59, 0.95); }
.bg-slate-900\/95 { background-color: rgba(15, 23, 42, 0.95); }

.bg-orange-50 { background-color: #fff7ed; }
.bg-orange-100 { background-color: #ffedd5; }
.bg-orange-500 { background-color: #f97316; }
.bg-orange-600 { background-color: #ea580c; }
.bg-orange-700 { background-color: #c2410c; }

.bg-amber-50 { background-color: #fffbeb; }
.bg-amber-100 { background-color: #fef3c7; }
.bg-amber-400 { background-color: #fbbf24; }
.bg-amber-500 { background-color: #f59e0b; }
.bg-amber-500\/20 { background-color: rgba(245, 158, 11, 0.2); }

.bg-red-50 { background-color: #fef2f2; }
.bg-red-100 { background-color: #fee2e2; }
.bg-red-500 { background-color: #ef4444; }
.bg-red-600 { background-color: #dc2626; }
.bg-red-700 { background-color: #b91c1c; }

.bg-rose-400 { background-color: #fb7185; }
.bg-rose-500 { background-color: #f43f5e; }
.bg-rose-600 { background-color: #e11d48; }
.bg-rose-500\/20 { background-color: rgba(244, 63, 94, 0.2); }

.bg-green-50 { background-color: #f0fdf4; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-400 { background-color: #4ade80; }
.bg-green-500 { background-color: #22c55e; }
.bg-green-600 { background-color: #16a34a; }

.bg-emerald-400 { background-color: #34d399; }
.bg-emerald-500 { background-color: #10b981; }
.bg-emerald-600 { background-color: #059669; }
.bg-emerald-500\/20 { background-color: rgba(16, 185, 129, 0.2); }
.bg-emerald-950\/50 { background-color: rgba(2, 44, 34, 0.5); }

.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-400 { background-color: #60a5fa; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-500\/20 { background-color: rgba(59, 130, 246, 0.2); }
.bg-blue-900\/50 { background-color: rgba(30, 58, 138, 0.5); }
.bg-blue-950\/50 { background-color: rgba(23, 37, 84, 0.5); }

.bg-indigo-600 { background-color: #4f46e5; }
.bg-indigo-600\/80 { background-color: rgba(79, 70, 229, 0.8); }

.bg-purple-400 { background-color: #c084fc; }
.bg-purple-500 { background-color: #a855f7; }
.bg-purple-600 { background-color: #9333ea; }
.bg-purple-500\/20 { background-color: rgba(168, 85, 247, 0.2); }

.bg-cyan-400 { background-color: #22d3ee; }

.bg-yellow-50 { background-color: #fefce8; }
.bg-yellow-100 { background-color: #fef9c3; }
.bg-yellow-500 { background-color: #eab308; }
.bg-yellow-500\/20 { background-color: rgba(234, 179, 8, 0.2); }

/* Borders */
.border { border-width: 1px; }
.border-0 { border-width: 0px; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.border-r { border-right-width: 1px; }
.border-t-2 { border-top-width: 2px; }
.border-b-2 { border-bottom-width: 2px; }
.border-l-4 { border-left-width: 4px; }
.border-solid { border-style: solid; }
.border-dashed { border-style: dashed; }
.border-dotted { border-style: dotted; }

.border-transparent { border-color: transparent; }
.border-white { border-color: #ffffff; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-gray-400 { border-color: #9ca3af; }
.border-gray-500 { border-color: #6b7280; }
.border-gray-700 { border-color: #374151; }
.border-gray-800 { border-color: #1f2937; }

.border-slate-100 { border-color: #f1f5f9; }
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-700 { border-color: #334155; }
.border-slate-800 { border-color: #1e293b; }
.border-slate-700\/60 { border-color: rgba(51, 65, 85, 0.6); }
.border-slate-700\/70 { border-color: rgba(51, 65, 85, 0.7); }

.border-blue-800\/60 { border-color: rgba(30, 64, 175, 0.6); }
.border-emerald-800\/60 { border-color: rgba(6, 78, 59, 0.6); }
.border-emerald-500\/30 { border-color: rgba(16, 185, 129, 0.3); }
.border-amber-500\/30 { border-color: rgba(245, 158, 11, 0.3); }
.border-rose-500\/30 { border-color: rgba(244, 63, 94, 0.3); }
.border-blue-500\/30 { border-color: rgba(59, 130, 246, 0.3); }
.border-purple-500\/30 { border-color: rgba(168, 85, 247, 0.3); }
.border-yellow-500\/30 { border-color: rgba(234, 179, 8, 0.3); }
.border-indigo-500\/50 { border-color: rgba(99, 102, 241, 0.5); }

.border-red-200 { border-color: #fecaca; }
.border-red-500 { border-color: #ef4444; }
.border-green-200 { border-color: #bbf7d0; }
.border-green-500 { border-color: #22c55e; }
.border-orange-500 { border-color: #f97316; }
.border-yellow-500 { border-color: #eab308; }
.border-black\/10 { border-color: rgba(0, 0, 0, 0.1); }

/* Border Radius */
.rounded-none { border-radius: 0px; }
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-tl-none { border-top-left-radius: 0px; }
.rounded-l-md { border-top-left-radius: 0.375rem; border-bottom-left-radius: 0.375rem; }
.rounded-r-md { border-top-right-radius: 0.375rem; border-bottom-right-radius: 0.375rem; }
.rounded-t-lg { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }

/* Shadows */
.shadow-xs { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Rings */
.ring { box-shadow: 0 0 0 3px var(--tw-ring-color, rgba(59, 130, 246, 0.5)); }
.ring-1 { box-shadow: 0 0 0 1px var(--tw-ring-color, rgba(59, 130, 246, 0.5)); }
.ring-2 { box-shadow: 0 0 0 2px var(--tw-ring-color, rgba(59, 130, 246, 0.5)); }
.ring-offset-2 { outline: 2px solid transparent; outline-offset: 2px; }
.ring-offset-4 { outline: 4px solid transparent; outline-offset: 4px; }
.ring-offset-gray-50 { --tw-ring-offset-color: #f9fafb; }
.ring-opacity-50 { --tw-ring-opacity: 0.5; }

/* Transitions & Transforms */
.transition { transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1); }
.transition-all { transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1); }
.transition-colors { transition: color 150ms, background-color 150ms, border-color 150ms; }
.transition-opacity { transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1); }
.transition-transform { transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1); }
.transition-shadow { transition: box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1); }

.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

.transform { transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) scale(var(--tw-scale-x, 1)); }
.translate-x-0 { --tw-translate-x: 0px; transform: translateX(0px); }
.translate-x-0\.5 { --tw-translate-x: 0.125rem; transform: translateX(0.125rem); }
.translate-x-full { --tw-translate-x: 100%; transform: translateX(100%); }
.-translate-x-full { --tw-translate-x: -100%; transform: translateX(-100%); }
.-translate-x-1\/2 { --tw-translate-x: -50%; transform: translateX(-50%); }
.translate-y-0 { --tw-translate-y: 0px; transform: translateY(0px) !important; }
.translate-y-full { --tw-translate-y: 100%; transform: translateY(100%); }
.-translate-y-full { --tw-translate-y: -100%; transform: translateY(-100%) !important; }
.-translate-y-1\/2 { --tw-translate-y: -50%; transform: translateY(-50%); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }

.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:-translate-y-4:hover { transform: translateY(-1rem); }
.hover\:scale-102:hover { transform: scale(1.02); }
.hover\:scale-105:hover { transform: scale(1.05); }

.rotate-180 { transform: rotate(180deg); }

/* Interactivity & Overflow */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-help { cursor: help; }
.pointer-events-none { pointer-events: none; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-auto { overflow-x: auto; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }

/* Aspect Ratio Rules */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-w-1 { position: relative; padding-bottom: 100%; width: 100%; }
.aspect-w-1 > * { position: absolute; height: 100% !important; width: 100% !important; top: 0; right: 0; bottom: 0; left: 0; object-fit: cover; }
.aspect-w-1 picture, .aspect-w-1 img, .aspect-w-1 video { height: 100% !important; width: 100% !important; object-fit: cover; }

/* Animations */
@keyframes pulse { 50% { opacity: .5; } }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
.animate-bounce { animation: bounce 1s infinite; }

/* ==========================================================================
   5. Pseudo-klasser (Hover, Focus, Group)
   ========================================================================== */
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:bg-gray-700:hover { background-color: #374151; }
.hover\:bg-gray-800:hover { background-color: #1f2937; }

.hover\:bg-slate-700:hover { background-color: #334155; }
.hover\:bg-slate-800:hover { background-color: #1e293b; }

.hover\:bg-blue-500:hover { background-color: #3b82f6; }
.hover\:bg-blue-900\/40:hover { background-color: rgba(30, 58, 138, 0.4); }
.hover\:bg-blue-900\/50:hover { background-color: rgba(30, 58, 138, 0.5); }
.hover\:bg-emerald-500:hover { background-color: #10b981; }
.hover\:bg-emerald-900\/40:hover { background-color: rgba(6, 78, 59, 0.4); }
.hover\:bg-emerald-900\/50:hover { background-color: rgba(6, 78, 59, 0.5); }
.hover\:bg-purple-500:hover { background-color: #a855f7; }
.hover\:bg-indigo-600:hover { background-color: #4f46e5; }
.hover\:bg-rose-500:hover { background-color: #f43f5e; }
.hover\:bg-rose-950\/50:hover { background-color: rgba(76, 5, 25, 0.5); }

.hover\:bg-orange-600:hover { background-color: #ea580c; }
.hover\:bg-orange-700:hover { background-color: #c2410c; }
.hover\:bg-red-600:hover { background-color: #dc2626; }
.hover\:bg-primary:hover { background-color: var(--color-primary, #ca7479); }
.hover\:bg-black:hover { background-color: #000000; }
.hover\:bg-gray-900:hover { background-color: #111827; }
.hover\:bg-black\/5:hover { background-color: rgba(0, 0, 0, 0.05); }
.hover\:bg-black\/10:hover { background-color: rgba(0, 0, 0, 0.1); }

.hover\:text-white:hover { color: #ffffff; }
.hover\:text-gray-300:hover { color: #d1d5db; }
.hover\:text-gray-500:hover { color: #6b7280; }
.hover\:text-gray-600:hover { color: #4b5563; }
.hover\:text-gray-900:hover { color: #111827; }
.hover\:text-slate-300:hover { color: #cbd5e1; }
.hover\:text-rose-300:hover { color: #fda4af; }
.hover\:text-primary:hover { color: var(--color-primary, #ca7479); }
.hover\:text-blue-600:hover { color: #2563eb; }

.hover\:opacity-75:hover { opacity: 0.75; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:opacity-100:hover { opacity: 1; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }

.active\:scale-95:active { transform: scale(0.95); }

.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-0:focus { box-shadow: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--color-primary, #ca7479); }
.focus\:ring-primary:focus { box-shadow: 0 0 0 2px var(--color-primary, #ca7479); }
.focus\:ring-gray-400:focus { box-shadow: 0 0 0 2px #9ca3af; }
.focus\:w-80:focus { width: 20rem; }

.group:hover .group-hover\:text-primary { color: var(--color-primary, #ca7479); }
.group:hover .group-hover\:text-blue-600 { color: #2563eb; }
.group:hover .group-hover\:opacity-75 { opacity: 0.75; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:block { display: block; }
.group\/tooltip:hover .group-hover\/tooltip\:block,
.group-tooltip:hover .group-hover-tooltip-block { display: block !important; }

/* ==========================================================================
   6. Responsive Stiler (Media Queries)
   ========================================================================== */
@media (min-width: 640px) {
    .sm\:block { display: block; }
    .sm\:hidden { display: none; }
    .sm\:inline { display: inline; }
    .sm\:inline-block { display: inline-block; }
    .sm\:inline-flex { display: inline-flex; }
    .sm\:flex { display: flex; }
    .sm\:grid { display: grid; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .sm\:w-\[380px\] { width: 380px; }
    .sm\:w-auto { width: auto; }
    .sm\:h-10 { height: 2.5rem; }
    .sm\:h-12 { height: 3rem; }
    .sm\:h-8 { height: 2rem; }
    .sm\:w-8 { width: 2rem; }
    .sm\:h-10 { height: 2.5rem; }
    .sm\:w-10 { width: 2.5rem; }
    .sm\:p-3 { padding: 0.75rem; }
    .sm\:p-4 { padding: 1rem; }
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
    .sm\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
    .sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
    .sm\:pt-4 { padding-top: 1rem; }
    .sm\:mt-6 { margin-top: 1.5rem; }
    .sm\:mt-8 { margin-top: 2rem; }
    .sm\:mx-0 { margin-left: 0px; margin-right: 0px; }
    .sm\:text-left { text-align: left; }
    .sm\:text-center { text-align: center; }
    .sm\:text-xs { font-size: 0.75rem; }
    .sm\:text-sm { font-size: 0.875rem; }
    .sm\:text-base { font-size: 1rem; }
    .sm\:text-lg { font-size: 1.125rem; }
    .sm\:text-xl { font-size: 1.25rem; }
    .sm\:text-2xl { font-size: 1.5rem; }
    .sm\:text-3xl { font-size: 1.875rem; }
    .sm\:gap-2 { gap: 0.5rem; }
    .sm\:gap-6 { gap: 1.5rem; }
    .sm\:rounded-lg { border-radius: 0.5rem; }
    .sm\:bottom-4 { bottom: 1rem; }
    .sm\:left-3 { left: 0.75rem; }
    .sm\:right-3 { right: 0.75rem; }
    .sm\:right-6 { right: 1.5rem; }
    .sm\:left-6 { left: 1.5rem; }
    .sm\:order-2 { order: 2; }
    .sm\:flex { display: flex; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:flex-col { flex-direction: column; }
    .sm\:flex-wrap { flex-wrap: wrap; }
    .sm\:flex-nowrap { flex-wrap: nowrap; }
    .sm\:flex-1 { flex: 1 1 0%; }
    .sm\:flex-auto { flex: 1 1 auto; }
    .sm\:flex-none { flex: none; }
    .sm\:w-auto { width: auto; }
    .sm\:w-full { width: 100%; }
    .sm\:w-1\/2 { width: 50%; }
    .sm\:w-1\/3 { width: 33.333333%; }
    .sm\:w-2\/3 { width: 66.666667%; }
    .sm\:w-1\/4 { width: 25%; }
    .sm\:w-3\/4 { width: 75%; }
    .sm\:w-64 { width: 16rem; }
    .sm\:w-72 { width: 18rem; }
    .sm\:w-80 { width: 20rem; }
    .sm\:w-96 { width: 24rem; }
    .sm\:justify-start { justify-content: flex-start; }
    .sm\:justify-center { justify-content: center; }
    .sm\:justify-end { justify-content: flex-end; }
    .sm\:justify-between { justify-content: space-between; }
    .sm\:items-start { align-items: flex-start; }
    .sm\:items-center { align-items: center; }
    .sm\:items-end { align-items: flex-end; }
    .sm\:gap-4 { gap: 1rem; }
    .sm\:gap-6 { gap: 1.5rem; }
    .sm\:gap-8 { gap: 2rem; }
}

@media (min-width: 768px) {
    .md\:block { display: block; }
    .md\:hidden { display: none; }
    .md\:flex { display: flex; }
    .md\:inline-block { display: inline-block; }
    .md\:inline-flex { display: inline-flex; }
    .md\:grid { display: grid; }
    .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\:col-span-1 { grid-column: span 1 / span 1; }
    .md\:col-span-2 { grid-column: span 2 / span 2; }
    .md\:flex-row { flex-direction: row; }
    .md\:flex-col { flex-direction: column; }
    .md\:flex-wrap { flex-wrap: wrap; }
    .md\:flex-nowrap { flex-wrap: nowrap; }
    .md\:flex-1 { flex: 1 1 0%; }
    .md\:flex-auto { flex: 1 1 auto; }
    .md\:flex-initial { flex: 0 1 auto; }
    .md\:flex-none { flex: none; }
    .md\:w-auto { width: auto; }
    .md\:w-full { width: 100%; }
    .md\:w-1\/2 { width: 50%; }
    .md\:w-1\/3 { width: 33.333333%; }
    .md\:w-2\/3 { width: 66.666667%; }
    .md\:w-1\/4 { width: 25%; }
    .md\:w-3\/4 { width: 75%; }
    .md\:w-1\/5 { width: 20%; }
    .md\:w-1\/6 { width: 16.666667%; }
    .md\:w-48 { width: 12rem; }
    .md\:w-56 { width: 14rem; }
    .md\:w-64 { width: 16rem; }
    .md\:w-72 { width: 18rem; }
    .md\:w-80 { width: 20rem; }
    .md\:w-96 { width: 24rem; }
    .md\:max-w-xs { max-width: 20rem; }
    .md\:max-w-sm { max-width: 24rem; }
    .md\:max-w-md { max-width: 28rem; }
    .md\:justify-start { justify-content: flex-start; }
    .md\:justify-center { justify-content: center; }
    .md\:justify-end { justify-content: flex-end; }
    .md\:justify-between { justify-content: space-between; }
    .md\:items-start { align-items: flex-start; }
    .md\:items-center { align-items: center; }
    .md\:items-end { align-items: flex-end; }
    .md\:h-64 { height: 16rem; }
    .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\:px-4 { padding-left: 1rem; padding-right: 1rem; }
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .md\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
    .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
    .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .md\:text-sm { font-size: 0.875rem; }
    .md\:text-3xl { font-size: 1.875rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:ml-2 { margin-left: 0.5rem; }
    .md\:my-4 { margin-top: 1rem; margin-bottom: 1rem; }
    .md\:mb-6 { margin-bottom: 1.5rem; }
    .md\:mb-8 { margin-bottom: 2rem; }
}

@media (min-width: 1024px) {
    .lg\:block { display: block; }
    .lg\:hidden { display: none; }
    .lg\:flex { display: flex; }
    .lg\:inline-flex { display: inline-flex; }
    .lg\:grid { display: grid; }
    .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\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .lg\:col-span-1 { grid-column: span 1 / span 1; }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:col-span-3 { grid-column: span 3 / span 3; }
    .lg\:col-span-4 { grid-column: span 4 / span 4; }
    .lg\:col-span-5 { grid-column: span 5 / span 5; }
    .lg\:col-span-7 { grid-column: span 7 / span 7; }
    .lg\:col-span-8 { grid-column: span 8 / span 8; }
    .lg\:flex-row { flex-direction: row; }
    .lg\:flex-col { flex-direction: column; }
    .lg\:flex-wrap { flex-wrap: wrap; }
    .lg\:flex-nowrap { flex-wrap: nowrap; }
    .lg\:flex-1 { flex: 1 1 0%; }
    .lg\:flex-auto { flex: 1 1 auto; }
    .lg\:flex-none { flex: none; }
    .lg\:w-auto { width: auto; }
    .lg\:w-full { width: 100%; }
    .lg\:w-1\/2 { width: 50%; }
    .lg\:w-1\/3 { width: 33.333333%; }
    .lg\:w-2\/3 { width: 66.666667%; }
    .lg\:w-1\/4 { width: 25%; }
    .lg\:w-3\/4 { width: 75%; }
    .lg\:w-1\/5 { width: 20%; }
    .lg\:w-64 { width: 16rem; }
    .lg\:w-72 { width: 18rem; }
    .lg\:w-80 { width: 20rem; }
    .lg\:w-96 { width: 24rem; }
    .lg\:w-\[45\%\] { width: 45%; }
    .lg\:w-\[55\%\] { width: 55%; }
    .lg\:justify-start { justify-content: flex-start; }
    .lg\:justify-center { justify-content: center; }
    .lg\:justify-end { justify-content: flex-end; }
    .lg\:justify-between { justify-content: space-between; }
    .lg\:items-start { align-items: flex-start; }
    .lg\:items-center { align-items: center; }
    .lg\:items-end { align-items: flex-end; }
    .lg\:max-w-none { max-width: none; }
    .lg\:gap-6 { gap: 1.5rem; }
    .lg\:gap-8 { gap: 2rem; }
    .lg\:gap-12 { gap: 3rem; }
    .lg\:gap-x-6 { column-gap: 1.5rem; }
    .lg\:gap-x-8 { column-gap: 2rem; }
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .lg\:order-1 { order: 1; }
    .lg\:order-2 { order: 2; }
    .lg\:mt-0 { margin-top: 0px; }
    .lg\:text-lg { font-size: 1.125rem; }
    .lg\:text-2xl { font-size: 1.5rem; }
    .lg\:text-3xl { font-size: 1.875rem; }
    .lg\:text-5xl { font-size: 3rem; }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .xl\:gap-x-8 { column-gap: 2rem; }
    .xl\:gap-8 { gap: 2rem; }
    .xl\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* ==========================================================================
   7. Komponenter (Header, Navigation, Quick-Cart)
   ========================================================================== */
.site-header {
    background-color: var(--header-bg, #ffffff) !important;
    background-image: none !important;
    color: var(--header-text, #374151);
}

.site-header .header-nav-link {
    color: var(--header-text, #374151);
    transition: color 0.15s ease-in-out, opacity 0.15s ease-in-out;
}

.site-header .header-nav-link:hover {
    opacity: 0.8;
}

.site-header .header-nav-link.active-link {
    color: var(--color-primary, #ca7479);
    font-weight: 600;
}

.site-header .header-icon-btn {
    color: var(--header-text, #374151);
    transition: opacity 0.15s ease-in-out;
}

.site-header .header-icon-btn:hover {
    opacity: 0.8;
}

.site-header .mobile-nav-link {
    color: var(--header-text, #374151);
}

.site-header .mobile-nav-link.active-link {
    color: var(--color-primary, #ca7479);
    border-left-color: var(--color-primary, #ca7479);
    background-color: rgba(0, 0, 0, 0.05);
}

.site-header .mobile-nav-link:hover:not(.active-link) {
    background-color: rgba(0, 0, 0, 0.03);
}

/* Quick Cart Drawer Transition */
#quick-cart-drawer {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 60;
}

#quick-cart-overlay {
    transition: opacity 0.3s ease-in-out;
    z-index: 55;
}

/* Chatbot Widget Posisjonering */
#ai-chatbot-widget {
    z-index: 45;
}

/* PageBuilder Cart-Knapp */
.cart-btn {
    min-height: 2.25rem;
}

/* ==========================================================================
   8. Spesifikke Kasse- & Produktside-stiler
   ========================================================================== */

/* Kassen Handlingsknapper */
#btn-confirm-details,
#btn-proceed-to-payment {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    cursor: pointer;
}

#btn-confirm-details:hover,
#btn-proceed-to-payment:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
}

/* Sticky Legg-i-kurv Bar */
#sticky-add-to-cart-bar {
    background-color: #ffffff !important;
    background: #ffffff !important;
}

/* Midlertidig utsolgt Tooltip */
.stock-tooltip-wrap {
    position: relative;
    display: inline-block;
}

.stock-tooltip-wrap:hover {
    z-index: 60;
}

.stock-tooltip-wrap:hover .stock-tooltip,
.group\/tooltip:hover .stock-tooltip,
.group\/tooltip:hover .group-hover\/tooltip\:block {
    display: block !important;
}

/* Category Navigation Dropdown */
.cat-nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.cat-nav-menu {
    display: none !important;
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: 0.5rem;
    width: 17.5rem;
    z-index: 60;
}
.cat-nav-dropdown:hover > .cat-nav-menu,
.cat-nav-dropdown:focus-within > .cat-nav-menu {
    display: block !important;
}
.cat-sub-dropdown {
    position: relative;
}
.cat-sub-menu {
    display: none !important;
    position: absolute;
    left: 100%;
    top: 0;
    padding-left: 0.25rem;
    width: 17rem;
    z-index: 70;
}
.cat-sub-dropdown:hover > .cat-sub-menu {
    display: block !important;
}
.cat-sub-dropdown:hover > a {
    background-color: #f3f4f6;
    color: #111827;
}

.stock-tooltip {
    pointer-events: none;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   PageBuilder Felles Komponent- og Layoutstiler
   ========================================================================== */
.custom-page-builder-content .prose a[href],
.custom-page-builder-content h1 a[href],
.custom-page-builder-content h2 a[href],
.custom-page-builder-content h3 a[href],
.custom-page-builder-content h4 a[href],
.custom-page-builder-content h5 a[href],
.custom-page-builder-content h6 a[href] {
    color: #3b82f6;
    text-decoration: underline;
}

/* Before / After Slider */
.before-after-slider.is-sliding .ba-label {
    opacity: 0 !important;
}
.before-after-slider .ba-label {
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
}

/* Keyframes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
@keyframes ping {
    75%, 100% { transform: scale(2.5); opacity: 0; }
}

/* Featured Product Card */
.featured-product-card {
    background-color: var(--bg-card, #FFFFFF);
    border-radius: var(--radius-sm, 12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
    align-items: center;
    margin: 0 auto;
}
.featured-product-card .product-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-sm, 12px);
    background: linear-gradient(145deg, #1f1f1f, #0a0a0a);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
}
.featured-product-card .product-image-display {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
}
.featured-product-card .badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--accent, #E03131);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(224, 49, 49, 0.3);
    z-index: 10;
}
.featured-product-card .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-product-card .category-tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted, #666666);
    margin-bottom: 1rem;
}
.featured-product-card h2.fp-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--text-main, #1A1A1A);
}
.featured-product-card p.description {
    font-size: 1.125rem;
    color: var(--text-muted, #666666);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.featured-product-card .price-wrap {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.featured-product-card .current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent, #E03131);
}
.featured-product-card .old-price {
    font-size: 1.25rem;
    color: #999999;
    text-decoration: line-through;
    font-weight: 500;
}
.featured-product-card .stock-status {
    margin-bottom: 2.5rem;
}
.featured-product-card .fp-add-to-cart-btn {
    background-color: var(--primary, #111111);
    color: white;
    border: none;
    border-radius: var(--radius-sm, 12px);
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: var(--transition, all 0.3s ease);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}
.featured-product-card .fp-add-to-cart-btn:hover {
    background-color: var(--primary-hover, #333333);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.featured-product-card .btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.featured-product-card .benefits {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted, #666666);
}
.featured-product-card .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.featured-product-card .benefit-icon {
    color: var(--primary, #111111);
    font-weight: bold;
}
.featured-product-card .view-product-link {
    font-size: 0.8rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent, #E03131), #ff6b6b);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(224, 49, 49, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition, all 0.3s ease);
}
.featured-product-card .view-product-link:hover {
    background: linear-gradient(135deg, #c92a2a, var(--accent, #E03131));
    box-shadow: 0 6px 14px rgba(224, 49, 49, 0.4);
    transform: translateY(-2px);
}
.featured-product-card .stock-wrap-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.featured-product-card .stock-wrap-flex .stock-status {
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .featured-product-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    .featured-product-card .product-visual {
        aspect-ratio: 1 / 1;
    }
    .featured-product-card h2.fp-title {
        font-size: 2.25rem;
    }
    .featured-product-card .current-price {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Desktop Category Dropdown Navigation
   ========================================================================== */
.cat-nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.cat-nav-menu {
    display: none !important;
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: 0.5rem;
    width: 17.5rem;
    z-index: 60;
}
.cat-nav-dropdown:hover > .cat-nav-menu,
.cat-nav-dropdown:focus-within > .cat-nav-menu {
    display: block !important;
}
.cat-sub-dropdown {
    position: relative;
}
.cat-sub-menu {
    display: none !important;
    position: absolute;
    left: 100%;
    top: 0;
    padding-left: 0.25rem;
    width: 17rem;
    z-index: 70;
}
.cat-sub-dropdown:hover > .cat-sub-menu {
    display: block !important;
}
.cat-sub-dropdown:hover > a {
    background-color: #f3f4f6;
    color: #111827;
}

/* ==========================================================================
   Mobile Navigation & Category Sliding Drawer
   ========================================================================== */
#mobile-nav-drawer-overlay,
#mobile-cat-drawer-overlay {
    z-index: 99998 !important;
}
#mobile-nav-drawer,
#mobile-cat-drawer {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999 !important;
}
.mobile-cat-header {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    border-bottom: 1px solid #f3f4f6;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4rem;
}
.mobile-cat-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem;
    color: #9ca3af;
    border-radius: 0.5rem;
    transition: color 0.15s ease-in-out;
}
.mobile-cat-close-btn:hover {
    color: #111827;
}
.mobile-drilldown-pane {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    overflow-y: auto;
}

/* ==========================================================================
   Quill WYSIWYG Content Rendering Styles (Frontend Pages)
   ========================================================================== */
.ql-snow {
    border: none !important;
}
.ql-snow .ql-editor.ql-content {
    padding: 0 !important;
    height: auto !important;
    overflow-y: visible !important;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    white-space: normal;
}
.ql-snow .ql-editor.ql-content > :first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.ql-snow .ql-editor.ql-content p {
    margin: 0;
    padding: 0;
    white-space: pre-wrap;
}
.ql-snow .ql-editor.ql-content p > br {
    line-height: inherit;
}
.ql-snow .ql-editor.ql-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 0.75rem 0;
    display: inline-block;
}
.ql-snow .ql-editor.ql-content h1,
.ql-snow .ql-editor.ql-content h2,
.ql-snow .ql-editor.ql-content h3,
.ql-snow .ql-editor.ql-content h4,
.ql-snow .ql-editor.ql-content h5,
.ql-snow .ql-editor.ql-content h6 {
    color: #111827;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.ql-snow .ql-editor.ql-content h1 { font-size: 2rem; }
.ql-snow .ql-editor.ql-content h2 { font-size: 1.5rem; }
.ql-snow .ql-editor.ql-content h3 { font-size: 1.25rem; }
.ql-snow .ql-editor.ql-content ul,
.ql-snow .ql-editor.ql-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.ql-snow .ql-editor.ql-content ul { list-style-type: disc; }
.ql-snow .ql-editor.ql-content ol { list-style-type: decimal; }
.ql-snow .ql-editor.ql-content li { margin-bottom: 0.25rem; }
.ql-snow .ql-editor.ql-content a {
    color: var(--color-primary, #ca7479);
    text-decoration: underline;
}
.ql-snow .ql-editor.ql-content a:hover {
    opacity: 0.8;
}
.ql-snow .ql-editor.ql-content blockquote {
    border-left: 4px solid var(--color-primary, #ca7479);
    padding-left: 1rem;
    margin: 1.25rem 0;
    color: #6b7280;
    font-style: italic;
}

/* ==========================================================================
   Product Lightbox & Gallery Controls
   ========================================================================== */
#image-lightbox {
    user-select: none;
    -webkit-user-select: none;
}
.lightbox-nav-btn {
    transition: transform 0.15s ease, background-color 0.15s ease;
}
.lightbox-nav-btn:hover {
    transform: translateY(-50%) scale(1.08);
}

/* ==========================================================================
   Mobile Navigation Menu Dynamic Styling
   ========================================================================== */
.mobile-cat-header {
    background-color: var(--mobile-header-bg) !important;
    color: var(--mobile-header-text) !important;
}
.mobile-cat-header * {
    color: var(--mobile-header-text) !important;
}
#mobile-nav-drawer,
#mobile-cat-slider-track,
#mobile-cat-slider-track > div,
.mobile-drilldown-pane {
    background-color: var(--mobile-menu-bg) !important;
    color: var(--mobile-menu-text) !important;
}
.mobile-drilldown-pane a,
.mobile-drilldown-pane button,
.mobile-drilldown-pane h3,
.mobile-drilldown-pane span {
    color: var(--mobile-menu-text);
}
.mobile-drilldown-pane a:hover,
.mobile-drilldown-pane button:hover,
.mobile-drilldown-pane a:hover span,
.mobile-drilldown-pane button:hover span {
    color: var(--color-primary) !important;
}

/* ==========================================================================
   Chatbot Typing Indicator Dots
   ========================================================================== */
.chatbot-typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 2px;
}
.chatbot-typing-dot {
    width: 6px;
    height: 6px;
    background-color: #9ca3af;
    border-radius: 50%;
    display: inline-block;
    animation: chatbotDotBounce 1.4s infinite ease-in-out both;
}
.chatbot-typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}
.chatbot-typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}
.chatbot-typing-dot:nth-child(3) {
    animation-delay: 0s;
}
@keyframes chatbotDotBounce {
    0%, 80%, 100% {
        transform: scale(0.65) translateY(0);
        opacity: 0.35;
    }
    40% {
        transform: scale(1.15) translateY(-5px);
        opacity: 1;
    }
}

