/* PDMerch - Global Styles */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

/* ============================================================================
   REM-BASED VIEWPORT SYSTEM
   ============================================================================
   
   Mobile:  32rem canvas  = 320-639px viewport (10px base at 320px)
   Tablet:  64rem canvas  = 640-1279px viewport (10px base at 640px)
   Desktop: 128rem canvas = 1280px+ viewport (10px base at 1280px)
   
   Everything automatically scales proportionally to viewport!
   Write once (e.g., width: 10rem), works perfectly everywhere.
   
   ============================================================================ */

/* Mobile: 32rem canvas - Perfect for 320-639px screens */
@media (max-width: 639px) {
    html {
        font-size: 3.125vw;
        /* 10px at 320px, scales to 20px at 640px */
    }
}

/* Tablet: 64rem canvas - Perfect for 640-1279px screens */
@media (min-width: 640px) and (max-width: 1279px) {
    html {
        font-size: 1.5625vw;
        /* 10px at 640px, scales to 20px at 1280px */
    }
}

/* Desktop: 128rem canvas - Perfect for 1280px+ screens */
@media (min-width: 1280px) {
    html {
        font-size: 0.78125vw;
        /* 10px at 1280px, scales to 30px at 3840px */
    }
}

/* Optional: Cap max size for ultra-wide displays */
@media (min-width: 2560px) {
    html {
        font-size: 20px;
        /* 2x scale at 2K */
    }
}

@media (min-width: 3840px) {
    html {
        font-size: 30px;
        /* 3x scale at 4K */
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #00D9E1;
    background-attachment: fixed;
}

.container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
header {
    background: #00D9E1;
    border-bottom: none;
    margin-bottom: 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 2rem 4rem;
}

header .logo-section {
    padding: 0;
    border-right: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    z-index: 100;
    top: 3rem;
    left: 0;
}

header .logo-section a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    width: 20rem;
    height: auto;
    transform: scale(1.3);
    margin: 0;
    filter: drop-shadow(0 0.4rem 0.8rem rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.35);
    filter: drop-shadow(0 0.6rem 1.2rem rgba(0, 0, 0, 0.2));
}

h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: #1a1a1a;
}

.tagline {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    font-size: 1rem;
    margin-top: 0;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.05rem;
}

/* Navigation */
nav {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 0;
    margin-left: 18rem;
}

nav a {
    color: #1a1a1a;
    text-decoration: none;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.2s;
    position: relative;
}

nav a:hover,
nav a.active {
    color: #1a1a1a;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 0.3rem;
    background: #1a1a1a;
}

.lang-switcher {
    display: flex;
    gap: 0.8rem;
    padding-left: 0;
    margin-left: 0;
    border-left: none;
}

.lang-switcher a,
.lang-switcher span {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.6rem 1rem;
    border-radius: 0.3rem;
    background: rgba(0, 0, 0, 0.1);
}

.lang-switcher a.active,
.lang-switcher span.active {
    background: #1a1a1a;
    color: #00D9E1;
    cursor: pointer;
}

/* Categories */
.categories {
    display: flergba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5rem;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.3rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.05rem;
    transition: all 0.3s;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
}

.categories a:hover {
    background: #1a1a1a;
    color: #00D9E1;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.2).2rem;
    letter-spacing: 0.05rem;
    transition: all 0.2s;
}

.categories a:hover {
    background: #2d2d2d;
    color: white;
}

/* Posts Grid */
.posts {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.post-card {
    background: white;
    border: none;
    border-radius: 1.6rem;
    padding: 0;
    transition: all 0.3s;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr auto;
    overflow: hidden;
}

.post-card:hover {
    box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.15);
    transform: translateY(-0.4rem);
}

.post-images {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 0 1.6rem 1.6rem 0;
    align-items: center;
}

.polaroid-image {
    background: white;
    padding: 0.6rem;
    padding-bottom: 2.5rem;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
    border-radius: 0.8rem;
    transform: rotate(-2deg);
    transition: all 0.3s;
    flex-shrink: 0;
    width: 20rem;
}

.polaroid-image:nth-child(2) {
    transform: rotate(1deg);
}

.polaroid-image:nth-child(3) {
    transform: rotate(-3deg);
}

.polaroid-image:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.2);
}

.polaroid-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    border-radius: 0.4rem;
}

.post-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-card h2,
.post-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.2;
    color: #1a1a1a;
}

.post-card h2 a,
.post-card h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.post-card h2 a:hover,
.post-card h3 a:hover {
    color: #00D9E1;
}

.post-summary {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: #999;
    padding-top: 1rem;
    border-top: 0.1rem solid #e0e0e0;
}

.post-category {
    background: #1a1a1a;
    color: white;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.05rem;
    border-radius: 0.4rem;
    text-decoration: none;
    transition: background 0.3s;
}

.post-category:hover {
    background: #FF6B9D;
}

.read-more {
    color: #00D9E1;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
}

.read-more:hover {
    text-decoration: underline;
}

/* Post Detail Page */
.post-header {
    background: white;
    border: none;
    border-radius: 1.6rem;
    padding: 4rem;
    margin-bottom: 3rem;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
}

.post-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a1a;
}

.post-header .post-summary {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    color: #555;
    line-height: 1.7;
}

.post-header .post-category {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 0.6rem 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.05rem;
    margin-top: 1.5rem;
    text-decoration: none;
    border-radius: 0.4rem;
    transition: background 0.3s;
}

.post-header .post-category:hover {
    background: #FF6B9D;
}

border-radius: 0.4rem;
}

.reasoning {
    background: white;
    border: none;
    border-radius: 1.6rem;
    padding: 2rem 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
}

.reasoning h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.reasoning p {
    font-family: 'Inter', sans-serif;
    color: #555;
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Products Grid - Polaroid Style */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-polaroid {
    background: white;
    padding: 1.5rem;
    border-radius: 0.8rem;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    transform: rotate(-1deg);
}

.product-polaroid:nth-child(even) {
    transform: rotate(1deg);
}

.product-polaroid:hover {
    transform: rotate(0deg) translateY(-0.5rem);
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.15);
}

.product-polaroid-image {
    width: 100%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 0.4rem;
}

.product-polaroid-image img {
    width: 100%;
    height: 40rem;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.product-polaroid-caption {
    text-align: center;
}

.product-polaroid-caption .product-name-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-polaroid-caption .product-name-link:hover .product-name {
    color: #FF6B9D;
}

.product-polaroid-caption .product-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    transition: color 0.3s;
}

.product-polaroid-caption .product-description {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.product-polaroid-caption .product-link {
    display: inline-block;
    background: #FF6B9D;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    transition: all 0.3s;
    border-radius: 3rem;
    box-shadow: 0 0.2rem 0.8rem rgba(255, 107, 157, 0.3);
}

.product-polaroid-caption .product-link:hover {
    background: #ff4d85;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.4rem 1.2rem rgba(255, 107, 157, 0.5);
}

/* Products */
.products {
    margin-bottom: 4rem;
}

.products h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: white;
    border: none;
    border-radius: 1.6rem;
    padding: 2rem 4rem;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

.product {
    background: white;
    border: none;
    border-radius: 1.6rem;
    padding: 2.4rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    transition: all 0.3s;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
}

.product:hover {
    box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.15);
    transform: translateY(-0.4rem);
}

.product-rank {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.6rem;
    font-weight: 900;
    color: #00D9E1;
    min-width: 5rem;
}

.product-image-wrapper {
    width: 35rem;
    height: 35rem;
    flex-shrink: 0;
    cursor: pointer;
}

.product-image-container {
    width: 35rem;
    height: 35rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 1.2rem;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    border-radius: 1.2rem;
    transition: opacity 0.3s ease;
}

.product-info {
    flex: 1;
}

.product-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #1a1a1a;
}

.product-description {
    font-family: 'Inter', sans-serif;
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.product-link {
    background: #FF6B9D;
    color: white;
    padding: 1.2rem 2.4rem;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05rem;
    transition: all 0.3s;
    border: none;
    border-radius: 3rem;
    box-shadow: 0 0.2rem 0.8rem rgba(255, 107, 157, 0.3);
}

.product-link:hover {
    background: #ff4d85;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.4rem 1.2rem rgba(255, 107, 157, 0.5);
}

/* Category Page */
.page-title {
    background: white;
    border: none;
    border-radius: 1.6rem;
    padding: 3rem 4rem;
    margin-bottom: 3rem;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
}

.page-title h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Hero Section */
.hero {
    background: #00D9E1;
    padding: 6rem 4rem;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    color: #1a1a1a;
    line-height: 1.6;
    max-width: 45rem;
}

.hero-button {
    background: #FF6B9D;
    color: #1a1a1a;
    padding: 1.5rem 3rem;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    border: 0.3rem solid #1a1a1a;
    display: inline-block;
    align-self: flex-start;
    transition: all 0.3s;
    position: relative;
}

.hero-button::before {
    content: '→';
    margin-left: 1rem;
    font-size: 2rem;
}

.hero-button:hover {
    transform: translate(-0.3rem, -0.3rem);
    box-shadow: 0.5rem 0.5rem 0 #1a1a1a;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.3);
    padding: 1.5rem 2rem;
    border-left: 0.4rem solid #1a1a1a;
}

.hero-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
}

.hero-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 2rem;
}

.hero-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 3rem;
    border-radius: 1.6rem;
    border: 0.3rem solid #1a1a1a;
    text-align: center;
}

.hero-badge-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.hero-badge-discount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.hero-tagline {
    position: absolute;
    bottom: -1rem;
    right: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: 0;
}

.header-icon {
    width: 3.2rem;
    height: 3.2rem;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s;
}

.header-icon:hover {
    color: #FF6B9D;
    transform: scale(1.1);
}

.header-icon-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    width: 4rem;
    height: 4rem;
}

/* Tablet: 64rem canvas - Responsive adjustments */
@media (min-width: 640px) and (max-width: 1279px) {
    h1 {
        font-size: 1.6rem;
        letter-spacing: -0.05rem;
        line-height: 1.8rem;
    }

    .post-header .post-summary {
        font-size: 1.4rem;
        letter-spacing: -0.05rem;
        line-height: 1.8rem;
    }

    .reasoning p {
        text-align: justify;
    }

    header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    header .logo-section {
        top: 2rem;
    }

    .logo-image {
        width: 12rem;
    }

    .tagline {
        display: none;
    }

    nav {
        flex-direction: initial;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 2rem;
        margin-left: 14rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Show only 1 image in post-images */
    .polaroid-image:nth-child(n+2) {
        display: none;
    }
}

/* Mobile: 32rem canvas - Responsive adjustments */
@media (max-width: 639px) {
    header {
       margin-bottom: 4rem;
    }
    h1 {
        font-size: 1.6rem;
        letter-spacing: -0.05rem;
        line-height: 2.0rem;
    }

    .post-header .post-summary {
        font-size: 1.4rem;
        letter-spacing: -0.05rem;
        line-height: 1.8rem;
    }

    .reasoning p {
        text-align: justify;
    }

    header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    header .logo-section {
        top: 2rem;
    }

    .logo-image {
        width: 12rem;
    }

    .tagline {
        display: none;
    }

    nav {
        flex-direction: initial;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 1rem;
        margin-top: 2rem;
        margin-left: auto;
        margin-right: 0;
        position: relative;
        width: auto;
    }

    /* Show only 1 image and stack layout vertically */
    .post-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .post-content {
        order: 2;
        padding: 2rem;
    }

    .post-images {
        order: 1;
        justify-content: center;
    }

    .polaroid-image:nth-child(n+2) {
        display: none;
    }

    /* Reduce headline font size and padding in detail view */
    .post-header {
        padding: 2rem;
    }

    .post-header h2 {
        font-size: 2.4rem;
    }

    /* Make product-polaroid full width */
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Hide Home link on mobile, keep only Shop */
    nav>a[href*="/"]:not([href*="etsy"]):first-child,
    nav>a.active:not([href*="etsy"]) {
        display: none;
    }

    /* Make language switcher a dropdown on mobile */
    .lang-switcher {
        position: relative;
    }

    .lang-switcher span.active {
        display: block;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 0.3rem;
        cursor: pointer;
        padding: 0.6rem 1rem;
        font-size: 1.1rem;
        text-transform: uppercase;
        font-weight: 700;
        min-width: 5rem;
        text-align: center;
        position: relative;
        z-index: 1001;
    }

    .lang-switcher span.active::after {
        content: ' ▼';
        font-size: 0.8rem;
    }

    .lang-switcher.open span.active::after {
        content: ' ▲';
    }

    .lang-switcher a {
        display: none;
    }

    .lang-switcher.open a {
        display: block;
        width: 5rem;
        text-align: center;
        background: rgba(0, 0, 0, 0.15);
        border-radius: 0.3rem;
        min-width: 5rem;
        padding: 0.6rem 1rem;
        position: absolute;
        right: 0;
        box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .lang-switcher.open a:first-of-type {
        top: 3.5rem;
    }

    .lang-switcher.open a:nth-of-type(2) {
        top: 6.5rem;
    }

    .lang-switcher.open a:nth-of-type(3) {
        top: 9.5rem;
    }

    .lang-switcher.open a:nth-of-type(4) {
        top: 12.5rem;
    }

    .lang-switcher.open a:nth-of-type(5) {
        top: 15.5rem;
    }

    .lang-switcher.open a:nth-of-type(6) {
        top: 18.5rem;
    }

    .lang-switcher.open a:hover {
        background: rgba(0, 0, 0, 0.3);
    }

    .hero-title {
        font-size: 3rem;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section a {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FF6B9D;
}

.footer-bottom {
    border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}