@keyframes fade-in {
from {
background-color: rgba(0, 0, 0, 0);
}
to {
background-color: rgba(0, 0, 0, 0.8);
}
}
@keyframes fade-out {
from {
background-color: rgba(0, 0, 0, 0.8);
}
to {
background-color: rgba(0, 0, 0, 0);
}
}
@keyframes slide-in {
from {
transform: translateX(500px);
}
to {
transform: translateX(0px);
}
}
@keyframes slide-out {
from {
transform: translateX(0px);
}
to {
transform: translateX(500px);
}
}
@layer base {
}
#cart-drawer[data-state="open"] {
background: transparent;
}
#cart-drawer[data-state="closed"] {
background: transparent;
}
#cart-drawer .cart-drawer-backdrop {
opacity: 0;
transition: opacity 0.22s ease;
backdrop-filter: blur(1px) !important;
-webkit-backdrop-filter: blur(1px) !important;
}
#cart-drawer[data-state="open"] .cart-drawer-backdrop {
opacity: 1;
}
#cart-drawer[data-state="closed"] .cart-drawer-backdrop {
opacity: 0;
}
#cart-drawer[data-state="open"] .cart-drawer-panel {
animation: slide-in 0.4s forwards;
}
#cart-drawer[data-state="closed"] .cart-drawer-panel {
animation: slide-out 0.4s forwards;
}
.dialog[data-state="open"] {
animation: fade-in 0.4s forwards;
background: rgba(0, 0, 0, 0.6) !important;
backdrop-filter: blur(4px) !important;
-webkit-backdrop-filter: blur(4px) !important;
}
.dialog[data-state="closed"] {
animation: fade-out 0.4s forwards;
}
.dialog[data-state="open"] > div {
animation: dialog-in 0.2s forwards;
}
.dialog[data-state="closed"] > div {
animation: dialog-out 0.2s forwards;
}
@keyframes dialog-in {
from {
opacity: 0;
scale: 50%;
}
to {
opacity: 1;
scale: 100%;
}
}
@keyframes dialog-out {
from {
opacity: 1;
scale: 100%;
}
to {
opacity: 0;
scale: 50%;
}
}
@keyframes loading {
0% {
left: -50%;
}
to {
left: 100%;
}
}
.reveal-fade-up {
opacity: 0;
transform: translateY(30px);
transition:
opacity 0.3s ease,
transform 0.3s ease;
transition-delay: var(--delay, 0s);
}
.reveal-fade-up.visible {
opacity: 1;
transform: translateY(0);
}
/* ==== New Design Utilities ==== */
:root {
--accent: 260 80% 60%; /* HSL in lch format, example purple */
--glass-bg: 0 0% 100% / 0.2; /* rgba via lch */
--badge-bg: 0 0% 95%;
--badge-color: 0 0% 20%;
}
/* Glassmorphism container */
.glass {
background: rgba(var(--glass-bg));
backdrop-filter: blur(12px) saturate(180%);
-webkit-backdrop-filter: blur(12px) saturate(180%);
border: 1px solid rgba(255,255,255,0.12);
border-radius: var(--radius);
}
/* Badge component */
.badge {
display: inline-flex;
align-items: center;
border-radius: 9999px;
padding-left: 0.625rem;
padding-right: 0.625rem;
padding-top: 0.125rem;
padding-bottom: 0.125rem;
font-size: 0.75rem;
font-weight: 500;
background-color: rgb(var(--badge-bg));
color: rgb(var(--badge-color));
}
/* Star rating */
.star-rating {
display: flex;
gap: 0.125rem;
color: #facc15;
}
.star-rating svg {
width: 1rem;
height: 1rem;
}
/* Snowfall animation */
@keyframes snow-fall {
0% { transform: translateY(-10vh) translateX(0); }
100% { transform: translateY(110vh) translateX(calc(100vw * var(--rand-x)) ); }
}
.snowflake {
position: fixed;
top: -10vh;
width: 1.5rem;
height: 1.5rem;
pointer-events: none;
background: url('data:image/svg+xml;utf8,<svg fill="%23fff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2a1 1 0 011 1v2a1 1 0 01-2 0V3a1 1 0 011-1zm5.657 2.928a1 1 0 01.707 1.707l-1.414 1.414a1 1 0 01-1.414-1.414l1.414-1.414a1 1 0 01.707-.293zM4.343 4.928a1 1 0 011.414 0l1.414 1.414a1 1 0 11-1.414 1.414L4.343 6.343a1 1 0 010-1.414zM12 6a6 6 0 100 12A6 6 0 0012 6zm0 2a4 4 0 110 8 4 4 0 010-8zm9 5a1 1 0 010 2h-2a1 1 0 110-2h2zm-16 0a1 1 0 010 2H3a1 1 0 110-2h2zM6.343 17.657a1 1 0 010 1.414l-1.414 1.414a1 1 0 11-1.414-1.414l1.414-1.414a1 1 0 011.414 0zM17.657 17.657a1 1 0 011.414 0l1.414 1.414a1 1 0 11-1.414 1.414l-1.414-1.414a1 1 0 010-1.414z"/></svg>') center/contain no-repeat;
animation: snow-fall 10s linear infinite;
--rand-x: calc(var(--i) / 10);
}
/* Purchase toast */
.toast-purchase {
position: fixed;
bottom: 1rem;
right: 1rem;
background-color: rgb(var(--primary));
color: rgb(var(--foreground));
padding: 1rem;
border-radius: 0.5rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
display: flex;
align-items: center;
gap: 0.5rem;
animation: toast-in 0.3s ease-out forwards;
}
@keyframes toast-in {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* Utility classes for product cards */
.product-card {
padding: 1rem;
border-radius: 0.5rem;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.product-card img {
width: 100%;
height: auto;
border-radius: 0.375rem;
object-fit: cover;
}
.product-card .price {
color: rgb(var(--primary));
font-weight: 700;
font-size: 1.125rem;
}
.product-card .old-price {
text-decoration: line-through;
color: rgb(var(--muted-foreground));
}
#cc-snow-canvas {
position: fixed;
inset: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 0;
}
.purchase-toast {
position: fixed;
bottom: 20px;
left: 20px;
z-index: 9990;
pointer-events: none;
opacity: 0;
transform: translateY(100%) scale(0.92);
transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.purchase-toast.is-visible {
opacity: 1;
transform: translateY(0) scale(1);
pointer-events: auto;
}
.purchase-toast.is-hiding {
opacity: 0;
transform: translateY(12px) scale(0.95);
transition: opacity 0.35s ease-in, transform 0.35s ease-in;
}
.purchase-toast-inner {
display: flex;
align-items: center;
gap: 10px;
background: rgba(18, 18, 20, 0.85);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
border: none;
border-radius: 14px;
padding: 8px 14px 8px 8px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
max-width: 300px;
min-width: 220px;
}
.purchase-toast-logo {
flex-shrink: 0;
width: 32px;
height: 32px;
object-fit: contain;
}
.purchase-toast-body {
min-width: 0;
flex: 1;
}
.purchase-toast-title {
font-size: 12px;
font-weight: 600;
color: #f5f5f7;
line-height: 1.2;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.purchase-toast-product {
font-size: 11px;
color: rgba(245, 245, 247, 0.5);
line-height: 1.2;
margin-top: 1px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.purchase-toast-time {
font-size: 10px;
color: rgba(245, 245, 247, 0.3);
line-height: 1.2;
margin-top: 1px;
}
@media (max-width: 640px) {
.purchase-toast {
left: 10px;
right: 10px;
bottom: 12px;
}
.purchase-toast-inner {
max-width: 100%;
min-width: 0;
padding: 7px 12px 7px 7px;
gap: 8px;
border-radius: 12px;
}
.purchase-toast-logo {
width: 26px;
height: 26px;
}
.purchase-toast-title {
font-size: 11px;
}
.purchase-toast-product {
font-size: 11px;
}
.purchase-toast-time {
font-size: 10px;
}
}
@keyframes navbar-logo-float {
0% { transform: translateY(0px); }
50% { transform: translateY(-8px); }
100% { transform: translateY(0px); }
}
.navbar-logo-float {
animation: navbar-logo-float 3.5s ease-in-out infinite;
}
/* End of new utilities */
.rounded-cc { border-radius: 0.85rem !important; }
/* Disabled states for buttons */
button:disabled, .btn-primary:disabled {
opacity: 0.55 !important;
cursor: not-allowed !important;
pointer-events: none !important;
}
/* Explicit button layout alignments to prevent text wrap and misalignment */
.btn-primary, .btn-secondary, button.btn-primary, button.btn-secondary, a.btn-primary, a.btn-secondary {
display: flex !important;
display: -webkit-flex !important;
flex-direction: row !important;
-webkit-flex-direction: row !important;
align-items: center !important;
-webkit-align-items: center !important;
justify-content: center !important;
-webkit-justify-content: center !important;
gap: 8px !important;
white-space: nowrap !important;
overflow: hidden !important;
text-align: center !important;
flex-wrap: nowrap !important;
-webkit-flex-wrap: nowrap !important;
line-height: 1 !important;
}
/* Make sure text and icons inside buttons align correctly and do not wrap */
.btn-primary > *:not(.hidden), .btn-secondary > *:not(.hidden), button.btn-primary > *:not(.hidden), button.btn-secondary > *:not(.hidden) {
display: inline-block !important;
vertical-align: middle !important;
white-space: nowrap !important;
margin: 0 !important;
}
/* Fix svg icons inside buttons to prevent vertical offset */
.btn-primary svg, .btn-secondary svg, button.btn-primary svg, button.btn-secondary svg {
display: inline-block !important;
flex-shrink: 0 !important;
vertical-align: middle !important;
}
/* Category Card buttons layout optimization */
.category-card-glass .btn-primary,
a[href*="/categories/"] .btn-primary {
flex-wrap: nowrap !important;
white-space: nowrap !important;
word-break: keep-all !important;
}
/* Responsive description font size with limit clamp */
#package-description,
#package-description * {
font-size: clamp(0.85rem, 0.85vw + 0.5rem, 1.05rem) !important;
line-height: 1.625 !important;
}
/* Fallback for KeenSlider when JS is not loaded or library is disabled */
.keen-slider:not([class*="keen-slider--"]) {
display: flex !important;
overflow-x: auto !important;
scroll-snap-type: x mandatory !important;
flex-wrap: nowrap !important;
scroll-behavior: smooth !important;
-webkit-overflow-scrolling: touch !important;
}
.keen-slider:not([class*="keen-slider--"]) > * {
scroll-snap-align: start !important;
flex-shrink: 0 !important;
}
/* Hide scrollbars on all sliders */
.keen-slider {
-ms-overflow-style: none !important;
scrollbar-width: none !important;
}
.keen-slider::-webkit-scrollbar {
display: none !important;
}
/* ==========================================================================
Cyber/Futuristic Technological Alive Button
========================================================================== */
@keyframes btn-shimmer {
0% { transform: translateX(-150%) skewX(-25deg); }
100% { transform: translateX(150%) skewX(-25deg); }
}
.animate-shimmer-btn {
animation: btn-shimmer 2.2s infinite ease-in-out;
animation-play-state: paused;
}
.btn-cyber-tech:hover .animate-shimmer-btn,
.btn-cyber-tech-outline:hover .animate-shimmer-btn,
.btn-cyber-tech-gray:hover .animate-shimmer-btn,
.group:hover .animate-shimmer-btn,
.group/btn:hover .animate-shimmer-btn {
animation-play-state: running;
}
.btn-cyber-tech {
position: relative;
overflow: hidden;
background: rgb(var(--primary)) !important;
color: #000000 !important;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.05em;
border-radius: 10px !important;
box-shadow: 0 4px 14px rgb(var(--primary) / 0.35) !important;
transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
border: none !important;
display: flex !important;
display: -webkit-flex !important;
flex-direction: row !important;
-webkit-flex-direction: row !important;
align-items: center !important;
-webkit-align-items: center !important;
justify-content: center !important;
-webkit-justify-content: center !important;
gap: 8px !important;
white-space: nowrap !important;
flex-wrap: nowrap !important;
-webkit-flex-wrap: nowrap !important;
height: 48px !important;
}
.btn-cyber-tech::before {
display: none !important;
}
.btn-cyber-tech:hover {
transform: translateY(-2px);
filter: brightness(1.1);
box-shadow: 0 6px 20px rgb(var(--primary) / 0.5) !important;
}
.btn-cyber-tech:hover::before {
display: none !important;
}
.btn-cyber-tech:active {
transform: translateY(0);
}
.btn-cyber-tech::after {
display: none !important;
}
/* Ensure any shimmer overlay is absolutely positioned to prevent shifting text/icons */
.btn-cyber-tech .animate-shimmer-btn,
.btn-cyber-tech-outline .animate-shimmer-btn,
.btn-cyber-tech-gray .animate-shimmer-btn {
position: absolute !important;
pointer-events: none !important;
z-index: 1 !important;
}
/* Ensure text inside btn-cyber-tech is highly legible, appropriately sized, and aligned */
.btn-cyber-tech > span:not(.animate-shimmer-btn) {
font-size: 13px !important;
font-weight: 800 !important;
line-height: 1 !important;
display: inline-block !important;
}
.btn-cyber-tech > * {
position: relative;
z-index: 2;
}
/* Cyber/Futuristic Technological Outline Button (Secondary Style) */
.btn-cyber-tech-outline {
position: relative;
overflow: hidden;
background: rgb(var(--primary) / 0.08) !important;
color: rgb(var(--primary)) !important;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.05em;
border: 1px solid rgb(var(--primary) / 0.25) !important;
border-radius: 10px !important;
box-shadow: none !important;
transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
display: flex !important;
display: -webkit-flex !important;
flex-direction: row !important;
-webkit-flex-direction: row !important;
align-items: center !important;
-webkit-align-items: center !important;
justify-content: center !important;
-webkit-justify-content: center !important;
gap: 8px !important;
white-space: nowrap !important;
flex-wrap: nowrap !important;
-webkit-flex-wrap: nowrap !important;
height: 48px !important;
}
.btn-cyber-tech-outline::before {
display: none !important;
}
.btn-cyber-tech-outline:hover {
transform: translateY(-2px);
background: rgb(var(--primary) / 0.15) !important;
border-color: rgb(var(--primary) / 0.5) !important;
box-shadow: 0 4px 12px rgb(var(--primary) / 0.1) !important;
}
.btn-cyber-tech-outline:hover::before {
display: none !important;
}
.btn-cyber-tech-outline:active {
transform: translateY(0);
}
.btn-cyber-tech-outline::after {
display: none !important;
}
.btn-cyber-tech-outline > * {
position: relative;
z-index: 2;
}
/* Force action buttons side-by-side on desktop/tablets */
@media (min-width: 640px) {
.product-actions-buttons {
display: flex !important;
flex-direction: row-reverse !important;
gap: 12px !important;
}
.product-actions-buttons > button {
flex: 1 !important;
width: 50% !important;
}
}
/* Allow action buttons in the product page to wrap text on mobile so they aren't squished */
.product-actions-buttons > button {
white-space: normal !important;
flex-wrap: wrap !important;
-webkit-flex-wrap: wrap !important;
height: auto !important;
min-height: 48px !important;
padding: 8px 16px !important;
}
/* Cyber/Futuristic Technological Gray Button */
.btn-cyber-tech-gray {
position: relative;
overflow: hidden;
background: #27272a;
color: #ffffff !important;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 0.05em;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
border: 1px solid rgba(255, 255, 255, 0.1) !important;
display: flex !important;
display: -webkit-flex !important;
flex-direction: row !important;
-webkit-flex-direction: row !important;
align-items: center !important;
-webkit-align-items: center !important;
justify-content: center !important;
-webkit-justify-content: center !important;
gap: 8px !important;
white-space: nowrap !important;
flex-wrap: nowrap !important;
-webkit-flex-wrap: nowrap !important;
}
/* Ensure text inside btn-cyber-tech-gray is highly legible, appropriately sized, and aligned */
.btn-cyber-tech-gray > span:not(.animate-shimmer-btn) {
font-size: 13px !important;
font-weight: 800 !important;
line-height: 1 !important;
display: inline-block !important;
}
.btn-cyber-tech-gray::before {
content: '';
position: absolute;
inset: 0;
background-image:
linear-gradient(currentColor 1px, transparent 1px),
linear-gradient(90deg, currentColor 1px, transparent 1px);
background-size: 6px 6px;
pointer-events: none;
z-index: 1;
opacity: 0.05;
transition: opacity 0.3s ease;
}
.btn-cyber-tech-gray:hover {
transform: scale(1.025);
filter: brightness(1.2);
box-shadow:
0 0 20px rgba(255, 255, 255, 0.15),
0 0 8px rgba(255, 255, 255, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-cyber-tech-gray:hover::before {
opacity: 0.03;
}
.btn-cyber-tech-gray:active {
transform: scale(0.97);
}
.btn-cyber-tech-gray::after {
content: '';
position: absolute;
bottom: 0;
right: 0;
width: 8px;
height: 8px;
background-color: #0a0a0c;
clip-path: polygon(100% 0, 0 100%, 100% 100%);
z-index: 2;
}
.btn-cyber-tech-gray > * {
position: relative;
z-index: 2;
}
/* Hide navbar when modals are open */
body:has(.dialog[data-state="open"]) header.sticky,
body:has(.gp-modal-overlay.active) header.sticky,
body:has(#welcome-modal:not(.hidden)) header.sticky,
body.child-iframe-modal-open header.sticky {
opacity: 0 !important;
visibility: hidden !important;
pointer-events: none !important;
transition: all 0.3s ease !important;
}
/* ---- Category Card Dynamic Border Animation ---- */
@keyframes border-sweep {
0% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: -100;
}
}
@keyframes border-sweep-offset {
0% {
stroke-dashoffset: -50;
}
100% {
stroke-dashoffset: -150;
}
}
.category-card-glass {
position: relative;
}
.home-category-tabs {
scrollbar-width: none;
}
.home-category-tabs::-webkit-scrollbar {
display: none;
}
.home-other-group {
display: flex;
min-width: 0;
flex-direction: column;
gap: 0.6rem;
}
.home-other-products-row {
display: grid;
grid-template-columns: repeat(var(--home-other-cols, 1), minmax(0, 1fr));
gap: 1rem;
min-width: 0;
}
.home-other-separator {
display: flex;
align-items: center;
gap: 0.5rem;
margin: 0.05rem 0 -0.2rem;
padding-inline: 10px;
}
@media (max-width: 767px) {
.home-other-group {
grid-column: span 1 / span 1 !important;
}
.home-other-products-row {
grid-template-columns: minmax(0, 1fr);
}
}
.home-other-separator-line {
height: 1px;
flex: 1;
min-width: 0;
background: rgba(255, 255, 255, 0.1);
}
.home-other-separator-line:last-child {
background: rgba(255, 255, 255, 0.1);
}
.home-other-separator-title {
display: inline-flex;
align-items: center;
gap: 0.25rem;
max-width: 78%;
color: rgba(255, 255, 255, 0.58);
font-size: 0.6rem;
font-weight: 600;
letter-spacing: 0.1em;
line-height: 1.15;
text-align: center;
text-transform: uppercase;
}
.home-other-separator-icon {
color: rgb(var(--primary));
font-size: 0.65rem;
line-height: 1;
}
.category-card-border-wrap {
position: absolute;
inset: 0;
border-radius: inherit;
pointer-events: none;
z-index: 15;
opacity: 0; /* Completely hidden until the page is loaded */
transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Revealed and animated only after site loads and borders-active class is added */
.borders-active .category-card-border-wrap {
opacity: 1;
}
/* Even category cards: Mirror vertically on mobile (vertical stack) and horizontally on desktop (horizontal columns) */
@media (max-width: 767px) {
.category-card-glass:nth-child(even) .category-card-border-wrap {
transform: scaleY(-1);
}
}
@media (min-width: 768px) {
.category-card-glass:nth-child(even) .category-card-border-wrap {
transform: scaleX(-1);
}
}
.category-card-border-svg {
display: block;
width: 100%;
height: 100%;
overflow: visible;
}
.category-card-border-rect {
stroke-dasharray: 20 80; /* 20% visible sweep trail, 80% gap */
/* Matches card borders dynamically */
rx: 1rem; /* rounded-2xl */
/* Smooth transition for hover effects without resetting the animation timeline */
stroke-width: 2.5px;
filter: drop-shadow(0 0 0px transparent);
transition: stroke-width 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
will-change: stroke-dashoffset;
}
/* Line 1 - Starts at top-left (0) and sweeps clockwise */
.borders-active .category-card-border-rect {
animation: border-sweep 5s linear infinite;
}
/* Line 2 - Starts at bottom-right (-50) and sweeps clockwise (chasing Line 1) */
.borders-active .category-card-border-rect-reverse {
animation: border-sweep-offset 5s linear infinite;
}
@media (min-width: 768px) {
.category-card-border-rect {
rx: 1.5rem; /* rounded-3xl */
}
}
/* Premium hover effect: lines get slightly thicker and glow, keeping rotation perfectly in sync */
.category-card-glass:hover .category-card-border-rect {
stroke-width: 3.5px;
}
/* Fix product card buttons height override on mobile and desktop */
.package .btn-cyber-tech,
.package .btn-cyber-tech-outline,
.package .btn-cyber-tech-gray {
height: 32px !important;
}
@media (min-width: 640px) {
.package .btn-cyber-tech,
.package .btn-cyber-tech-outline,
.package .btn-cyber-tech-gray {
height: 40px !important;
}
}
/* Fix Toastify notifications on mobile */
.toastify {
max-width: calc(100vw - 32px) !important;
min-width: 280px !important;
right: 16px !important;
left: auto !important;
box-sizing: border-box !important;
word-break: break-word !important;
white-space: normal !important;
}
.toastify .flex {
min-width: 0 !important;
flex: 1 !important;
}
.toastify p {
white-space: normal !important;
word-break: break-word !important;
}
@media (max-width: 480px) {
.toastify {
right: 8px !important;
left: 8px !important;
max-width: calc(100vw - 16px) !important;
min-width: 0 !important;
width: auto !important;
padding: 10px 12px !important;
}
}
/* Fix similar products section footer spacing */
#similar-products-section {
margin-bottom: 5rem !important;
padding-bottom: 2rem !important;
overflow: hidden !important;
}
#similar-products-slider {
min-height: 260px !important;
overflow: hidden !important;
}
@media (max-width: 639px) {
#similar-products-slider:not(.keen-slider--initialized) > .keen-slider__slide {
flex: 0 0 46vw !important;
width: 46vw !important;
min-width: 46vw !important;
}
#similar-products-slider .keen-slider__slide {
min-height: 0 !important;
}
#similar-products-slider a.package {
min-width: 0 !important;
}
}
#similar-products-slider:not(.keen-slider--initialized) > .keen-slider__slide:not(:first-child) {
display: none !important;
}
#similar-products-slider a,
#similar-products-slider div,
#similar-products-slider img,
#similar-products-slider svg {
box-shadow: none !important;
filter: none !important;
text-shadow: none !important;
}
#similar-products-slider .similar-product-slide,
#similar-products-slider .keen-slider__slide {
overflow: hidden !important;
}
#similar-products-slider a.package,
#similar-products-slider .product-card-glow {
box-shadow: none !important;
}
#similar-products-slider a.package {
border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
#similar-products-slider a.package:hover {
box-shadow: none !important;
}
#similar-products-slider img {
display: block !important;
max-width: 100% !important;
width: 100% !important;
height: auto !important;
aspect-ratio: 1 / 1 !important;
object-fit: contain !important;
}
.product-quantity-control {
display: inline-flex;
align-items: center;
justify-content: center;
height: 42px;
min-width: 128px;
border-radius: 0.85rem;
border: 1px solid rgba(255, 255, 255, 0.10);
background: rgba(255, 255, 255, 0.04);
overflow: hidden;
}
.product-price-qty-layout {
grid-template-columns: minmax(0, 1fr) auto;
align-items: center;
gap: 12px;
width: 100%;
}
.product-price-qty-layout-mobile {
display: flex !important;
justify-content: space-between !important;
align-items: center !important;
}
.product-price-qty-layout-desktop {
display: none !important;
}
@media (min-width: 768px) {
.product-price-qty-layout-mobile {
display: none !important;
}
.product-price-qty-layout-desktop {
display: grid !important;
}
}
.product-quantity-row {
display: flex;
width: auto;
align-items: center;
justify-content: center;
flex-direction: row;
gap: 12px;
padding: 9px 14px;
margin-top: 0;
border-radius: 0.9rem;
border: 1px solid rgba(255, 255, 255, 0.08);
background: rgba(255, 255, 255, 0.025);
}
.product-quantity-row > span {
color: rgb(var(--muted-foreground));
font-size: 11px;
font-weight: 800;
letter-spacing: 0;
text-transform: uppercase;
}
@media (max-width: 767px) {
.product-price-qty-layout {
grid-template-columns: minmax(0, 1fr) minmax(138px, auto);
gap: 10px;
}
.product-quantity-row {
min-width: 138px;
min-height: 58px;
gap: 7px;
padding: 8px;
border: none;
background: transparent;
}
.product-quantity-row > span {
display: none !important;
}
.product-quantity-control {
min-width: 130px;
height: 40px;
}
.product-quantity-control button {
width: 40px;
}
.product-quantity-control input {
width: 46px;
}
}
.product-quantity-control button {
width: 40px;
height: 100%;
display: inline-flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 18px;
font-weight: 800;
line-height: 1;
background: rgba(255, 255, 255, 0.04);
}
.product-quantity-control input {
width: 46px;
height: 100%;
border: 0;
background: transparent;
color: #fff;
text-align: center;
font-size: 14px;
font-weight: 800;
outline: none;
appearance: textfield;
}
.product-quantity-control input::-webkit-outer-spin-button,
.product-quantity-control input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Fix cart button badge clipping due to overflow: hidden on .btn-primary */
#cart-button {
overflow: visible !important;
}
/* Centering the cart badge text inside the circle and making it a darker variation of the theme color */
.cart-badge {
background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), rgb(var(--primary)) !important;
color: #ffffff !important;
border: 1.5px solid rgb(var(--primary)) !important;
font-size: 10px !important;
font-weight: 700 !important;
height: 20px !important;
width: 20px !important;
padding: 0 !important;
box-sizing: border-box !important;
text-align: center !important;
}
.cart-badge span {
display: flex !important;
align-items: center !important;
justify-content: center !important;
line-height: 1 !important;
height: 100% !important;
width: 100% !important;
transform: translateY(0) !important;
}
/* Back button desktop absolute positioning (ignored content container margins) */
@media (min-width: 1360px) {
.back-button-desktop-absolute {
position: absolute !important;
left: -95px !important;
top: 0 !important;
z-index: 20 !important;
}
}
@media (min-width: 1280px) and (max-width: 1359px) {
.back-button-desktop-absolute {
position: absolute !important;
left: -55px !important;
top: 0 !important;
z-index: 20 !important;
}
}
@media (min-width: 768px) and (max-width: 1279px) {
.back-button-desktop-absolute {
position: relative !important;
left: 0 !important;
margin-bottom: 1.5rem !important;
}
}
/* Sticky bottom bar page offset on mobile */
@media (max-width: 767px) {
body {
padding-bottom: 68px !important;
}
.purchase-toast {
bottom: 80px !important;
}
.sticky-bottom-bar button {
height: 52px !important;
font-size: 8px !important;
font-weight: 700 !important;
line-height: 1.15 !important;
color: #ffffff !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: center !important;
gap: 3px !important;
padding: 2px 4px !important;
}
.sticky-bottom-bar button svg {
width: 20px !important;
height: 20px !important;
color: #ffffff !important;
fill: currentColor !important;
flex-shrink: 0 !important;
}
.sticky-bottom-bar button#purchase-button-mobile {
font-size: 13px !important;
font-weight: 800 !important;
line-height: 1 !important;
color: #000000 !important;
flex-direction: row !important;
gap: 6px !important;
padding: 0 8px !important;
}
.sticky-bottom-bar button span {
font-size: 9px !important;
font-weight: 700 !important;
line-height: 1.15 !important;
color: #ffffff !important;
display: inline-block !important;
white-space: nowrap !important;
}
.sticky-bottom-bar button#add-to-cart-button-mobile span {
font-size: 7.6px !important;
letter-spacing: -0.025em !important;
}
.back-btn-border-rect {
stroke-dasharray: 20 80;
stroke-width: 5px !important;
rx: 50%;
will-change: stroke-dashoffset;
animation: border-sweep 5s linear infinite;
}
.back-btn-border-rect-reverse {
stroke-dasharray: 20 80;
stroke-width: 5px !important;
rx: 50%;
will-change: stroke-dashoffset;
animation: border-sweep-offset 5s linear infinite;
}
}
/* Product image card revealed border: match rounded-cc and use a thicker sweep */
.product-image-border-card .category-card-border-wrap {
inset: 0;
border-radius: inherit;
pointer-events: none;
}
.product-image-border-card .category-card-border-svg {
overflow: visible;
border-radius: inherit;
}
.product-image-border-card .product-image-border-rect {
rx: 0.85rem !important;
stroke-width: 5px !important;
stroke-dasharray: 20 80;
filter: drop-shadow(0 0 0px transparent);
}
.product-image-border-card:hover .product-image-border-rect {
stroke-width: 5px !important;
filter: none !important;
}
@media (max-width: 767px) {
body:not(.show-crisp-override):has(.sticky-bottom-bar) [class*="crisp"],
body:not(.show-crisp-override):has(.sticky-bottom-bar) [id*="crisp"],
body:not(.show-crisp-override):has(#cart-drawer:not(.hidden)) [class*="crisp"],
body:not(.show-crisp-override):has(#cart-drawer:not(.hidden)) [id*="crisp"] {
opacity: 0 !important;
pointer-events: none !important;
transform: translateY(200px) !important;
transition: opacity 0.3s ease, transform 0.3s ease !important;
}
}
/* Center only the trust badges vertically on desktop to fill empty space */
@media (min-width: 768px) {
.product-trust-badges {
display: flex !important;
flex-direction: column !important;
justify-content: center !important;
flex: 1 !important;
margin-top: 20px !important;
margin-bottom: 20px !important;
border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
padding-top: 20px !important;
}
}
/* Prevent desktop coupon row from showing on mobile when JS removes .hidden */
@media (max-width: 767px) {
#product-coupon-row {
display: none !important;
}
}
/* Increase text and icon size specifically for mobile purchase button to override default btn-cyber-tech rules */
#purchase-button-mobile {
font-size: 17px !important;
font-weight: 900 !important;
}
#purchase-button-mobile svg {
width: 25px !important;
height: 25px !important;
}
/* Shift the floating gift button up and center horizontally with Crisp chat widget */
@media (min-width: 768px) {
body:has([class*="crisp"]) #gift-floating-btn {
bottom: 96px !important;
right: 26px !important;
transition: bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1), right 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
}
@media (max-width: 767px) {
body:has([class*="crisp"]) #gift-floating-btn {
bottom: 80px !important;
right: 23px !important;
transition: bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1), right 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
}
/* Unavailable Category Cards */
.category-card-glass.is-unavailable {
pointer-events: none !important;
cursor: not-allowed !important;
position: relative;
visibility: visible !important;
opacity: 1 !important;
filter: grayscale(1) !important;
}
.category-card-glass.is-unavailable img,
.category-card-glass.is-unavailable .category-card-border-svg image,
.category-card-glass.is-unavailable div[style*="background-image"] {
filter: grayscale(1) !important;
-webkit-filter: grayscale(1) !important;
}
/* Offline/Unavailable Categories in Sidebar */
.is-off-category {
opacity: 0.45 !important;
filter: grayscale(1) !important;
-webkit-filter: grayscale(1) !important;
pointer-events: none !important;
cursor: not-allowed !important;
}
.is-off-category img {
filter: grayscale(1) !important;
-webkit-filter: grayscale(1) !important;
}
.unavailable-overlay {
position: absolute;
inset: 0;
z-index: 30;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.35);
backdrop-filter: blur(0.5px);
-webkit-backdrop-filter: blur(0.5px);
border-radius: inherit;
text-align: center;
padding: 0.75rem;
}
.unavailable-box {
border: 1px solid rgba(255, 255, 255, 0.25);
background: rgba(0, 0, 0, 0.75);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
border-radius: 0.85rem;
padding: 0.6rem 1.25rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.15rem;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
max-width: min(86%, 330px);
}
.unavailable-overlay .unavailable-title {
font-size: 0.95rem;
font-weight: 800;
color: #fff;
text-transform: uppercase;
letter-spacing: 0.08em;
line-height: 1.2;
}
.unavailable-overlay .unavailable-sub {
font-size: 0.75rem;
font-weight: 500;
color: rgba(255, 255, 255, 0.7);
line-height: 1.2;
max-width: 100%;
white-space: normal;
overflow-wrap: anywhere;
}
@media (min-width: 768px) {
.unavailable-overlay .unavailable-title {
font-size: 1.15rem;
}
.unavailable-overlay .unavailable-sub {
font-size: 0.8rem;
}
}
/* Offline category badge in sidebar */
.badge-out-of-stock {
margin-left: auto !important;
font-size: 9px !important;
font-weight: 700 !important;
padding: 2px 6px !important;
border-radius: 4px !important;
background-color: rgba(239, 68, 68, 0.2) !important;
color: rgb(248, 113, 113) !important;
border: 1px solid rgba(239, 68, 68, 0.35) !important;
text-transform: uppercase !important;
letter-spacing: 0.05em !important;
position: relative !important;
z-index: 10 !important;
display: inline-block !important;
pointer-events: none !important;
}
/* Centered offline overlay for sidebar category summaries */
.sidebar-unavailable-overlay {
position: absolute !important;
inset: -1px !important;
z-index: 20 !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
background: linear-gradient(135deg, rgba(20, 10, 10, 0.8) 0%, rgba(12, 5, 5, 0.9) 100%) !important;
backdrop-filter: blur(3px) !important;
-webkit-backdrop-filter: blur(3px) !important;
border-radius: inherit !important;
border: 1px solid rgba(239, 68, 68, 0.3) !important;
box-shadow: inset 0 0 10px rgba(239, 68, 68, 0.15) !important;
pointer-events: none !important;
}
.sidebar-unavailable-title {
font-size: 11px !important;
font-weight: 900 !important;
color: #ff4b4b !important;
text-transform: uppercase !important;
letter-spacing: 0.15em !important;
line-height: 1.2 !important;
text-shadow: 0 0 8px rgba(255, 75, 75, 0.8), 0 0 2px rgba(255, 75, 75, 0.5) !important;
}
/* Hide floating gift button when cart drawer is open */
body.overflow-hidden #gift-floating-btn,
body:has(#cart-drawer[data-state="open"]) #gift-floating-btn {
display: none !important;
}