/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== FONTS ===== */
body {
    font-family: "Inter", sans-serif;
    background-color: #020617;
    color: #dae2fd;
    position: relative;
    min-height: 100vh;
}

/* ===== BG GLOW ===== */
#bg-glow {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(circle 600px at 50% 100px, rgba(160, 120, 255, .15), transparent);
    pointer-events: none;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(11, 19, 38, .5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 0 20px rgba(208, 188, 255, .08);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    height: 36px;
    border-radius: 8px;
}

.site-name {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -.02em;
    background: linear-gradient(90deg, #dae2fd, #d0bcff, #dae2fd);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

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

.nav-links a {
    text-decoration: none;
    color: #cbc3d7;
    font-size: 16px;
    font-weight: 400;
    transition: color .2s;
}

.nav-links a:hover {
    color: #d0bcff;
}

.nav-links a.active {
    color: #d0bcff;
    font-weight: 700;
    border-bottom: 2px solid #d0bcff;
    padding-bottom: 4px;
}

/* ===== MAIN ===== */
main {
    padding-top: 80px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 24px;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fade-title {
    display: flex;
    flex-wrap: wrap;
}

.fade-word {
    opacity: 0;
    animation: fadeSlideUp .5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    margin-right: 12px;
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
    color: #dae2fd;
}

.highlight-word {
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 255, 255, .6), 0 0 30px rgba(255, 255, 255, .3);
}

.fade-up {
    opacity: 0;
    animation: fadeSlideUp .5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

.hero-sub {
    font-size: 18px;
    line-height: 28px;
    color: #cbc3d7;
    max-width: 540px;
}

.hero-image-wrap {
    position: relative;
}

.hero-glow {
    position: absolute;
    inset: -50%;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            transparent,
            rgba(160, 120, 255, .3),
            rgba(160, 120, 255, .5),
            rgba(160, 120, 255, .3),
            transparent 25%,
            transparent,
            rgba(160, 120, 255, .2),
            transparent 50%,
            transparent,
            rgba(160, 120, 255, .3),
            rgba(160, 120, 255, .4),
            rgba(160, 120, 255, .2),
            transparent 75%,
            transparent,
            rgba(160, 120, 255, .3),
            transparent);
    filter: blur(60px);
    opacity: .7;
    animation: heroGlowRotate 6s linear infinite;
    pointer-events: none;
}

@keyframes heroGlowRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    background: conic-gradient(from 0deg,
            transparent,
            rgba(160, 120, 255, .4),
            rgba(160, 120, 255, .6),
            rgba(160, 120, 255, .4),
            transparent 25%,
            transparent 50%,
            transparent,
            rgba(160, 120, 255, .3),
            rgba(160, 120, 255, .5),
            rgba(160, 120, 255, .3),
            transparent 75%,
            transparent);
    z-index: -1;
    animation: heroBorderRotate 4s linear infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 3px;
}

@keyframes heroBorderRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star {
    font-size: 18px;
    color: #334155;
    transition: color .2s;
}

.star.filled {
    color: #fbbf24;
}

.rating-text {
    font-size: 13px;
    color: #64748b;
    margin-left: 6px;
    font-family: "Inter", sans-serif;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(160, 120, 255, .06), transparent);
    pointer-events: none;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #a078ff;
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    position: relative;
    overflow: hidden;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow .3s;
    transform: scale(1);
}

.glow-button {
    box-shadow: 0 4px 15px rgba(160, 120, 255, .3);
}

.btn:hover {
    box-shadow: 0 0 25px rgba(160, 120, 255, .6);
    transform: scale(1.04) translateY(-2px);
}

.btn:active {
    transform: scale(0.97);
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    transform: translateX(-100%);
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover::after {
    transform: translateX(100%);
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    font-size: 20px;
}

/* ===== SEARCH ===== */
.search-section {
    padding: 0 24px 64px;
}

.search-inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #958ea0;
    z-index: 1;
}

#search {
    width: 100%;
    padding: 18px 18px 18px 52px;
    background: #060e20;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    color: #dae2fd;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

#search::placeholder {
    color: rgba(149, 142, 160, .5);
}

#search:focus {
    border-color: rgba(160, 120, 255, .5);
    box-shadow: 0 0 20px rgba(160, 120, 255, .1);
}

/* ===== GRID ===== */
.grid-section {
    padding: 0 24px 96px;
}

.grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

/* ===== CARDS ===== */
.card {
    background: rgba(30, 41, 59, .4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    will-change: transform;
    transition: border-color .3s, box-shadow .3s;
    position: relative;
}

.card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 0 24px rgba(139, 92, 246, .25);
}

.glare {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    transition: background .05s;
}

.card-image {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .5s;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #a078ff;
    color: #fff;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-family: "JetBrains Mono", monospace;
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #d0bcff;
    margin-bottom: 8px;
}

.card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #dae2fd;
    margin-bottom: 4px;
    flex: 1;
    line-height: 1.3;
}

.price {
    font-size: 22px;
    font-weight: 800;
    color: #4cd7f6;
    margin: 12px 0 16px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4px 0 16px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
}

.product-sales {
    color: #4cd7f6;
    font-weight: 500;
}

.product-stock {
    color: #64748b;
}

.card .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: #a078ff;
}

/* ===== CARD BUTTON ROW ===== */
.card-btn-row {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.card-btn-row .btn,
.card-btn-row a.btn {
    flex: 1;
    justify-content: center;
    padding: 12px 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(160, 120, 255, .4);
    color: #d0bcff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow .3s, border-color .3s, background .3s;
    transform: scale(1);
}

.btn-outline:hover {
    border-color: #a078ff;
    background: rgba(160, 120, 255, .1);
    box-shadow: 0 0 20px rgba(160, 120, 255, .2);
    transform: scale(1.04) translateY(-2px);
    color: #d0bcff;
}

.card-btn-row .btn-outline .material-symbols-outlined {
    font-size: 16px;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-section {
    padding: 120px 24px 96px;
    min-height: 80vh;
}

.product-detail-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-detail-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-detail-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.product-detail-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-detail-category {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #d0bcff;
}

.product-detail-name {
    font-size: 28px;
    font-weight: 700;
    color: #dae2fd;
    line-height: 1.3;
}

.product-detail-price {
    font-size: 32px;
    font-weight: 800;
    color: #4cd7f6;
}

.product-detail-meta {
    display: flex;
    gap: 24px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
}

.product-detail-meta span {
    color: #64748b;
}

.product-detail-meta .highlight {
    color: #4cd7f6;
    font-weight: 500;
}

.product-detail-desc {
    background: rgba(30, 41, 59, .4);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 20px;
    margin-top: 8px;
}

.product-detail-desc h4 {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #d0bcff;
    margin-bottom: 12px;
}

.product-detail-desc p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbc3d7;
    white-space: pre-wrap;
}

.desc-placeholder {
    color: #64748b;
    font-style: italic;
}


.product-detail-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.product-detail-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 16px;
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cbc3d7;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
    margin-bottom: 24px;
}

.back-link:hover {
    color: #d0bcff;
}

@media (max-width: 768px) {
    .product-detail-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-detail-section {
        padding: 100px 16px 64px;
    }

    .product-detail-name {
        font-size: 22px;
    }

    .product-detail-price {
        font-size: 26px;
    }
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid rgba(255, 255, 255, .04);
    background: #060e20;
    padding: 48px 24px 24px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #d0bcff;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 12px;
    line-height: 16px;
    color: #cbc3d7;
    max-width: 280px;
    letter-spacing: .05em;
    font-family: "JetBrains Mono", monospace;
}

.footer-links h4 {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #4cd7f6;
    margin-bottom: 12px;
}

.footer-stamps {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.stamp {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.stamp-svg {
    width: 100%;
    height: 100%;
}

.stamp-border {
    color: rgba(160, 120, 255, .4);
}

.stamp:hover .stamp-border {
    color: rgba(160, 120, 255, .8);
}

.stamp-text-top {
    fill: #cbc3d7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    font-family: "JetBrains Mono", monospace;
}

.stamp-text-bot {
    fill: #cbc3d7;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    font-family: "JetBrains Mono", monospace;
}

.stamp-star {
    fill: #d0bcff;
    font-size: 22px;
    dominant-baseline: central;
}

.stamp-year {
    fill: #64748b;
    font-size: 10px;
    font-family: "JetBrains Mono", monospace;
    dominant-baseline: central;
}

.footer-bottom {
    max-width: 1280px;
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .04);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #cbc3d7;
    opacity: .6;
    font-family: "JetBrains Mono", monospace;
    letter-spacing: .03em;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: #cbc3d7;
    font-size: 12px;
    letter-spacing: .05em;
    font-family: "JetBrains Mono", monospace;
    margin-bottom: 8px;
    opacity: .8;
    transition: opacity .2s, color .2s;
}

.footer-links a:hover {
    opacity: 1;
    color: #4cd7f6;
}

/* ===== FAB CART ===== */
.fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: #a078ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(160, 120, 255, .4);
    z-index: 50;
    transition: transform .3s, box-shadow .3s;
    border: none;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(160, 120, 255, .6);
}

.fab .material-symbols-outlined {
    font-size: 28px;
    font-variation-settings: "FILL" 1;
}

.fab-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: #4cd7f6;
    color: #003640;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "JetBrains Mono", monospace;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border: 1px solid rgba(52, 211, 153, .5);
    border-radius: 10px;
    background: #0f172a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    font-size: 14px;
    color: #dae2fd;
    font-family: "Inter", sans-serif;
    transform: translateX(120%);
    opacity: 0;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1),
        opacity .5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #059669;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    flex-shrink: 0;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 150;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 30px;
    width: 90%;
    max-width: 480px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #dae2fd;
}

.close {
    font-size: 28px;
    cursor: pointer;
    color: #64748b;
}

.close:hover {
    color: #dae2fd;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.cart-item img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #dae2fd;
}

.cart-item-price {
    color: #d0bcff;
    font-weight: 600;
    font-size: 13px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    margin: 20px 0;
    padding-top: 12px;
    color: #dae2fd;
    font-weight: 700;
}

.whatsapp-btn {
    width: 100%;
    justify-content: center;
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, .3);
    font-size: 16px;
    padding: 16px;
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.whatsapp-btn:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, .5);
    background: #1ebe5d;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
    color: #64748b;
    font-size: 14px;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    background: rgba(255, 255, 255, .05);
    color: #dae2fd;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, .1);
}

.qty-value {
    min-width: 20px;
    text-align: center;
    font-weight: 700;
    color: #dae2fd;
}

.delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    margin-left: 4px;
    opacity: .6;
    transition: opacity .2s;
}

.delete-btn:hover {
    opacity: 1;
}

.cart-subtotal {
    min-width: 70px;
    text-align: right;
    color: #dae2fd;
    font-weight: 600;
}

.instructions-content {
    max-width: 520px;
}

.instructions-text {
    font-size: 15px;
    line-height: 1.7;
    color: #cbc3d7;
    white-space: pre-wrap;
}

/* ===== VISITOR COUNTER ===== */
#visitor-counter {
    position: fixed;
    bottom: 16px;
    left: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

.counter-digits {
    display: flex;
    gap: 2px;
}

.counter-digit {
    position: relative;
    width: 14px;
    height: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #dae2fd;
    line-height: 20px;
    text-align: center;
    font-family: "JetBrains Mono", monospace;
}

.counter-digit-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}

.counter-digit-inner span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
}

.counter-label {
    color: #64748b;
    font-size: 11px;
    font-family: "JetBrains Mono", monospace;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-image-wrap {
        display: none;
    }

    .fade-word {
        font-size: 32px;
    }

    .nav-links a:not(:first-child) {
        display: none;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-stamps {
        justify-content: center;
    }

    .header-inner {
        padding: 12px 16px;
    }

    .hero {
        padding: 48px 16px;
    }

    .search-section {
        padding: 0 16px 40px;
    }

    .grid-section {
        padding: 0 16px 80px;
    }

    footer {
        padding: 24px 16px;
    }

    .fab {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 120px 24px 96px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-inner {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
}

.contact-title {
    font-size: 36px;
    font-weight: 800;
    color: #dae2fd;
    margin-bottom: 8px;
    text-align: center;
}

.contact-subtitle {
    font-size: 16px;
    color: #cbc3d7;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #d0bcff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: #060e20;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    color: #dae2fd;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(149, 142, 160, .5);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(160, 120, 255, .5);
    box-shadow: 0 0 20px rgba(160, 120, 255, .1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 16px;
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 4px;
}

.contact-form .btn .material-symbols-outlined {
    font-size: 22px;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 100px 16px 64px;
    }

    .contact-title {
        font-size: 28px;
    }
}