/* 1. BASIS SETUP & FONTS */

:root {
    --primary: #1d1d1f;
    --accent: #b8860b; /* Luxe goud */
    --bg-body: #f5f5f7;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --radius: 28px;
    --transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Apple's systeemfont stack voor de meest cleane look */
    font-family: 'SF Pro Display', 'SF Pro Text', 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html::-webkit-scrollbar, 
body::-webkit-scrollbar {
  display: none;
}

body {
    background-color: var(--bg-body);
    color: var(--primary);
    overflow-x: hidden;
}

/* 2. MODERNE NAVBAR (Glassmorphism) */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

.user-greeting {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.user-greeting p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #1d1d1f;
}

.user-greeting span {
    font-weight: 400;
}

.nav-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.token-badge {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 134, 11, 0.08);
    border: 1px solid rgba(184, 134, 11, 0.15);
    padding: 0 16px;
    border-radius: 12px;
    color: #b8860b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.token-badge i { font-size: 14px; }
.token-badge span { font-weight: 800; font-size: 15px; }
.token-badge small { font-weight: 700; font-size: 10px; opacity: 0.7; letter-spacing: 0.5px; }

.nav-button-group {
    min-height: 38px;
    background: #1d1d1f;
    border-radius: 12px;
    display: flex;
    align-items: stretch;
    padding: 3px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-button-group:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.btn-combined {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.btn-main {
    color: white;
    padding: 0 20px;
    border-radius: 9px 0 0 9px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-button-group .btn-main:only-child {
    border-radius: 9px;
    border-right: none;
}

.login-only-group {
    width: auto;
    display: inline-flex;
    align-self: center;
}

.login-only-group .btn-main {
    width: auto;
    flex: 0 0 auto;
    min-width: 112px;
    padding: 0 22px;
}

.btn-main:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-action {
    color: #ff453a;
    padding: 0 16px;
    border-radius: 0 9px 9px 0;
}

.btn-action:hover {
    background: rgba(255, 69, 58, 0.15);
}

.btn-action i {
    font-size: 15px;
}

/* 3. HERO SECTION */
.hero {
    padding: 34px 5% 20px;
    background:
        radial-gradient(circle at top left, rgba(184, 134, 11, 0.09), transparent 0 30%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.hero-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.hero-content {
    background: #ffffff;
    border-radius: 30px;
    padding: clamp(26px, 4vw, 42px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
    text-align: left;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(184, 134, 11, 0.1);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin-bottom: 16px;
    font-family: 'SF Pro Display', 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.highlight {
    color: var(--accent);
}

.hero p {
    font-size: 18px;
    color: #6c6f78;
    margin-bottom: 26px;
    line-height: 1.6;
    max-width: 640px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid rgba(184, 134, 11, 0.35);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.12);
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-1px);
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: #f4f5f7;
    color: #454b57;
    font-size: 13px;
    font-weight: 600;
}

.hero-chip i {
    color: var(--accent);
}

.hero-showcase {
    display: flex;
}

.hero-showcase-card {
    width: 100%;
    background: linear-gradient(135deg, #17181c 0%, #242730 58%, #2e313a 100%);
    color: #fff;
    border-radius: 30px;
    padding: 24px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    display: flex;
    flex-direction: column;
}

.showcase-badge {
    display: inline-flex;
    width: fit-content;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f7df9b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-showcase-card h3 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.hero-showcase-card > p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.showcase-list {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.showcase-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.showcase-item i {
    color: #f7df9b;
    margin-top: 3px;
}

.showcase-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.showcase-item span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.45;
}

.showcase-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-card {
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.stat-card strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.stat-card span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.4;
}

/* 3.5 ABOUT US SECTION */
.about-us {
    padding: 22px 0 8px;
    background: linear-gradient(180deg, rgba(184, 134, 11, 0.02) 0%, var(--bg-body) 100%);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text {
    display: flex;
    flex-direction: column;
}

.section-label {
    display: inline-flex;
    width: fit-content;
    padding: 7px 11px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(184, 134, 11, 0.1);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary);
    line-height: 1.08;
}

.about-text p {
    font-size: 17px;
    color: #6f7480;
    line-height: 1.65;
    margin-bottom: 12px;
}

.about-feature-grid {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.about-feature i {
    color: var(--accent);
    margin-top: 3px;
}

.about-feature strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.about-feature span {
    color: #6f7480;
    font-size: 13px;
    line-height: 1.5;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(184, 134, 11, 0.12);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.shop-hero {
    padding: 24px 0 10px;
}

.shop-hero-inner {
    max-width: 1240px;
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #fbfbfc 100%);
    border-radius: 24px;
    padding: 30px 28px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.shop-hero-copy {
    max-width: 820px;
    padding: 4px 0;
}

.shop-hero-copy .section-label {
    margin-bottom: 14px;
}

.shop-hero-inner h1 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    margin-bottom: 14px;
}

.shop-hero-inner p {
    color: #6f7480;
    font-size: 17px;
    line-height: 1.6;
}

.shop-page-section {
    margin-top: 22px !important;
    padding-bottom: 30px;
}

.filters-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
    margin-bottom: 26px;
}

.filters-form {
    display: grid;
    grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(130px, 1fr)) auto;
    gap: 12px;
    align-items: end;
}

.filter-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.filter-field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.filter-field input,
.filter-field select {
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid var(--gray-medium);
    background: #fff;
    padding: 0 14px;
    font-size: 15px;
    color: var(--primary);
}

.filter-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 12px;
    background: #f2f3f6;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.results-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 6px 0 20px;
    padding: 0 2px;
}

.results-toolbar h2 {
    font-size: 28px;
    font-weight: 800;
}

.results-toolbar span {
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 600;
}

.empty-state {
    grid-column: 1 / -1;
    background: #fff;
    border-radius: 22px;
    padding: 32px 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.empty-state i {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 10px;
}

.empty-state h3 {
    margin-bottom: 6px;
    font-size: 22px;
}

.empty-state p {
    color: var(--gray-dark);
}

/* 4. PRODUCT GRID & CONTAINER */
.container {
    max-width: 1400px;
    margin: 48px auto 0;
    padding: 0 5%;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    font-family: 'SF Pro Display', 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

/* 5. DE APPLE GLASS PRODUCT CARD */
.product-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
    height: 550px; /* Vaste hoogte voor strakke grid */
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* De afbeelding die doorloopt */
.card-media-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

/* Glass Overlay onderaan */
.card-glass-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px 25px 25px;
    
    /* Het Apple Glass Effect */
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.badge-elite {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(184, 134, 11, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 5;
}

/* Details in de glass overlay */
.seller-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
}

.seller-text {
    font-size: 13px;
    color: rgba(0,0,0,0.6);
}

.product-name {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
    font-family: 'SF Pro Display', 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
}

.status-tag {
    background: rgba(0,0,0,0.06);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #444;
}

/* Actieknop */
.btn-quick-view {
    margin-top: 10px;
    width: 100%;
    padding: 14px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-quick-view:hover {
    background: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* popup */

.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Subtiele verduistering van de achtergrond */
    backdrop-filter: blur(8px);    /* Het glas-effect op de hele pagina */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

  .glass-modal {
    background: rgba(255, 255, 255, 0.85); /* Halftransparant wit */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    width: 800px;
    max-width: 90%;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .glass-modal {
    transform: translateY(0);
}

  .modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .modal-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f0f0f0;
  }

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

  .glass-tag {
    position: absolute;
    top: 15px; left: 15px;
    background: rgba(212, 175, 55, 0.6); /* Goudkleurig glas */
    backdrop-filter: blur(5px);
    padding: 5px 15px;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
  }

  .modal-info h1 {
    margin: 10px 0;
    font-size: 2rem;
  }

  .price {
    font-size: 1.5rem;
    color: #b38b59;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .specs {
    margin: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 20px;
  }

	.description {
		color: grey;
	}

  .spec-item {
    margin-bottom: 8px;
    font-size: 0.9rem;
  }

  .cart-btn {
    width: 100%;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 15px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
  }

  .close-x {
    position: absolute;
    top: 20px; right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.5;
  }

        .logo-container {
            text-align: center;
			display: inline-block; /* Of block, afhankelijk van je layout */
			text-decoration: none; /* Verwijdert de onderstreping */
			color: inherit;        /* Zorgt dat de tekstkleur zwart blijft en niet blauw wordt */
			cursor: pointer;       /* Zorgt voor het "handje" als je eroverheen muist */
            flex-shrink: 0;
        }

        .brand-name {
            font-size: 30px;
            font-weight: 800;
            color: #1a1a1a;
            letter-spacing: -2px;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        /* Het Oneindigheidseffect via de letters O */
        .infinity-wrap {
            display: flex;
            position: relative;
            margin: 0 -4px;
        }

      	.char-o {
			color: #fcc603;
			position: relative;
			z-index: 1; /* Zorgt dat deze letter boven of onder de andere kan liggen */
		}

		.char-p {
			color: #fcc603;
			position: relative;
			margin-left: -6px; /* Schuift de 'P' over de 'O' heen */
			margin-right: 2px;
			z-index: 2;
		}

        .slogan {
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #666;
            margin-top: 5px;
            border-top: 1px solid #ddd;
            padding-top: 5px;
            display: inline-block;
        }

        /* Subtiele animatie bij hover */
        .logo-container:hover .char-o {
            color: #e3b200;
            transition: color 0.3s ease;
        }
/* APPLE-STYLE FOOTER */
.apple-footer {
    background-color: #f5f5f7; /* Apple's grijze achtergrond */
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'SF Pro Text', 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #86868b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1d1d1f;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: #86868b;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #1d1d1f;
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #86868b;
    font-size: 12px;
    font-family: 'SF Pro Text', 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.logo-container:hover .char-p {
    color: #e3b200;
    transition: color 0.3s ease;
}

@media (max-width: 1024px) {
    .hero-layout,
    .about-content,
    .modal-grid {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        min-height: auto;
    }

    .footer-container {
        gap: 24px;
    }
}

@media (max-width: 820px) {
    .navbar {
        padding: 8px 0;
    }

    .nav-container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 0 14px;
    }

    .logo-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nav-actions {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
    }

    .user-greeting,
    .token-badge,
    .nav-button-group {
        width: 100%;
    }

    .login-only-group {
        grid-column: 1 / -1;
        width: auto !important;
        justify-self: center;
    }

    .user-greeting {
        grid-column: 1 / -1;
        justify-content: center;
        min-height: 42px;
        padding: 6px 10px;
    }

    .token-badge {
        justify-content: center;
        min-height: 42px;
        padding: 0 12px;
    }

    .nav-button-group {
        min-height: 42px;
    }

    .btn-main {
        flex: 1;
    }

    .hero {
        padding: 18px 16px 10px;
    }

    .hero-layout {
        gap: 16px;
    }

    .hero-content,
    .hero-showcase-card,
    .product-card,
    .glass-modal,
    .filters-card,
    .shop-hero-inner {
        border-radius: 22px;
    }

    .hero-content,
    .hero-showcase-card {
        padding: 20px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-kicker,
    .hero-btns,
    .hero-trust-row {
        justify-content: center;
    }

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

    .container,
    .footer-container,
    .footer-bottom {
        padding-left: 16px;
        padding-right: 16px;
    }

    .container {
        margin-top: 36px;
    }

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

    .filter-search,
    .filter-actions {
        grid-column: 1 / -1;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-card {
        height: 500px;
    }

    .glass-modal {
        padding: 20px;
    }

    .apple-footer {
        padding-top: 32px;
    }
}

@media (max-width: 560px) {
    .brand-name {
        font-size: 24px;
    }

    .slogan {
        font-size: 8px;
        letter-spacing: 1.4px;
        margin-top: 3px;
        padding-top: 4px;
    }

    .nav-container {
        padding: 0 10px;
        gap: 8px;
    }

    .shop-hero {
        padding-top: 12px;
    }

    .shop-hero-inner {
        margin-top: 0 !important;
        padding: 18px 16px;
    }

    .shop-hero-copy {
        max-width: 100%;
        padding: 4px 0;
    }

    .nav-actions {
        gap: 8px;
    }

    .login-only-group .btn-main {
        min-width: 120px;
    }

    .user-greeting p {
        font-size: 13px;
    }

    .token-badge {
        min-height: 40px;
    }

    .token-badge span {
        font-size: 14px;
    }

    .nav-button-group {
        min-height: 40px;
    }

    .hero {
        padding: 10px 10px 6px;
    }

    .hero-layout {
        gap: 12px;
    }

    .hero-content,
    .hero-showcase-card {
        padding: 16px;
        border-radius: 18px;
    }

    .hero-kicker {
        margin-bottom: 10px;
        padding: 6px 10px;
        font-size: 11px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .hero p,
    .about-text p {
        font-size: 15px;
    }

    .hero p {
        margin-bottom: 16px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary,
    .btn-quick-view {
        width: 100%;
    }

    .hero-trust-row {
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
    }

    .hero-chip {
        width: 100%;
        justify-content: center;
        padding: 8px 10px;
        font-size: 12px;
    }

    .hero-showcase-card h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .hero-showcase-card > p,
    .showcase-stats {
        display: none;
    }

    .showcase-list {
        margin: 12px 0 0;
        gap: 8px;
    }

    .showcase-item,
    .about-feature {
        padding: 10px 12px;
    }

    .showcase-item span {
        font-size: 12px;
    }

    .seller-row {
        align-items: flex-start;
    }

    .seller-text {
        font-size: 12px;
        line-height: 1.4;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .card-glass-content {
        padding: 20px 16px 16px 16px;
        gap: 10px;
    }

    .badge-elite {
        top: 16px;
        left: 16px;
    }

    .modal-overlay {
        padding: 12px;
    }

    .glass-modal {
        width: 100%;
        max-width: 100%;
        padding: 16px;
    }

    .modal-info h1 {
        font-size: 1.5rem;
    }

    .filter-field input,
    .filter-field select,
    .filter-actions,
    .filter-reset {
        width: 100%;
    }

    .filter-actions {
        flex-direction: column;
    }

    .results-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-section {
        min-width: 100%;
    }
}