.app-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2000;
    min-height: 82px;
    background: rgba(8, 8, 12, 0.82);
    border-top: 0;
    border-right: 0;
    border-left: 0;
    transition:
        background-color var(--transition),
        box-shadow var(--transition);
}

.app-header.scrolled {
    background: rgba(8, 8, 12, 0.96);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.28);
}

.header-container {
    min-height: 82px;
    display: grid;
    grid-template-columns:
        auto
        minmax(300px, 620px)
        auto;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.brand-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            135deg,
            rgba(124, 58, 237, 0.25),
            rgba(139, 92, 246, 0.08)
        );
    color: var(--purple-400);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    box-shadow:
        0 10px 25px rgba(124, 58, 237, 0.14);
}

.brand-name {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.8px;
}

.brand-name strong {
    color: var(--purple-400);
}

.header-search {
    height: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 17px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-soft);
    border-radius: 15px;
    transition:
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.header-search:focus-within {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(139, 92, 246, 0.62);
    box-shadow:
        0 0 0 4px rgba(124, 58, 237, 0.1);
}

.header-search > i {
    color: var(--text-muted);
}

.header-search input {
    min-width: 0;
    flex: 1;
    height: 100%;
    background: transparent;
    color: var(--text-primary);
    border: 0;
    outline: 0;
    font-size: 14px;
}

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

.header-search button {
    width: 48px;
    height: 48px;
    background: transparent;
    color: var(--text-muted);
    border-radius: 13px;
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.header-action {
    position: relative;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    cursor: pointer;
    font-size: 18px;
    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast);
}

.header-action:hover {
    background: rgba(124, 58, 237, 0.12);
    color: var(--purple-300);
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-2px);
}

.action-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    padding: 0 5px;
    background: var(--purple-600);
    color: var(--white);
    border: 3px solid var(--black-950);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
}

.hero-section {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 145px 0 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 54px 54px;
    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
}

.hero-orb-one {
    top: 5%;
    right: 7%;
    width: 430px;
    height: 430px;
    background: rgba(124, 58, 237, 0.2);
}

.hero-orb-two {
    bottom: 5%;
    left: 8%;
    width: 340px;
    height: 340px;
    background: rgba(76, 29, 149, 0.14);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);
    align-items: center;
    gap: 80px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 9px 14px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--purple-300);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(50px, 6vw, 86px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -4.8px;
}

.hero-content h1 span {
    display: block;
    color: transparent;
    background:
        linear-gradient(
            135deg,
            var(--purple-400),
            var(--purple-300)
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-content > p {
    max-width: 620px;
    margin-bottom: 32px;
    color: var(--text-secondary);
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 42px;
}

.hero-benefits > div {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
}

.hero-benefits i {
    color: var(--purple-400);
    font-size: 18px;
}

.hero-benefits span {
    display: flex;
    flex-direction: column;
    color: var(--text-muted);
    font-size: 9px;
}

.hero-benefits strong {
    color: var(--text-primary);
    font-size: 11px;
}

.hero-showcase {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    perspective: 1200px;
}

.showcase-glow {
    position: absolute;
    width: 74%;
    height: 74%;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 50%;
    filter: blur(90px);
}

.showcase-card {
    position: relative;
    z-index: 2;
    width: min(420px, 86%);
    padding: 16px;
    border-radius: 28px;
    transform:
        rotateY(-7deg)
        rotateX(3deg);
    transition:
        transform var(--transition-slow),
        box-shadow var(--transition);
    will-change: transform;
}

.showcase-card:hover {
    transform:
        rotateY(0)
        rotateX(0)
        translateY(-8px);
    box-shadow:
        var(--shadow-large),
        var(--shadow-purple);
}

.showcase-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 4px 13px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 750;
}

.showcase-card-top span:first-child {
    color: var(--purple-300);
}

.showcase-image {
    aspect-ratio: 0.92 / 1;
    overflow: hidden;
    background:
        radial-gradient(
            circle at center,
            rgba(124, 58, 237, 0.12),
            transparent 65%
        ),
        var(--black-850);
    border-radius: 20px;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 700ms ease;
}

.showcase-card:hover img {
    transform: scale(1.045);
}

.showcase-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 4px 4px;
}

.showcase-content span {
    color: var(--purple-400);
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
}

.showcase-content h2 {
    margin-top: 4px;
    font-size: 20px;
}

.showcase-content > strong {
    white-space: nowrap;
    font-size: 18px;
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 15px;
}

.floating-card i {
    color: var(--purple-400);
}

.floating-card span {
    display: flex;
    flex-direction: column;
    color: var(--text-muted);
    font-size: 9px;
}

.floating-card strong {
    color: var(--text-primary);
    font-size: 11px;
}

.floating-card-one {
    top: 17%;
    left: 0;
}

.floating-card-two {
    right: 0;
    bottom: 18%;
}

.categories-section,
.catalog-section {
    padding: 90px 0;
}

.categories-section {
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(124, 58, 237, 0.025),
            transparent
        );
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.section-heading.compact {
    margin-bottom: 0;
}

.section-kicker {
    display: block;
    margin-bottom: 6px;
    color: var(--purple-400);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: clamp(30px, 4vw, 42px);
    letter-spacing: -1.7px;
}

.section-heading p {
    margin-top: 7px;
    color: var(--text-muted);
    font-size: 13px;
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 12px;
    font-weight: 750;
    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.text-button:hover {
    color: var(--purple-300);
    transform: translateX(3px);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.category-card {
    position: relative;
    min-height: 178px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    cursor: pointer;
    transform-style: preserve-3d;
    transition:
        transform var(--transition),
        border-color var(--transition-fast),
        box-shadow var(--transition);
}

.category-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: var(--purple-600);
    border-radius: 50%;
    filter: blur(55px);
    opacity: 0.08;
    transition: opacity var(--transition);
}

.category-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-7px);
    box-shadow: var(--shadow-purple);
}

.category-card:hover::before {
    opacity: 0.24;
}

.category-card.active {
    background:
        linear-gradient(
            145deg,
            rgba(124, 58, 237, 0.18),
            rgba(139, 92, 246, 0.055)
        );
    border-color: rgba(139, 92, 246, 0.58);
}

.category-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(124, 58, 237, 0.11);
    color: var(--purple-400);
    border: 1px solid rgba(139, 92, 246, 0.17);
    border-radius: 14px;
    font-size: 19px;
}

.category-card h3 {
    font-size: 16px;
}

.category-card p {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 10px;
}

.category-count {
    color: var(--purple-400);
    font-size: 9px;
    font-weight: 750;
}

.catalog-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.catalog-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-button,
.view-button {
    min-height: 42px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-secondary);
    border: 1px solid var(--border-soft);
    cursor: pointer;
    transition:
        background-color var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.filter-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 750;
}

.filter-button:hover,
.view-button:hover,
.view-button.active {
    background: rgba(124, 58, 237, 0.13);
    color: var(--purple-300);
    border-color: rgba(139, 92, 246, 0.3);
}

.view-switcher {
    display: flex;
    padding: 4px;
    background: var(--black-850);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
}

.view-button {
    width: 36px;
    min-height: 34px;
    border: 0;
    border-radius: 8px;
}

.active-filter {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 10px 8px 13px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--purple-300);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 750;
}

.active-filter button {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.05);
    color: inherit;
    border-radius: 50%;
    cursor: pointer;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.product-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.015)
        ),
        var(--black-850);
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    transform-style: preserve-3d;
    transition:
        transform var(--transition),
        border-color var(--transition-fast),
        box-shadow var(--transition);
        will-change: transform;
isolation: isolate;
}

.product-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at var(--mx,50%) var(--my,50%),
            rgba(139,92,246,.12),
            transparent 42%
        );
    opacity:0;
    transition:opacity .35s ease;
    pointer-events:none;
    z-index:0;
}

.product-card:hover::before{
    opacity:1;
}

.product-card:hover{
    border-color:rgba(139,92,246,.42);
    transform:
        translateY(-10px)
        scale(1.015);

    box-shadow:
        0 32px 70px rgba(0,0,0,.45),
        0 0 42px rgba(139,92,246,.12);
}

.product-image {
    position: relative;
    aspect-ratio: 1 / 1.08;
    overflow: hidden;
    background: var(--black-800);
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
   transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 320ms ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
    filter:
        brightness(1.04)
        contrast(1.03)
        saturate(1.06);
}

.product-content {
    position: relative;
    z-index: 3;
}

.product-badges,
.favorite-button,
.product-overlay {
    z-index: 4;
}
.product-badges {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-badge {
    padding: 6px 8px;
    background: rgba(5, 5, 7, 0.8);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.4px;
    backdrop-filter: blur(8px);
}

.favorite-button {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: rgba(5, 5, 7, 0.72);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition:
        background-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.favorite-button:hover {
    transform: scale(1.06);
}

.favorite-button.active {
    background: rgba(124, 58, 237, 0.85);
    color: var(--white);
}

.product-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            to top,
            rgba(5, 5, 7, 0.38),
            transparent 70%
        );
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-button {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--black-950);
    border-radius: 11px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    transform: translateY(14px);
    transition:
        transform var(--transition),
        background-color var(--transition-fast),
        color var(--transition-fast);
}

.product-card:hover .quick-view-button {
    transform: translateY(0);
}

.quick-view-button:hover {
    background: var(--purple-600);
    color: var(--white);
}

.product-content {
    padding: 17px;
}

.product-category {
    color: var(--purple-400);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.product-content h3 {
    min-height: 46px;
    margin: 7px 0 10px;
    font-size: 15px;
    line-height: 1.45;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.product-type {
    color: var(--text-muted);
    font-size: 9px;
}

.product-price {
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 8px;
}

.buy-button {
    position: relative;
    min-height: 44px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            var(--purple-700),
            var(--purple-500)
        );
    color: var(--white);
    border-radius: 11px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition);
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 30px rgba(124, 58, 237, 0.28);
}

.details-button {
    min-height: 44px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    border: 1px solid var(--border-soft);
    border-radius: 11px;
    cursor: pointer;
}

.products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 240px 1fr;
}

.products-grid.list-view .product-image {
    min-height: 240px;
    aspect-ratio: auto;
}

.products-grid.list-view .product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px;
}

.products-grid.list-view .product-content h3 {
    min-height: 0;
    font-size: 21px;
}

.products-grid.list-view .product-actions {
    max-width: 320px;
}

.skeleton-card {
    min-height: 440px;
    overflow: hidden;
    background: var(--black-850);
    border: 1px solid var(--border-soft);
    border-radius: 22px;
}

.skeleton {
    position: relative;
    overflow: hidden;
    background: var(--black-750);
}

.skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.045),
            transparent
        );
    transform: translateX(-100%);
    animation: skeletonShine 1.4s infinite;
}

@keyframes skeletonShine {
    to {
        transform: translateX(100%);
    }
}

.skeleton-image {
    height: 310px;
}

.skeleton-line {
    height: 12px;
    margin: 14px 16px 0;
    border-radius: 8px;
}

.skeleton-line.short {
    width: 42%;
}

.skeleton-line.medium {
    width: 70%;
}

.empty-state {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--black-850);
    border: 1px dashed var(--border-medium);
    border-radius: 22px;
    text-align: center;
}

.empty-state-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--purple-400);
    border-radius: 20px;
    font-size: 27px;
}

.empty-state h3 {
    margin-bottom: 7px;
    font-size: 21px;
}

.empty-state p {
    max-width: 420px;
    margin-bottom: 23px;
    color: var(--text-muted);
    font-size: 12px;
}

.drawer-empty {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-align: center;
}

.drawer-empty i {
    margin-bottom: 14px;
    color: var(--purple-500);
    font-size: 42px;
    opacity: 0.55;
}

.drawer-empty h3 {
    color: var(--text-secondary);
    font-size: 16px;
}

.drawer-empty p {
    margin-top: 5px;
    font-size: 11px;
}

.drawer-item {
    display: grid;
    grid-template-columns: 74px 1fr auto;
    gap: 12px;
    margin-bottom: 11px;
    padding: 11px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
}

.drawer-item img {
    width: 74px;
    height: 86px;
    object-fit: cover;
    border-radius: 10px;
}

.drawer-item h3 {
    margin-bottom: 4px;
    font-size: 12px;
}

.drawer-item p {
    color: var(--text-muted);
    font-size: 9px;
}

.drawer-item strong {
    display: block;
    margin-top: 6px;
    font-size: 12px;
}

.drawer-item-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.drawer-item-actions button {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border-radius: 9px;
    cursor: pointer;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    padding: 3px;
    background: var(--black-950);
    border: 1px solid var(--border-soft);
    border-radius: 9px;
}

.quantity-control button {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
    border-radius: 7px;
    cursor: pointer;
}

.quantity-control span {
    min-width: 18px;
    text-align: center;
    font-size: 10px;
    font-weight: 750;
}

.categories-modal {
    position: fixed;
    inset: 0;
    z-index: 6000;
    visibility: hidden;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    transition:
        opacity var(--transition),
        visibility var(--transition);
}

.categories-modal.open {
    visibility: visible;
    opacity: 1;
}

.categories-modal-card {
    width: min(930px, 100%);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    padding: 22px;
    background: rgba(17, 17, 24, 0.96);
    border-radius: 25px;
    transform: translateY(18px) scale(0.98);
    transition: transform var(--transition-slow);
}

.categories-modal.open .categories-modal-card {
    transform: translateY(0) scale(1);
}

.modal-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--border-soft);
}

.modal-heading span {
    color: var(--purple-400);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.modal-heading h2 {
    margin-top: 4px;
    font-size: 24px;
}

.modal-heading button {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border-radius: 11px;
    cursor: pointer;
}

.categories-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
}

.modal-category-button {
    min-height: 78px;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    transition:
        transform var(--transition-fast),
        border-color var(--transition-fast),
        background-color var(--transition-fast);
}

.modal-category-button:hover,
.modal-category-button.active {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-2px);
}

.modal-category-button i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: rgba(124, 58, 237, 0.12);
    color: var(--purple-400);
    border-radius: 12px;
}

.modal-category-button strong,
.modal-category-button span {
    display: block;
}

.modal-category-button strong {
    font-size: 12px;
}

.modal-category-button span {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 9px;
}

@media (max-width: 1150px) {
    .hero-container {
        gap: 40px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .header-container {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 12px 0;
    }

    .header-search {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .hero-section {
        min-height: auto;
        padding-top: 165px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content > p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-benefits {
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-showcase {
        min-height: 520px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-modal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .app-header {
        min-height: 70px;
    }

    .header-container {
        min-height: 70px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-icon {
        width: 36px;
        height: 36px;
    }

    .header-action {
        width: 42px;
        height: 42px;
    }

    .hero-section {
        padding: 155px 0 55px;
    }

    .hero-content h1 {
        font-size: clamp(42px, 13vw, 60px);
        letter-spacing: -3px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .button {
        flex: 1;
        min-width: 150px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        min-height: 450px;
    }

    .showcase-card {
        width: 88%;
        transform: none;
    }

    .floating-card-one {
        top: 12%;
        left: 0;
    }

    .floating-card-two {
        right: 0;
        bottom: 12%;
    }

    .categories-section,
    .catalog-section {
        padding: 65px 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card {
        min-height: 145px;
        padding: 15px;
    }

    .catalog-toolbar,
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-controls {
        width: 100%;
        justify-content: space-between;
    }

    .products-grid {
        gap: 11px;
    }

    .product-card {
        border-radius: 17px;
    }

    .product-content {
        padding: 13px;
    }

    .product-content h3 {
        min-height: 40px;
        font-size: 13px;
    }

    .product-price {
        font-size: 16px;
    }

    .product-actions {
        grid-template-columns: 1fr 40px;
    }

    .buy-button,
    .details-button {
        min-height: 40px;
    }

    .products-grid.list-view .product-card {
        grid-template-columns: 120px 1fr;
    }

    .products-grid.list-view .product-image {
        min-height: 175px;
    }

    .products-grid.list-view .product-content {
        padding: 14px;
    }

    .categories-modal-grid {
        grid-template-columns: 1fr;
    }
}

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

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: 360px;
        margin: 0 auto;
    }
}
/* ============================================================
   AG.STOREEZ — BRAND EXPERIENCE 2.1
   ============================================================ */

.brand-icon {
    overflow: hidden;
    padding: 4px;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 8px;
    transition: transform var(--transition), filter var(--transition);
}

.brand:hover .brand-icon img {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.45));
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.header-social {
    text-decoration: none;
}

.instagram-action:hover {
    color: #f0abfc;
    border-color: rgba(217, 70, 239, 0.38);
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.14), rgba(124, 58, 237, 0.12));
}

.whatsapp-action:hover {
    color: #7cf0a3;
    border-color: rgba(37, 211, 102, 0.35);
    background: rgba(37, 211, 102, 0.1);
}

.hero-eyebrow {
    position: relative;
    overflow: hidden;
}

.hero-eyebrow::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -45%;
    width: 28%;
    height: 240%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
    transform: rotate(22deg);
    animation: brandEyebrowShine 4.8s ease-in-out infinite;
}

@keyframes brandEyebrowShine {
    0%, 62% { left: -45%; }
    82%, 100% { left: 135%; }
}

.store-footer {
    position: relative;
    padding: 66px 0 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 10%, rgba(124, 58, 237, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(8, 8, 12, 0.8), #050507);
    border-top: 1px solid var(--border-soft);
}

.store-footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.5fr) 0.75fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-image {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    padding: 5px;
    overflow: hidden;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 15px;
}

.footer-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.footer-logo strong,
.footer-logo small {
    display: block;
}

.footer-logo strong {
    color: var(--text-primary);
    font-size: 18px;
    letter-spacing: -0.5px;
}

.footer-logo small {
    margin-top: 3px;
    color: var(--purple-400);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.store-footer-brand p {
    max-width: 410px;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.store-footer-links,
.store-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.store-footer-links > strong,
.store-footer-contact > strong {
    margin-bottom: 5px;
    color: var(--text-primary);
    font-size: 11px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.store-footer-links a,
.store-footer-contact a {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 12px;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.store-footer-links a:hover,
.store-footer-contact a:hover {
    color: var(--purple-300);
    transform: translateX(3px);
}

.store-footer-contact a:last-child:hover {
    color: #7cf0a3;
}

.store-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 22px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-soft);
    font-size: 9px;
}

@media (max-width: 1100px) {
    .header-container {
        grid-template-columns: auto minmax(260px, 1fr) auto;
        gap: 18px;
    }

    .header-actions {
        gap: 6px;
    }

    .header-action {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 900px) {
    .brand-copy small {
        display: none;
    }

    .store-footer-grid {
        grid-template-columns: 1.35fr 0.65fr 0.8fr;
        gap: 32px;
    }
}

@media (max-width: 650px) {
    .header-container {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
    }

    .brand {
        min-width: 0;
    }

    .brand-name {
        font-size: 16px;
    }

    .header-actions {
        gap: 5px;
    }

    .header-action {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 15px;
    }

    .action-badge {
        top: -6px;
        right: -6px;
        min-width: 18px;
        height: 18px;
        border-width: 2px;
        font-size: 8px;
    }

    .header-search {
        height: 46px;
    }

    .header-search button {
        width: 44px;
        height: 44px;
    }

    .store-footer {
        padding-top: 48px;
    }

    .store-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 20px;
    }

    .store-footer-brand {
        grid-column: 1 / -1;
    }

    .store-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 36px;
    }
}

@media (max-width: 410px) {
    .brand-name {
        font-size: 14px;
    }

    .brand-icon {
        width: 34px;
        height: 34px;
    }

    .header-action {
        width: 35px;
        height: 35px;
    }

    .store-footer-grid {
        grid-template-columns: 1fr;
    }

    .store-footer-brand {
        grid-column: auto;
    }
}

/* ============================================================
   BUSCA PREMIUM — SUGESTÕES EM TEMPO REAL
   ============================================================ */

.header-search {
    position: relative;
    padding-right: 5px;
}

.header-search input[type="search"]::-webkit-search-cancel-button,
.header-search input[type="search"]::-webkit-search-decoration {
    display: none;
    -webkit-appearance: none;
}

.header-search .search-clear-button,
.header-search .search-submit-button {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 0;
    transition:
        color var(--transition-fast),
        background-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.header-search .search-clear-button {
    width: 34px;
    height: 34px;
    color: #747482;
}

.header-search .search-clear-button:hover {
    background: rgba(255, 255, 255, 0.055);
    color: #ffffff;
    transform: rotate(90deg);
}

.header-search .search-submit-button {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6f22d7, #9b4dff);
    color: #ffffff;
    border-radius: 11px;
    box-shadow: 0 10px 24px rgba(111, 34, 215, 0.22);
}

.header-search .search-submit-button:hover {
    transform: translateX(2px) scale(1.04);
    box-shadow: 0 14px 30px rgba(111, 34, 215, 0.34);
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 11px);
    right: 0;
    left: 0;
    z-index: 1200;
    max-height: min(520px, calc(100vh - 130px));
    overflow-y: auto;
    padding: 9px;
    background:
        radial-gradient(circle at 88% 0%, rgba(139, 92, 246, 0.15), transparent 35%),
        rgba(10, 10, 15, 0.98);
    border: 1px solid rgba(167, 139, 250, 0.19);
    border-radius: 18px;
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.58),
        0 0 45px rgba(111, 34, 215, 0.09);
    opacity: 0;
    backdrop-filter: blur(20px);
    transform: translateY(-8px) scale(0.985);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.search-suggestions.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.search-suggestion-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 10px 10px;
    color: #8b8b98;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.search-suggestion-heading small {
    color: #a78bfa;
    font-size: 9px;
}

.search-suggestion-list {
    display: grid;
    gap: 5px;
}

.search-suggestion-item {
    width: 100%;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 11px;
    padding: 8px;
    background: transparent;
    color: inherit;
    border: 1px solid transparent;
    border-radius: 13px;
    cursor: pointer;
    text-align: left;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.search-suggestion-item:hover,
.search-suggestion-item:focus-visible {
    background: rgba(139, 92, 246, 0.09);
    border-color: rgba(167, 139, 250, 0.17);
    transform: translateX(3px);
    outline: 0;
}

.search-suggestion-image {
    width: 58px;
    height: 66px;
    overflow: hidden;
    background: #18181f;
    border-radius: 10px;
}

.search-suggestion-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.search-suggestion-copy {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.search-suggestion-copy small {
    color: #a78bfa;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.search-suggestion-copy strong {
    overflow: hidden;
    color: #f6f6f8;
    font-size: 12px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-suggestion-copy span {
    color: #a3a3ad;
    font-size: 10px;
    font-weight: 750;
}

.search-suggestion-item > i {
    color: #777784;
    font-size: 10px;
}

.search-view-all {
    width: 100%;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
    padding: 0 13px;
    background: linear-gradient(135deg, rgba(111, 34, 215, 0.18), rgba(155, 77, 255, 0.08));
    color: #d8c6ff;
    border: 1px solid rgba(167, 139, 250, 0.18);
    border-radius: 12px;
    cursor: pointer;
    font-size: 10px;
    font-weight: 800;
    text-align: left;
}

.search-view-all:hover {
    background: linear-gradient(135deg, rgba(111, 34, 215, 0.3), rgba(155, 77, 255, 0.14));
    color: #ffffff;
}

.search-suggestion-empty {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 13px;
    color: #777784;
}

.search-suggestion-empty > i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    border-radius: 12px;
}

.search-suggestion-empty strong,
.search-suggestion-empty span {
    display: block;
}

.search-suggestion-empty strong {
    margin-bottom: 3px;
    color: #eeeeF2;
    font-size: 11px;
}

.search-suggestion-empty span {
    font-size: 9px;
}

@media (max-width: 900px) {
    .search-suggestions {
        position: fixed;
        top: 112px;
        right: 14px;
        left: 14px;
        max-height: calc(100dvh - 130px);
    }
}

@media (max-width: 650px) {
    .header-search .search-submit-button {
        width: 36px;
        height: 36px;
    }

    .header-search .search-clear-button {
        width: 30px;
        height: 30px;
    }

    .search-suggestions {
        top: 105px;
        border-radius: 16px;
    }

    .search-suggestion-item {
        grid-template-columns: 52px minmax(0, 1fr) 24px;
    }

    .search-suggestion-image {
        width: 52px;
        height: 60px;
    }
}


/* ============================================================
   BUSCA PREMIUM — AJUSTE DE ORGANIZAÇÃO
   Corrige a regra genérica .header-search button, que reduzia
   os resultados a 48x48px e fazia imagens/textos se sobreporem.
   ============================================================ */

.header-search .search-suggestions {
    padding: 12px;
}

.header-search .search-suggestion-heading {
    min-height: 34px;
    padding: 5px 6px 11px;
    color: #b8b8c4;
}

.header-search .search-suggestion-heading small {
    padding: 5px 8px;
    background: rgba(139, 92, 246, 0.12);
    color: #c4b5fd;
    border: 1px solid rgba(167, 139, 250, 0.16);
    border-radius: 999px;
}

.header-search .search-suggestion-list {
    display: grid;
    gap: 8px;
}

.header-search .search-suggestion-item {
    width: 100%;
    height: auto;
    min-height: 82px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    padding: 9px;
    background: rgba(255, 255, 255, 0.018);
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 14px;
    text-align: left;
}

.header-search .search-suggestion-item:hover,
.header-search .search-suggestion-item:focus-visible {
    background:
        linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(255, 255, 255, 0.025));
    border-color: rgba(167, 139, 250, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.header-search .search-suggestion-image {
    width: 62px;
    height: 68px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 11px;
}

.header-search .search-suggestion-copy {
    min-width: 0;
    align-content: center;
    gap: 4px;
}

.header-search .search-suggestion-copy small {
    color: #b794f6;
    font-size: 8px;
}

.header-search .search-suggestion-copy strong {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.25;
}

.header-search .search-suggestion-copy span {
    color: #d2d2d9;
    font-size: 11px;
}

.header-search .search-view-all {
    width: 100%;
    height: auto;
    min-height: 48px;
    margin-top: 10px;
    padding: 0 15px;
    background: linear-gradient(135deg, #6f22d7, #9b4dff);
    color: #ffffff;
    border: 1px solid rgba(196, 181, 253, 0.3);
    border-radius: 13px;
    box-shadow: 0 12px 28px rgba(111, 34, 215, 0.22);
    font-size: 11px;
    font-weight: 850;
}

.header-search .search-view-all:hover,
.header-search .search-view-all:focus-visible {
    background: linear-gradient(135deg, #7c2ce5, #aa5cff);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(111, 34, 215, 0.34);
    outline: 0;
}

.header-search .search-view-all i {
    color: #ffffff;
}

@media (max-width: 650px) {
    .header-search .search-suggestions {
        padding: 10px;
    }

    .header-search .search-suggestion-item {
        min-height: 76px;
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 11px;
        padding: 8px;
    }

    .header-search .search-suggestion-image {
        width: 56px;
        height: 62px;
    }

    .header-search .search-view-all {
        min-height: 46px;
        font-size: 10px;
    }
}
/* TRUST BAR — CORREÇÃO FINAL */

.trust-bar {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 20px 42px;
}

.trust-bar-grid {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
    background: rgba(14, 13, 21, 0.92);
    border: 1px solid rgba(167, 139, 250, 0.16);
    border-radius: 22px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.28),
        0 0 32px rgba(124, 58, 237, 0.08);
    backdrop-filter: blur(18px);
}

.trust-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 21px 18px;
    color: var(--text-primary);
    transition:
        background-color 180ms ease,
        transform 180ms ease;
}

.trust-item:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-item:hover {
    background: rgba(124, 58, 237, 0.08);
    transform: translateY(-2px);
}

.trust-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    color: #a78bfa;
    background: rgba(124, 58, 237, 0.13);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 14px;
    font-size: 18px;
}

.trust-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-copy strong {
    display: block;
    color: #ffffff;
    font-size: 11px;
    line-height: 1.35;
}

.trust-copy small {
    display: block;
    color: #858591;
    font-size: 9px;
    line-height: 1.45;
}

@media (max-width: 1100px) {
    .trust-bar-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .trust-item {
        border-left: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
}

@media (max-width: 700px) {
    .trust-bar {
        padding: 0 14px 26px;
    }

    .trust-bar-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .trust-bar-grid::-webkit-scrollbar {
        display: none;
    }

    .trust-item {
        min-width: 250px;
        flex: 0 0 250px;
        scroll-snap-align: start;
        border-bottom: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.07) !important;
    }

    .trust-item:first-child {
        border-left: 0 !important;
    }
}
/* Remove os benefícios antigos sem alterar o HTML */
.hero-content .hero-benefits {
    display: none;
}

/* Ajuste final do espaço entre Hero e barra */
.hero-section {
    min-height: 760px;
    padding-bottom: 48px;
}

.trust-bar {
    margin-top: -18px;
}

@media (max-width: 900px) {
    .hero-section {
        min-height: auto;
        padding-bottom: 38px;
    }

    .trust-bar {
        margin-top: 0;
    }
}
/* Ajuste final entre barra de confiança e categorias */
.trust-bar {
    padding-bottom: 12px;
}

.categories-section {
    padding-top: 48px;
}

@media (max-width: 700px) {
    .trust-bar {
        padding-bottom: 8px;
    }

    .categories-section {
        padding-top: 36px;
    }
}
/* CARD PREMIUM — ZOOM CONTÍNUO */
.product-card .product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    opacity: 1 !important;
    filter: none !important;

    transform: scale(1.035) !important;
    transform-origin: center center;

    transition:
        transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image img {
    opacity: 1 !important;
    filter: none !important;

    transform: scale(1.09) !important;
}
/* ============================================================
   PREMIUM SKELETON
   ============================================================ */

.skeleton-card{

    position:relative;

    overflow:hidden;

    background:
        rgba(255,255,255,.025);

    border:

        1px solid rgba(255,255,255,.05);

    border-radius:22px;

}

.skeleton{

    position:relative;

    overflow:hidden;

    background:

        linear-gradient(

            90deg,

            rgba(255,255,255,.04),

            rgba(255,255,255,.075),

            rgba(255,255,255,.04)

        );

    background-size:

        220% 100%;

    animation:

        premiumSkeleton 1.25s linear infinite;

}

@keyframes premiumSkeleton{

    from{

        background-position:

            220% 0;

    }

    to{

        background-position:

            -220% 0;

    }

}
.products-grid.loaded .product-card{

    animation:

        catalogFadeIn

        .45s

        cubic-bezier(.16,1,.3,1)

        both;

}

.products-grid.loaded .product-card:nth-child(2){

    animation-delay:.03s;

}

.products-grid.loaded .product-card:nth-child(3){

    animation-delay:.06s;

}

.products-grid.loaded .product-card:nth-child(4){

    animation-delay:.09s;

}

.products-grid.loaded .product-card:nth-child(5){

    animation-delay:.12s;

}

.products-grid.loaded .product-card:nth-child(6){

    animation-delay:.15s;

}

@keyframes catalogFadeIn{

    from{

        opacity:0;

        transform:

            translateY(16px)

            scale(.985);

    }

    to{

        opacity:1;

        transform:

            translateY(0)

            scale(1);

    }

}
/* ============================================================
   CATÁLOGO PROGRESSIVO — PERFORMANCE
   ============================================================ */

.catalog-load-sentinel {
    width: 100%;
    height: 2px;
    margin-top: 24px;
    pointer-events: none;
}

.product-card {
    content-visibility: auto;
    contain-intrinsic-size: 430px 560px;
}

.product-card.catalog-card-enter {
    animation:
        catalogBatchEnter
        360ms
        cubic-bezier(0.16, 1, 0.3, 1)
        both;
}

@keyframes catalogBatchEnter {
    from {
        opacity: 0;
        transform:
            translateY(12px)
            scale(0.99);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-card.catalog-card-enter {
        animation: none;
    }
}
/* ============================================================
   AG.STOREEZ — AVALIAÇÕES PÚBLICAS
   ============================================================ */

.reviews-section {
    position: relative;
    overflow: hidden;

    padding:
        90px 0 100px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(124, 58, 237, 0.09),
            transparent 45%
        );
}

.reviews-section[hidden] {
    display: none;
}


/* TÍTULO */

.reviews-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 34px;
}

.reviews-heading h2 {
    margin:
        8px 0 10px;

    color: #ffffff;

    font-size:
        clamp(
            32px,
            4vw,
            50px
        );

    line-height: 1;

    letter-spacing:
        -2px;
}

.reviews-heading p {
    max-width: 600px;

    margin: 0;

    color: #8b8796;

    font-size: 13px;
    line-height: 1.7;
}

.reviews-summary span {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding:
        10px 13px;

    color: #b8a7e8;

    background:
        rgba(124, 58, 237, 0.07);

    border:
        1px solid
        rgba(139, 92, 246, 0.16);

    border-radius: 999px;

    font-size: 9px;
    font-weight: 800;

    white-space: nowrap;
}


/* CARROSSEL */

.reviews-carousel {
    position: relative;
}

.reviews-viewport {
    overflow: hidden;
}

.reviews-track {
    display: flex;

    gap: 20px;

    will-change: transform;

    transition:
        transform 600ms
        cubic-bezier(
            0.16,
            1,
            0.3,
            1
        );
}


/* CARD */

.public-review-card {
    position: relative;

    flex:
        0 0
        calc(
            (100% - 40px) / 3
        );

    min-width: 0;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(20, 16, 30, 0.96),
            rgba(8, 8, 12, 0.98)
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-radius: 22px;

    box-shadow:
        0 25px 65px
        rgba(0, 0, 0, 0.22);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.public-review-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(139, 92, 246, 0.28);

    box-shadow:
        0 32px 80px
        rgba(0, 0, 0, 0.34);
}

.public-review-card.featured {
    border-color:
        rgba(139, 92, 246, 0.22);
}


/* MÍDIA */

.public-review-media {
    position: relative;

    width: 100%;

    aspect-ratio:
        4 / 3;

    display: block;

    overflow: hidden;

    padding: 0;

    background: #08080b;

    border: 0;

    cursor: pointer;
}

.public-review-media img,
.public-review-media video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;

    transition:
        transform 450ms ease,
        filter 300ms ease;
}

.public-review-card:hover
.public-review-media img {
    transform:
        scale(1.025);
}

.public-review-media-empty {
    display: grid;
    place-items: center;

    cursor: default;

    background:
        radial-gradient(
            circle,
            rgba(124, 58, 237, 0.14),
            transparent 65%
        );
}

.public-review-media-empty i {
    color:
        rgba(167, 139, 250, 0.75);

    font-size: 42px;
}


/* HINT */

.public-review-media-hint {
    position: absolute;

    right: 12px;
    bottom: 12px;

    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding:
        8px 10px;

    background:
        rgba(7, 7, 10, 0.78);

    color: #ffffff;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 999px;

    backdrop-filter:
        blur(10px);

    font-size: 9px;
    font-weight: 800;

    opacity: 0.88;
}


/* PLAY */

.public-review-play {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    transform:
        translate(
            -50%,
            -50%
        );

    padding-left: 3px;

    color: #ffffff;

    background:
        rgba(14, 10, 22, 0.82);

    border:
        1px solid
        rgba(167, 139, 250, 0.35);

    border-radius: 50%;

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.45);

    backdrop-filter:
        blur(12px);
}


/* CONTEÚDO */

.public-review-content {
    padding:
        19px;
}

.public-review-stars {
    display: flex;

    gap: 3px;

    margin-bottom: 12px;

    color: #fbbf24;

    font-size: 12px;
}

.public-review-customer {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 12px;
}

.public-review-customer strong {
    display: block;

    color: #ffffff;

    font-size: 16px;
    font-weight: 850;
}

.public-review-customer span {
    display: flex;
    align-items: center;

    gap: 5px;

    margin-top: 5px;

    color: #777281;

    font-size: 9px;
}

.public-review-customer span i {
    color: #a78bfa;
}

.public-review-featured {
    width: 30px;
    height: 30px;

    display: grid !important;
    place-items: center;

    flex: 0 0 30px;

    margin: 0 !important;

    color: #fbbf24 !important;

    background:
        rgba(251, 191, 36, 0.08);

    border:
        1px solid
        rgba(251, 191, 36, 0.15);

    border-radius: 50%;
}

.public-review-content > p {
    min-height: 62px;

    margin:
        15px 0 18px;

    color: #aaa5b3;

    font-size: 12px;
    line-height: 1.65;

    display: -webkit-box;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    overflow: hidden;
}


/* VER MÍDIA */

.public-review-view-media {
    width: 100%;

    min-height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    background:
        rgba(124, 58, 237, 0.08);

    color: #bfa8ff;

    border:
        1px solid
        rgba(139, 92, 246, 0.16);

    border-radius: 11px;

    font-family: inherit;
    font-size: 9px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.public-review-view-media:hover {
    background:
        rgba(124, 58, 237, 0.15);

    color: #ffffff;

    transform:
        translateY(-1px);
}


/* SETAS */

.reviews-navigation {
    position: absolute;

    top: 50%;

    z-index: 5;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    transform:
        translateY(-50%);

    background:
        rgba(10, 9, 14, 0.88);

    color: #ffffff;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 50%;

    cursor: pointer;

    backdrop-filter:
        blur(12px);

    transition:
        opacity 180ms ease,
        transform 180ms ease,
        border-color 180ms ease;
}

.reviews-navigation:hover {
    border-color:
        rgba(139, 92, 246, 0.45);

    transform:
        translateY(-50%)
        scale(1.06);
}

.reviews-navigation:disabled {
    opacity: 0.2;
    cursor: default;
}

.reviews-navigation-prev {
    left: -20px;
}

.reviews-navigation-next {
    right: -20px;
}


/* DOTS */

.reviews-dots {
    min-height: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 25px;
}

.reviews-dot {
    width: 6px;
    height: 6px;

    padding: 0;

    background:
        rgba(255, 255, 255, 0.14);

    border: 0;
    border-radius: 999px;

    cursor: pointer;

    transition:
        width 200ms ease,
        background 200ms ease;
}

.reviews-dot.active {
    width: 22px;

    background: #8b5cf6;
}


/* ============================================================
   MODAL
   ============================================================ */

.review-media-modal {
    position: fixed;
    inset: 0;

    z-index: 12000;

    display: grid;
    place-items: center;

    padding: 24px;

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 220ms ease,
        visibility 220ms ease;
}

.review-media-modal.open {
    visibility: visible;

    opacity: 1;

    pointer-events: auto;
}

.review-media-backdrop {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    padding: 0;

    background:
        rgba(3, 3, 6, 0.88);

    border: 0;

    backdrop-filter:
        blur(16px);

    cursor: pointer;
}

.review-media-dialog {
    position: relative;
    z-index: 2;

    width:
        min(
            920px,
            calc(
                100vw - 40px
            )
        );

    max-height:
        calc(
            100vh - 40px
        );

    overflow: auto;

    background:
        #09090d;

    border:
        1px solid
        rgba(139, 92, 246, 0.20);

    border-radius: 22px;

    box-shadow:
        0 35px 120px
        rgba(0, 0, 0, 0.75);

    transform:
        translateY(14px)
        scale(0.98);

    transition:
        transform 250ms
        cubic-bezier(
            0.16,
            1,
            0.3,
            1
        );
}

.review-media-modal.open
.review-media-dialog {
    transform:
        translateY(0)
        scale(1);
}

.review-media-content {
    display: grid;
    place-items: center;

    min-height: 250px;

    background: #050507;
}

.review-media-content img,
.review-media-content video {
    max-width: 100%;
    max-height:
        calc(
            100vh - 150px
        );

    display: block;

    object-fit: contain;
}

.review-media-close {
    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 5;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background:
        rgba(8, 8, 10, 0.82);

    color: #ffffff;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    cursor: pointer;

    backdrop-filter:
        blur(10px);
}

.review-media-caption {
    display: flex;
    align-items: center;

    gap: 10px;

    padding:
        14px 18px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);
}

.review-media-caption strong {
    color: #ffffff;

    font-size: 12px;
}

.review-media-caption span {
    color: #777281;

    font-size: 9px;
}

body.review-modal-open {
    overflow: hidden;
}


/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 1050px) {
    .public-review-card {
        flex:
            0 0
            calc(
                (100% - 20px) / 2
            );
    }
}

@media (max-width: 680px) {
    .reviews-section {
        padding:
            65px 0 75px;
    }

    .reviews-heading {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

    .public-review-card {
        flex:
            0 0
            100%;
    }

    .reviews-navigation {
        display: none;
    }

    .public-review-media {
        aspect-ratio:
            16 / 12;
    }

    .review-media-modal {
        padding: 10px;
    }

    .review-media-dialog {
        width: 100%;

        max-height:
            calc(
                100vh - 20px
            );

        border-radius: 17px;
    }
}
/* ============================================================
   AVALIAÇÕES — AJUSTE PARA POUCOS CARDS
   ============================================================ */

.reviews-track:has(.public-review-card:only-child) {
    justify-content: center;
}

.reviews-track:has(.public-review-card:only-child)
.public-review-card {
    flex: 0 0 min(360px, 100%);
}

.reviews-section:has(
    .public-review-card:only-child
)
.reviews-navigation {
    display: none;
}

.reviews-section:has(
    .public-review-card:only-child
)
.reviews-dots {
    display: none;
}