:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --announcement-bg: #000000;
    --announcement-text: #ffffff;
    --footer-bg: var(--bg-color);
    --footer-text: var(--text-color);
    --border-color: rgba(0, 0, 0, 0.1);
    --card-bg: #f5f5f5;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --spacing-unit: 1rem;
    --header-height: auto;
    --loading-pulse: rgba(0, 0, 0, 0.05);
}

body.dark-mode {
    --bg-color: #000000;
    --text-color: #ffffff;
    --footer-bg: #000000;
    --footer-text: #ffffff;
    --border-color: rgba(255, 255, 255, 0.2);
    --card-bg: #1a1a1a;
    --loading-pulse: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

main {
    flex: 1 !important;
}

/* --- Loading & Placeholders --- */
@keyframes pulse-logo {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.97);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Image Loading Placeholder */
.img-loading-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--card-bg);
}

.img-loading-wrapper::before {
    content: 'LOCA';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.2;
    z-index: 10;
    animation: pulse-logo 1.5s infinite ease-in-out;
    pointer-events: none;
}

.img-loading-wrapper>* {
    opacity: 0 !important;
    transition: opacity 0.5s ease;
}

.img-loading-wrapper.loaded>* {
    opacity: 1 !important;
}

.img-loading-wrapper.loaded::before {
    display: none;
}




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

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--announcement-bg);
    color: var(--announcement-text);
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
}

.announcement-text {
    display: inline-block;
}

/* Main Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 2rem;
    height: auto;
    min-height: 60px;
    border-bottom: 1px solid transparent;
    /* Optional divider */
    position: sticky;
    top: 0;
    background: var(--bg-color);
    z-index: 1000;
}

/* Left Nav */
.left-nav ul {
    display: flex;
    gap: 1.5rem;
}

.left-nav a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chevron {
    font-size: 0.7rem;
    margin-top: -2px;
}

/* Logo */
.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Right Utils */
.right-utils {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.right-utils .nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.icon-btn svg {
    display: block;
}

/* Account Dropdown */
.account-dropdown {
    position: relative;
}

.account-btn {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    vertical-align: middle !important;
    line-height: 1 !important;
    display: inline-block;
    height: auto;
    position: relative;
    top: -1px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 4px;
}

body.dark-mode .dropdown-menu {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    font-size: 0.8rem;
    color: #ffffff;
    transition: background 0.2s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
}


/* Responsive adjustments */
@media (max-width: 1024px) {
    .main-header {
        padding: 0 1rem;
    }

    .left-nav {
        display: none;
        /* In a real app, this would become a hamburger menu */
    }

    .right-utils span,
    .right-utils .nav-link {
        display: none;
    }

    .right-utils .icon-btn {
        display: block;
    }

    .right-utils {
        gap: 1rem;
    }

    /* Keep Search icon visible but hide text */
    .search-btn span {
        display: none;
    }
}

/* Hero Section */
.hero-banner {
    position: relative;
    width: 100%;
    /* Optional: Limit max-width if you want to contain it, otherwise 100% is fine */
}

.hero-image-container {
    position: relative;
    width: 100%;
    /* 16:9 Aspect Ratio technique */
    padding-top: 56.25%;
    /* 9 / 16 * 100 */
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Optional overlay to ensure text readability if image is bright */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: block;
    /* Ensure it's rendered */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 12px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-btn .arrow {
    font-size: 1.1em;
    line-height: 1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-btn {
        padding: 8px 16px;
        font-size: 0.7rem;
    }
}

/* --- Section Utility --- */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 2rem;
    margin-bottom: 2rem;
    margin-top: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.section-link {
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-color);
}

/* --- Product Grid --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    /* Typical fashion portrait ratio */
    background-color: var(--card-bg);
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #000;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 8px;
    text-transform: uppercase;
    z-index: 2;
}

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

/* Color Swatches */
.color-swatches {
    display: flex;
    gap: 6px;
    margin-bottom: 4px;
}

.swatch {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.product-cat {
    font-size: 0.65rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.product-price {
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 2px;
}

.sale-price {
    color: #d32f2f;
    /* Sale red */
    margin-right: 6px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
}

/* --- Promo Banner (Categories) --- */
.promo-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    /* Adjust as needed */
    margin: 4rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-image-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 1rem;
}

.promo-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.promo-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

.promo-text-sub {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.6;
    letter-spacing: 0.05em;
}

/* --- New Arrivals Split --- */
.new-arrivals-section {
    padding-bottom: 0.5rem;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    /* Creates the thin white line effect */
    background: #fff;
}

.split-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: #f5f5f5;
    overflow: hidden;
}

.split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-toggle-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .section-header {
        padding: 0 1rem;
    }

    .product-grid {
        padding: 0 1rem;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on tablet */
    }

    .promo-title {
        font-size: 2rem;
    }

    .promo-text,
    .promo-text-sub {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {

    /* Mobile announcement bar - tiny font */
    .announcement-bar {
        font-size: 0.3rem;
        padding: 2px 0;
        letter-spacing: 0;
        text-align: center;
    }

    .announcement-text {
        animation: none !important;
    }

    /* Mobile header - Single row like desktop */
    .main-header {
        padding: 3px 0.5rem;
        height: 30px !important;
        min-height: 30px !important;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    /* Show Left Nav items - inline */
    .left-nav {
        display: flex !important;
        flex: 1;
        order: 1;
    }

    .left-nav ul {
        gap: 0.4rem;
        flex-wrap: nowrap;
    }

    .left-nav a {
        font-size: 0.4rem;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .chevron {
        display: none;
    }

    /* Center Logo */
    .logo {
        position: static;
        transform: none;
        order: 2;
        flex: 0 0 auto;
    }

    .logo-img {
        height: 26px;
    }

    /* Show Right Utils items - inline */
    .right-utils {
        display: flex !important;
        flex: 1;
        justify-content: flex-end;
        gap: 0.4rem !important;
        order: 3;
    }

    .right-utils .nav-link,
    .right-utils span {
        display: inline-block !important;
        font-size: 0.4rem;
        white-space: nowrap;
    }

    .icon-btn svg {
        width: 12px;
        height: 12px;
    }

    .search-btn {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        font-size: 0.4rem;
        gap: 3px;
    }

    .search-btn span {
        display: inline-block !important;
    }

    /* Compress Hero */
    .hero-image-container {
        padding-top: 45%;
    }

    .hero-title {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .hero-subtitle {
        font-size: 0.5rem;
        margin-bottom: 0.5rem;
    }

    /* Compact section headers */
    .section-header {
        flex-direction: row;
        align-items: center;
        margin-top: 1rem;
        margin-bottom: 0.75rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 0.65rem;
    }

    .section-link {
        font-size: 0.45rem;
    }

    /* Horizontal scroll for products - very compact */
    .product-grid {
        display: flex;
        gap: 0.75rem;
        overflow-x: auto;
        padding: 0 1rem 0.5rem 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .product-card {
        flex: 0 0 60%;
        /* Each card takes 60% width */
        scroll-snap-align: start;
        gap: 0.5rem;
    }

    .product-image-wrapper {
        aspect-ratio: 3 / 4;
        padding-left: 0.5rem;
    }

    .product-info {
        padding-left: 0.5rem;
    }

    .product-cat {
        font-size: 0.4rem;
    }

    .product-name {
        font-size: 0.5rem;
    }

    .product-price {
        font-size: 0.5rem;
    }

    /* Very compact promo banner */
    .promo-banner {
        height: 150px;
        /* Very short on mobile */
        margin: 1rem 0;
    }

    .promo-label {
        font-size: 0.4rem;
        margin-bottom: 0.3rem;
    }

    .promo-title {
        font-size: 1rem;
        margin-bottom: 0.15rem;
    }

    .promo-text,
    .promo-text-sub {
        font-size: 0.6rem;
    }

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

/* Footer */
.site-footer {
    border-top: 1px solid var(--border-color);
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 0.75rem 0;
    margin-top: auto !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-info {
    text-align: left;
}

.copyright {
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.address {
    font-size: 0.75rem;
    opacity: 0.7;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    transition: opacity 0.2s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
        padding: 0 0.5rem;
    }

    .footer-info {
        text-align: center;
    }

    .copyright {
        font-size: 0.5rem;
        margin-bottom: 0.1rem;
    }

    .address {
        font-size: 0.45rem;
    }

    .footer-social svg {
        width: 16px;
        height: 16px;
    }
}

/* --- About Page --- */
.about-hero {
    position: relative;
    margin-bottom: 0.5rem;
}

.about-section {
    padding: 2rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Info Layout (About Us) */
.info-layout .section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 2rem;
    opacity: 0.9;
}

.about-side-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.why-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.why-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Split Layout (Contact) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-card {
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 8px;
}

.address-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 2rem;
}

.phone-number,
.email-link {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 1.5rem;
    letter-spacing: -0.02em;
    display: block;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Developer Section */
.developer-section {
    text-align: center;
    background-color: var(--announcement-bg);
    color: var(--announcement-text);
}

.dev-info-box {
    max-width: 600px;
    margin: 0 auto;
}

.dev-text {
    font-size: 1rem;
    margin: 2rem 0;
    opacity: 0.8;
}

.dev-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    display: inline-block;
}

/* Mobile Adjustments for About Page - Preserving PC-like layout */
@media (max-width: 768px) {
    .about-section {
        padding: 2rem 1rem;
    }

    .info-layout .section-container {
        grid-template-columns: 1fr 1fr;
        /* Keep side-by-side */
        gap: 1.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr 1fr;
        /* Keep side-by-side */
        gap: 1rem;
    }

    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Keep 3 columns */
        gap: 0.5rem;
    }

    .section-text {
        font-size: 0.6rem;
        /* Smaller text for mobile side-by-side */
        text-align: left;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .why-item {
        padding: 0.5rem;
    }

    .why-icon {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .why-item h3 {
        font-size: 0.5rem;
    }

    .why-item p {
        font-size: 0.4rem;
    }

    .info-visual {
        order: 0;
    }

    .contact-card {
        padding: 1rem;
        text-align: left;
    }

    .phone-number,
    .email-link {
        font-size: 0.8rem;
        margin-top: 0.8rem;
        font-weight: 600;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.6rem;
    }
}

/* --- About Teaser Section --- */
.about-teaser-section {
    padding: 6rem 2rem;
    background: var(--bg-color);
}

.teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.teaser-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.teaser-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.teaser-img-el {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .about-teaser-section {
        padding: 3rem 1rem;
    }

    .teaser-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .teaser-text {
        font-size: 0.6rem;
    }

    .teaser-content .promo-label {
        font-size: 0.4rem;
    }

    .teaser-content .section-title {
        font-size: 0.8rem;
    }

    .teaser-content .section-link {
        font-size: 0.5rem;
    }
}

/* --- Shop Page Styles --- */
.shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.shop-header {
    margin-bottom: 2rem;
}

.shop-main-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.shop-subtitle {
    max-width: 600px;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.6;
    text-transform: lowercase;
}

/* --- Filter Bar --- */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 3rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: nowrap;
    gap: 1.5rem;
}

.filter-left,
.filter-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.filter-label {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-label .dot {
    color: #4B49AC;
    /* Blue dot from image */
    font-size: 1.2rem;
}

.dropdown-btn {
    background: none;
    border: none;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-color);
    transition: opacity 0.2s;
}

.dropdown-btn:hover {
    opacity: 0.7;
}

.layout-toggles {
    display: flex;
    gap: 0.5rem;
}

.layout-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    font-size: 0.7rem;
    cursor: pointer;
    color: var(--text-color);
    border-radius: 4px;
    letter-spacing: -1.5px;
    font-weight: 900;
    transition: all 0.2s;
}

.layout-btn.active,
.layout-btn:hover {
    border-color: var(--text-color);
    background: var(--text-color);
    color: var(--bg-color);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    transition: all 0.3s ease;
}

.collection-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

.collection-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

.collection-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

.collection-grid.cols-5 {
    grid-template-columns: repeat(5, 1fr) !important;
}

.shop-product-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shop-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.1;
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
}

.body.dark-mode .shop-image-wrapper {
    background-color: #111;
}

.shop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.shop-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 2;
}

.shop-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shop-product-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.shop-product-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.6;
}

.shop-product-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Mobile Adjustments for Shop */
@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .shop-container {
        padding: 2rem 1rem;
    }

    .shop-main-title {
        font-size: 1.5rem;
    }

    .filter-bar {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        padding: 0.8rem 0 !important;
        gap: 0.5rem !important;
        margin-bottom: 2rem !important;
    }

    .filter-left,
    .filter-right {
        display: flex !important;
        gap: 0.4rem !important;
        align-items: center;
    }

    .filter-label {
        font-size: 0.5rem !important;
    }

    .filter-label .dot {
        font-size: 0.8rem !important;
    }

    .dropdown-btn {
        font-size: 0.5rem !important;
        gap: 0.2rem !important;
    }

    .layout-toggles {
        display: flex !important;
        gap: 0.2rem !important;
    }

    .layout-btn {
        padding: 2px 5px !important;
        font-size: 0.4rem !important;
    }

    .collection-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
    }

    .shop-product-card {
        gap: 0.5rem;
    }

    .shop-image-wrapper {
        aspect-ratio: 1;
        border-radius: 4px;
    }

    .shop-product-name {
        font-size: 0.6rem;
    }

    .shop-product-desc {
        display: none !important;
    }

    .shop-product-price {
        font-size: 0.5rem;
    }
}