*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #202b3b 0, #050914 55%, #020308 100%);
    color: #e5e7eb;
    line-height: 1.5;
}

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

img {
    max-width: 100%;
    display: block;
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(3, 7, 18, 0.95), rgba(3, 7, 18, 0.75));
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.header-top-bar {
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.header-top-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.4rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
}

.header-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #9ca3af;
    transition: color 0.15s ease;
}

.header-contact-link:hover {
    color: #f59e0b;
}

.header-contact-icon {
    font-size: 0.9rem;
}

.header-main {
    position: relative;
}

.header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.header-search {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    max-width: 280px;
}

.header-search-input {
    flex: 1;
    min-width: 0;
    padding: 0.45rem 0.75rem;
    border-radius: 0.5rem 0 0 0.5rem;
    border: 1px solid rgba(148, 163, 184, 0.5);
    border-right: none;
    background: rgba(15, 23, 42, 0.8);
    color: #e5e7eb;
    font-size: 0.88rem;
}

.header-search-input::placeholder {
    color: #6b7280;
}

.header-search-input:focus {
    outline: none;
    border-color: rgba(34, 211, 238, 0.5);
}

.header-search-btn {
    padding: 0.45rem 0.6rem;
    border-radius: 0 0.5rem 0.5rem 0;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.header-search-btn:hover {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(34, 211, 238, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 0.5rem;
    background: rgba(15, 23, 42, 0.8);
    cursor: pointer;
    color: #e5e7eb;
}

.nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin: 0 auto;
}

.nav.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    animation: nav-slide-down 0.25s ease;
}

@keyframes nav-slide-down {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-mobile .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 3.5rem;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.nav-link {
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    color: #e5e7eb;
    transition: background 0.15s ease, color 0.15s ease, transform 0.08s ease;
}

.nav-link:hover {
    background: rgba(55, 65, 81, 0.8);
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-dropdown-toggle::-webkit-details-marker {
    display: none;
}

.nav-dropdown-toggle::after {
    content: "▾";
    font-size: 0.75rem;
    opacity: 0.85;
}

.nav-dropdown[open] .nav-dropdown-toggle::after {
    content: "▴";
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    min-width: 220px;
    background: rgba(15, 23, 42, 0.97);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 0.7rem;
    box-shadow: 0 14px 28px rgba(2, 6, 23, 0.45);
    padding: 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    z-index: 40;
}

.nav-dropdown-item {
    padding: 0.45rem 0.6rem;
    border-radius: 0.45rem;
    color: #e5e7eb;
    font-size: 0.85rem;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-item:hover {
    background: rgba(245, 158, 11, 0.16);
    color: #fde68a;
}

.nav-mobile-dropdown {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 0.65rem;
    background: rgba(15, 23, 42, 0.65);
    overflow: hidden;
}

.nav-mobile-dropdown > summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.nav-mobile-dropdown > summary::-webkit-details-marker {
    display: none;
}

.nav-mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.nav-mobile-dropdown-arrow {
    font-size: 0.85rem;
    color: #fbbf24;
    transition: transform 0.22s ease;
}

.nav-mobile-dropdown[open] .nav-mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-mobile-dropdown-menu {
    display: flex;
    flex-direction: column;
    padding: 0.15rem 0.4rem 0.45rem 0.4rem;
    gap: 0.15rem;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    animation: mobile-dropdown-fade 0.18s ease;
}

@keyframes mobile-dropdown-fade {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-mobile-sub-link {
    font-size: 0.84rem;
    color: #cbd5e1;
    padding-left: 0.9rem;
    position: relative;
}

.nav-mobile-sub-link::before {
    content: "•";
    position: absolute;
    left: 0.35rem;
    color: #fbbf24;
}

.nav-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #020617;
}

.nav-cart:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(245, 158, 11, 0.4);

}

.cart-badge {
    min-width: 1.3rem;
    height: 1.3rem;
    border-radius: 999px;
    background: #020617;
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.favorite-badge {
    min-width: 1.3rem;
    height: 1.3rem;
    border-radius: 999px;
    background: #f59e0b;
    color: #020617;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.2rem;
}

.nav-favorites {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.nav-favorites-icon {
    color: #f59e0b;
    font-size: 1.05rem;
    line-height: 1;
}

.favorite-badge-pop {
    animation: favorite-badge-pop 0.35s ease;
}

@keyframes favorite-badge-pop {
    0% { transform: scale(1); }
    45% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Icons */
.icon {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    vertical-align: middle;
}

.icon svg,
.icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.icon {
    filter: brightness(0) invert(1);
}

.btn-primary .icon,
.nav-cart .icon {
    filter: none;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-lg {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-nav {
    width: 1.2rem;
    height: 1.2rem;
}

.btn .icon,
.nav-link .icon,
.cart-remove-link .icon,
.cart-title-link .icon {
    margin-right: 0.35rem;
}

.cart-remove-link .icon {
    margin-right: 0.25rem;
}

.cart-title-link {
    display: inline-flex;
    align-items: center;
}

.main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
}

.hero {
    position: relative;
    padding: 4.5rem 0 4rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(0.9);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 9, 20, 0.6) 0%,
        rgba(5, 9, 20, 0.85) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 700;
    margin: 0 0 1rem;
    color: #f5f5f5;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    margin: 0 0 1.75rem;
    color: rgba(229, 231, 235, 0.9);
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    font-size: 0.95rem;
    padding: 0.65rem 1.35rem;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
}

.btn-hero-primary:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
    transform: translateY(-1px);
}

.btn-hero-secondary {
    font-size: 0.95rem;
    padding: 0.65rem 1.35rem;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(8px);
    border-color: rgba(148, 163, 184, 0.35);
}

.btn-hero-secondary:hover {
    background: rgba(51, 65, 85, 0.8);
    border-color: rgba(148, 163, 184, 0.5);
}

.hero-note {
    margin: 0;
    font-size: 0.9rem;
    color: #9ca3af;
}

.section-title {
    font-size: 1.6rem;
    margin: 0 0 0.75rem;
}

.section-subtitle {
    font-size: 1.2rem;
    margin: 2rem 0 0.75rem;
}

.page-section {
    padding: 2rem 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.faq-question {
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.page-text {
    margin: 0 0 1rem;
    color: #9ca3af;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.08s ease, box-shadow 0.1s ease;
}

.btn:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #020617;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
}

.btn-secondary:hover {
    background: rgba(31, 41, 55, 1);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.4);
    color: #e5e7eb;
    height: fit-content;
}

.btn-ghost:hover {
    background: rgba(15, 23, 42, 0.9);
}

.btn-primary-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #020617;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.08s ease, box-shadow 0.1s ease;
}

.btn-ghost-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(148, 163, 184, 0.4);
    cursor: pointer;
    background: transparent;
    color: #e5e7eb;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.08s ease, box-shadow 0.1s ease;
}

.btn-primary-small:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(245, 158, 11, 0.4);

}

.btn-ghost-small:hover {
    background: rgba(15, 23, 42, 0.9);
}

/* Trust Badges */
.trust-badges {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.trust-badges-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #e5e7eb;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    cursor: default;
}

a.trust-badge {
    cursor: pointer;
}

.trust-badge:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(34, 211, 238, 0.4);
    transform: translateY(-2px);
}

.trust-badge-icon {
    font-size: 1.5rem;
}

.trust-badge-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Platform Tiles */
.platform-tiles {
    padding: 2rem 0;
}

.platform-tiles .section-title {
    margin-bottom: 1rem;
}

.platform-tiles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.platform-tile {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 0.6rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(30, 64, 175, 0.6);
    color: #e5e7eb;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.platform-tile:hover {
    background: rgba(30, 64, 175, 0.35);
    border-color: rgba(56, 189, 248, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.25);
}

/* Bestseller Carousel */
.bestseller-section {
    padding: 2rem 0;
}

.bestseller-section .section-title {
    margin-bottom: 1rem;
}

.bestseller-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.carousel-btn {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.carousel-btn:hover:not(:disabled) {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(34, 211, 238, 0.5);
    transform: scale(1.05);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.bestseller-carousel {
    flex: 1;
    overflow: hidden;
}

.bestseller-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.product-card-carousel {
    flex: 0 0 220px;
    min-width: 220px;
}

/* Deals Section */
.deals-section {
    padding: 2rem 0;
}

.deals-section .section-title {
    margin-bottom: 1rem;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.product-card-deal .product-image-wrapper {
    position: relative;
}

.deal-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.6rem;
    border-radius: 0.4rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.product-price-deal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-price-old {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.85rem;
}

.product-price-current {
    font-weight: 700;
    font-size: 1rem;
    color: #f59e0b;
}

/* Promo Banner */
.top-offer-strip {
    padding: 0.85rem 0 0;
}

.top-offer-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.36), rgba(251, 191, 36, 0.3));
    border: 1px solid rgba(245, 158, 11, 0.7);
    box-shadow: 0 10px 22px rgba(245, 158, 11, 0.28);
}

.top-offer-strip-text {
    margin: 0;
    color: #fef3c7;
    font-weight: 700;
    font-size: 0.95rem;
}

.top-offer-strip-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.promo-banner {
    padding: 2rem 0;
}

.promo-banner-inner {
    padding: 2rem;
    border-radius: 1rem;
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.35), transparent 55%),
        linear-gradient(135deg, rgba(245, 158, 11, 0.28), rgba(251, 191, 36, 0.22));
    border: 1px solid rgba(245, 158, 11, 0.62);
    text-align: center;
    animation: promo-fade 0.6s ease;
    box-shadow: 0 16px 30px rgba(245, 158, 11, 0.25);
}

@keyframes promo-fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-banner-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fef3c7;
    margin: 0 0 0.25rem;
}

.promo-banner-subtext {
    color: #fde68a;
    margin: 0 0 1rem;
    font-size: 0.95rem;
}

.promo-banner-inner .btn {
    margin-top: 0.5rem;
}

.category-hero {
    margin-bottom: 1.25rem;
}

.category-hero-inner {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 260px;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.category-hero-image {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.category-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.72));
}

.category-hero-content {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.1rem;
    z-index: 2;
}

.category-hero-content .section-title {
    margin-bottom: 0.35rem;
}

.category-hero-content .page-text {
    color: #e2e8f0;
    max-width: 760px;
}

/* Why Us */
.why-us {
    padding: 2rem 0;
}

.why-us .section-title {
    margin-bottom: 1.25rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.why-us-card {
    padding: 1.25rem;
    border-radius: 0.75rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.why-us-card:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-2px);
}

.why-us-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.why-us-title {
    font-size: 1rem;
    margin: 0 0 0.35rem;
}

.why-us-text {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
}

.catalog {
    padding: 1.5rem 0 0;
}

.catalog-info {
    margin: 1.5rem 0;
    color: #9ca3af;
    font-size: 0.9rem;
    text-align: center;
}

.catalog-load-more-wrapper {
    margin-top: 2rem;
    text-align: center;
    padding: 2rem 0;
}

.catalog-loading {
    margin-top: 1rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.catalog-header {
    margin-bottom: 1.5rem;
    position: relative;
}

.catalog-filters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.catalog-search-row {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.search-input-wrapper {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    width: 1.1rem;
    height: 1.1rem;
    opacity: 0.5;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    padding-right: 2.5rem;
    font-size: 1rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.95);
    color: #e5e7eb;
    transition: border-color 0.2s ease;
}

.search-input::placeholder {
    color: #6b7280;
}

.search-input:focus {
    border-color: #f59e0b;
    outline: none;
}

.search-clear {
    position: absolute;
    right: 0.75rem;
    padding: 0.25rem;
    color: #9ca3af;
    font-size: 1.25rem;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.search-clear:hover {
    color: #f59e0b;
}

.search-submit {
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
}

.catalog-filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    align-items: flex-end;
}

.filter-row-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-row-group.filter-checkbox {
    flex-shrink: 0;
    min-width: auto;
}

.filter-label {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

.filter-select-sm,
.filter-input-sm {
    width: auto;
    min-width: 120px;
    padding: 0.5rem 0.75rem;
    font-size: 0.88rem;
}

.filter-price .price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-price .filter-input-sm {
    min-width: 70px;
    width: 70px;
}

.price-sep {
    color: #6b7280;
    font-size: 0.9rem;
}

.filter-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #e5e7eb;
    cursor: pointer;
    white-space: nowrap;
    padding: 0.5rem 0;
    min-height: 44px;
}

.filter-checkbox {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: #f59e0b;
}

.filter-row-actions {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.filter-select,
.filter-input,
.filter-select-sm,
.filter-input-sm,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
select {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 0.6rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
    padding: 0.4rem 0.6rem;
    font-size: 0.88rem;
    min-width: 0;
}


.filter-select:focus-visible,
.filter-input:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: 1px;
}

.filter-actions {
    display: flex;
    gap: 0.5rem;
}

.empty-state {
    margin-top: 1.5rem;
    color: #9ca3af;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.product-card {
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.98));
    border-radius: 1rem;
    padding: 0.75rem;
    border: 1px solid rgba(30, 64, 175, 0.7);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.7);
    justify-content: space-between;
}

.product-image-wrapper {
    position: relative;
    padding-top: 60%;
    border-radius: 0.75rem;
    overflow: hidden;
    background: radial-gradient(circle at top, #0ea5e9, #020617);
}

.product-image {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.25rem 0.25rem 0.35rem;
}

.product-title {
    font-size: 0.98rem;
    margin: 0;
}

.product-title a:hover {
    text-decoration: underline;
}

.product-platform {
    font-size: 0.8rem;
    color: #9ca3af;
}

.product-price {
    font-weight: 700;
    font-size: 0.98rem;
}

.product-description {
    font-size: 0.82rem;
    color: #9ca3af;
}

.product-actions {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.add-cart-form {
    margin: 0;
}

.btn-favorite {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    min-width: 2.15rem;
    padding: 0;
    border-color: rgba(148, 163, 184, 0.55);
    flex-shrink: 0;
}

.favorite-icon {
    font-size: 0.95rem;
    line-height: 1;
    color: #f59e0b;
}

.btn-favorite.is-favorite {
    border-color: rgba(245, 158, 11, 0.7);
    background: rgba(245, 158, 11, 0.14);
    color: #fde68a;
}

.btn-favorite.is-favorite .favorite-icon {
    color: #f59e0b;
}

.btn-favorite-detail {
    margin-right: 0.25rem;
    width: 2.4rem;
    height: 2.4rem;
    min-width: 2.4rem;
}

.product-detail-actions .btn-favorite {
    margin-left: 0;
}

@media (max-width: 768px) {
    .btn-favorite {
        width: 2rem;
        height: 2rem;
        min-width: 2rem;
        min-height: fit-content !important;
    }

    .btn-favorite-detail {
        width: 2.2rem;
        height: 2.2rem;
        min-width: 2.2rem;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
}

.badge-instock {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.badge-outofstock,
.badge-outofstock-large {
    background: rgba(248, 113, 113, 0.16);
    color: #fca5a5;
}

.badge-outofstock-large {
    font-size: 0.85rem;
}

.product-detail {
    padding: 2rem 0;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 2rem;
}

.product-gallery {
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-gallery-main {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.6);
}

.product-detail-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    border: 1px solid rgba(30, 64, 175, 0.8);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.85);
}

.product-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-gallery-thumb {
    padding: 0;
    margin: 0;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.8);
    cursor: pointer;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.product-gallery-thumb:hover {
    opacity: 0.9;
}

.product-gallery-thumb.is-active {
    border-color: rgba(34, 197, 94, 0.9);
    box-shadow: 0 8px 18px rgba(245, 158, 11, 0.4);

}

.product-gallery-thumb img {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: cover;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-detail-title {
    font-size: 1.6rem;
    margin: 0;
}

.product-detail-platform {
    font-size: 0.9rem;
    color: #9ca3af;
}

.product-detail-price {
    font-size: 1.4rem;
    font-weight: 700;
}

.product-detail-meta {
    margin: 0.5rem 0;
}

.product-detail-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    padding: 0.2rem 0;
    border-bottom: 1px dashed rgba(75, 85, 99, 0.7);
}

.product-detail-meta-row dt {
    color: #9ca3af;
}

.product-detail-meta-row dd {
    margin: 0;
}

.product-detail-description {
    font-size: 0.9rem;
    color: #d1d5db;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.cart-form {
    margin-top: 1.25rem;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 0.9rem;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.8);
}

.cart-table th,
.cart-table td {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
}

.cart-table thead {
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(55, 65, 81, 1);
}

.cart-table tbody tr:nth-child(even) {
    background: rgba(15, 23, 42, 0.96);
}

.cart-quantity-input {
    width: 3.5rem;
    text-align: right;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cart-quantity-input:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
    outline: none;
}

.cart-subtotal {
    font-weight: 600;
    transition: color 0.3s ease, transform 0.2s ease;
}

.cart-subtotal.updating {
    color: #f59e0b;
    transform: scale(1.05);
}

.cart-total-amount {
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.cart-total-amount.updating {
    color: #f59e0b;
    transform: scale(1.05);
}

.cart-remove-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    color: #f97316;
}

.cart-remove-link:hover {
    text-decoration: underline;
}

.cart-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.cart-total {
    font-size: 1rem;
}

.cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.alert {
    border-radius: 0.9rem;
    padding: 0.75rem 0.9rem;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.alert-error {
    background: rgba(127, 29, 29, 0.7);
    border: 1px solid rgba(248, 113, 113, 0.9);
}

.alert-success {
    background: rgba(20, 83, 45, 0.7);
    border: 1px solid rgba(74, 222, 128, 0.9);
}

.alert-title {
    margin: 0 0 0.35rem;
    font-weight: 600;
}

.alert ul {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
}

.alert li {
    margin-bottom: 0.25rem;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
    margin-top: 1.2rem;
}

.checkout-heading {
    font-size: 1.1rem;
    margin: 0 0 0.75rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1rem;
    margin-bottom: 1.3rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 0.8rem;
    color: #9ca3af;
}

.checkout-note {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0.75rem 0 1.1rem;
}

.checkout-summary {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(30, 64, 175, 0.9);
}

.checkout-items {
    list-style: none;
    margin: 0.5rem 0 0.75rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.84rem;
}

.checkout-item-title {
    margin: 0;
}

.checkout-item-meta {
    margin: 0.15rem 0 0;
    color: #9ca3af;
    font-size: 0.78rem;
}

.checkout-item-price {
    margin: 0;
    white-space: nowrap;
}

.checkout-total {
    margin: 0.5rem 0 0.15rem;
}

.checkout-small {
    margin: 0;
    font-size: 0.76rem;
    color: #9ca3af;
}

.footer {
    border-top: 1px solid rgba(55, 65, 81, 1);
    background: radial-gradient(circle at bottom, #111827, #020617);
    margin-top: 2rem;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.6rem 1.25rem 2rem;
    font-size: 0.85rem;
    color: #9ca3af;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 0.25rem;
}

.footer-logo-img {
    height: 3.5rem;
    width: auto;
    display: block;
}

.footer-text {
    margin: 0.1rem 0;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-heading {
    margin: 0 0 0.25rem;
    font-weight: 600;
    color: #e5e7eb;
}

.footer-copy {
    margin: 1.5rem 0 0;
    font-size: 0.78rem;
    color: #6b7280;
}

.footer-text a,
.footer-copy a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-text a:hover,
.footer-copy a:hover {
    color: #f59e0b;
    text-decoration: underline;
}

.footer-payments {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.7rem;
}

.footer-payment-logo {
    height: 22px;
    width: auto;
    filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.8));
}

.cookie-banner {
    position: fixed;
    inset-inline: 0.75rem;
    bottom: 0.75rem;
    max-width: 1120px;
    margin-inline: auto;
    border-radius: 0.9rem;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.9);
    padding: 0.75rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.8rem;
    z-index: 40;
}

.cookie-banner-text {
    max-width: 640px;
    color: #e5e7eb;
}

.cookie-banner-text a {
    color: #f59e0b;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (max-width: 1024px) {
    .header-search {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .header-top-bar {
        display: none;
    }

    .header-inner {
        padding-inline: 1rem;
    }

    .header-inner .logo {
        order: 0;
    }

    .header-search {
        order: 2;
        max-width: 100%;
        flex: 1 1 100%;
    }

    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
        order: 1;
    }

    .nav-mobile[hidden] {
        display: none;
    }

    .nav-mobile:not([hidden]) {
        display: flex;
    }

    .nav-mobile-dropdown {
        margin: 0.2rem 0;
    }

    .main {
        padding-inline: 1rem;
    }

    .product-detail-layout,
    .checkout-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-gallery {
        max-width: 100%;
        order: -1;
    }

    .form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .cart-table,
    .cart-table thead,
    .cart-table tbody,
    .cart-table tr,
    .cart-table th,
    .cart-table td {
        display: block;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tbody tr {
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 0.75rem;
        background: rgba(15, 23, 42, 0.95);
        border: 1px solid rgba(148, 163, 184, 0.2);
    }

    .cart-table td {
        padding: 0.5rem 0;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
    }

    .cart-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #9ca3af;
        flex-shrink: 0;
    }

    .cart-table td:first-child {
        padding-top: 0;
        font-size: 1rem;
    }

    .cart-table td:last-child {
        padding-bottom: 0;
        border-top: 1px solid rgba(148, 163, 184, 0.2);
        margin-top: 0.5rem;
        padding-top: 0.75rem;
    }

    .cart-table .cart-quantity-input {
        width: 4rem;
        min-height: 44px;
        padding: 0.5rem;
    }

    .product-card-carousel {
        flex: 0 0 180px;
        min-width: 180px;
    }

    .trust-badges-inner {
        gap: 1rem;
    }

    .promo-banner-text {
        font-size: 1.15rem;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="search"],
    select,
    .filter-select,
    .filter-input,
    .filter-select-sm,
    .filter-input-sm {
        min-height: 44px;
    }

    .catalog-search-row {
        flex-direction: column;
    }

    .catalog-filters-row {
        gap: 1rem;
    }

    .filter-row-group .filter-select-sm,
    .filter-row-group .filter-input-sm {
        min-width: 0;
        width: 100%;
    }

    .filter-price .price-inputs {
        flex-wrap: wrap;
    }

    .filter-price .filter-input-sm {
        width: 100%;
        min-width: 0;
    }

    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-ghost {
        min-height: 44px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-columns {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .header-search {
        max-width: 220px;
    }

    .product-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-card-carousel {
        flex: 0 0 160px;
        min-width: 160px;
    }

    .trust-badges-inner {
        flex-direction: column;
    }

    .platform-tiles-grid {
        flex-direction: column;
    }

    .deals-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .why-us-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .checkout-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Contact Page Styles */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-form-wrapper {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-form {
    margin-top: 1rem;
}

.contact-form textarea {
    width: 100%;
    padding: 0.65rem;
    border-radius: 0.5rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: #e5e7eb;
    font-family: inherit;
    font-size: 0.9rem;
    resize: vertical;
    min-height: 120px;
}

.contact-form textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.contact-item:first-of-type {
    margin-top: 0;
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.3);
    border-radius: 0.75rem;
}

.contact-icon-text {
    font-size: 1.5rem;
}

.contact-item-content {
    flex: 1;
}

.contact-item-title {
    font-size: 1rem;
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.contact-item-text {
    margin: 0 0 0.25rem;
    color: #e5e7eb;
}

.contact-item-note {
    margin: 0;
    font-size: 0.8rem;
    color: #9ca3af;
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.opening-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.opening-hours-row:last-child {
    border-bottom: none;
}

.opening-hours-day {
    color: #e5e7eb;
    font-weight: 500;
}

.opening-hours-time {
    color: #9ca3af;
}

.contact-location {
    margin-top: 0.75rem;
}

.contact-map-placeholder {
    margin-top: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-map-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-map-note {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    color: #9ca3af;
    text-align: center;
}

/* About Page Styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    align-items: center;
}

.about-hero-image,
.about-story-image,
.about-team-image {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin: 2rem 0;
    align-items: start;
}

.about-milestone {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    margin: 1.5rem 0;
    border-left: 4px solid #f59e0b;
}

.about-milestone-year {
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
    color: #f59e0b;
    font-weight: 700;
}

.about-team {
    margin: 2rem 0;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-value-card {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.about-value-title {
    font-size: 1.2rem;
    margin: 0 0 0.75rem;
    color: #f59e0b;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero {
        padding: 2.5rem 0 2rem;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-hero,
    .about-story {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-values {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #20BA5A, #0F7A6D);
}

.whatsapp-float:active {
    transform: translateY(-1px);
}

.whatsapp-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.whatsapp-text {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
}

/* Special Offer Modal */
.special-offer-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.special-offer-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.special-offer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(8px);
}

.special-offer-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.99));
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.special-offer-modal[aria-hidden="false"] .special-offer-content {
    transform: scale(1);
}

.special-offer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 50%;
    color: #e5e7eb;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.special-offer-close:hover {
    background: rgba(31, 41, 55, 0.9);
    border-color: rgba(34, 211, 238, 0.5);
    transform: rotate(90deg);
}

.special-offer-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    min-height: 400px;
}

.special-offer-image {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 211, 238, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.special-offer-image-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.special-offer-gift-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.special-offer-gift-box::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.special-offer-gift-box::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.special-offer-gift-box-1 {
    animation-delay: 0s;
    transform: rotate(-5deg);
}

.special-offer-gift-box-2 {
    animation-delay: 0.2s;
    transform: rotate(3deg);
}

.special-offer-gift-box-3 {
    animation-delay: 0.4s;
    transform: rotate(-2deg);
}

.special-offer-gift-box-4 {
    animation-delay: 0.6s;
    transform: rotate(4deg);
}

.special-offer-gift-box-5 {
    animation-delay: 0.8s;
    transform: rotate(-3deg);
}

.special-offer-gift-box-6 {
    animation-delay: 1s;
    transform: rotate(2deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-10px) rotate(var(--rotation, 0deg));
    }
}

.special-offer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    filter: brightness(0.9) saturate(1.1);
}

.special-offer-text {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.special-offer-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    margin: 0;
    color: #e5e7eb;
    line-height: 1.2;
    background: linear-gradient(135deg, #e5e7eb 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.special-offer-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin: 0;
    color: #e5e7eb;
    font-weight: 600;
}

.special-offer-subtitle strong {
    color: #f59e0b;
    font-size: 1.2em;
}

.special-offer-description {
    font-size: 1rem;
    margin: 0;
    color: #9ca3af;
    line-height: 1.6;
}

.special-offer-form {
    margin-top: 0.5rem;
}

.special-offer-form-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.special-offer-label {
    display: block;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    width: 100%;
}

.special-offer-input {
    flex: 1;
    min-width: 200px;
    padding: 0.875rem 1rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 0.75rem;
    color: #e5e7eb;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.special-offer-input:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.special-offer-input::placeholder {
    color: #6b7280;
}

.special-offer-btn {
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #020617;
    border: none;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.special-offer-btn:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(245, 158, 11, 0.4);
}

.special-offer-btn:active {
    transform: translateY(0);
}

.special-offer-note {
    margin: 0.75rem 0 0;
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
}

.special-offer-success {
    padding: 1rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.75rem;
    margin-top: 1rem;
}

.special-offer-success-text {
    margin: 0;
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .special-offer-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .special-offer-image {
        padding: 1.5rem;
        max-height: 250px;
    }

    .special-offer-gift-box {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .special-offer-text {
        padding: 1.5rem;
    }

    .special-offer-form-group {
        flex-direction: column;
    }

    .special-offer-input {
        width: 100%;
    }

    .special-offer-btn {
        width: 100%;
    }

    .special-offer-content {
        max-width: 100%;
    }
}

/* ─── Promo Slider ────────────────────────────────────────────────────────── */

.promo-slider {
    width: 100%;
    background: #050914;
    position: relative;
    overflow: hidden;
}

.promo-slider-inner {
    position: relative;
    overflow: hidden;
    user-select: none;
}

.promo-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* ── Individual Slides ── */

.promo-slide {
    min-width: 100%;
    width: 100%;
    height: 340px;
    display: grid;
    grid-template-columns: 1fr 42%;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.promo-slide-1 { background: linear-gradient(to right, #1a0533 0%, #2d0b6e 100%); }
.promo-slide-2 { background: linear-gradient(to right, #042f2e 0%, #0c4a6e 100%); }
.promo-slide-3 { background: linear-gradient(to right, #1c0800 0%, #431407 100%); }
.promo-slide-4 { background: linear-gradient(to right, #030712 0%, #172554 100%); }
.promo-slide-5 { background: linear-gradient(to right, #0f0f23 0%, #2d1b69 100%); }

/* ── Slide Content (left column) ── */

.promo-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
    padding: 2rem clamp(1.5rem, 5vw, 4rem);
    position: relative;
    z-index: 2;
}

.promo-slide-badge {
    display: inline-block;
    padding: 0.28rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: fit-content;
}

.promo-slide-1 .promo-slide-badge { background: #f59e0b; color: #1a0533; }
.promo-slide-2 .promo-slide-badge { background: #f59e0b; color: #042f2e; }
.promo-slide-3 .promo-slide-badge { background: #f97316; color: #1c0800; }
.promo-slide-4 .promo-slide-badge { background: #c084fc; color: #030712; }
.promo-slide-5 .promo-slide-badge { background: #f43f5e; color: #fff; }

.promo-slide-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.promo-slide-1 .promo-slide-title { color: #fef3c7; }
.promo-slide-2 .promo-slide-title { color: #ecfeff; }
.promo-slide-3 .promo-slide-title { color: #fff7ed; }
.promo-slide-4 .promo-slide-title { color: #f5f3ff; }
.promo-slide-5 .promo-slide-title { color: #fdf4ff; }

.promo-slide-text {
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    line-height: 1.55;
    max-width: 420px;
}

.promo-slide-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    width: fit-content;
    margin-top: 0.25rem;
}

.promo-slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    filter: brightness(1.1);
}

.promo-slide-1 .promo-slide-btn { background: #f59e0b; color: #1a0533; }
.promo-slide-2 .promo-slide-btn { background: #f59e0b; color: #042f2e; }
.promo-slide-3 .promo-slide-btn { background: #f97316; color: #1c0800; }
.promo-slide-4 .promo-slide-btn { background: #c084fc; color: #030712; }
.promo-slide-5 .promo-slide-btn { background: #f43f5e; color: #fff; }

/* ── Slide Image (right column) ── */

.promo-slide-image {
    position: relative;
    overflow: hidden;
}

.promo-slide-image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.promo-slide-1 .promo-slide-image::before { background: linear-gradient(to right, #2d0b6e 0%, transparent 55%); }
.promo-slide-2 .promo-slide-image::before { background: linear-gradient(to right, #0c4a6e 0%, transparent 55%); }
.promo-slide-3 .promo-slide-image::before { background: linear-gradient(to right, #431407 0%, transparent 55%); }
.promo-slide-4 .promo-slide-image::before { background: linear-gradient(to right, #172554 0%, transparent 55%); }
.promo-slide-5 .promo-slide-image::before { background: linear-gradient(to right, #2d1b69 0%, transparent 55%); }

.promo-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Navigation Arrows ── */

.promo-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(6px);
    line-height: 1;
}

.promo-slider-nav:hover {
    background: rgba(245, 158, 11, 0.35);
    border-color: #f59e0b;
}

.promo-slider-nav-prev { left: 1rem; }
.promo-slider-nav-next { right: 1rem; }

/* ── Dots ── */

.promo-slider-dots {
    position: absolute;
    bottom: 0.85rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.45rem;
    z-index: 10;
}

.promo-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.promo-dot.active,
.promo-dot:hover {
    background: #f59e0b;
    transform: scale(1.35);
}

/* ── Progress bar ── */

.promo-slider-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(to right, #f59e0b, #fbbf24);
    z-index: 11;
    transition: width 0s linear;
    border-radius: 0 2px 2px 0;
}

.promo-slider-progress-bar.animating {
    transition: width 5s linear;
}

/* ── Responsive ── */

@media (max-width: 768px) {
    .promo-slide {
        grid-template-columns: 1fr 38%;
        height: 280px;
    }

    .promo-slide-content {
        padding: 1.5rem 1.25rem;
    }

    .promo-slider-nav {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .promo-slider-nav-prev { left: 0.4rem; }
    .promo-slider-nav-next { right: 0.4rem; }
}

@media (max-width: 520px) {
    .promo-slide {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 220px;
    }

    .promo-slide-image {
        display: none;
    }

    .promo-slide-content {
        padding: 1.75rem 1.25rem 2.5rem;
    }
}

/* ─── Reviews Section ─────────────────────────────────────────────────────── */

.reviews-section {
    padding: 3rem 0 4rem;
    max-width: 1120px;
    margin: 0 auto;
}

.reviews-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.review-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(229, 231, 235, 0.9);
    flex: 1;
}

.review-text strong {
    color: #e5e7eb;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.review-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: #9ca3af;
}

.review-meta {
    font-size: 0.8rem;
    color: #6b7280;
}

@media (max-width: 480px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Cart Toast ===== */
.cart-toast {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #1e293b;
    border: 1px solid #f59e0b;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    animation: toast-in 0.35s ease-out;
    max-width: 400px;
}

.cart-toast-text {
    color: #e2e8f0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.cart-toast-link {
    white-space: nowrap;
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}

.cart-toast-link:hover {
    text-decoration: underline;
}

.cart-toast-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0 0.25rem;
    line-height: 1;
}

.cart-toast-close:hover {
    color: #fff;
}

.cart-toast-hide {
    animation: toast-out 0.4s ease-in forwards;
}

@keyframes toast-in {
    from { opacity: 0; transform: translateY(1rem); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes toast-out {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(1rem); }
}

/* ===== Cart Badge Pulse ===== */
@keyframes badge-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

.cart-badge-pulse {
    animation: badge-pulse 0.5s ease;
}

/* ===== Breadcrumbs ===== */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #f59e0b;
}

.breadcrumb-sep {
    color: #4b5563;
    margin: 0 0.15rem;
}

.breadcrumb [aria-current="page"] {
    color: #e2e8f0;
    font-weight: 500;
}

/* ===== Quantity Selector ===== */
.quantity-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.quantity-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.quantity-input {
    width: 4rem;
    padding: 0.4rem 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #374151;
    background: #111827;
    color: #e2e8f0;
    font-size: 0.95rem;
    text-align: center;
}

.quantity-input:focus {
    border-color: #f59e0b;
    outline: none;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

/* ===== Gallery Arrows ===== */
.product-gallery-main {
    position: relative;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.3rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s, background 0.2s;
}

.product-gallery-main:hover .gallery-arrow {
    opacity: 1;
}

.gallery-arrow:hover {
    background: rgba(245, 158, 11, 0.7);
}

.gallery-arrow-prev {
    left: 0.75rem;
}

.gallery-arrow-next {
    right: 0.75rem;
}

.gallery-fade-out {
    opacity: 0.3;
    transition: opacity 0.15s ease;
}

.product-detail-img {
    transition: opacity 0.2s ease;
}

/* ===== Related Products ===== */
.product-grid-related {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
    .product-grid-related {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid-related {
        grid-template-columns: 1fr;
    }
}

/* ===== Angebote Filters ===== */
.angebote-filters {
    margin-bottom: 1.5rem;
}

.angebote-filters .catalog-filters-row {
    flex-wrap: wrap;
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pagination-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.5rem;
    background: #f59e0b;
    color: #030712;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ===== Filter Result Bar ===== */
.catalog-result-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.catalog-result-count {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
    font-weight: 500;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #1e293b;
    border: 1px solid #374151;
    color: #e2e8f0;
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.filter-tag:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.filter-tag-x {
    font-size: 1rem;
    line-height: 1;
    color: #6b7280;
}

.filter-tag:hover .filter-tag-x {
    color: #f59e0b;
}

/* ===== Compact Header (scroll) ===== */
.header {
    transition: padding 0.3s, box-shadow 0.3s;
}

.header--compact .header-top-bar {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    border-bottom: none;
    padding: 0;
    transition: max-height 0.3s, opacity 0.2s;
}

.header-top-bar {
    max-height: 3rem;
    opacity: 1;
    transition: max-height 0.3s, opacity 0.2s;
}

.header--compact .header-inner {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.header--compact .logo-img {
    height: 34px;
    transition: height 0.3s;
}

.logo-img {
    transition: height 0.3s;
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Mobile Reviews Carousel ===== */
@media (max-width: 768px) {
    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 0.75rem;
        scroll-behavior: smooth;
    }

    .review-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .reviews-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.75rem;
    }

    .reviews-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #374151;
        border: none;
        cursor: pointer;
        padding: 0;
        transition: background 0.2s;
    }

    .reviews-dot.active {
        background: #f59e0b;
    }
}

@media (min-width: 769px) {
    .reviews-dots {
        display: none;
    }
}

@media (max-width: 480px) {
    .review-card {
        flex: 0 0 92%;
    }

    .cart-toast {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

@media (max-width: 600px) {
    .breadcrumb {
        padding: 0.5rem 1rem;
        font-size: 0.78rem;
    }

    .product-grid-related {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .top-offer-strip-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .top-offer-strip-btn {
        width: 100%;
        justify-content: center;
    }
}

