/* Homepage Custom Styles from Figma Design */
/* Last updated: 2025 */

/* ========================================
   Core Variables & Fallback Styles
   ======================================== */

/* Fallback styles if CDN fails to load */
body { 
    margin: 0; 
    padding: 0; 
}

* {
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif !important;
}


/* Custom Colors */
.bg-background { background-color: #F3F4F6; }
.bg-main { background-color: #2E2F30; }
.bg-accent { background-color: #258AE7; }
.bg-background-2 { background-color: #FCFCFC; }
.bg-white { background-color: #FFFFFF; }
.bg-\[#d2e9ff\] { background-color: #d2e9ff; }
.bg-\[#fcfcfc\] { background-color: #fcfcfc; }
.bg-\[#f7f7f7\] { background-color: #f7f7f7; }
.bg-\[#2e2f30\] { background-color: #2e2f30; }
.bg-\[#dbdbdb\] { background-color: #dbdbdb; }
.bg-\[#858585\] { background-color: #858585; }
.bg-\[#1e7cd3\] { background-color: #1e7cd3; }
.bg-neutral-50 { background-color: #fafafa; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-\[rgba\(0\,0\,0\,0\.2\)\] { background-color: rgba(0,0,0,0.2); }

/* Text Colors */
.text-main { color: #2E2F30; }
.text-secondary { color: #646464; }
.text-accent { color: #258AE7; }
.text-white { color: #FFFFFF; }
.text-text-light { color: #EEF2F4; }
.text-\[#dbdbdb\] { color: #dbdbdb !important; }
.text-\[\#dbdbdb\] { color: #dbdbdb !important; }
.text-\[#646464\] { color: #646464 !important; }
.text-\[\#646464\] { color: #646464 !important; }
.text-\[#858585\] { color: #858585 !important; }
.text-\[\#858585\] { color: #858585 !important; }
.text-\[#2e2f30\] { color: #2e2f30 !important; }
.text-\[\#2e2f30\] { color: #2e2f30 !important; }

/* Borders */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-solid { border-style: solid; }
.border-border { border-color: #DBDBDB; }
.border-accent { border-color: #258AE7; }
.border-white { border-color: #FFFFFF; }
.border-\[#dbdbdb\] { border-color: #dbdbdb; }
.border-\[1\.5px\] { border-width: 1.5px; }

/* Carousel Specific Styles */
.steps-slides-container {
    overflow: hidden;
}

.steps-slides {
    position: relative;
    min-height: 400px;
}

.step-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.step-slide.active {
    display: block;
    opacity: 1;
}

/* Carousel Dots */
.step-dot {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.step-dot[aria-selected="true"] {
    width: 36px !important;
    background-color: #258AE7 !important;
}

.step-dot[aria-selected="false"] {
    width: 6px !important;
    background-color: #d2e9ff !important;
}

/* Link Utilities */
.no-underline { text-decoration: none !important; }
a.no-underline:hover { text-decoration: none !important; }

/* ========================================
   Layout & Flexbox Utilities
   ======================================== */

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-stretch { align-items: stretch; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.self-stretch { align-self: stretch; }

/* Grid */
.grid { display: grid; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Gaps */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.gap-\[4px\] { gap: 4px; }
.gap-\[6px\] { gap: 6px; }
.gap-\[12px\] { gap: 12px; }
.gap-\[16px\] { gap: 16px; }
.gap-\[20px\] { gap: 20px; }
.gap-\[24px\] { gap: 24px; }
.gap-\[32px\] { gap: 32px; }
.gap-\[40px\] { gap: 40px; }
.gap-\[76px\] { gap: 76px; }
.gap-\[110px\] { gap: 110px; }
.gap-\[120px\] { gap: 120px; }

/* ========================================
   Spacing & Padding
   ======================================== */

.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-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-\[46px\] { padding-left: 46px; padding-right: 46px; }
.px-\[120px\] { padding-left: 120px; padding-right: 120px; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-\[12px\] { padding-top: 12px; padding-bottom: 12px; }

.pl-5 { padding-left: 1.25rem; }
.pl-\[20px\] { padding-left: 20px; }
.pr-1 { padding-right: 0.25rem; }
.pr-\[4px\] { padding-right: 4px; }
.pt-10 { padding-top: 2.5rem; }
.p-\[10px\] { padding: 10px; }
.p-\[16px\] { padding: 16px; }
.py-\[6px\] { padding-top: 6px; padding-bottom: 6px; }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-\[24px\] { padding: 24px; }
.p-\[30px\] { padding: 30px; }
.p-\[40px\] { padding: 40px; }

.py-\[80px\] { padding-top: 80px; padding-bottom: 80px; }
.py-\[117px\] { padding-top: 117px; padding-bottom: 117px; }
.pb-20 { padding-bottom: 5rem; }
.pb-\[2px\] { padding-bottom: 2px; }

.mb-\[3px\] { margin-bottom: 3px; }
.mb-4 { margin-bottom: 1rem; }
.mb-\[12px\] { margin-bottom: 12px; }
.mb-\[50px\] { margin-bottom: 50px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ========================================
   Sizing
   ======================================== */

.w-full { width: 100%; }
.w-fit { width: fit-content; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-1\/2 { width: 50%; }
.w-\[12\.5\%\] { width: 12.5%; }
.w-\[18px\] { width: 18px; }
.w-\[22px\] { width: 22px; }
.w-\[24px\] { width: 24px; }
.w-\[28px\] { width: 28px; }
.w-\[30px\] { width: 30px; }
.w-\[32px\] { width: 32px; }
.w-\[34px\] { width: 34px; }
.w-\[50px\] { width: 50px; }
.w-\[60px\] { width: 60px; }
.w-\[83\.334\%\] { width: 83.334%; }
.w-\[98\.28\%\] { width: 98.28%; }
.w-\[110px\] { width: 110px; }
.w-\[131px\] { width: 131px; }
.w-\[165px\] { width: 165px; }
.w-\[288px\] { width: 288px; }
.w-\[313px\] { width: 313px; }
.w-\[462px\] { width: 462px; }
.w-\[494px\] { width: 494px; }
.w-\[524px\] { width: 524px; }
.w-\[564px\] { width: 564px; }
.w-\[594px\] { width: 594px; }
.w-\[632px\] { width: 632px; }
.w-\[614px\] { width: 614px; }
.w-\[720px\] { width: 720px; }

.h-full { height: 100%; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-11 { height: 2.75rem; }
.h-14 { height: 3.5rem; }
.h-1\/2 { height: 50%; }
.h-\[12\.5\%\] { height: 12.5%; }
.h-\[2px\] { height: 2px; }
.h-\[4px\] { height: 4px; }
.h-\[22px\] { height: 22px; }
.h-\[24px\] { height: 24px; }
.h-\[28px\] { height: 28px; }
.h-\[30px\] { height: 30px; }
.h-\[32px\] { height: 32px; }
.h-\[34px\] { height: 34px; }
.h-\[35px\] { height: 35px; }
.h-\[38px\] { height: 38px; }
.h-\[44px\] { height: 44px; }
.h-\[50px\] { height: 50px; }
.h-\[52px\] { height: 52px; }
.h-\[56px\] { height: 56px; }
.h-\[60px\] { height: 60px; }
.h-\[67px\] { height: 67px; }
.h-\[70px\] { height: 70px; }
.h-\[83\.334\%\] { height: 83.334%; }
.h-\[89\.13\%\] { height: 89.13%; }
.h-\[100px\] { height: 100px; }
.h-\[102px\] { height: 102px; }
.h-\[120px\] { height: 120px; }
.h-\[167px\] { height: 167px; }
.h-\[281px\] { height: 281px; }
.h-\[363px\] { height: 363px; }
.h-\[480px\] { height: 480px; }
.h-\[484px\] { height: 484px; }
.h-\[755px\] { height: 755px; }

.min-h-screen { min-height: 100vh; }
.min-h-\[400px\] { min-height: 400px; }
.max-h-full { max-height: 100%; }

.max-w-\[632px\] { max-width: 632px; }
.max-w-\[614px\] { max-width: 614px; }
.max-w-\[809px\] { max-width: 809px; }
.max-w-\[1202px\] { max-width: 1202px; }

/* ========================================
   Typography
   ======================================== */

.font-sans { font-family: 'Open Sans', sans-serif; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

.text-xs { font-size: 0.75rem; }
.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; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-\[14px\] { font-size: 14px; }
.text-\[15px\] { font-size: 15px; }
.text-\[16px\] { font-size: 16px; }
.text-\[20px\] { font-size: 20px; }
.text-\[22px\] { font-size: 22px; }
.text-\[24px\] { font-size: 24px; }
.text-\[34px\] { font-size: 34px; }
.text-\[46px\] { font-size: 46px; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-extrabold { font-weight: 800; }

.text-center { text-align: center; }
.leading-normal { line-height: normal; }
.whitespace-nowrap { white-space: nowrap; }

/* ========================================
   Positioning
   ======================================== */

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0px; }
.top-0 { top: 0px; }
.left-0 { left: 0px; }
.right-0 { right: 0px; }
.bottom-0 { bottom: 0px; }
.-left-\[189px\] { left: -189px; }
.-top-\[160px\] { top: -160px; }
.-top-6 { top: -1.5rem; }
.left-\[612px\] { left: 612px; }
.-right-\[189px\] { right: -189px; }
.-bottom-\[160px\] { bottom: -160px; }
.right-\[612px\] { right: 612px; }
.bottom-6 { bottom: 1.5rem; }

/* Icon positioning */
.inset-\[8\.333\%\] { inset: 8.333%; }
.top-\[8\.33\%\] { top: 8.33%; }
.bottom-\[8\.33\%\] { bottom: 8.33%; }
.left-\[8\.33\%\] { left: 8.33%; }
.right-\[8\.33\%\] { right: 8.33%; }
.top-1\/2 { top: 50%; }
.left-1\/3 { left: 33.333%; }
.right-1\/3 { right: 33.333%; }
.left-1\/4 { left: 25%; }
.bottom-\[12\.5\%\] { bottom: 12.5%; }
.top-\[12\.5\%\] { top: 12.5%; }
.left-\[12\.5\%\] { left: 12.5%; }
.right-\[12\.5\%\] { right: 12.5%; }
.right-\[15\.63\%\] { right: 15.63%; }
.right-\[31\.25\%\] { right: 31.25%; }
.right-\[56\.25\%\] { right: 56.25%; }
.right-\[78\.13\%\] { right: 78.13%; }
.left-\[1\.72\%\] { left: 1.72%; }
.left-\[34\.38\%\] { left: 34.38%; }
.left-\[37\.5\%\] { left: 37.5%; }
.left-\[62\.5\%\] { left: 62.5%; }
.top-\[10\.87\%\] { top: 10.87%; }
.top-\[17\.86\%\] { top: 17.86%; }
.top-\[22\.55\%\] { top: 22.55%; }
.top-\[27\.08\%\] { top: 27.08%; }
.top-\[35\.71\%\] { top: 35.71%; }
.top-\[40\.4\%\] { top: 40.4%; }
.top-\[53\.57\%\] { top: 53.57%; }
.top-\[58\.26\%\] { top: 58.26%; }
.top-\[71\.43\%\] { top: 71.43%; }
.top-\[76\.12\%\] { top: 76.12%; }
.bottom-\[35\.42\%\] { bottom: 35.42%; }
.bottom-\[37\.5\%\] { bottom: 37.5%; }

/* ========================================
   Visual Effects
   ======================================== */

.rounded-full { border-radius: 9999px; }
.rounded-\[10px\] { border-radius: 10px; }
.rounded-\[16px\] { border-radius: 16px; }
.rounded-\[20px\] { border-radius: 20px; }

.overflow-hidden { overflow: hidden; }
.overflow-clip { overflow: clip; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.pointer-events-none { pointer-events: none; }

.cursor-pointer { cursor: pointer; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }

.shadow-\[0px_4px_15px_0px_rgba\(0\,0\,0\,0\.08\)\] { box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.08); }
.shadow-\[0px_4px_10px_0px_rgba\(83\,170\,250\,0\.1\)\] { box-shadow: 0px 4px 10px 0px rgba(83,170,250,0.1); }

/* Transforms */
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.rotate-180 { transform: rotate(180deg); }
.rotate-\[87deg\] { transform: rotate(87deg); }
.rotate-\[180deg\] { transform: rotate(180deg); }
.rotate-\[267deg\] { transform: rotate(267deg); }
.rotate-\[-135deg\] { transform: rotate(-135deg); }

/* Gradients */
.bg-gradient-to-l { background-image: linear-gradient(to left, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.from-background { --tw-gradient-from: #F3F4F6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); }
.from-transparent { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.from-\[#258ae7\] { --tw-gradient-from: #258ae7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 138, 231, 0)); }
.to-transparent { --tw-gradient-to: transparent; }
.to-\[#5fb2ff\] { --tw-gradient-to: #5fb2ff; }
.to-\[rgba\(37\,138\,231\,0\.8\)\] { --tw-gradient-to: rgba(37,138,231,0.8); }
.via-\[rgba\(37\,138\,231\,0\.8\)\] { --tw-gradient-stops: var(--tw-gradient-from), rgba(37,138,231,0.8), var(--tw-gradient-to, rgba(37,138,231,0)); }

/* ========================================
   Transitions & Hover States
   ======================================== */

.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.hover\:opacity-70:hover { opacity: 0.7; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:bg-\[#1a75ca\]:hover { background-color: #1a75ca; }
.hover\:bg-\[#1e7cd3\]:hover { background-color: #1e7cd3; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-accent:hover { background-color: #258AE7; }
.hover\:text-accent:hover { color: #258AE7; }
.hover\:text-\[#1e7cd3\]:hover { color: #1e7cd3; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.hover\:bg-opacity-90:hover { opacity: 0.9; }
.hover\:border-accent:hover { border-color: #258AE7; }
.active\:bg-\[#155fa8\]:active { background-color: #155fa8; }

.group:hover .group-hover\:border-accent { border-color: #258AE7; }

/* ========================================
   Hero Section Specific Styles
   ======================================== */

.hero-section {
    position: relative;
    min-height: 622px;
    background-color: #F3F4F6;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-image-container { 
    position: absolute; 
    top: 142px; 
    right: 0; 
    width: 100%; 
    height: 480px; 
    overflow: hidden; 
}

.hero-image { 
    position: absolute; 
    top: -5.07%; 
    left: 0; 
    width: 100%; 
    height: 171.43%; 
    object-fit: cover; 
    max-width: none; 
}

.hero-gradient { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(90deg, rgba(37, 138, 231, 0.8) 0%, rgba(0, 0, 0, 0) 9.965%); 
}

.search-container { 
    position: absolute; 
    left: 120px; 
    top: 431px; 
    z-index: 10; 
}

.hero-text { 
    position: absolute; 
    left: 120px; 
    top: 200px; 
    z-index: 10; 
}

.promo-banner {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 10;
    margin-top: auto;
}

/* ========================================
   Custom Components
   ======================================== */

/* Scrollbar hiding */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scroll-smooth {
    scroll-behavior: smooth;
}

/* Category Icon Hover Effects */
.category-icon-hover {
    filter: brightness(0) saturate(100%) invert(46%) sepia(0%) saturate(0%) hue-rotate(173deg) brightness(95%) contrast(88%);
    transition: filter 0.2s ease;
}

.group:hover .category-icon-hover {
    filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(187deg) brightness(97%) contrast(91%);
}

.active .category-icon-hover {
    filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(187deg) brightness(97%) contrast(91%);
}

/* Steps Slider */
.steps-slides { position: relative; }
.step-slide { display: none; }
.step-slide.active { display: block; }
.step-dot { transition: width 150ms ease, background-color 150ms ease; }
.step-dot[aria-selected="true"] { width: 36px; background-color: #258AE7; }
.step-dot[aria-selected="false"] { width: 6px; background-color: #d2e9ff; }

/* Icon fixed sizes */
.w-\[50px\] { max-width: 50px !important; width: 50px !important; }
.h-\[50px\] { max-height: 50px !important; height: 50px !important; }
.w-\[32px\] { max-width: 32px !important; width: 32px !important; }
.h-\[32px\] { max-height: 32px !important; height: 32px !important; }
.w-\[24px\] { max-width: 24px !important; width: 24px !important; }
.h-\[24px\] { max-height: 24px !important; height: 24px !important; }

/* Footer visibility */
.mobile-footer-content {
    display: none;
}
.desktop-footer-content {
    display: flex;
}

/* Trending products text overflow handling */
[data-name="Cards"] .flex-1 p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 2.8em;
    word-wrap: break-word;
}

/* Form inputs */
input[type="email"]:focus { 
    outline: none; 
}

/* CTA Section Gradient */
.bg-gradient-to-b.from-transparent { 
    background: linear-gradient(to bottom, transparent, rgba(37, 138, 231, 0.8)); 
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-overlay a {
    text-decoration: none;
}

.mobile-menu-overlay a:hover {
    text-decoration: none;
}

.mobile-menu-overlay * {
    box-sizing: border-box;
}

.mobile-header {
    display: none;
}

/* ========================================
   Responsive Design - Tablet (768px)
   ======================================== */

@media (max-width: 768px) {
    /* Reduce padding on sections */
    .px-\[120px\] {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .py-20, .py-\[80px\] {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    /* Hero section adjustments */
    .hero-section {
        min-height: auto;
    }
    
    .hero-image-container {
        height: 180px;
        top: auto;
    }
    
    .hero-text {
        position: static;
        width: 100%;
        padding: 32px 12px;
    }
    
    .search-container {
        position: static;
        width: 100%;
        padding: 0 12px;
        margin-top: 16px;
    }
    
    /* Typography adjustments */
    .text-\[46px\] { font-size: 24px !important; }
    .text-\[34px\] { font-size: 20px !important; }
    .text-\[24px\] { font-size: 16px !important; }
    .text-\[22px\] { font-size: 16px !important; }
    .text-\[20px\] { font-size: 15px !important; }
    
    /* Features section - 2 column grid */
    section[data-name="Features"] {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    section[data-name="Features"] > div[data-name="Card"] {
        width: 100% !important;
    }
    
    /* Desktop header hide */
    .desktop-header {
        display: none !important;
    }
    
    /* Mobile header show */
    .mobile-header {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 16px 12px;
        background: #fcfcfc;
        border-bottom: 1px solid #dbdbdb;
        position: relative;
        z-index: 20;
    }
    
    /* Reduce gap sizes */
    .gap-\[120px\] { gap: 32px !important; }
    .gap-\[110px\] { gap: 20px !important; }
    .mb-\[50px\] { margin-bottom: 0px !important; }
}

/* ========================================
   Responsive Design - Mobile (480px)
   ======================================== */

@media (max-width: 480px) {
    /* Even smaller padding on mobile */
    .px-\[120px\] {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .py-20, .py-\[80px\] {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    /* Hero section mobile adjustments */
    .hero-section {
        min-height: 200px;
        padding-bottom: 56px;
    }

    .hero-image-container {
        height: 200px;
        top: 0;
    }

    .hero-text {
        display: none;
    }

    .search-container {
        display: none;
    }

    /* Promo banner mobile adjustments */
    .promo-banner {
        position: relative !important;
        background-color: #2e2f30;
        color: #eef2f4;
        font-size: 14px;
        padding: 8px 16px;
        text-align: center;
        bottom: auto !important;
        top: 56px !important;
    }
    
    /* Typography for mobile */
    .text-\[46px\] { font-size: 20px !important; }
    .text-\[34px\] { font-size: 18px !important; }
    .text-\[24px\] { font-size: 16px !important; }
    .text-\[22px\] { font-size: 16px !important; }
    .text-\[20px\] { font-size: 14px !important; }
    
    /* Header adjustments */
    header {
        padding: 12px 16px !important;
    }
    
    /* Features section - single column on mobile */
    section[data-name="Features"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px;
    }
    
    section[data-name="Features"] > div[data-name="Card"] {
        width: 100% !important;
        max-width: 100%;
    }
    
    /* Categories section mobile layout */
    section[data-name="Categories"] {
        padding: 32px 16px !important;
        background: #f3f4f6 !important;
    }

    /* Category cards - maintain horizontal scroll but adjust sizing */
    #categories-slider {
        gap: 16px !important;
        padding: 0 !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    #categories-slider::-webkit-scrollbar {
        display: none !important;
    }

    #categories-slider .w-\[110px\] {
        width: 100px !important;
        flex-shrink: 0 !important;
    }

    #categories-slider .text-base {
        font-size: 14px !important;
    }
}

.w-\[20px\] { width: 20px !important; }
.h-\[20px\] { height: 20px !important; }

@media (max-width: 768px) {
    /* Reduce padding on sections */
    .px-\[120px\] {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .py-20, .py-\[80px\] {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    /* Hero section adjustments */
    .hero-section {
        min-height: auto;
    }
    
    .hero-image-container {
        height: 180px;
        top: auto;
    }
    
    .hero-text {
        position: static;
        width: 100%;
        padding: 32px 12px;
    }
    
    .search-container {
        position: static;
        width: 100%;
        padding: 0 12px;
        margin-top: 16px;
    }
    
    /* Typography adjustments */
    .text-\[46px\] {
        font-size: 24px !important;
    }
    
    .text-\[34px\] {
        font-size: 20px !important;
    }
    
    .text-\[24px\] {
        font-size: 16px !important;
    }
    
    .text-\[22px\] {
        font-size: 16px !important;
    }
    
    .text-\[20px\] {
        font-size: 15px !important;
    }
    
    /* Features section - 2 column grid */
    section[data-name="Features"] {
        flex-direction: column;
        gap: 12px;
    }
    
    section[data-name="Features"] > div[data-name="Card"] {
        width: 100% !important;
    }
    
    /* Make 2-column grid for features */
    section[data-name="Features"] {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Factory Direct - 2 column grid */
    section[data-node-id="46-1377"] .flex-col.gap-\[16px\] > .flex {
        gap: 12px;
    }
    
    section[data-node-id="46-1377"] .flex-1 {
        height: 172px !important;
    }
    
    section[data-node-id="46-1377"] .flex-1 .text-\[16px\] {
        font-size: 16px !important;
    }
    
    /* Steps section - vertical layout */
    section#platform-steps .bg-white.rounded-\[20px\] {
        flex-direction: column !important;
        padding: 20px !important;
    }
    
    section#platform-steps .w-\[594px\] {
        width: 100% !important;
    }
    
    section#platform-steps .w-\[494px\] {
        width: 100% !important;
        height: 182px !important;
    }
    
    section#platform-steps .text-\[24px\] {
        font-size: 16px !important;
    }
    
    section#platform-steps .text-\[20px\] {
        font-size: 15px !important;
    }
    
    /* Mission section typography */
    section[data-name="Mission"] .text-\[34px\] {
        font-size: 20px !important;
    }
    
    section[data-name="Mission"] .text-\[20px\] {
        font-size: 15px !important;
    }
    
    /* CTA section */
    section[data-node-id="114-1510"] {
        padding: 40px 12px !important;
    }
    
    section[data-node-id="114-1510"] .text-\[34px\] {
        font-size: 20px !important;
    }
    
    section[data-node-id="114-1510"] .text-\[24px\] {
        font-size: 15px !important;
    }
    
    section[data-node-id="114-1510"] .text-\[20px\] {
        font-size: 18px !important;
    }
    
    /* Reduce gap sizes */
    .gap-\[120px\] {
        gap: 32px !important;
    }
    
    .gap-\[110px\] {
        gap: 20px !important;
    }
    
    .mb-\[50px\] {
        margin-bottom: 0px !important;
    }
}

@media (max-width: 480px) {
    /* Even smaller padding on mobile */
    .px-\[120px\] {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .py-20, .py-\[80px\] {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    /* Hero section mobile adjustments - only show image, hide text and search */
    .hero-section {
        min-height: 200px;
        padding-bottom: 56px; /* Height of promo banner */
    }

    .hero-image-container {
        height: 200px;
        top: 0;
    }

    .hero-text {
        display: none;
    }

    .search-container {
        display: none;
    }

    /* Promo banner mobile adjustments */
    .promo-banner {
        position: relative !important;
        background-color: #2e2f30;
        color: #eef2f4;
        font-size: 14px;
        padding: 8px 16px;
        text-align: center;
        bottom: auto !important;
        top: 56px !important;
    }
    
    /* Typography for mobile */
    .text-\[46px\] {
        font-size: 20px !important;
    }
    
    .text-\[34px\] {
        font-size: 18px !important;
    }
    
    .text-\[24px\] {
        font-size: 16px !important;
    }
    
    .text-\[22px\] {
        font-size: 16px !important;
    }
    
    .text-\[20px\] {
        font-size: 14px !important;
    }
    
    /* Header adjustments */
    header {
        padding: 12px 16px !important;
    }
    
    /* Features section - single column on mobile */
    section[data-name="Features"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px;
    }
    
    section[data-name="Features"] > div[data-name="Card"] {
        width: 100% !important;
        max-width: 100%;
    }
    
    /* Categories section mobile layout */
    section[data-name="Categories"] {
        padding: 32px 16px !important;
        background: #f3f4f6 !important;
    }

    /* Categories header container - stack vertically on mobile */
    section[data-name="Categories"] > div.flex.gap-\[120px\] {
        flex-direction: column !important;
        gap: 24px !important;
        align-items: stretch !important;
        width: 100% !important;
    }
    
    section[data-name="Categories"] .flex.gap-\[120px\] {
        flex-direction: column !important;
        gap: 24px !important;
        align-items: stretch !important;
    }

    /* First column (title and description) - full width on mobile */
    section[data-name="Categories"] > div.flex.gap-\[120px\] > div.flex-1 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        min-width: 100% !important;
    }
    
    section[data-name="Categories"] .flex.gap-\[120px\] > .flex-1 {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
    
    /* Force hide the second child (button container) */
    section[data-name="Categories"] > div.flex.gap-\[120px\] > div:last-child {
        display: none !important;
    }

    section[data-name="Categories"] .max-w-\[809px\] {
        max-width: 100% !important;
    }

    /* Categories header mobile layout */
    section[data-name="Categories"] .flex.gap-\[120px\] > .flex-1 .flex.gap-4 {
        flex-direction: row !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }

    section[data-name="Categories"] .flex.gap-\[120px\] > .flex-1 .flex.gap-4 .w-1 {
        width: 4px !important;
        height: auto !important;
        min-height: 60px !important;
    }

    /* Categories title mobile typography */
    section[data-name="Categories"] .text-\[34px\] {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    section[data-name="Categories"] .text-\[20px\] {
        font-size: 15px !important;
    }

    /* Navigation arrows - hide on mobile with multiple selectors for specificity */
    section[data-name="Categories"] .flex.gap-6 {
        display: none !important;
    }
    
    section[data-name="Categories"] .flex.gap-\[24px\] {
        display: none !important;
    }
    
    section[data-name="Categories"] .flex-shrink-0 {
        display: none !important;
    }
    
    section[data-name="Categories"] div.flex.gap-6.items-center.flex-shrink-0 {
        display: none !important;
    }
    
    /* Hide navigation buttons specifically */
    section[data-name="Categories"] button[data-category-action] {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    section[data-name="Categories"] button[data-category-action="prev"],
    section[data-name="Categories"] button[data-category-action="next"] {
        display: none !important;
    }
    
    /* Additional targeting for the button container */
    .bg-background section:first-of-type > div:first-child > div:last-child {
        display: none !important;
    }

    /* Category cards - maintain horizontal scroll but adjust sizing */
    #categories-slider {
        gap: 16px !important;
        padding: 0 !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    #categories-slider::-webkit-scrollbar {
        display: none !important;
    }

    #categories-slider .w-\[110px\] {
        width: 100px !important;
        flex-shrink: 0 !important;
    }

    #categories-slider .text-base {
        font-size: 14px !important;
    }
    
    /* Trending products - horizontal slider on mobile without controls */
    [data-name="Trends"] .flex.gap-3 {
        gap: 8px !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    [data-name="Trends"] .flex.gap-3::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    [data-name="Trends"] .flex-1 {
        min-width: 190px;
        flex: 0 0 190px;
    }
    
    /* Factory Direct - single column */
    section[data-node-id="46-1377"] .flex-col.gap-\[16px\] {
        gap: 12px !important;
    }
    
    section[data-node-id="46-1377"] .flex-col.gap-\[16px\] > .flex {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    section[data-node-id="46-1377"] .flex-1 {
        width: 100% !important;
        height: 150px !important;
    }
    
    section[data-node-id="46-1377"] .text-\[34px\] {
        font-size: 18px !important;
    }
    
    /* Steps section - fully vertical */
    section#platform-steps {
        padding: 32px 16px !important;
    }
    
    section#platform-steps .bg-white.rounded-\[20px\] {
        padding: 16px !important;
        gap: 16px !important;
    }
    
    section#platform-steps .w-\[494px\] {
        height: 150px !important;
    }
    
    section#platform-steps .w-\[60px\] {
        width: 48px !important;
        height: 48px !important;
    }
    
    section#platform-steps .w-\[60px\] img {
        width: 24px !important;
        height: 24px !important;
    }
    
    section#platform-steps .text-\[24px\] {
        font-size: 16px !important;
    }
    
    section#platform-steps .gap-\[24px\] {
        gap: 16px !important;
    }
    
    /* Mission section */
    section[data-name="Mission"] {
        padding: 32px 16px !important;
    }
    
    section[data-name="Mission"] .text-\[34px\] {
        font-size: 18px !important;
    }
    
    section[data-name="Mission"] .text-\[20px\] {
        font-size: 14px !important;
    }
    
    /* CTA section */
    section[data-node-id="114-1510"] {
        padding: 32px 16px !important;
    }
    
    section[data-node-id="114-1510"] .text-\[34px\] {
        font-size: 18px !important;
    }
    
    section[data-node-id="114-1510"] .text-\[24px\] {
        font-size: 14px !important;
    }
    
    section[data-node-id="114-1510"] .text-\[20px\] {
        font-size: 16px !important;
    }
    
    section[data-node-id="114-1510"] .flex.flex-wrap {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
    }
    
    section[data-node-id="114-1510"] .flex.gap-\[12px\] {
        width: 100% !important;
        justify-content: flex-start !important;
    }
    
    /* Footer */
    footer {
        padding: 40px 12px !important;
    }
    
    /* Hide footer logo on mobile */
    footer .w-\[313px\] {
        display: none !important;
    }
    
    /* Subscribe block - full width */
    footer > div > div:first-child {
        justify-content: center !important;
    }
    
    /* Hide desktop footer content on mobile */
    .desktop-footer-content {
        display: none !important;
    }
    
    /* Show mobile footer content */
    .mobile-footer-content {
        display: flex !important;
    }
    
    /* Newsletter form - full width */
    footer .w-\[524px\] {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Newsletter form mobile adjustments */
    footer .w-\[524px\] .bg-\[#fcfcfc\] {
        flex-direction: column !important;
        height: auto !important;
        padding: 16px !important;
        gap: 16px !important;
    }
    
    footer .w-\[524px\] button {
        width: 100% !important;
    }
    
    footer .text-\[24px\] {
        font-size: 20px !important;
    }
    
    /* Banner text */
    .promo-banner .text-\[20px\] {
        font-size: 14px !important;
    }
    
    /* Button sizes */
    button, .px-\[46px\] {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    
    /* Trending section padding */
    section[data-name="Trending"] {
        padding: 32px 16px !important;
    }
    
    section[data-name="Trends"] {
        padding: 20px !important;
    }
    
    /* Reduce all large gaps */
    .gap-\[110px\] {
        gap: 16px !important;
    }
    
    .gap-\[76px\] {
        gap: 16px !important;
    }
    
    .mb-\[50px\] {
        margin-bottom: 24px !important;
    }
    
    .gap-10 {
        gap: 16px !important;
    }
}

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

.h-\[6px\] {
    height: 6px !important;
}
.w-1 {
    width: 0.25rem;
}
/* ========================================
   Spacing Utilities (Margin & Padding)
   ======================================== */

/* Margin utilities */
.m-0 { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 0.75rem !important; }
.m-4 { margin: 1rem !important; }
.m-5 { margin: 1.25rem !important; }
.m-6 { margin: 1.5rem !important; }
.m-8 { margin: 2rem !important; }
.m-10 { margin: 2.5rem !important; }

/* Margin Top */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-5 { margin-top: 1.25rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mt-10 { margin-top: 2.5rem !important; }

/* Margin Right */
.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 0.75rem !important; }
.mr-4 { margin-right: 1rem !important; }
.mr-5 { margin-right: 1.25rem !important; }
.mr-6 { margin-right: 1.5rem !important; }
.mr-8 { margin-right: 2rem !important; }
.mr-10 { margin-right: 2.5rem !important; }

/* Margin Bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.25rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }

/* Margin Left */
.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 0.75rem !important; }
.ml-4 { margin-left: 1rem !important; }
.ml-5 { margin-left: 1.25rem !important; }
.ml-6 { margin-left: 1.5rem !important; }
.ml-8 { margin-left: 2rem !important; }
.ml-10 { margin-left: 2.5rem !important; }

/* Margin X-axis (left and right) */
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
.mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.mx-3 { margin-left: 0.75rem !important; margin-right: 0.75rem !important; }
.mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; }
.mx-5 { margin-left: 1.25rem !important; margin-right: 1.25rem !important; }
.mx-6 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
.mx-8 { margin-left: 2rem !important; margin-right: 2rem !important; }
.mx-10 { margin-left: 2.5rem !important; margin-right: 2.5rem !important; }

/* Margin Y-axis (top and bottom) */
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 0.75rem !important; margin-bottom: 0.75rem !important; }
.my-4 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-5 { margin-top: 1.25rem !important; margin-bottom: 1.25rem !important; }
.my-6 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-8 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
.my-10 { margin-top: 2.5rem !important; margin-bottom: 2.5rem !important; }

/* Padding utilities */
.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-4 { padding: 1rem !important; }
.p-5 { padding: 1.25rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }
.p-10 { padding: 2.5rem !important; }

/* Padding Top */
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 0.75rem !important; }
.pt-4 { padding-top: 1rem !important; }
.pt-5 { padding-top: 1.25rem !important; }
.pt-6 { padding-top: 1.5rem !important; }
.pt-8 { padding-top: 2rem !important; }
.pt-10 { padding-top: 2.5rem !important; }

/* Padding Right */
.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: 0.25rem !important; }
.pr-2 { padding-right: 0.5rem !important; }
.pr-3 { padding-right: 0.75rem !important; }
.pr-4 { padding-right: 1rem !important; }
.pr-5 { padding-right: 1.25rem !important; }
.pr-6 { padding-right: 1.5rem !important; }
.pr-8 { padding-right: 2rem !important; }
.pr-10 { padding-right: 2.5rem !important; }

/* Padding Bottom */
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 0.75rem !important; }
.pb-4 { padding-bottom: 1rem !important; }
.pb-5 { padding-bottom: 1.25rem !important; }
.pb-6 { padding-bottom: 1.5rem !important; }
.pb-8 { padding-bottom: 2rem !important; }
.pb-10 { padding-bottom: 2.5rem !important; }

/* Padding Left */
.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: 0.25rem !important; }
.pl-2 { padding-left: 0.5rem !important; }
.pl-3 { padding-left: 0.75rem !important; }
.pl-4 { padding-left: 1rem !important; }
.pl-5 { padding-left: 1.25rem !important; }
.pl-6 { padding-left: 1.5rem !important; }
.pl-8 { padding-left: 2rem !important; }
.pl-10 { padding-left: 2.5rem !important; }

/* Padding X-axis (left and right) */
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.px-10 { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }

/* Padding Y-axis (top and bottom) */
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-5 { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
.py-6 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.py-10 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }

.primary-button {
    background-color: rgb(37, 138, 231) !important;
    border-radius: 9999px !important;
    border: 0px solid rgb(229, 231, 235) !important;
    color: rgb(238, 242, 244) !important;
    cursor: pointer !important;
    display: block !important;
    font-family: "Open Sans", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 24px !important;
    padding: 6px 16px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition-property: color, background-color, border-color !important;
    transition-duration: 0.15s !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}