@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600&display=swap");

:root {
    --background: #000000;
    --foreground: #ffffff;
    --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
    --font-serif: "Instrument Serif", Georgia, serif;
    --muted: rgba(255, 255, 255, 0.65);
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(255, 255, 255, 0.04);
    --accent: #ffffff;
    --container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
    line-height: 1.6;
}

::selection {
    background: #fff;
    color: #000;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 3rem));
    margin-inline: auto;
}

/* Glass effects */
.liquid-glass {
    background: rgba(255, 255, 255, 0.01);
    background-blend-mode: luminosity;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: none;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.liquid-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.4px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0.15) 80%,
        rgba(255, 255, 255, 0.45) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    border-radius: inherit;
}

.glass-pill {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 9999px;
    box-shadow: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.btn--glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
}

.btn--primary {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn--primary:hover {
    opacity: 0.9;
    background: #fff;
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn--lg {
    padding: 0.875rem 2.5rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem;
    animation: navIn 0.6s ease forwards;
}

@keyframes navIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 80rem;
    margin-inline: auto;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
}

.navbar__left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.navbar__logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 0.5rem;
}

.navbar__links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.navbar__links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.navbar__links a:hover {
    color: #fff;
}

.navbar__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar__search input {
    display: none;
    width: 180px;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    outline: none;
}

.navbar__search input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.navbar__search input:focus {
    border-color: rgba(255, 255, 255, 0.35);
}

.navbar__cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.04);
    transition: opacity 0.3s;
}

.navbar__cart:hover {
    opacity: 0.85;
}

.navbar__cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 9999px;
    background: #fff;
    color: #000;
    font-size: 0.6875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar__cart-count:empty,
.navbar__cart-count[data-count="0"] {
    display: none;
}

.navbar__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.navbar__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s;
}

.navbar__mobile {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 80rem;
    margin: 0.75rem auto 0;
    padding: 1rem 1.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
}

.navbar__mobile.is-open {
    display: flex;
}

.navbar__mobile a {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar.scrolled .navbar__inner {
    background: rgba(0, 0, 0, 0.6);
}

/* Background video */
.bg-video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 60%, #000 100%);
}

.bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero__content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    max-width: 64rem;
    margin-inline: auto;
    gap: 3rem;
}

.hero__tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 1rem;
    animation: fadeUp 0.6s ease 0.1s both;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    background: linear-gradient(to bottom, #fff, rgba(255,255,255,0.95) 50%, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
    max-width: 36rem;
    margin: 0 auto 2rem;
    animation: fadeUp 0.8s ease 0.3s both;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 50px;
    animation: fadeUp 0.8s ease 0.4s both;
}

.hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero__email-wrap {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.hero__email-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.375rem 0.375rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(4px);
    transition: border-color 0.3s;
}

.hero__email-form:focus-within {
    border-color: rgba(255, 255, 255, 0.4);
}

.hero__email-form input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    outline: none;
    font-size: 0.875rem;
    min-width: 0;
}

.hero__email-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.hero__email-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.hero__email-form button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero__demo-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    animation: fadeUp 0.8s ease 0.8s both;
}

.hero__demo-link:hover {
    color: rgba(255, 255, 255, 0.4);
}

.hero__state {
    animation: scaleIn 0.2s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

.section--dark {
    background: #000;
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__tag {
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    margin: 0 0 0.75rem;
}

.section__desc {
    color: var(--muted);
    max-width: 36rem;
    margin: 0 auto;
}

/* Categories grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.category-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.category-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.category-card__media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.category-card:hover .category-card__media img {
    transform: scale(1.05);
}

.category-card__content {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.875rem;
    height: 4.5rem;
}

.category-card__name {
    margin: 0;
    width: 100%;
    height: 2.55rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-card:hover .category-card__name {
    color: #fff;
}

@media (min-width: 640px) {
    .categories-grid {
        gap: 1.125rem;
    }

    .category-card__media {
        padding: 1.25rem;
    }

    .category-card__content {
        height: 4.75rem;
        padding: 1.125rem 1rem;
    }

    .category-card__name {
        height: 2.7rem;
    }
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 1100px) {
    .categories-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .categories-grid {
        gap: 0.875rem;
    }

    .category-card__media {
        padding: 0.875rem;
    }

    .category-card__content {
        height: 4rem;
        padding: 0.875rem 0.625rem;
    }

    .category-card__name {
        height: 2.2rem;
        font-size: 0.8125rem;
    }
}

/* Product grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    border-radius: 1.25rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s, border-color 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-card__media img {
    transform: scale(1.05);
}

.product-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    background: #fff;
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-card__body {
    padding: 1.25rem;
}

.product-card__category {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card__title {
    margin: 0.375rem 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-card__desc {
    margin: 0 0 1rem;
    font-size: 0.8125rem;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.product-card__prices {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.product-card__price {
    font-weight: 600;
    font-size: 1rem;
}

.product-card__compare {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

/* Page header */
.page-header {
    padding: 8rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin: 0 0 0.75rem;
}

.page-header p {
    color: var(--muted);
    margin: 0;
}

/* Shop filters */
.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-toolbar select,
.shop-toolbar input[type="search"] {
    padding: 0.625rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    outline: none;
}

.shop-toolbar select option {
    background: #111;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.category-pills a {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s;
}

.category-pills a:hover,
.category-pills a.is-active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Product detail */
.product-detail {
    padding: 7rem 0 4rem;
}

.product-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-detail__image {
    border-radius: 1.5rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 1;
}

.product-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__category {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-detail__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
}

.product-detail__prices {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-detail__price {
    font-size: 1.75rem;
    font-weight: 600;
}

.product-detail__compare {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.product-detail__badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: #fff;
    color: #000;
    font-size: 0.8125rem;
    font-weight: 600;
}

.product-detail__desc {
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.product-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.product-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    overflow: hidden;
}

.qty-control button {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
    font-size: 1.125rem;
}

.qty-control input {
    width: 3rem;
    text-align: center;
    border: none;
    background: transparent;
    color: #fff;
    outline: none;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

/* Cart */
.cart-page {
    padding: 7rem 0 4rem;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cart-table th,
.cart-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-table th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item img {
    width: 64px;
    height: 64px;
    border-radius: 0.75rem;
    object-fit: cover;
}

.cart-item__name {
    font-weight: 500;
}

.cart-item__remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 0.8125rem;
    text-decoration: underline;
}

.cart-summary {
    max-width: 400px;
    margin-left: auto;
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: var(--muted);
}

.cart-summary__total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.125rem;
    font-weight: 600;
}

.cart-summary .btn {
    width: 100%;
    margin-top: 1.5rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 7rem 0 4rem;
}

.contact-info h2,
.contact-form-wrap h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin: 0 0 1rem;
}

.contact-info p {
    color: var(--muted);
    margin-bottom: 2rem;
}

.contact-info__item {
    margin-bottom: 1.25rem;
}

.contact-info__item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(255, 255, 255, 0.35);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 4rem;
    margin-top: 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer__logo {
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer__logo img {
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 0.5rem;
}

.footer__brand p {
    color: var(--muted);
    font-size: 0.875rem;
    margin: 0;
}

.footer__links h4,
.footer__newsletter h4 {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.footer__links a {
    display: block;
    color: var(--muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer__links span {
    display: block;
    color: var(--muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer__links a:hover {
    color: #fff;
}

.footer__newsletter p {
    color: var(--muted);
    font-size: 0.875rem;
    margin: 0 0 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.625rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    outline: none;
    min-width: 0;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
}

.footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer__bottom-inner p {
    margin: 0;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    background: #fff;
    color: #000;
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.pagination a:hover {
    background: rgba(255, 255, 255, 0.06);
}

.pagination .is-current {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--muted);
}

.hidden {
    display: none !important;
}

@media (max-width: 767px) {
    .hidden-mobile {
        display: none;
    }
}

/* Responsive */
@media (min-width: 768px) {
    .navbar__links {
        display: flex;
    }

    .navbar__search input {
        display: block;
    }

    .navbar__toggle {
        display: none;
    }
}

@media (max-width: 900px) {
    .product-detail__grid,
    .contact-grid,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        display: block;
        margin-bottom: 1rem;
        padding: 1rem;
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.03);
    }

    .cart-table td {
        display: block;
        border: none;
        padding: 0.375rem 0;
    }

    .cart-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 0.25rem;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 1rem;
    }

    .hero__content {
        padding-top: 6rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}
