/* ============================================================
   ETSY COMPLETE — CSS 
   Header + Banner + Content + Footer
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #222222;
    background-color: #ffffff;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

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

.global-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

/* --- Header Top Row --- */
.header-top {
    border-bottom: 1px solid #ddd;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 18px;
}

.header-top .header-inner {
    display: flex;
    align-items: center;
    height: 48px;
    gap: 10px;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 4px;
}

.logo-text {
    font-family: 'Guardian Egyptian', Georgia, 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 700;
    color: #F1641E;
    letter-spacing: -0.5px;
    line-height: 1;
}

/* Categories Button */
.header-categories-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    font-size: 13px;
    font-weight: 500;
    color: #222222;
    padding: 6px 10px;
    border-radius: 24px;
    white-space: nowrap;
    transition: background-color 0.15s;
}

.header-categories-btn:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

/* Search Bar */
.header-search {
    flex: 1;
    display: flex;
    align-items: center;
    height: 40px;
    border: 1px solid #cccccc;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.header-search:focus-within {
    border-color: #222222;
    box-shadow: 0 0 0 1px #222222;
}

.header-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: 14px;
    font-family: inherit;
    color: #222;
    height: 100%;
    background: transparent;
}

.header-search input::placeholder {
    color: #888888;
    font-size: 14px;
}

.search-submit {
    width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F1641E;
    border: none;
    border-radius: 0 24px 24px 0;
    transition: background-color 0.15s;
    flex-shrink: 0;
}

.search-submit:hover {
    background-color: #E55A15;
}

/* Header Actions (Sign in, icons) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    margin-left: 2px;
}

.header-link {
    font-size: 13px;
    font-weight: 400;
    color: #222222;
    padding: 6px 10px;
    border-radius: 24px;
    white-space: nowrap;
    transition: background-color 0.15s;
}

.header-link:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: #222222;
    padding: 0;
    transition: background-color 0.15s;
}

.icon-btn:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.cart-btn {
    position: relative;
}

/* --- Header Category Navigation --- */
.header-nav {
    background: #FDEBD2;
}

.header-nav .header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}

.nav-category-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-cat-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 400;
    color: #222222;
    padding: 5px 12px;
    border-radius: 18px;
    white-space: nowrap;
    transition: background-color 0.15s;
}

.nav-cat-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* ============================================================
   SHOP CONTAINER
   ============================================================ */

.shop-container {
    max-width: 100%;
    margin: 0 auto;
}

/* ---- Banner ---- */
.shop-banner {
    width: 100%;
    margin-bottom: 0;
}

.banner-placeholder {
    width: 100%;
    height: 420px;
    background: url('https://i.etsystatic.com/16595015/r/isbl/d004a1/83989964/isbl_1680x420.83989964_ghxq9x9o.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner-content {
    text-align: center;
    z-index: 1;
    position: relative;
    animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 8px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ---- Shop Header Area ---- */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 36px 20px 36px;
    border-bottom: 1px solid #e1e3df;
}

.shop-header-left {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.shop-logo {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.logo-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #e1e3df;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
}

.logo-circle:hover {
    opacity: 0.9;
}

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

.logo-initials {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.shop-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 4px;
}

.shop-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.shop-name {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.3px;
    color: #222222;
    line-height: 1.3;
}

.shop-location {
    color: #757575;
    font-size: 13px;
    margin-bottom: 4px;
}

.shop-stats {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #222222;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-item.rating {
    display: flex;
    align-items: center;
}

.stat-item strong {
    font-weight: 600;
}

.divider {
    color: #d5d7d3;
    margin: 0 10px;
    font-weight: 300;
    font-size: 16px;
}

/* Header Right */
.shop-header-right {
    display: flex;
    gap: 12px;
    padding-top: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 40px;
    padding: 0 20px;
    border-radius: 24px;
    border: 2px solid #222222;
    background-color: transparent;
    color: #222222;
    font-family: inherit;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.15s;
}

.action-btn:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.action-btn svg {
    width: 16px;
    height: 16px;
}

/* ---- Sticky Shop Navigation ---- */
.shop-nav-wrapper {
    position: sticky;
    top: 84px; /* below global header */
    background-color: #ffffff;
    z-index: 100;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 36px;
    border-bottom: 1px solid #e1e3df;
    transition: box-shadow 0.3s;
}

.shop-nav-wrapper.scrolled {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.shop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 0;
}

.nav-links a {
    color: #595959;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 16px 16px 14px 16px;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.nav-links a.active {
    color: #222222;
    font-weight: 500;
    border-bottom-color: #222222;
}

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

.shop-search {
    display: flex;
    align-items: center;
    border: 1px solid #cccccc;
    border-radius: 24px;
    padding: 0 4px 0 16px;
    height: 40px;
    width: 300px;
    background: #ffffff;
    transition: border-color 0.15s;
}

.shop-search:focus-within {
    border-color: #222222;
}

.shop-search input {
    background: transparent;
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    font-family: inherit;
    color: #222222;
}

.shop-search input::placeholder {
    color: #888888;
}

.shop-search button {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Main Layout ---- */
.shop-main {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 36px;
    gap: 32px;
}

/* Sidebar */
.shop-sidebar {
    width: 230px;
    flex-shrink: 0;
}

.category-list {
    list-style: none;
    padding-right: 16px;
    border-right: 1px solid #e1e3df;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: #595959;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s, padding-left 0.2s;
}

.category-list li:hover {
    color: #222;
    padding-left: 4px;
}

.category-list li.cat-active {
    color: #222;
    font-weight: 600;
}

.cat-count {
    color: #222;
}

/* Sidebar Actions */
.sidebar-actions {
    margin-top: 24px;
    padding-right: 16px;
}

.btn-dark {
    width: 100%;
    padding: 10px;
    background: #222222;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.btn-dark:hover {
    background-color: #444;
}

.btn-light {
    width: 100%;
    padding: 10px;
    background: #ffffff;
    color: #222222;
    border: 1px solid #d4d5d9;
    border-radius: 4px;
    font-weight: 600;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-light:hover {
    border-color: #222;
}

.sidebar-stats {
    margin-top: 32px;
    font-size: 13px;
    color: #222222;
}

.sidebar-stats > div {
    margin-bottom: 16px;
}

.sidebar-stats a {
    text-decoration: underline;
    color: inherit;
}

.sidebar-stats .report-link {
    margin-top: 32px;
}

/* ---- Content ---- */
.shop-content {
    flex: 1;
}

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

.section-header h2 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.sort-dropdown:hover {
    color: #f1641e;
}

/* ---- Product Grid ---- */
.item-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.item-card {
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.item-img-container {
    width: 100%;
    aspect-ratio: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    background: linear-gradient(145deg, #f0f0f0, #e6e6e6);
}

.item-title {
    font-size: 14px;
    font-weight: 400;
    color: #595959;
    line-height: 1.4;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.price {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.old-price {
    font-size: 12px;
    color: #595959;
    text-decoration: line-through;
}

.discount {
    font-size: 12px;
    color: #2b7a0b;
}

.badge-free {
    display: inline-block;
    background-color: #e2f1d2;
    color: #2b7a0b;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

/* ---- Lower Sections ---- */
.shop-lower-sections {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 36px;
    margin-top: 48px;
    border-top: 1px solid #e1e3df;
}

.info-section {
    display: flex;
    gap: 32px;
    padding: 32px 0;
}

.section-left {
    width: 250px;
    flex-shrink: 0;
}

.section-left h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.section-right {
    flex: 1;
    color: #222222;
}

.sub-text {
    color: #595959;
    font-size: 13px;
}

.section-divider {
    border: 0;
    height: 1px;
    background: #e1e3df;
}

.inner-divider {
    border: 0;
    height: 1px;
    background: #e1e3df;
    margin: 24px 0;
}

/* Announcements */
.close-btn {
    text-align: center;
    font-weight: 600;
    margin-top: 24px;
    cursor: pointer;
    color: #222;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #f1641e;
}

/* Reviews */
.review-avg {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

.review-count {
    font-size: 14px;
    font-weight: normal;
    color: #595959;
}

.review-subtitle {
    font-weight: 600;
    margin-bottom: 4px;
}

.review-desc {
    font-size: 13px;
    color: #595959;
    line-height: 1.4;
    margin-right: 16px;
}

.review-sort {
    text-align: right;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.review-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e1e3df;
}

.review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e1e3df, #c9cbc7);
    flex-shrink: 0;
}

.review-content {
    flex: 1;
}

.reviewer-name {
    font-size: 13px;
    color: #595959;
    margin-bottom: 4px;
}

.reviewer-name a {
    text-decoration: underline;
    color: #222;
}

.stars {
    color: #222;
    margin-bottom: 8px;
    letter-spacing: 2px;
    font-size: 18px;
}

.review-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.review-product {
    display: flex;
    gap: 12px;
    align-items: center;
}

.rp-img {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e1e3df, #c9cbc7);
    border-radius: 4px;
    flex-shrink: 0;
}

.rp-title {
    font-size: 13px;
    color: #595959;
}

.translation-link {
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: #222;
    transition: color 0.2s;
}

.translation-link:hover {
    color: #f1641e;
}

/* About */
.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 16px;
}

.stat-num {
    font-size: 24px;
    font-weight: 500;
    margin-top: 4px;
}

.about-video {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.play-btn {
    width: 64px;
    height: 64px;
    background: #f1641e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding-left: 5px;
    transition: transform 0.3s, background-color 0.3s;
    z-index: 1;
}

.play-btn:hover {
    transform: scale(1.1);
    background-color: #d4541a;
}

/* Shop Members */
.member-profile {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.member-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e1e3df, #c9cbc7);
    flex-shrink: 0;
}

.member-info h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2px;
}

.member-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #595959;
    margin-top: 8px;
}

/* Policies */
.policies-section {
    display: flex;
    flex-direction: column;
    padding-bottom: 64px;
}

.policy-row {
    display: flex;
    gap: 32px;
    width: 100%;
}

.policy-row .section-left h3 {
    font-size: 14px;
    font-weight: 600;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.pay-icon {
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.pay-visa {
    border: 1px solid #ccc;
    color: #1a1f71;
    background: #fff;
}

.pay-mc {
    background: #eb001b;
    color: #fff;
}

.pay-gift {
    background: #70b05b;
    color: #fff;
}

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

.global-footer {
    margin-top: 0;
    background: #f5f5f5;
    border-top: 1px solid #e1e3df;
}

.footer-top {
    padding: 48px 0 32px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top .footer-inner {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-col {
    min-width: 160px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: #595959;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #222;
}

/* App download */
.footer-download {
    flex: 1;
    min-width: 220px;
}

.app-badges {
    display: flex;
    gap: 12px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #222;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.app-badge:hover {
    background-color: #444;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #e1e3df;
    padding: 20px 0;
}

.footer-bottom .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo {
    font-family: 'Georgia', serif;
    font-size: 22px;
    font-weight: 700;
    color: #f1641e;
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    color: #595959;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #222;
}

.footer-region {
    display: flex;
    align-items: center;
}

.region-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 24px;
    padding: 8px 16px;
    font-size: 12px;
    font-family: inherit;
    color: #222;
    cursor: pointer;
    transition: border-color 0.2s;
}

.region-selector:hover {
    border-color: #222;
}

/* ============================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.item-card {
    animation: fadeInUp 0.5s ease-out both;
}

.item-card:nth-child(1) { animation-delay: 0.05s; }
.item-card:nth-child(2) { animation-delay: 0.1s; }
.item-card:nth-child(3) { animation-delay: 0.15s; }
.item-card:nth-child(4) { animation-delay: 0.2s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .item-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .shop-sidebar {
        width: 200px;
    }

    .footer-top .footer-inner {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .header-categories-btn span {
        display: none;
    }

    .header-link {
        font-size: 12px;
        padding: 6px 8px;
    }

    .nav-category-list {
        overflow-x: auto;
        gap: 4px;
    }

    .shop-header {
        flex-direction: column;
        gap: 16px;
    }

    .shop-header-right {
        padding-top: 0;
    }

    .shop-main {
        flex-direction: column;
    }

    .shop-sidebar {
        width: 100%;
    }

    .category-list {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        border-right: none;
        padding-right: 0;
        padding-bottom: 16px;
        border-bottom: 1px solid #e1e3df;
    }

    .category-list li {
        white-space: nowrap;
        padding: 8px 16px;
        background: #f5f5f5;
        border-radius: 24px;
    }

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

    .shop-nav {
        flex-direction: column;
        gap: 12px;
    }

    .shop-search {
        width: 100%;
    }

    .info-section {
        flex-direction: column;
        gap: 16px;
    }

    .section-left {
        width: 100%;
    }

    .policy-row {
        flex-direction: column;
        gap: 8px;
    }

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

    .banner-subtitle {
        font-size: 14px;
    }

    .footer-top .footer-inner {
        flex-direction: column;
        gap: 24px;
    }

    .footer-bottom .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }

    .app-badges {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .item-grid {
        grid-template-columns: 1fr;
    }

    .shop-name {
        font-size: 20px;
    }

    .banner-placeholder {
        height: 180px;
    }

    .banner-title {
        font-size: 22px;
    }
}
