/* ==========================================
   TOTE WISH - Luxury E-commerce Styles
   ========================================== */

:root {
    --color-primary: #0b0b0b;
    --color-secondary: #8b5e3c;
    --color-accent: #b08d57;
    --color-bg: #ffffff;
    --color-text: #111111;
    --color-text-light: #5f5f5f;
    --color-section-alt: #fbfaf8;

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --container-max: 1240px;
    --container-padding: 1.5rem;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    --radius-soft: 10px;
    --radius-hard: 0px;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.06);
    --shadow-micro: 0 8px 22px rgba(0, 0, 0, 0.08);

    /* Brand Theme Defaults */
    --brand-accent: var(--color-secondary);
    --brand-bg-accent: #fcfbf9;
}

/* Brand Themes */
.theme-lv {
    --brand-accent: #7a4b2a;
    --brand-bg-accent: #fbf7f3;
}

.theme-hermes {
    --brand-accent: #ff7700;
    --brand-bg-accent: #fff9f5;
}

.theme-chanel {
    --brand-accent: #000000;
    --brand-bg-accent: #f7f7f7;
}

.theme-gucci {
    --brand-accent: #006b3f;
    --brand-bg-accent: #f5f9f7;
}

.theme-dior {
    --brand-accent: #8e9091;
    --brand-bg-accent: #f8f8f8;
}

.brand-text {
    color: var(--brand-accent) !important;
}

.brand-bg {
    background-color: var(--brand-bg-accent) !important;
}

.brand-border {
    border-color: var(--brand-accent) !important;
}

.brand-btn {
    background-color: var(--brand-accent) !important;
    border-color: var(--brand-accent) !important;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text);
    background: var(--color-bg);

    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

a {
    color: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Announcement Bar */
.announcement-bar {
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.65rem;

    letter-spacing: 0.1em;
    font-weight: 400;
}

.announcement-bar p a {
    flex-wrap: wrap;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.6rem;
        padding: 0.5rem;
        letter-spacing: 0.05em;
    }

    .announcement-bar span {
        margin-top: 4px;
        font-size: 0.8em !important;
    }
}

/* Header & Nav */
.header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-container {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-left .nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

/* Logo - Ultra Premium Refinement */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    height: 25px;
    width: auto;
    object-fit: contain;
}

.logo:hover {
    opacity: 0.8;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

.coupon-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 1.5rem;
}

.coupon-label {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
}

.coupon-code {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-accent);
    letter-spacing: 0.15em;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
    transition: var(--transition);
}

.action-btn:hover {
    color: var(--color-secondary);
}

/* Search Modal */
.search-modal {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 4000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    width: 90%;
    max-width: 800px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-form {
    position: relative;
    margin-bottom: 2rem;
}

.search-form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);

    background: transparent;
    padding: 1.5rem 0;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-form input:focus {
    border-color: var(--color-secondary);
}

.search-help {
    text-align: left;
    margin-top: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #999;
    text-transform: uppercase;
}

.search-suggestions {
    margin-top: 4rem;
    text-align: left;
    width: 100%;
}

.suggestion-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.suggestion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
}

.suggestion-item {
    cursor: pointer;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    font-family: var(--font-display);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.suggestion-item:hover {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.search-results-preview {
    margin-top: 3rem;
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.search-results-preview.active {
    display: grid;
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    color: var(--color-primary);
    animation: fadeIn 0.4s ease forwards;
}

.result-image {
    aspect-ratio: 1;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.result-item:hover .result-image img {
    transform: scale(1.05);
}

.result-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.result-info span {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar for Search */
.search-results-preview::-webkit-scrollbar {
    width: 3px;
}

.search-results-preview::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.search-results-preview::-webkit-scrollbar-thumb {
    background: #ddd;
}

.search-results-preview::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.modal-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 4001;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.nav-link {
    text-decoration: none;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-secondary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: calc(100vh - 80px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #000;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-placeholder-gradient {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 8vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    letter-spacing: 0.05em;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

.trust-strip {
    background: var(--brand-bg-accent);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1.6rem 0;
}

.trust-strip-item {
    text-align: center;
}

.trust-strip-title {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    color: var(--color-primary);
}

.trust-strip-sub {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Info Sections */
.info-section {
    padding: 6rem 0;
}

.info-section.alternate {
    background: var(--color-section-alt);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-eyebrow {
    color: var(--brand-accent);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.info-text p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.info-image-placeholder {
    height: 450px;
    position: relative;
    overflow: hidden;
}

.info-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Trust Badge */
.trust-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-hard);
    box-shadow: var(--shadow-soft);
    border-left: 3px solid var(--brand-accent);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-primary);
}

.badge-content svg {
    color: var(--brand-accent);
    width: 20px;
    height: 20px;
}

.badge-content span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Fulfillment Cards */
.fulfillment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.f-card {
    padding: 3rem 2rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.f-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.f-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.f-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.collection-row {
    padding: 0 0 4rem 0;
}

.row-header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 0.8rem;
}

.shop-controls {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-hard);
    padding: 0.9rem;
}

.shop-controls-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.shop-control {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.shop-control-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666;
    font-weight: 500;
}

.shop-control input[type="number"],
.shop-control select {
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: #fff;
    border-radius: var(--radius-hard);
    min-width: 170px;
    transition: var(--transition);
}

.shop-control.price-range {
    min-width: 260px;
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

.price-range-slider {
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
}

.price-range-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 30px;
    background: transparent;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.price-range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 1px solid #d6d6d6;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    pointer-events: auto;
    cursor: pointer;
}

.price-range-slider input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 1px solid #d6d6d6;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    pointer-events: auto;
    cursor: pointer;
}

.price-range-track {
    width: 100%;
    height: 3px;
    background: #e9e9e9;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
}

.price-range-fill {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background: var(--color-secondary);
}

.price-range-hidden {
    display: none;
}

.shop-control input[type="number"]:focus,
.shop-control select:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 4px rgba(122, 75, 42, 0.10);
}

.row-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.view-link {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
    text-decoration: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-image {
    aspect-ratio: 3/4;
    background: #f6f6f6;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.product-image img {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #ececec, #e1e1e1);
}

.luxury-tile {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #eee 25%, #f9f9f9 50%, #eee 75%);
    background-size: 200% 200%;
    animation: shine 5s infinite;
}

@keyframes shine {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: #fff;
    padding: 0.35rem 0.7rem;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.price-row {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1.2rem;
    margin-top: auto;
}

.price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

.old-price {
    font-size: 0.7rem;
    color: #bbb;
    text-decoration: line-through;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 1px solid var(--color-primary);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border-radius: var(--radius-hard);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-buy {
    width: 100%;
}

.btn-buy:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-primary);
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .logo-main {
    color: #fff;
    margin-bottom: 1.2rem;
    display: block;
    font-size: 1.4rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.62);
    max-width: 360px;
    line-height: 1.6;
}

.footer h4 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.6rem;
}

.footer ul a {
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer ul a:hover {
    color: #fff;
}

.footer ul a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(122, 75, 42, 0.25);
    border-radius: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 1.75rem;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.footer-meta-sep {
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    display: inline-block;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .header-container {
        height: 70px;
    }

    .nav-left .nav-list {
        display: none;
    }

    .coupon-box {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-strip-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.4rem 0;
    }

    .trust-strip-item {
        text-align: left;
        padding-left: 1rem;
        border-left: 2px solid rgba(122, 75, 42, 0.35);
    }

    .header-container {
        position: relative;
        justify-content: center;
        min-height: 60px;
        height: auto;
        padding: 0.5rem 0;
        gap: 0.5rem;
    }

    .nav-left {
        display: none;
    }

    .header-right {
        position: absolute;
        right: var(--container-padding);
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-main {
        display: none;
    }

    .logo-main {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
        line-height: 1;
    }

    .logo-sub {
        font-size: 0.4rem;
        letter-spacing: 0.4em;
        margin-top: 2px;
    }

    .header-right {
        gap: 0.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .info-image-placeholder {
        height: 300px;
    }

    .fulfillment-cards {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .row-header {
        align-items: stretch;
        flex-direction: column;
        gap: 1rem;
    }

    .shop-controls {
        width: 100%;
        align-items: stretch;
        gap: 0.75rem;
        padding: 0.9rem;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: var(--radius-hard);
        background: #fff;
    }

    .shop-controls-group {
        width: 100%;
    }

    .shop-control {
        width: 100%;
    }

    .shop-control input,
    .shop-control select {
        width: 100%;
        min-width: 0;
        padding: 0.8rem 0.9rem;
        font-size: 1rem;
        border-radius: var(--radius-hard);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 65px;
        padding: 0 1.5rem;
    }

    .logo-main {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .logo-sub {
        display: block;
        font-size: 0.35rem;
        letter-spacing: 0.3em;
        margin-top: 0px;
        opacity: 0.8;
    }

    .hero-title {
        font-size: 2rem;
    }

    .scrollable-mobile {
        display: grid;
        overflow: visible;
        gap: 1.25rem;
        padding-bottom: 0;
        scroll-snap-type: none;
        scrollbar-width: auto;
    }

    .scrollable-mobile::-webkit-scrollbar {
        display: initial;
    }

    .scrollable-mobile .product-card {
        min-width: 0;
        scroll-snap-align: none;
    }
}

@media (max-width: 330px) {
    :root {
        --container-padding: 1rem;
    }

    .logo-main {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1rem;
        font-size: 0.6rem;
    }

    .price {
        font-size: 1rem;
    }
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    z-index: 3000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* BNPL Messaging */
.bnpl-message {
    font-size: 0.72rem;
    color: #777;
    margin: 1rem 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

#installmentPrice {
    font-weight: 600;
    color: var(--color-primary);
}

.bnpl-logos {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 4px;
}

.bnpl-img {
    height: 14px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: var(--transition);
}

.bnpl-img:hover {
    filter: brightness(1);
}

.afterpay-logo {
    height: 12px;
}

.klarna-logo {
    height: 35px;
    margin-top: -2px;
}

.footer-logo {
    height: 45px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}