/* DDOT SHOP — SilentMafia style, żółte akcenty */

:root {
    --sm-accent: #fbbf24;
    --sm-accent-rgb: 251, 191, 36;
    --sm-accent-hover: #f59e0b;
    --sm-accent-light: #fcd34d;
    --sm-accent-bright: #fde047;

    --sm-bg-deep: #0f0e0b;
    --sm-bg-main: #141210;
    --sm-bg-card: #1a1814;
    --sm-bg-elevated: #222018;

    --sm-text-primary: #ffffff;
    --sm-text-secondary: #a8a29e;
    --sm-text-muted: #78716c;

    --sm-border: rgba(255, 255, 255, 0.08);
    --sm-border-accent: rgba(251, 191, 36, 0.4);
    --sm-glow: 0 0 30px rgba(251, 191, 36, 0.18);
    --sm-glass: rgba(15, 14, 11, 0.88);

    --bs-body-bg: var(--sm-bg-deep);
    --bs-body-color: var(--sm-text-primary);
    --cl-accent: var(--sm-accent);
    --cl-background-primary: var(--sm-bg-deep);
    --cl-background-secondary: var(--sm-bg-main);
    --cl-border: var(--sm-border);
}

body {
    background-color: var(--sm-bg-deep) !important;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(251, 191, 36, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(251, 191, 36, 0.06) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--sm-text-primary) !important;
    font-family: 'Inter', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
    text-transform: none;
}

.text-gradient {
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-primary {
    color: var(--sm-accent) !important;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sm-bg-deep); }
::-webkit-scrollbar-thumb { background: #3d3528; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--sm-accent); }

.container {
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.components {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.components > section,
.components > .component,
.components > div {
    width: 100%;
}

.hero .container,
.feedbacks-section .container,
section.container {
    text-align: center;
}

.feedbacks-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.feedbacks-grid > [class*="col-"] {
    display: flex;
    justify-content: center;
}

.feedbacks-grid .testimonial {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: block;
    text-align: center;
    color: var(--sm-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.section-title {
    display: block !important;
    width: 100% !important;
    margin: 0 0 0.85rem 0 !important;
    text-align: center !important;
}

.section-title h1,
.section-title h2 {
    width: 100%;
    font-size: clamp(1.85rem, 4vw, 2.35rem) !important;
    text-align: center !important;
    margin-bottom: 0 !important;
    color: var(--sm-text-primary);
    background: linear-gradient(to bottom, #ffffff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center !important;
    color: var(--sm-text-secondary) !important;
    max-width: 540px;
    margin: 0 auto !important;
    font-size: 0.975rem;
    line-height: 1.65;
}

.section-subtitle p {
    margin-bottom: 0;
}

/* Navbar */
.navbar {
    background: var(--sm-glass) !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--sm-border) !important;
    padding: 0.75rem 0 !important;
}

.navbar .navbar-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.navbar .navbar-start {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.navbar .navbar-menu {
    position: static !important;
    transform: none !important;
    flex-grow: 0;
}

.navbar .navbar-nav {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    margin: 0;
}

.navbar .navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.navbar .navbar-logo {
    max-height: 38px;
    width: auto;
    display: block;
}

.navbar .navbar-logo-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.28);
    color: var(--sm-accent);
}

.navbar .navbar-shop-name {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: var(--sm-text-primary) !important;
    white-space: nowrap;
}

.navbar .navbar-toggler {
    border: 1px solid var(--sm-border) !important;
    background: var(--sm-bg-elevated) !important;
    padding: 0.4rem 0.55rem !important;
}

.navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.25) !important;
}

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

.navbar .nav-link {
    color: var(--sm-text-secondary) !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    text-transform: none;
    letter-spacing: 0;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: color 0.2s ease !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar .nav-item .nav-link.active {
    color: var(--sm-accent) !important;
    background: rgba(251, 191, 36, 0.08) !important;
}

.navbar .navbar-action-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    background: var(--sm-bg-elevated) !important;
    border: 1px solid var(--sm-border) !important;
    color: var(--sm-text-primary) !important;
    border-radius: 10px !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
    position: relative;
}

.navbar .navbar-action-btn:hover {
    border-color: var(--sm-border-accent) !important;
    background: rgba(251, 191, 36, 0.08) !important;
    color: var(--sm-text-primary) !important;
    transform: none;
}

.navbar .navbar-action-btn .icon {
    width: 1.1rem;
    height: 1.1rem;
}

.navbar .navbar-action-btn .count {
    background: var(--sm-accent) !important;
    color: #fff !important;
}

.navbar .navbar-action-btn--icon {
    padding: 0.5rem 0.65rem !important;
    min-width: 2.5rem;
    justify-content: center;
}

.navbar .navbar-actions {
    flex-shrink: 0;
    margin-right: 0.15rem;
    padding-right: 0.65rem;
}

.navbar .navbar-tools {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.navbar .navbar-lang-picker,
.navbar .navbar-currency-picker {
    position: relative;
}

.navbar .navbar-currency-trigger,
.navbar .navbar-picker-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--sm-bg-elevated);
    border: 1px solid var(--sm-border);
    border-radius: 10px;
    color: var(--sm-accent);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 0.7rem;
    min-width: 4.5rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    line-height: 1.2;
}

.navbar .navbar-currency-picker .navbar-picker-trigger {
    min-width: 5.5rem;
}

.navbar .navbar-currency-trigger:hover,
.navbar .navbar-currency-trigger[aria-expanded="true"],
.navbar .navbar-picker-trigger:hover,
.navbar .navbar-picker-trigger[aria-expanded="true"] {
    border-color: var(--sm-border-accent);
    background: rgba(251, 191, 36, 0.08);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.navbar .navbar-currency-label {
    white-space: nowrap;
}

.navbar .navbar-currency-chevron,
.navbar .navbar-picker-chevron {
    flex-shrink: 0;
    opacity: 0.85;
    transition: transform 0.25s ease;
}

.navbar .navbar-currency-chevron.is-open,
.navbar .navbar-picker-chevron.is-open {
    transform: rotate(180deg);
}

.navbar .navbar-currency-dropdown,
.navbar .navbar-picker-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--sm-bg-elevated);
    border: 1px solid var(--sm-border);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    z-index: 1060;
}

.navbar .navbar-currency-dropdown {
    width: 220px;
}

.navbar .navbar-lang-dropdown {
    min-width: 5.75rem;
    width: auto;
}

.navbar .navbar-currency-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid var(--sm-border);
    color: var(--sm-text-muted);
}

.navbar .navbar-currency-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--sm-text-primary);
    font-size: 0.85rem;
    min-width: 0;
}

.navbar .navbar-currency-search input::placeholder {
    color: var(--sm-text-muted);
}

.navbar .navbar-currency-list,
.navbar .navbar-picker-list {
    list-style: none;
    margin: 0;
    padding: 0.35rem;
    max-height: 240px;
    overflow-y: auto;
}

.navbar .navbar-lang-dropdown .navbar-picker-list {
    max-height: none;
}

.navbar .navbar-currency-list::-webkit-scrollbar,
.navbar .navbar-picker-list::-webkit-scrollbar {
    width: 5px;
}

.navbar .navbar-currency-list::-webkit-scrollbar-thumb,
.navbar .navbar-picker-list::-webkit-scrollbar-thumb {
    background: rgba(251, 191, 36, 0.35);
    border-radius: 10px;
}

.navbar .navbar-currency-option,
.navbar .navbar-picker-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.55rem 0.65rem;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--sm-text-primary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    text-align: left;
}

.navbar .navbar-lang-dropdown .navbar-picker-option {
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.navbar .navbar-currency-option:hover,
.navbar .navbar-currency-option.is-active,
.navbar .navbar-picker-option:hover,
.navbar .navbar-picker-option.is-active {
    background: rgba(251, 191, 36, 0.12);
    color: var(--sm-accent);
}

.navbar .navbar-currency-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    font-weight: 700;
    color: var(--sm-accent);
    font-size: 0.9rem;
    line-height: 1;
}

.navbar .navbar-currency-code {
    font-weight: 600;
    letter-spacing: 0.03em;
}

.navbar .navbar-currency-empty,
.navbar .navbar-picker-empty {
    padding: 0.75rem;
    text-align: center;
    color: var(--sm-text-muted);
    font-size: 0.8rem;
}

@media (min-width: 992px) {
    .navbar .navbar-toggler {
        display: none;
    }

    .navbar .navbar-menu {
        display: flex !important;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-grid {
        flex-wrap: wrap;
    }

    .navbar .navbar-start {
        flex: 1;
        gap: 0.75rem;
    }

    .navbar .navbar-menu {
        width: 100%;
        order: 4;
    }

    .navbar .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 0.75rem 0 0.25rem;
    }
}

header.sticky-top {
    z-index: 1030;
}

/* Hero */
.hero.sm-hero,
.hero {
    background: transparent !important;
    background-image: none !important;
    min-height: auto !important;
    position: relative;
    overflow: hidden;
}

.hero .bg-overlay {
    display: none;
}

.hero .hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 450px;
    background: radial-gradient(ellipse, rgba(251, 191, 36, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    padding: 4rem 1.5rem 2.5rem !important;
    gap: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero .content {
    max-width: 800px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--sm-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-badge::before,
.hero-badge::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--sm-accent));
}

.hero-badge::after {
    background: linear-gradient(to left, transparent, var(--sm-accent));
}

.hero .content h1 {
    font-size: clamp(2rem, 5vw, 3.25rem) !important;
    font-weight: 700 !important;
    line-height: 1.15;
    margin-bottom: 1.25rem !important;
    color: var(--sm-text-primary);
    background: linear-gradient(to bottom, #ffffff 0%, #e7e5e4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .content h1 .text-gradient {
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 55%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .content p {
    color: var(--sm-text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem !important;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.hero-buttons .btn-discord svg {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-buttons .btn-secondary-hero {
    background: var(--sm-bg-elevated) !important;
    border: 1px solid var(--sm-border) !important;
    color: var(--sm-text-primary) !important;
    box-shadow: none !important;
}

.hero-buttons .btn-secondary-hero:hover {
    border-color: var(--sm-border-accent) !important;
    background: rgba(251, 191, 36, 0.08) !important;
    color: var(--sm-text-primary) !important;
    transform: translateY(-1px);
}

.hero-video-wrapper {
    max-width: 720px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 4px;
    background: linear-gradient(135deg, #ef4444, #ec4899, #ef4444);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.hero-video-wrapper iframe,
.hero-video-wrapper .video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    border: none;
    display: block;
    background: var(--sm-bg-card);
}

/* Products */
#products,
.products.component,
section.container.py-20.component {
    scroll-margin-top: 80px;
}

.products .row.products {
    --bs-gutter-x: 1.5rem;
}

.product-col {
    max-width: 400px;
}

.products .featured-product-card {
    aspect-ratio: unset;
    min-height: unset;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    background: var(--sm-bg-card) !important;
}

.products .featured-product-card.group-card {
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.products .featured-product-card:hover {
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45), 0 0 20px rgba(251, 191, 36, 0.05) !important;
    transform: translateY(-4px) !important;
}

.products .featured-product-card .card-img-top {
    position: relative;
    flex: 0 0 auto;
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 200px;
    border-bottom: none;
    padding: 0;
    overflow: hidden;
    display: block;
    background: #080807 !important;
}

.products .featured-product-card .card-img-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(8, 8, 7, 0.75) 0%, transparent 35%),
        linear-gradient(to bottom, rgba(8, 8, 7, 0.35) 0%, transparent 25%),
        radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 3;
    pointer-events: none;
}

.products .featured-product-card .card-img-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(251, 191, 36, 0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 2;
}

.products .featured-product-card .product-card-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.products .featured-product-card .product-card-image,
.products .featured-product-card .card-img-top > img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    padding: 0;
    margin: 0;
    display: block;
    border-radius: 0;
    transform: scale(1.11);
    transition: transform 0.45s ease;
}

.products .featured-product-card:hover .product-card-image,
.products .featured-product-card:hover .card-img-top > img {
    transform: scale(1.11);
}

.products .featured-product-card .product-img-placeholder {
    position: relative;
    z-index: 1;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products .featured-product-card .product-img-placeholder svg {
    width: 72px;
    height: 72px;
    opacity: 0.85;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.25));
}

.products .featured-product-card.group-card .product-img-placeholder svg {
    opacity: 0.9;
}

.products .featured-product-card .featured-card-footer {
    padding: 0.75rem 0.9rem 0.85rem !important;
    margin-top: 0;
    border-top: none;
    background: var(--sm-bg-card) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    flex: 0 0 auto;
}

.products .featured-product-card .card-footer-main {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.products .featured-product-card .card-footer-badge {
    flex-shrink: 0;
    align-self: flex-end;
}

.products .featured-product-card .card-title {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.25rem !important;
    color: #ffffff !important;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.products .featured-product-card .price {
    flex-direction: row !important;
    align-items: baseline;
    gap: 0.35rem !important;
    margin-bottom: 0 !important;
}

.products .featured-product-card .price-label {
    font-size: 0.65rem;
    color: var(--sm-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.products .featured-product-card .price-value {
    font-size: 0.85rem !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    color: var(--sm-text-secondary) !important;
    font-weight: 600 !important;
}

.group-count-text {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--sm-text-muted);
    white-space: nowrap;
}

.products .featured-product-card .card-meta,
.products .featured-product-card .view-product {
    display: none !important;
}

/* Products listing page */
.products-page {
    max-width: 3500px;
}

.products-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--sm-text-muted);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.products-breadcrumb a {
    color: var(--sm-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.products-breadcrumb a:hover {
    color: var(--sm-accent);
}

.products-breadcrumb .current {
    color: var(--sm-text-primary);
}

.products-breadcrumb .sep {
    opacity: 0.4;
}

.products-page-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 1rem;
    align-items: start;
}

.products-sidebar {
    background: var(--sm-bg-card);
    border: 1px solid var(--sm-border);
    border-radius: 14px;
    padding: 1.25rem;
    position: sticky;
    top: 90px;
}

.products-sidebar .sidebar-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sm-accent);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.products-sidebar .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.products-sidebar .sidebar-link {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--sm-text-secondary);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.products-sidebar .sidebar-link:hover {
    background: rgba(251, 191, 36, 0.06);
    color: var(--sm-text-primary);
}

.products-sidebar .sidebar-link.active {
    background: rgba(251, 191, 36, 0.12);
    color: var(--sm-accent);
    font-weight: 600;
}

.products-page-main {
    min-width: 2200;
}

.products-searchbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--sm-bg-card);
    border: 1px solid var(--sm-border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

.products-searchbar svg {
    color: var(--sm-text-muted);
    flex-shrink: 0;
}

.products-searchbar .form-control {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    font-size: 0.9rem;
}

.products-page-grid {
    --bs-gutter-x: 1.25rem;
}

.products-page-grid .product-col {
    max-width: 750px;
    min-width: 415px;
}

@media (max-width: 991px) {
    .products-page-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: static;
    }

    .products-sidebar .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.products .product-card,
.products .card {
    display: flex;
    flex-direction: column;
    background: var(--sm-bg-card) !important;
    border: 1px solid var(--sm-border) !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
    height: 100%;
    cursor: pointer;
    color: var(--sm-text-primary) !important;
}

.products .product-card:hover,
.products .card:hover {
    transform: translateY(-6px) !important;
    border-color: var(--sm-border-accent) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), var(--sm-glow) !important;
    color: var(--sm-text-primary) !important;
}

.products .product-card .card-img-top,
.products .card .card-img-top {
    position: relative;
    height: 200px;
    background:
        radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        linear-gradient(160deg, #1a1814 0%, #141210 50%, #0f0e0b 100%) !important;
    border-bottom: 1px solid var(--sm-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.products .product-card .card-img-top img,
.products .card .card-img-top img {
    max-height: 100px;
    max-width: 80%;
    width: auto;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.products .product-card:hover .card-img-top img,
.products .card:hover .card-img-top img {
    transform: scale(1.08);
}

.products .featured-product-card .card-img-top img,
.products .featured-product-card .product-card-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    transform: scale(1.32) !important;
}

.products .featured-product-card .card-img-top {
    display: block !important;
    align-items: unset !important;
    justify-content: unset !important;
}

.products .featured-product-card:hover .card-img-top img,
.products .featured-product-card:hover .product-card-image {
    transform: scale(1.11) !important;
}

.products .featured-product-card:hover {
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45), 0 0 20px rgba(251, 191, 36, 0.05) !important;
    transform: translateY(-4px) !important;
}

.products .product-card .product-img-placeholder svg,
.products .card .product-img-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.5;
}

.products .product-card .card-img-top .badges,
.products .card .card-img-top .badges {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 3;
}

.products .product-card .card-body,
.products .card .card-body {
    padding: 1.25rem !important;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.products .product-card .card-title,
.products .card .card-title {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: var(--sm-text-primary) !important;
    margin-bottom: 0 !important;
    line-height: 1.3;
}

.products .product-card .card-meta,
.products .card .card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.products .product-card .price,
.products .card .price {
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.products .product-card .price-label,
.products .card .price-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sm-text-muted);
    font-weight: 600;
}

.products .product-card .price-value,
.products .card .price-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--sm-accent) !important;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
}

.products .product-card .stock-badge,
.products .card .stock-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    white-space: nowrap;
}

.products .product-card .stock-badge.in-stock,
.products .card .stock-badge.in-stock {
    background: rgba(6, 40, 30, 0.85);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.35);
    text-shadow: 0 0 8px rgba(52, 211, 153, 0.55), 0 0 18px rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.12);
}

.products .product-card .stock-badge.out-of-stock,
.products .card .stock-badge.out-of-stock {
    background: rgba(40, 10, 10, 0.85);
    color: #ff6b6b;
    border: 1px solid rgba(239, 68, 68, 0.4);
    text-shadow: 0 0 8px rgba(255, 107, 107, 0.7), 0 0 18px rgba(239, 68, 68, 0.35);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.18);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.products .product-card .view-product,
.products .card .view-product {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--sm-border);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sm-accent);
    transition: gap 0.2s ease;
}

.products .product-card .view-product svg,
.products .card .view-product svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.products .product-card:hover .view-product svg,
.products .card:hover .view-product svg {
    transform: translateX(3px);
}

/* Status page */
.status-page .status-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.status-page .status-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--sm-bg-card) !important;
    border: 1px solid var(--sm-border) !important;
    border-radius: 14px !important;
    text-decoration: none !important;
    color: var(--sm-text-primary) !important;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.status-page .status-card:hover {
    border-color: var(--sm-border-accent) !important;
    transform: translateY(-2px);
    box-shadow: var(--sm-glow);
    color: var(--sm-text-primary) !important;
}

.status-page .status-card-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.status-page .status-card-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.status-page .status-card h3 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: var(--sm-text-primary) !important;
    margin: 0 !important;
    -webkit-text-fill-color: unset;
}

.status-page .status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.status-page .status .indicator {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-page .status .label {
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.status-page .status-group {
    margin-bottom: 1.5rem;
}

.status-page .status-group h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sm-text-primary);
    margin-bottom: 0.75rem;
}

/* Feedbacks / Reviews */
.text-block.component,
section.py-20.text-block {
    background: transparent;
}

.testimonial {
    background: var(--sm-bg-card) !important;
    border: 1px solid var(--sm-border) !important;
    border-radius: 12px !important;
    margin-bottom: 1.25rem;
    transition: border-color 0.2s ease;
}

.testimonial:hover {
    border-color: var(--sm-border-accent) !important;
}

.testimonial .header {
    display: block !important;
    padding: 1.15rem 1.25rem 0 !important;
    text-align: left !important;
}

.testimonial .header .quote {
    display: none;
}

.testimonial .header svg {
    width: 0.9rem !important;
    height: 0.9rem !important;
}

.testimonial .header .stars svg {
    fill: var(--sm-accent) !important;
    stroke: var(--sm-accent) !important;
}

.testimonial .header .stars {
    display: flex;
    gap: 0.15rem;
}

.testimonial .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.35);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.testimonial .verified-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
}

.testimonial .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.testimonial .header-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    margin-left: auto;
}

.testimonial .review-date {
    font-size: 0.72rem;
    color: var(--sm-text-muted);
    white-space: nowrap;
    text-align: right;
}

.testimonial .content {
    padding: 0.75rem 1.25rem !important;
}

.testimonial .content {
    text-align: left !important;
}

.testimonial .content .message,
.testimonial .content .message p,
.testimonial .review-text {
    text-align: left !important;
}

.testimonial .content .message p {
    color: var(--sm-text-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.testimonial .footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.9rem 1.25rem !important;
    border-top: 1px solid var(--sm-border);
    font-size: 0.8rem;
    color: var(--sm-text-muted);
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 0 0 12px 12px;
}

.testimonial .footer .items {
    color: var(--sm-text-secondary);
}

.testimonial .footer .author {
    font-weight: 600;
    color: var(--sm-text-secondary);
}

/* Feedbacks marquee */
.feedbacks-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 1rem;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.marquee-row {
    overflow: hidden;
    margin-bottom: 1.35rem;
}

.marquee-row:last-child {
    margin-bottom: 0;
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 0.5rem 0;
}

.marquee-row-left .marquee-track {
    animation: marquee-left 50s linear infinite;
}

.marquee-row-right .marquee-track {
    animation: marquee-right 55s linear infinite;
}

.marquee-item {
    flex: 0 0 320px;
    width: 320px;
}

.marquee-testimonial {
    margin-bottom: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.marquee-testimonial .main {
    flex: 1;
}

.marquee-testimonial .header,
.marquee-testimonial .content,
.marquee-testimonial .footer {
    text-align: left !important;
}

.marquee-testimonial .content .message p {
    font-size: 0.875rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.marquee-testimonial .footer {
    display: flex;
    justify-content: flex-start;
}

.marquee-testimonial .footer .author {
    font-size: 0.8rem;
}

@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.feedbacks-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Features — bento grid */
.features-bento {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: minmax(190px, auto) minmax(170px, auto);
    gap: 1rem;
    margin-top: 0.5rem;
}

.features-bento .bento-hero ~ .bento-hero {
    display: none;
}

.features-bento:not(:has(.bento-hero)) {
    grid-template-columns: 1fr 1fr;
}

.features-bento:not(:has(.bento-hero)) .bento-small-1 {
    grid-column: 1;
    grid-row: 1;
}

.features-bento:not(:has(.bento-hero)) .bento-small-2 {
    grid-column: 2;
    grid-row: 1;
}

.features-bento:not(:has(.bento-hero)) .bento-wide {
    grid-column: 1 / 3;
    grid-row: 2;
}

.bento-cell {
    position: relative;
    background: var(--sm-bg-elevated);
    border: 1px solid var(--sm-border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease;
    animation: bento-fade-in 0.65s ease backwards;
}

.features-bento .bento-hero { animation-delay: 0s; }
.features-bento .bento-small-1 { animation-delay: 0.1s; }
.features-bento .bento-small-2 { animation-delay: 0.18s; }
.features-bento .bento-wide { animation-delay: 0.26s; }

.bento-cell:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.bento-small:hover,
.bento-wide:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

.bento-hero:hover {
    border-color: rgba(251, 191, 36, 0.22);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(251, 191, 36, 0.08);
}

.bento-hero:hover .bento-hero-img {
    transform: scale(1.1);
}

.bento-hero {
    grid-row: 1 / 3;
    grid-column: 1;
    min-height: 400px;
    display: flex;
    align-items: stretch;
}

.bento-hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bento-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    transform: scale(1.04);
    transition: transform 0.6s ease;
    animation: bento-img-float 8s ease-in-out infinite;
}

.bento-hero-visual-fade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right, rgba(15, 14, 11, 0.96) 0%, rgba(15, 14, 11, 0.9) 22%, rgba(15, 14, 11, 0.55) 42%, rgba(15, 14, 11, 0.2) 62%, rgba(15, 14, 11, 0.05) 80%, transparent 100%),
        linear-gradient(to top, rgba(15, 14, 11, 0.55) 0%, transparent 40%),
        linear-gradient(to bottom, rgba(15, 14, 11, 0.35) 0%, transparent 25%);
    pointer-events: none;
}

.bento-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.45;
}

.bento-hero-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 70% 60% at 75% 40%, rgba(251, 191, 36, 0.07) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(251, 191, 36, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.bento-hero-letter {
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
    font-size: clamp(6rem, 16vw, 10rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    z-index: 1;
}

.bento-hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem 2rem 2.25rem;
    width: 100%;
    max-width: 54%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.bento-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 999px;
    color: var(--sm-accent);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bento-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
    font-weight: 800 !important;
    color: var(--sm-text-primary) !important;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    max-width: 90%;
}

.bento-hero-desc {
    color: var(--sm-text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 78%;
}

.bento-hero-label {
    color: var(--sm-text-muted);
    font-weight: 500;
}

.bento-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #fde047 0%, #fbbf24 50%, #f59e0b 100%);
    color: #0f0e0b !important;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: filter 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.bento-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.45) 0%, transparent 65%);
    opacity: 0;
    transform: scale(0.4);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.bento-cta:active::before {
    opacity: 1;
    transform: scale(2);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.bento-cta:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(251, 191, 36, 0.42);
    color: #0f0e0b !important;
}

.bento-cta:active {
    transform: scale(0.96) translateY(0);
    filter: brightness(0.97);
    box-shadow: 0 2px 12px rgba(251, 191, 36, 0.25);
    transition-duration: 0.1s;
}

.bento-cta-arrow {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bento-cta:hover .bento-cta-arrow {
    transform: translateX(3px);
}

.bento-small {
    padding: 1.65rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 190px;
}

.bento-small-1 { grid-column: 2; grid-row: 1; }
.bento-small-2 { grid-column: 3; grid-row: 1; }

.bento-wide {
    grid-column: 2 / 4;
    grid-row: 2;
    padding: 1.5rem;
}

.bento-watermark-icon {
    position: absolute;
    right: 0.75rem;
    bottom: 0.25rem;
    font-size: 5rem;
    color: rgba(251, 191, 36, 0.07);
    pointer-events: none;
    line-height: 1;
}

.bento-small-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.22);
    border-radius: 10px;
    color: var(--sm-accent);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.bento-small-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--sm-text-primary) !important;
    margin-bottom: 0.5rem;
}

.bento-small-desc {
    font-size: 0.825rem;
    color: var(--sm-text-secondary);
    line-height: 1.55;
    margin: 0;
    max-width: 95%;
}

.bento-wide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 100%;
    position: relative;
    z-index: 1;
}

.bento-wide-text {
    flex: 1;
    min-width: 0;
}

.bento-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex-shrink: 0;
}

.pay-pill {
    padding: 0.45rem 0.85rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sm-text-primary);
    white-space: nowrap;
}

.pay-pill-accent {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.35);
    color: var(--sm-accent);
}

@media (max-width: 991px) {
    .features-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-hero,
    .bento-small-1,
    .bento-small-2,
    .bento-wide {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .bento-hero {
        min-height: 380px;
    }

    .bento-hero-visual-fade {
        background:
            linear-gradient(to right, rgba(15, 14, 11, 0.94) 0%, rgba(15, 14, 11, 0.75) 35%, rgba(15, 14, 11, 0.35) 65%, rgba(15, 14, 11, 0.1) 100%),
            linear-gradient(to top, rgba(15, 14, 11, 0.65) 0%, transparent 45%);
    }

    .bento-hero-content {
        max-width: 100%;
    }

    .bento-wide-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* FAQ */
.faq .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq .accordion-item {
    background: var(--sm-bg-elevated) !important;
    border: 1px solid var(--sm-border) !important;
    border-radius: 14px !important;
    margin-bottom: 0.85rem;
    overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
    animation: faq-fade-in 0.55s ease backwards;
}

.faq .accordion-item:nth-child(1) { animation-delay: 0.05s; }
.faq .accordion-item:nth-child(2) { animation-delay: 0.12s; }
.faq .accordion-item:nth-child(3) { animation-delay: 0.19s; }
.faq .accordion-item:nth-child(4) { animation-delay: 0.26s; }
.faq .accordion-item:nth-child(5) { animation-delay: 0.33s; }

.faq .accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.14) !important;
    transform: translateY(-2px);
}

.faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(251, 191, 36, 0.35) !important;
    box-shadow: 0 4px 28px rgba(251, 191, 36, 0.12), 0 0 0 1px rgba(251, 191, 36, 0.06);
    transform: translateY(-1px);
}

.faq .accordion-button {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1.5rem;
    background: transparent !important;
    color: var(--sm-text-primary) !important;
    font-weight: 500;
    font-size: 0.975rem;
    padding: 1.25rem 1.5rem !important;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
    transition: color 0.25s ease, background 0.25s ease, transform 0.2s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.faq .accordion-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--faq-ripple-x, 50%) var(--faq-ripple-y, 50%), rgba(251, 191, 36, 0.18) 0%, transparent 55%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.faq .accordion-button.faq-ripple::before {
    opacity: 1;
    transform: scale(2.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq .accordion-button:active {
    transform: scale(0.985);
}

.faq .accordion-button:not(.collapsed) {
    color: var(--sm-accent) !important;
    background: rgba(251, 191, 36, 0.04) !important;
}

.faq .accordion-button::after {
    display: none !important;
}

.faq .faq-question {
    text-align: left;
    line-height: 1.45;
    flex: 1;
    transition: color 0.25s ease;
}

.faq .accordion-button:hover .faq-question {
    color: var(--sm-accent) !important;
}

.faq .faq-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
    color: var(--sm-accent);
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 8px;
    opacity: 0.85;
    transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.faq .accordion-button:not(.collapsed) .faq-chevron {
    transform: rotate(180deg);
    opacity: 1;
    background: rgba(251, 191, 36, 0.18);
    border-color: rgba(251, 191, 36, 0.35);
}

.faq .accordion-collapse.collapsing {
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.faq .accordion-collapse.show .accordion-body {
    animation: faq-body-in 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.faq .accordion-body {
    color: var(--sm-text-secondary);
    padding: 0 1.5rem 1.35rem 1.65rem;
    font-size: 0.9rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Section label with lines */
.section-label-lined {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
}

.section-label-lined::before,
.section-label-lined::after {
    content: '';
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.35), transparent);
}

/* How it works */
.how-it-works {
    margin-top: 5rem;
    padding-top: 3.5rem;
    border-top: 1px solid var(--sm-border);
    text-align: center;
}

.how-it-works .section-subtitle {
    margin-bottom: 3rem !important;
}

.steps-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.steps-path {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 0;
    padding: 0 1.5rem;
    margin-bottom: 1.75rem;
}

.step-node {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--sm-accent);
    color: #0f0e0b;
    font-weight: 800;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 28px rgba(251, 191, 36, 0.4);
    flex-shrink: 0;
    animation: step-glow 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.steps-path .step-node:nth-child(1) { animation-delay: 0s; }
.steps-path .step-node:nth-child(3) { animation-delay: 1s; }
.steps-path .step-node:nth-child(5) { animation-delay: 2s; }

.step-node:hover {
    transform: scale(1.1);
}

.step-path-line {
    height: 2px;
    margin: 0 0.5rem;
    background: repeating-linear-gradient(
        90deg,
        rgba(251, 191, 36, 0.45) 0,
        rgba(251, 191, 36, 0.45) 6px,
        transparent 6px,
        transparent 12px
    );
    background-size: 12px 2px;
    animation: dash-flow 1.2s linear infinite;
}

.steps-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.step-col {
    padding: 0 0.75rem;
    animation: step-col-in 0.6s ease backwards;
}

.step-col:nth-child(1) { animation-delay: 0.25s; }
.step-col:nth-child(2) { animation-delay: 0.4s; }
.step-col:nth-child(3) { animation-delay: 0.55s; }

.step-title {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: var(--sm-text-primary) !important;
    margin-bottom: 0.6rem;
}

.step-desc {
    font-size: 0.825rem;
    color: var(--sm-text-secondary);
    line-height: 1.6;
    margin: 0;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .steps-path {
        display: none;
    }

    .steps-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .step-col::before {
        content: attr(data-step);
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background: var(--sm-accent);
        color: #0f0e0b;
        font-weight: 800;
        font-size: 1.05rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        box-shadow: 0 0 28px rgba(251, 191, 36, 0.4);
        animation: step-glow 3s ease-in-out infinite;
    }
}

@keyframes bento-fade-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bento-img-float {
    0%, 100% { transform: scale(1.04); }
    50% { transform: scale(1.07); }
}

@keyframes dash-flow {
    0% { background-position: 0 0; }
    100% { background-position: 12px 0; }
}

@keyframes step-glow {
    0%, 100% { box-shadow: 0 0 24px rgba(251, 191, 36, 0.35); }
    50% { box-shadow: 0 0 40px rgba(251, 191, 36, 0.6); }
}

@keyframes step-col-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes faq-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes faq-body-in {
    from {
        opacity: 0;
        transform: translateY(-8px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bento-cell,
    .bento-hero-img,
    .step-path-line,
    .step-node,
    .step-col,
    .step-col::before,
    .faq .accordion-item,
    .faq .accordion-collapse .accordion-body {
        animation: none !important;
        transition: none !important;
    }
}

/* Socials / Discord CTA */
.socials {
    text-align: center;
}

.socials .section-title h2 {
    font-size: 2rem !important;
}

.socials .list {
    justify-content: center !important;
}

.socials .social {
    background: var(--sm-accent) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 1rem 2rem !important;
    color: #0f0e0b !important;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.socials .social:hover {
    background: var(--sm-accent-hover) !important;
    transform: translateY(-2px);
    color: #0f0e0b !important;
}

/* Text & Video block */
.text-video-block .video-wrapper {
    border-radius: 12px;
    padding: 4px;
    background: linear-gradient(135deg, #ef4444, #ec4899);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.25);
}

.text-video-block .video-wrapper iframe {
    border-radius: 8px;
}

/* Buttons */
.btn {
    border-radius: 10px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: all 0.2s ease !important;
}

.btn-primary,
.btn-primary:active,
.btn-primary:focus {
    background: var(--sm-accent) !important;
    border: none !important;
    color: #0f0e0b !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.25) !important;
}

.btn-primary:hover {
    background: var(--sm-accent-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.35) !important;
    color: #0f0e0b !important;
}

.btn-outline-primary {
    border: 1px solid var(--sm-border) !important;
    color: var(--sm-text-primary) !important;
    background: var(--sm-bg-elevated) !important;
}

.btn-outline-primary:hover {
    border-color: var(--sm-border-accent) !important;
    color: var(--sm-text-primary) !important;
    background: rgba(251, 191, 36, 0.08) !important;
}

/* Footer */
.footer {
    background: var(--sm-bg-deep) !important;
    border-top: 1px solid var(--sm-border) !important;
    padding: 3rem 0 2rem !important;
}

.footer h5 {
    color: var(--sm-text-primary) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem !important;
}

.footer .nav-link {
    color: var(--sm-text-muted) !important;
    font-size: 0.875rem;
    padding: 0.25rem 0 !important;
    transition: color 0.2s ease;
}

.footer .nav-link:hover {
    color: var(--sm-text-primary) !important;
    transform: none;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding-top: 1.5rem;
}

@media (min-width: 992px) {
    .footer-brand {
        align-items: flex-end;
        text-align: right;
        padding-top: 0;
    }
}

.footer-brand-top {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

@media (min-width: 992px) {
    .footer-brand-top {
        justify-content: flex-end;
    }
}

.footer-brand-logo {
    max-height: 38px;
    width: auto;
    display: block;
}

.footer-brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--sm-text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.footer-brand-tagline {
    margin: 0;
    color: var(--sm-text-muted);
    font-size: 0.875rem;
    line-height: 1.55;
    max-width: 320px;
}

@media (min-width: 992px) {
    .footer-brand-tagline {
        margin-left: auto;
    }
}

.footer-brand-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .footer-brand-bottom {
        justify-content: flex-end;
    }
}

.footer-brand-copy {
    margin: 0;
    color: var(--sm-text-muted);
    font-size: 0.8rem;
    white-space: nowrap;
}

.footer-brand-socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 9px;
    background: var(--sm-bg-elevated);
    border: 1px solid var(--sm-border);
    color: var(--sm-text-secondary);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-brand-socials a:hover {
    color: var(--sm-accent);
    border-color: var(--sm-border-accent);
    background: rgba(251, 191, 36, 0.08);
    transform: translateY(-1px);
}

.footer-brand-socials svg {
    width: 1rem;
    height: 1rem;
}

/* Forms & Modals */
.form-control,
.form-select,
.choices__inner {
    background-color: var(--sm-bg-elevated) !important;
    border: 1px solid var(--sm-border) !important;
    color: #fff !important;
    border-radius: 10px !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--sm-accent) !important;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.15) !important;
}

.modal-content {
    background: var(--sm-bg-elevated) !important;
    border: 1px solid var(--sm-border) !important;
    border-radius: 16px !important;
}

/* Feedback page */
.feedback-page-wrap .section-header {
    text-align: center;
}

.review-card,
.review-card .header,
.review-card .content,
.review-card .footer,
.reviews-grid {
    text-align: left !important;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 0.5rem;
    width: 100%;
}

.review-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    height: 100%;
    overflow: hidden;
}

.review-card .main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.review-card .header-top {
    align-items: flex-start;
}

.review-card .header-meta {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
}

@media (min-width: 420px) {
    .review-card .header-meta {
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
    }
}

.review-card .review-text {
    color: var(--sm-text-primary);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
    word-break: break-word;
    text-align: left;
}

.review-card .content .reply {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: left;
}

.review-card .content .reply .text {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    padding-left: 0.5rem;
    border-left: 2px solid var(--sm-accent);
}

.review-card .footer .items {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
    color: var(--sm-text-muted);
}

.review-card .footer .date {
    flex-shrink: 0;
    font-weight: 600;
    color: var(--sm-text-secondary);
    text-align: right;
}

.feedback-page .section-title h1,
.feedback-page-wrap .section-title h1 {
    font-size: clamp(1.85rem, 4vw, 2.35rem) !important;
    text-align: center !important;
    width: 100%;
}

/* Icon sizes (missing from theme) */
.size-5, .btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* Product page — SilentMafia style */
.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--sm-text-muted);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-breadcrumb a {
    color: var(--sm-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.product-breadcrumb a:hover {
    color: var(--sm-accent);
}

.product-breadcrumb .current {
    color: var(--sm-text-primary);
}

.product-breadcrumb .sep {
    opacity: 0.4;
}

.product-layout {
    align-items: flex-start;
}

.product-image-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--sm-border);
    background: #080807;
    margin-bottom: 1.25rem;
}

.product-image-card .carousel-inner,
.product-image-card .carousel-item,
.product-gallery-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #080807;
}

.product-gallery-media {
    width: 100%;
    height: 100%;
}

.product-main-image,
.product-gallery-image,
.product-image-card .carousel-inner img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.18);
    transition: transform 0.45s ease;
    padding: 0;
}

.product-image-card:hover .product-gallery-image,
.product-image-card:hover .product-main-image,
.product-image-card:hover .carousel-inner img {
    transform: scale(1.11);
}

.product-wrapper .thumbnails img {
    object-fit: cover;
    transform: none;
    width: 100%;
    height: 100%;
}

.product-wrapper .product-img-placeholder {
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-receive-card {
    background: var(--sm-bg-card);
    border: 1px solid var(--sm-border);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.product-receive-card .receive-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    color: var(--sm-text-primary);
    margin-bottom: 1rem;
}

.product-receive-card .receive-header svg {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--sm-accent);
}

.product-receive-card .receive-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.product-receive-card .receive-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--sm-text-secondary);
}

.product-receive-card .receive-list li svg {
    width: 1rem;
    height: 1rem;
    color: var(--sm-accent);
    flex-shrink: 0;
}

.product-purchase-panel {
    background: var(--sm-bg-card);
    border: 1px solid var(--sm-border);
    border-radius: 16px;
    padding: 1.75rem;
    align-self: flex-start;
    width: 100%;
}

.product-layout > .col-lg-6 {
    align-self: flex-start !important;
}

.product-purchase-panel form > .row {
    align-items: flex-start !important;
}

.product-badge-delivery {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(251, 191, 36, 0.15);
    color: var(--sm-accent);
    border: 1px solid rgba(251, 191, 36, 0.3);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.product-badge-delivery svg {
    width: 0.9rem;
    height: 0.9rem;
}

.product-title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: var(--sm-text-primary) !important;
    -webkit-text-fill-color: unset;
    margin-bottom: 1.25rem !important;
    line-height: 1.2;
}

.product-single-price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-single-price .price-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sm-accent);
}

.stock-pill,
.stock-glow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    line-height: 1.3;
    white-space: nowrap;
}

.stock-glow.in-stock,
.stock-pill.in-stock {
    background: rgba(6, 40, 30, 0.85);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.35);
    text-shadow: 0 0 8px rgba(52, 211, 153, 0.55), 0 0 18px rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.12);
}

.stock-glow.out-of-stock,
.stock-pill.out-stock {
    background: rgba(40, 10, 10, 0.85);
    color: #ff6b6b;
    border: 1px solid rgba(239, 68, 68, 0.4);
    text-shadow: 0 0 8px rgba(255, 107, 107, 0.7), 0 0 18px rgba(239, 68, 68, 0.35);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.18);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.stock-pill.on-hold {
    background: rgba(40, 32, 6, 0.85);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.35);
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.12);
}

.product-purchase-panel .form-label {
    color: var(--sm-text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.product-wrapper .variants {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 0.35rem !important;
    align-items: stretch !important;
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.product-wrapper .variants .variant {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 0.75rem !important;
    flex: 0 0 auto !important;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    background: var(--sm-bg-elevated) !important;
    border: 1px solid var(--sm-border) !important;
    border-radius: 10px !important;
    padding: 0.75rem 0.875rem !important;
    color: var(--sm-text-primary) !important;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
    width: 100%;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
}

.product-wrapper .variants .variant:not(.out-of-stock):not(.active):hover {
    border-color: rgba(251, 191, 36, 0.3) !important;
    background: rgba(251, 191, 36, 0.04) !important;
}

.product-wrapper .variants .variant:not(.out-of-stock):active {
    transform: scale(0.985);
}

.product-wrapper .variants .variant.active {
    border-color: rgba(251, 191, 36, 0.35) !important;
    background: rgba(251, 191, 36, 0.08) !important;
    box-shadow: none !important;
    color: var(--sm-text-primary) !important;
}

.product-wrapper .variants .variant.active .name {
    color: var(--sm-accent-light) !important;
}

.product-wrapper .variants .variant.active .stock,
.product-wrapper .variants .variant.active .description {
    color: var(--sm-text-secondary) !important;
}

.product-wrapper .variants .variant.active .price {
    background: var(--sm-accent) !important;
    border-color: var(--sm-accent) !important;
    color: #0f0e0b !important;
    font-weight: 800 !important;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.25);
}

.product-wrapper .variants .variant-radio {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.product-wrapper .variants .variant-radio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transform: scale(0);
    transition: transform 0.2s ease, background 0.2s ease;
}

.product-wrapper .variants .variant-radio.checked,
.product-wrapper .variants .variant.active .variant-radio {
    border-color: var(--sm-accent);
    background: rgba(251, 191, 36, 0.15);
}

.product-wrapper .variants .variant-radio.checked .variant-radio-dot,
.product-wrapper .variants .variant.active .variant-radio-dot {
    background: var(--sm-accent);
    transform: scale(1);
}

.product-wrapper .variants .variant .name {
    font-weight: 600;
    color: var(--sm-text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
    transition: color 0.25s ease;
}

.product-wrapper .variants .variant .stock {
    font-size: 0.75rem;
    color: var(--sm-text-muted) !important;
    margin-bottom: 0;
}

.product-wrapper .variants .variant .stock .stock-glow {
    margin-top: 0.15rem;
}

.product-wrapper .variants .variant .stock.out-of-stock,
.product-wrapper .variants .variant.out-of-stock .stock {
    color: inherit !important;
}

.product-wrapper .variants .variant.active .stock .stock-glow.in-stock {
    background: rgba(6, 40, 30, 0.9);
    color: #34d399 !important;
    text-shadow: 0 0 8px rgba(52, 211, 153, 0.55);
}

.product-wrapper .variants .variant.out-of-stock {
    opacity: 0.75;
    cursor: not-allowed;
}

.product-wrapper .variants .variant.out-of-stock:hover {
    border-color: var(--sm-border) !important;
}

.product-wrapper .variants .variant .price {
    color: var(--sm-accent) !important;
    font-weight: 700;
    background: rgba(251, 191, 36, 0.1) !important;
    border: 1px solid rgba(251, 191, 36, 0.25) !important;
    padding: 0.35rem 0.65rem !important;
    border-radius: 8px !important;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.product-wrapper .variants .variant .name-stock {
    text-align: left;
    flex: 1;
    min-width: 0;
    padding-right: 0.5rem;
}

.product-wrapper .variants .variant .name-stock p {
    margin-bottom: 0;
}

.product-wrapper .variants .variant .description {
    font-size: 0.75rem;
    margin-top: 0.15rem;
    line-height: 1.3;
}

.product-wrapper .variants .variant .active-indicator {
    display: none;
}

.product-wrapper .input-group {
    max-width: 200px;
    border: 1px solid var(--sm-border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--sm-bg-elevated);
}

.product-wrapper .input-group .form-control {
    text-align: center;
    font-weight: 600;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.product-wrapper .input-group .input-group-btn {
    background: transparent !important;
    border: none !important;
    color: var(--sm-text-secondary) !important;
    padding: 0.5rem 0.75rem !important;
}

.product-wrapper .input-group .input-group-btn svg {
    width: 1.1rem;
    height: 1.1rem;
}

.product-wrapper .input-group .input-group-btn:hover {
    color: var(--sm-accent) !important;
    background: rgba(251, 191, 36, 0.08) !important;
}

.product-wrapper .buy-buttons .btn {
    padding: 0.875rem 1.25rem !important;
    font-size: 0.95rem !important;
    border-radius: 12px !important;
    height: auto !important;
    min-height: unset !important;
}

.product-wrapper .buy-buttons .btn-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-wrapper .btn-add-cart {
    background: var(--sm-accent) !important;
    border: none !important;
    color: #0f0e0b !important;
    font-weight: 700 !important;
}

.product-wrapper .btn-add-cart:hover {
    background: var(--sm-accent-hover) !important;
}

.product-wrapper .btn-buy-now {
    background: var(--sm-bg-elevated) !important;
    border: 1px solid var(--sm-border) !important;
    color: var(--sm-text-primary) !important;
    box-shadow: none !important;
}

.product-wrapper .btn-buy-now:hover {
    border-color: var(--sm-border-accent) !important;
    background: rgba(251, 191, 36, 0.08) !important;
    transform: none;
}

.product-description-section {
    margin-top: 1rem;
}

.product-wrapper .product-tabs .btn-primary {
    background: var(--sm-accent) !important;
    border-color: var(--sm-accent) !important;
}

.product-wrapper .product-tabs .btn-outline-primary {
    border-color: var(--sm-border) !important;
    color: var(--sm-text-secondary) !important;
}

.product-wrapper .editor {
    color: var(--sm-text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Product info cards — Opis / Prezentacja */
.product-info-card {
    background: var(--sm-bg-card);
    border: 1px solid var(--sm-border);
    border-radius: 14px;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.product-info-card .info-card-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--sm-border);
    font-weight: 600;
    font-size: 1rem;
    color: var(--sm-text-primary);
}

.product-info-card .info-card-header svg {
    width: 1.15rem;
    height: 1.15rem;
    color: var(--sm-accent);
    flex-shrink: 0;
}

.product-showcase-card .info-card-header svg {
    color: #ef4444;
}

.product-info-card .info-card-body {
    padding: 1.25rem;
}

.product-info-card .editor {
    color: var(--sm-text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    text-align: left;
}

.product-info-card .editor p {
    margin-bottom: 0.75rem;
}

.product-info-card .editor p:last-child {
    margin-bottom: 0;
}

.product-info-card .editor a {
    color: var(--sm-accent) !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.product-info-card .editor a:hover {
    color: var(--sm-accent-hover) !important;
}

.product-showcase-card .editor iframe,
.product-info-card .editor iframe {
    width: 100% !important;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 10px;
    display: block;
    margin-top: 0.5rem;
}

.product-gallery-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-layout {
    max-width: auto;
    min-width: auto;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.products .col-md-6,
.products .col-lg-4,
.products .col-xl-3 {
    animation: fadeInUp 0.5s ease-out backwards;
}

.products .col-md-6:nth-child(1),
.products .col-lg-4:nth-child(1) { animation-delay: 0.05s; }
.products .col-md-6:nth-child(2),
.products .col-lg-4:nth-child(2) { animation-delay: 0.1s; }
.products .col-md-6:nth-child(3),
.products .col-lg-4:nth-child(3) { animation-delay: 0.15s; }
.products .col-md-6:nth-child(4),
.products .col-lg-4:nth-child(4) { animation-delay: 0.2s; }

@media (max-width: 991px) {
    .hero .content h1 {
        font-size: 2rem !important;
    }

    .section-title h1,
    .section-title h2 {
        font-size: 1.75rem !important;
    }
}

/* Nadpisanie ciemnych stylów z pro.css */
html,
body,
.bg-body {
    background-color: var(--sm-bg-deep) !important;
    color: var(--sm-text-primary) !important;
}

a {
    color: var(--sm-accent);
}

a:hover {
    color: var(--sm-accent-hover);
}

.card,
.dropdown-menu {
    background-color: var(--sm-bg-card) !important;
    border-color: var(--sm-border) !important;
    color: var(--sm-text-primary) !important;
}

.dropdown-item {
    color: var(--sm-text-primary) !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--sm-bg-elevated) !important;
    color: var(--sm-text-primary) !important;
}

/* Section headers — force center over pro.css flex layout */
.section-header,
.component .section-header,
section.component .section-header,
section.container .section-header,
.text-block .section-header,
.feedback-page-section .section-header {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

.section-label,
.section-header .section-label,
.component .section-label {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

.section-title,
.section-header .section-title,
.component .section-title,
section.component .section-title,
section.container .section-title,
.text-block .section-title,
.how-it-works .section-title {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
}

.section-title h1,
.section-title h2,
.section-header .section-title h1,
.section-header .section-title h2,
.component .section-title h1,
.component .section-title h2 {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section-subtitle,
.section-header .section-subtitle,
.component .section-subtitle,
.how-it-works .section-subtitle {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Review cards — never inherit centered section text */
.feedback-page-section .reviews-grid,
.feedback-page-section .testimonial,
.feedback-page-section .review-card,
.feedbacks-section .testimonial,
.feedbacks-section .marquee-testimonial {
    text-align: left !important;
}

.testimonial .header > .review-date {
    text-align: right !important;
    width: 100%;
}