:root {
    --bg: #111111;
    --bg-soft: #181818;
    --card: #1d1d1d;
    --card-hover: #232323;

    --gold: #c9a45c;
    --gold-light: #f0d18a;
    --gold-dark: #8e6b2f;

    --text: #f5f2ec;
    --text-soft: #bdb8ae;
    --border: rgba(201, 164, 92, 0.2);

    --radius: 24px;
    --transition: 0.35s cubic-bezier(.2,.8,.2,1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font-family: inherit;
}

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


/* =========================
   LOADER
========================= */

#loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background:
        radial-gradient(circle at center, #24221e 0%, #111111 48%, #080808 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    position: relative;
    z-index: 5;
    text-align: center;
    perspective: 900px;
}

.loader-logo-wrap {
    position: relative;
    width: min(330px, 70vw);
    margin: auto;
    animation: logoFloat 3s ease-in-out infinite;
}

.loader-logo {
    width: 100%;
    display: block;
    position: relative;
    z-index: 3;
    filter:
        drop-shadow(0 0 12px rgba(201,164,92,.3))
        drop-shadow(0 18px 25px rgba(0,0,0,.7));
    animation:
        logoReveal 1.4s cubic-bezier(.2,.8,.2,1) forwards,
        logo3d 5s ease-in-out infinite 1.5s;
}

.logo-shadow {
    position: absolute;
    width: 75%;
    height: 25px;
    left: 12.5%;
    bottom: -18px;
    background: rgba(201,164,92,.35);
    filter: blur(22px);
    border-radius: 50%;
    animation: shadowPulse 2.5s ease-in-out infinite;
}

.loader-line {
    width: 0;
    height: 1px;
    margin: 25px auto 14px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold-light),
        transparent
    );
    animation: loaderLine 1.4s ease forwards 0.6s;
}

.loader-content p {
    font-size: 10px;
    letter-spacing: 6px;
    color: var(--gold-light);
    opacity: 0;
    animation: fadeUp .8s ease forwards 1s;
}

.loader-progress {
    width: 130px;
    height: 2px;
    background: rgba(255,255,255,.1);
    margin: 22px auto 0;
    overflow: hidden;
    border-radius: 20px;
}

.loader-progress-bar {
    width: 0;
    height: 100%;
    background: var(--gold-light);
    animation: progress 2.3s ease forwards;
}

.loader-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .12;
}

.glow-one {
    background: var(--gold);
    top: 10%;
    left: 10%;
    animation: glowMove 7s infinite alternate ease-in-out;
}

.glow-two {
    background: #fff0c7;
    bottom: 5%;
    right: 10%;
    animation: glowMove 8s infinite alternate-reverse ease-in-out;
}

.loader-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold-light);
    animation: particleFloat linear infinite;
}

.loader-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-duration: 5s;
}

.loader-particles span:nth-child(2) {
    left: 25%;
    top: 75%;
    animation-duration: 7s;
}

.loader-particles span:nth-child(3) {
    left: 80%;
    top: 25%;
    animation-duration: 6s;
}

.loader-particles span:nth-child(4) {
    left: 70%;
    top: 80%;
    animation-duration: 8s;
}

.loader-particles span:nth-child(5) {
    left: 50%;
    top: 10%;
    animation-duration: 6s;
}

.loader-particles span:nth-child(6) {
    left: 90%;
    top: 60%;
    animation-duration: 5s;
}

.loader-particles span:nth-child(7) {
    left: 5%;
    top: 55%;
    animation-duration: 8s;
}

.loader-particles span:nth-child(8) {
    left: 45%;
    top: 90%;
    animation-duration: 7s;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13,13,13,.72);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.header-inner {
    max-width: 1400px;
    margin: auto;
    min-height: 78px;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.brand span {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand small {
    color: var(--gold);
    font-size: 7px;
    letter-spacing: 4px;
    margin-top: 5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    position: relative;
    color: var(--text-soft);
    font-size: 12px;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--gold-light);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

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

.icon-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    color: var(--text);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.icon-btn:hover {
    border-color: var(--gold);
    background: rgba(201,164,92,.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201,164,92,.12);
}

.heart-icon {
    font-size: 25px;
    line-height: 1;
}

.cart-icon {
    font-size: 17px;
}

.counter {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 20px;
    background: var(--gold);
    color: #111;
    font-size: 9px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
}

.counter.visible {
    display: flex;
}

.mobile-menu-btn {
    display: none;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 25px 90px;
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(201,164,92,.13),
            transparent 35%
        ),
        linear-gradient(180deg,#161616,#0f0f0f);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-logo {
    width: min(230px, 55vw);
    margin: 0 auto 35px;
    animation: heroLogo 1.2s ease forwards;
}

.hero-logo img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,.6));
}

.eyebrow {
    display: inline-block;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.hero h1,
.section-heading h2,
.catalog-top h2,
.social-card h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    line-height: .95;
}

.hero h1 {
    font-size: clamp(58px, 8vw, 105px);
    letter-spacing: -2px;
}

.hero h1 span,
.section-heading h2 span,
.catalog-top h2 span,
.social-card h2 span {
    color: var(--gold-light);
    font-style: italic;
}

.hero p {
    max-width: 530px;
    margin: 25px auto 35px;
    color: var(--text-soft);
    line-height: 1.8;
    font-size: 13px;
}

.gold-button {
    min-height: 52px;
    padding: 0 27px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #17130c;
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: var(--transition);
    box-shadow:
        0 12px 30px rgba(201,164,92,.16);
}

.gold-button span {
    font-size: 16px;
}

.gold-button:hover {
    transform: translateY(-5px);
    box-shadow:
        0 18px 40px rgba(201,164,92,.3);
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--gold);
    filter: blur(180px);
    opacity: .06;
    animation: heroGlow 7s ease-in-out infinite alternate;
}

.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border: 1px solid rgba(201,164,92,.13);
    border-radius: 50%;
}

.circle-one {
    width: 600px;
    height: 600px;
    top: 10%;
    left: -250px;
    animation: rotateSlow 25s linear infinite;
}

.circle-two {
    width: 500px;
    height: 500px;
    right: -220px;
    bottom: -100px;
    animation: rotateSlow 20s linear infinite reverse;
}

.sparkle {
    position: absolute;
    color: var(--gold-light);
    text-shadow: 0 0 18px var(--gold);
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-one {
    left: 20%;
    top: 30%;
}

.sparkle-two {
    right: 18%;
    top: 23%;
    animation-delay: .8s;
}

.sparkle-three {
    right: 28%;
    bottom: 20%;
    animation-delay: 1.4s;
}


/* =========================
   SECTIONS
========================= */

.categories-section,
.catalog-section,
.social-section {
    max-width: 1400px;
    margin: auto;
    padding: 100px 35px;
}

.section-heading {
    text-align: center;
}

.section-heading h2,
.catalog-top h2 {
    font-size: clamp(48px, 6vw, 78px);
}


/* =========================
   CATEGORIES
========================= */

.category-buttons {
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.category-button {
    border: 1px solid rgba(255,255,255,.1);
    background: transparent;
    color: var(--text-soft);
    padding: 12px 22px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 11px;
    transition: var(--transition);
}

.category-button:hover,
.category-button.active {
    color: #17130c;
    border-color: var(--gold);
    background: var(--gold);
    box-shadow: 0 8px 25px rgba(201,164,92,.15);
    transform: translateY(-3px);
}


/* =========================
   CATALOG
========================= */

.catalog-section {
    padding-top: 40px;
}

.catalog-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 50px;
}

.product-count {
    color: var(--text-soft);
    font-size: 11px;
}

.product-count span {
    color: var(--gold-light);
    font-weight: 700;
}

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

.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius);
    background: var(--card);
    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        border-color .4s ease,
        box-shadow .4s ease;
    animation: productAppear .6s ease both;
}

.product-card:hover {
    transform: translateY(-9px);
    border-color: rgba(201,164,92,.4);
    box-shadow:
        0 25px 60px rgba(0,0,0,.35),
        0 0 30px rgba(201,164,92,.06);
}

.product-image {
    height: 340px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(201,164,92,.13),
            transparent 45%
        ),
        linear-gradient(145deg,#292929,#171717);
}

.product-image::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(201,164,92,.08);
    filter: blur(25px);
    transition: var(--transition);
}

.product-card:hover .product-image::before {
    transform: scale(1.5);
    background: rgba(201,164,92,.14);
}

.fake-fashion-icon {
    position: relative;
    z-index: 2;
    font-size: 90px;
    filter: grayscale(1) brightness(1.6);
    opacity: .85;
    transition: var(--transition);
}

.product-card:hover .fake-fashion-icon {
    transform: scale(1.1) rotate(-2deg);
    filter:
        grayscale(.2)
        brightness(1.8)
        drop-shadow(0 0 18px rgba(201,164,92,.3));
}

.favorite-button {
    position: absolute;
    z-index: 5;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    background: rgba(10,10,10,.6);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    font-size: 23px;
    transition: var(--transition);
}

.favorite-button:hover {
    transform: scale(1.12);
    border-color: var(--gold);
}

.favorite-button.active {
    color: var(--gold-light);
    border-color: var(--gold);
}

.product-info {
    padding: 20px;
}

.product-category {
    color: var(--gold);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
}

.product-name {
    margin: 8px 0 7px;
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 600;
}

.product-price {
    color: var(--gold-light);
    font-size: 16px;
    font-weight: 600;
}

.product-sizes {
    margin-top: 13px;
    display: flex;
    gap: 6px;
}

.size-tag {
    min-width: 27px;
    height: 25px;
    padding: 0 7px;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,.08);
    color: var(--text-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}

.product-actions {
    padding: 0 20px 20px;
    display: flex;
    gap: 8px;
}

.product-details-button,
.product-cart-button {
    border-radius: 30px;
    cursor: pointer;
    min-height: 43px;
    transition: var(--transition);
    font-size: 9px;
    font-weight: 700;
}

.product-details-button {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255,255,255,.1);
    color: var(--text);
}

.product-cart-button {
    flex: 1.4;
    border: 0;
    color: #16120b;
    background: var(--gold);
}

.product-details-button:hover,
.product-cart-button:hover {
    transform: translateY(-3px);
}

.product-details-button:hover {
    border-color: var(--gold);
}

.product-cart-button:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 25px rgba(201,164,92,.18);
}


/* =========================
   SOCIAL
========================= */

.social-section {
    padding-top: 60px;
}

.social-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 90px 30px;
    border-radius: 35px;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at 50% 0%,rgba(201,164,92,.12),transparent 45%),
        #191919;
}

.social-card h2 {
    font-size: clamp(45px,6vw,75px);
    max-width: 700px;
    margin: auto;
}

.social-card p {
    color: var(--text-soft);
    max-width: 500px;
    margin: 25px auto 30px;
    font-size: 12px;
    line-height: 1.8;
}

.social-sparkle {
    position: absolute;
    right: 10%;
    top: 20%;
    color: var(--gold);
    font-size: 28px;
    animation: sparkle 2s infinite;
}


/* =========================
   FOOTER
========================= */

footer {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 45px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-soft);
    font-size: 10px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    color: var(--text);
}

.footer-brand span {
    font-size: 7px;
    letter-spacing: 3px;
    color: var(--gold);
}

footer a {
    color: var(--gold-light);
}


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

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,.78);
    backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    width: min(850px,100%);
    max-height: 90vh;
    overflow: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    background: #191919;
    border: 1px solid var(--border);
    border-radius: 30px;
    position: relative;
    transform: translateY(25px) scale(.97);
    transition: .4s ease;
}

.modal-overlay.active .product-modal {
    transform: translateY(0) scale(1);
}

.close-modal,
.panel-close {
    border: 0;
    background: rgba(0,0,0,.55);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 25px;
    transition: var(--transition);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
}

.close-modal:hover,
.panel-close:hover {
    background: var(--gold);
    color: #111;
    transform: rotate(90deg);
}

.modal-product-image {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle,rgba(201,164,92,.14),transparent 55%),
        #151515;
}

.modal-product-image .fake-fashion-icon {
    font-size: 130px;
}

.modal-product-info {
    padding: 60px 45px;
}

.modal-category {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 3px;
    font-weight: 700;
}

.modal-product-info h2 {
    margin: 10px 0;
    font-family: "Cormorant Garamond",serif;
    font-size: 48px;
}

.modal-product-info > strong {
    color: var(--gold-light);
    font-size: 20px;
}

.modal-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 25px 0;
}

.modal-label {
    color: var(--text-soft);
    font-size: 10px;
    margin-bottom: 10px;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 25px;
}

.size-option {
    border: 1px solid rgba(255,255,255,.12);
    background: transparent;
    color: var(--text);
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.size-option:hover,
.size-option.selected {
    border-color: var(--gold);
    background: rgba(201,164,92,.1);
    color: var(--gold-light);
}

.modal-cart-button,
.modal-whatsapp-button,
.checkout-button {
    width: 100%;
    min-height: 50px;
    border-radius: 30px;
    border: 0;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    transition: var(--transition);
}

.modal-cart-button {
    background: var(--gold);
    color: #111;
    margin-bottom: 10px;
}

.modal-whatsapp-button {
    background: transparent;
    border: 1px solid rgba(255,255,255,.1);
    color: var(--text);
}

.modal-cart-button:hover,
.modal-whatsapp-button:hover,
.checkout-button:hover {
    transform: translateY(-3px);
}

.modal-whatsapp-button:hover {
    border-color: var(--gold);
}


/* =========================
   SIDE PANELS
========================= */

.side-panel-overlay {
    position: fixed;
    inset: 0;
    z-index: 6000;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
}

.side-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-panel {
    width: min(470px,100%);
    height: 100%;
    margin-left: auto;
    background: #151515;
    border-left: 1px solid var(--border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: .45s cubic-bezier(.2,.8,.2,1);
}

.side-panel-overlay.active .side-panel {
    transform: translateX(0);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.panel-header h2 {
    font-family: "Cormorant Garamond",serif;
    font-size: 35px;
}

.panel-close {
    background: rgba(255,255,255,.05);
}

.cart-items,
.favorites-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.empty-state {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-soft);
}

.empty-state-icon {
    font-size: 45px;
    color: var(--gold);
    margin-bottom: 15px;
}

.empty-state p {
    font-size: 11px;
    line-height: 1.7;
}

.cart-item,
.favorite-item {
    display: grid;
    grid-template-columns: 75px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.mini-product-image {
    width: 75px;
    height: 85px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle,rgba(201,164,92,.13),transparent 55%),
        #202020;
    font-size: 32px;
}

.mini-info h3 {
    font-family: "Cormorant Garamond",serif;
    font-size: 21px;
}

.mini-info p {
    color: var(--gold-light);
    font-size: 11px;
    margin-top: 3px;
}

.mini-size {
    color: var(--text-soft);
    font-size: 9px;
    margin-top: 5px;
}

.remove-item {
    border: 0;
    background: transparent;
    color: var(--text-soft);
    cursor: pointer;
    font-size: 20px;
}

.remove-item:hover {
    color: var(--gold-light);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 7px;
}

.quantity-controls button {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    background: transparent;
    color: white;
    cursor: pointer;
}

.quantity-controls span {
    font-size: 10px;
}

.cart-footer {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 20px;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-soft);
    font-size: 11px;
}

.cart-total strong {
    color: var(--gold-light);
    font-size: 20px;
}

.checkout-button {
    background: var(--gold);
    color: #111;
}


/* =========================
   TOAST
========================= */

.toast {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 40px;
    background: #202020;
    box-shadow: 0 15px 40px rgba(0,0,0,.4);
    font-size: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: .4s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: var(--gold-light);
    font-size: 16px;
}


/* =========================
   BACK TOP
========================= */

.back-top {
    position: fixed;
    z-index: 800;
    right: 25px;
    bottom: 25px;
    width: 43px;
    height: 43px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #191919;
    color: var(--gold-light);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-top:hover {
    background: var(--gold);
    color: #111;
    transform: translateY(-4px);
}


/* =========================
   ANIMAÇÕES
========================= */

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: rotateX(55deg) rotateY(-20deg) scale(.65);
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: rotateX(0) rotateY(0) scale(1);
    }
}

@keyframes logo3d {
    0%,100% {
        transform: rotateY(-3deg) rotateX(2deg);
    }

    50% {
        transform: rotateY(3deg) rotateX(-2deg);
    }
}

@keyframes logoFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes shadowPulse {
    0%,100% {
        opacity: .5;
        transform: scale(.9);
    }

    50% {
        opacity: .8;
        transform: scale(1.1);
    }
}

@keyframes loaderLine {
    to {
        width: 170px;
    }
}

@keyframes progress {
    to {
        width: 100%;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes particleFloat {
    0% {
        transform: translateY(30px) scale(.5);
        opacity: 0;
    }

    30%,70% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

@keyframes glowMove {
    from {
        transform: translate(0,0) scale(1);
    }

    to {
        transform: translate(120px,-60px) scale(1.4);
    }
}

@keyframes heroLogo {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(.9);
    }

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

@keyframes heroGlow {
    from {
        transform: translate(-100px,-30px);
    }

    to {
        transform: translate(100px,50px);
    }
}

@keyframes rotateSlow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes sparkle {
    0%,100% {
        opacity: .35;
        transform: scale(.8) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(15deg);
    }
}

@keyframes productAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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


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

@media (max-width: 1100px) {

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

}

@media (max-width: 800px) {

    .header-inner {
        padding: 0 20px;
    }

    .mobile-menu-btn {
        display: flex;
        width: 40px;
        height: 40px;
        border: 0;
        background: transparent;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        width: 22px;
        height: 1px;
        background: var(--gold-light);
    }

    .nav {
        position: absolute;
        top: 78px;
        left: 15px;
        right: 15px;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(20,20,20,.96);
        border: 1px solid var(--border);
        border-radius: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .brand {
        margin-right: auto;
    }

    .header-actions {
        margin-left: auto;
    }

    .hero {
        min-height: 90vh;
    }

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

    .product-image {
        height: 280px;
    }

    .categories-section,
    .catalog-section,
    .social-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-modal {
        grid-template-columns: 1fr;
        max-height: 92vh;
    }

    .modal-product-image {
        min-height: 280px;
    }

    .modal-product-info {
        padding: 30px;
    }

    footer {
        padding: 35px 20px;
        flex-wrap: wrap;
    }

}

@media (max-width: 520px) {

    .header-inner {
        gap: 8px;
    }

    .brand span {
        font-size: 22px;
    }

    .brand small {
        font-size: 5px;
    }

    .header-actions {
        gap: 3px;
    }

    .icon-btn {
        width: 39px;
        height: 39px;
    }

    .hero {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-logo {
        width: 180px;
    }

    .hero h1 {
        font-size: 57px;
    }

    .hero p {
        font-size: 11px;
    }

    .category-buttons {
        justify-content: flex-start;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

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

    .product-image {
        height: 230px;
    }

    .fake-fashion-icon {
        font-size: 65px;
    }

    .product-info {
        padding: 13px;
    }

    .product-name {
        font-size: 21px;
    }

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

    .product-actions {
        padding: 0 13px 13px;
        flex-direction: column;
    }

    .product-details-button,
    .product-cart-button {
        min-height: 39px;
    }

    .favorite-button {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .catalog-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .side-panel {
        padding: 20px;
    }

    .toast {
        right: 15px;
        bottom: 15px;
        left: 15px;
        justify-content: center;
    }

}