        /* --- System Parameters & Tokens --- */
        :root {
            --black: #000000;
            --white: #FFFFFF;
            --light-gray: #F5F5F5;
            --text-gray: #5B5B5B;
            --margin-desktop: clamp(10px, 2vw, 30px);
            --font-head: 'Goldman', sans-serif;
            --font-body: 'Roboto', sans-serif;
            --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* --- Fundamental Reset Structures --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
        }
        html {
            scroll-behavior: smooth;
            background-color: var(--white);
        }
        body {
            font-family: var(--font-body);
            color: var(--black);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* --- Global Layout Rules --- */
        .page-margin {
            padding-left: var(--margin-desktop);
            padding-right: var(--margin-desktop);
        }
        
        .goldman-regular { font-family: var(--font-head); font-weight: 400; }
        .goldman-bold { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;}
        .roboto-body { font-family: var(--font-body); font-weight: 300; line-height: 1.6; color: var(--text-gray); }

        a { text-decoration: none; color: inherit; }
        button { cursor: pointer; background: none; border: none; font-family: inherit; }

        /* --- Image Card Presentation Engine --- */
        .editorial-image-frame {
            overflow: hidden;
            position: relative;
            background: var(--light-gray);
            width: 100%;
            height: 100%;
        }
        .editorial-image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform var(--transition);
        }
        .editorial-image-frame:hover img {
            transform: scale(1.04);
        }

        /* --- Dynamic Views State Controls --- */
        .view-segment { display: none; }
        .view-segment.active-view { display: block; }

        /* ================= NAVIGATION COMPONENT LAYERS ================= */
        
        /* Top Announcement String */
        .announcement-container {
            height: 40px;
            background-color: var(--black);
            color: var(--white);
            display: flex;
            align-items: center;
            overflow: hidden;
            position: relative;
            z-index: 100;
        }
        .marquee-track {
            display: flex;
            white-space: nowrap;
            animation: textMarqueeLoop 30s linear infinite;
        }
        .marquee-string {
            font-family: var(--font-head);
            font-size: 0.75rem;
            letter-spacing: 2px;
            padding-right: 4rem;
        }
        @keyframes textMarqueeLoop {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* Global Header Interface — Non-Sticky Variant */
        header {
            position: absolute; /* Header moves offscreen naturally when user scrolls down */
            left: 0;
            width: 100%;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 85;
        }
/* --- LOGO STYLES --- */
.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-element);
}

.logo-placeholder:hover {
    opacity: 0.85;
}

.logo-image {
    height: 245px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-head, "Cormorant Garamond", serif);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.5px;
    color: var(--black-text);
    line-height: 1.1;
}

/* If you want an icon-based fallback when image fails */
.logo-placeholder .logo-image[src=""] + .logo-text::before {
    font-size: 1.8rem;
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
    .logo-image {
        height: 232px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .logo-placeholder {
        gap: 8px;
    }
    
    .logo-image {
        height: 28px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
}        .nav-actions-cluster {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .cart-toggle-trigger {
            position: relative;
            padding: 5px;
        }
        .cart-icon-vector {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: var(--black);
            stroke-width: 1.5;
        }
        .cart-badge-counter {
            position: absolute;
            top: -2px;
            right: -2px;
            background: var(--black);
            color: var(--white);
            font-family: var(--font-head);
            font-size: 0.65rem;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hamburger-button {
            width: 45px;
            height: 45px;
            background: var(--black);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 4px;
        }
        .hamburger-button span {
            display: block;
            width: 16px;
            height: 2px;
            background: var(--white);
            transition: var(--transition);
        }

        /* Master Global Drawer Foundations */
        .drawer-overlay-shield {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(5px);
            opacity: 0;
            visibility: hidden;
            z-index: 200;
            transition: opacity var(--transition), visibility var(--transition);
        }
        .drawer-overlay-shield.active-shield {
            opacity: 1;
            visibility: visible;
        }
        .sliding-drawer-panel {
            position: fixed;
            top: 0;
            right: -100%;
            width: min(540px, 100vw);
            height: 100vh;
            background: var(--white);
            z-index: 210;
            box-shadow: -10px 0 40px rgba(0,0,0,0.05);
            transition: right var(--transition);
            display: flex;
            flex-direction: column;
        }
        .sliding-drawer-panel.drawer-open {
            right: 0;
        }

        /* Menu Drawer Inner Specs */
        .menu-drawer-top {
            padding: 40px var(--margin-desktop);
            background: var(--white);
            flex-shrink: 0;
        }
        .drawer-close-btn {
            text-align: right;
            font-family: var(--font-head);
            font-size: 0.8rem;
            letter-spacing: 1px;
            margin-bottom: 30px;
            text-transform: uppercase;
        }
        .editorial-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .editorial-nav-links a {
            font-family: var(--font-head);
            font-size: 2.2rem;
            line-height: 1;
            color: var(--black);
            transition: transform 0.3s;
            display: block;
        }
        .editorial-nav-links a:hover {
            transform: translateX(8px);
        }
        .menu-drawer-bottom {
            flex-grow: 1;
            position: relative;
            overflow: hidden;
            margin-top: 20px;
        }
        .menu-drawer-bottom::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, var(--white) 5%, transparent 40%);
            z-index: 2;
        }

        /* Cart Drawer Architecture */
        .cart-drawer-header {
            padding: 40px var(--margin-desktop) 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--light-gray);
        }
        .cart-items-feed {
            flex-grow: 1;
            overflow-y: auto;
            padding: 20px var(--margin-desktop);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .cart-empty-state {
            text-align: center;
            padding: 60px 0;
            font-family: var(--font-body);
            color: var(--text-gray);
        }
        .cart-product-node {
            display: flex;
            gap: 15px;
            align-items: center;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--light-gray);
        }
        .cart-node-thumb { width: 65px; height: 80px; flex-shrink: 0; }
        .cart-node-details { flex-grow: 1; }
        .cart-node-remove {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-gray);
            margin-top: 6px;
            display: inline-block;
            cursor: pointer;
        }
        .cart-node-remove:hover { color: var(--black); }
        .cart-drawer-footer {
            padding: 30px var(--margin-desktop);
            background: var(--light-gray);
        }
        .cart-summary-line {
            display: flex;
            justify-content: space-between;
            font-family: var(--font-head);
            font-size: 1rem;
            margin-bottom: 20px;
        }
        .checkout-action-button {
            width: 100%;
            padding: 18px;
            background: var(--black);
            color: var(--white);
            font-family: var(--font-head);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: opacity 0.3s;
        }
        .checkout-action-button:hover { opacity: 0.9; }

        /* Buffer for Non-Sticky Absolute Header Setup */
        .header-spacer-buffer {
            height: 130px;
            width: 100%;
        }

        /* ================= HOME VIEW SECTIONS ================= */

        /* Hero Section Split */
        .hero-split-layout {
            height: 90vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: -5rem;
            margin-bottom: 80px;
        }
        .hero-right-editorial {
            background-color: var(--light-gray);
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .hero-heading {
            font-size: clamp(2.2rem, 5vw, 4rem);
            line-height: 1;
            color: var(--black);
        }
        .hero-copy {
            max-width: 380px;
            font-size: 0.95rem;
        }

        /* Section 2: Curated Rows */
        .section-curated-collections {
            background-color: var(--white);
            padding-top: 60px;
            padding-bottom: 80px;
        }
        .row-editorial-top {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
            margin-bottom: 50px;
        }
        .row-editorial-top p {
            font-size: 0.95rem;
            max-width: 500px;
        }
        .grid-three-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        .vertical-fashion-card .editorial-image-frame {
            height: 480px;
            margin-bottom: 15px;
        }
        .card-meta-title {
            font-family: var(--font-head);
            font-size: 1.1rem;
            margin-bottom: 4px;
        }

        /* Section 3: High Contrast Picks */
        .section-contrast-picks {
            background-color: var(--black);
            color: var(--white);
            padding: 100px var(--margin-desktop);
        }
        .section-contrast-picks .row-editorial-top p {
            color: var(--light-gray);
        }
        .picks-split-bottom {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 50px;
        }
        .picks-square-frame {
            height: 320px;
        }
        .picks-large-paragraph {
            font-size: clamp(1.3rem, 2.5vw, 2rem);
            font-family: var(--font-body);
            font-weight: 300;
            line-height: 1.5;
            color: var(--white);
        }

        /* Section 4: Horizontal Scroll Gallery */
        .section-spotlight-carousel {
            padding-top: 100px;
            padding-bottom: 100px;
            background-color: var(--white);
        }
        .draggable-carousel-outer {
            overflow-x: auto;
            padding-bottom: 15px;
            cursor: grab;
        }
        .draggable-carousel-outer::-webkit-scrollbar {
            height: 2px;
        }
        .draggable-carousel-outer::-webkit-scrollbar-thumb {
            background: var(--black);
        }
        .carousel-strip-track {
            display: flex;
            gap: 20px;
            width: max-content;
        }
        .carousel-square-node {
            width: 290px;
        }
        .carousel-square-node .editorial-image-frame {
            height: 290px;
            margin-bottom: 12px;
        }

        /* Section 5: Editorial Product Wall */
        .section-product-wall {
            padding-top: 80px;
            padding-bottom: 80px;
            display: grid;
            grid-template-columns: 70% 30%;
            gap: 30px;
        }
        .wall-left-billboard {
            position: relative;
            height: 980px;
        }
        .wall-overlay-headline {
            position: absolute;
            bottom: 40px;
            left: 40px;
            color: var(--white);
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            z-index: 5;
        }
        .wall-action-trigger {
            position: absolute;
            top: 40px;
            right: 40px;
            background: var(--white);
            color: var(--black);
            padding: 15px 30px;
            font-family: var(--font-head);
            font-size: 0.8rem;
            z-index: 5;
            transition: opacity 0.3s;
        }
        .wall-action-trigger:hover { opacity: 0.9; }
        
        .wall-right-stack {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 980px;
        }
        .overlay-product-card {
            position: relative;
            height: calc(33.33% - 14px);
            overflow: hidden;
        }
        .card-inner-overlay-data {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.5) 20%, transparent 70%);
            z-index: 3;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: var(--white);
        }
        .overlay-card-title {
            font-family: var(--font-head);
            font-size: 1rem;
        }
        .overlay-card-price {
            font-size: 0.9rem;
            font-weight: 300;
            margin-top: 2px;
        }
        .overlay-sale-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--black);
            color: var(--white);
            font-family: var(--font-head);
            font-size: 0.65rem;
            padding: 4px 8px;
            z-index: 4;
        }
        .overlay-quick-add {
            margin-top: 8px;
            background: var(--white);
            color: var(--black);
            font-family: var(--font-head);
            font-size: 0.7rem;
            padding: 6px 12px;
            width: max-content;
        }

        /* Section 6: Editorial Story Matrix */
        .section-editorial-story {
            padding-top: 100px;
            padding-bottom: 100px;
            background-color: var(--white);
        }
        .story-images-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            height: 560px;
            margin-top: 60px;
        }

        /* Section 7: Featured Deals Grid (Alternating Sizes) */
        .section-deals-magazine-grid {
            padding-top: 60px;
            padding-bottom: 120px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            align-items: start;
        }
        .magazine-deal-node {
            position: relative;
        }
        .magazine-deal-node:nth-child(odd) { height: 380px; }
        .magazine-deal-node:nth-child(even) { height: 460px; }
        .deal-badge-center {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 4;
        }
        .deal-huge-number {
            font-family: var(--font-head);
            font-size: 4.5rem;
            color: var(--white);
            text-shadow: 0 4px 20px rgba(0,0,0,0.25);
        }

        /* Section 8: Unsubscribe / Subscribe Form Matrix */
        .section-newsletter-portal {
            padding-top: 100px;
            padding-bottom: 120px;
            border-top: 1px solid var(--light-gray);
            display: grid;
            grid-template-columns: 1fr;
            text-align: left;
            background: var(--white);
        }
        .portal-form-wrapper {
            margin-top: 40px;
            width: 100%;
            max-width: 600px;
        }
        .portal-input-line {
            display: flex;
            border-bottom: 2px solid var(--black);
            padding-bottom: 8px;
            margin-bottom: 20px;
        }
        .portal-input-line input {
            flex-grow: 1;
            border: none;
            background: transparent;
            font-size: 1.1rem;
            font-family: var(--font-body);
            font-weight: 300;
        }
        .portal-buttons-cluster {
            display: flex;
            gap: 15px;
        }
        .portal-btn {
            padding: 16px 32px;
            font-family: var(--font-head);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s;
        }
        .portal-btn-black { background: var(--black); color: var(--white); }
        .portal-btn-black:hover { opacity: 0.85; }
        .portal-btn-outline { border: 1px solid var(--black); color: var(--black); }
        .portal-btn-outline:hover { background: var(--black); color: var(--white); }

        /* ================= SUB-PAGE SYSTEM VIEWS ================= */

        /* Inner Page Base Architecture Templates */
        .inner-view-hero-canvas {
            padding-top: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--light-gray);
            margin-bottom: 50px;
        }
        .mosaic-grid-tapestry {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 15px;
            height: 380px;
            margin-top: 30px;
        }
        .shop-workspace-grid {
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 50px;
            padding-bottom: 100px;
        }
        .sidebar-filters-panel {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }
        .filter-group-heading {
            font-family: var(--font-head);
            font-size: 0.85rem;
            text-transform: uppercase;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }
        .filter-options-stack {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .filter-options-stack li { cursor: pointer; transition: color 0.2s; }
        .filter-options-stack li:hover { color: var(--black); }
        
        .magazine-product-grid-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .standard-editorial-product-card {
            display: flex;
            flex-direction: column;
        }
        .standard-editorial-product-card .editorial-image-frame {
            height: 390px;
            margin-bottom: 15px;
        }
        .card-row-data {
            display: flex;
            justify-content: space-between;
            font-family: var(--font-head);
            font-size: 0.95rem;
            margin-bottom: 8px;
        }
        .standard-card-add-action {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--black);
            font-family: var(--font-head);
            font-size: 0.75rem;
            text-transform: uppercase;
            text-align: center;
            transition: background 0.3s, color 0.3s;
        }
        .standard-card-add-action:hover {
            background: var(--black);
            color: var(--white);
        }

        /* Lookbook Outfits Component Structures (Daily Wear Page) */
        .lookbook-editorial-strip {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 80px;
            align-items: center;
        }
        .lookbook-title-meta {
            font-family: var(--font-head);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        /* Asymmetric Layout Module (Technical Silhouettes) */
        .asymmetric-block-grid {
            display: grid;
            grid-template-columns: 40% 60%;
            gap: 40px;
            margin-bottom: 60px;
        }

        /* Contact & FAQ Interface Styles */
        .contact-view-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            padding-bottom: 100px;
        }
        .faq-accordion-container {
            margin-top: 40px;
        }
        .faq-row-item {
            border-bottom: 1px solid var(--light-gray);
            padding: 20px 0;
        }
        .faq-question-trigger {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
            font-family: var(--font-head);
            font-size: 1rem;
        }
        .faq-answer-panel {
            padding-top: 15px;
            font-size: 0.95rem;
            color: var(--text-gray);
            display: none;
        }

        /* Legal Context Styling */
        .legal-document-layout {
            max-width: 800px;
            padding-bottom: 120px;
        }
        .legal-document-layout h3 {
            font-family: var(--font-head);
            font-size: 1.2rem;
            margin-top: 35px;
            margin-bottom: 10px;
        }
        .legal-document-layout p {
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        /* ================= GLOBAL PLATFORM FOOTER ================= */
        footer {
            background-color: var(--white);
            color: var(--black);
            padding-top: 100px;
            padding-bottom: 40px;
            border-top: 1px solid var(--light-gray);
        }
        .footer-top-columns-wrapper {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }
        .footer-column-headline {
            font-family: var(--font-head);
            font-size: 0.9rem;
            margin-bottom: 25px;
            letter-spacing: 0.5px;
        }
        .footer-navigation-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-navigation-list li a {
            color: var(--text-gray);
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        .footer-navigation-list li a:hover { color: var(--black); }
        
        .footer-bottom-bar {
            border-top: 1px solid var(--light-gray);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-gray);
        }
        .footer-legal-links-row a {
            color: var(--text-gray);
            margin-right: 20px;
        }
        .footer-legal-links-row a:hover { color: var(--black); }

        /* ================= ADAPTIVE RESPONSIVE MEDIA LAYERS ================= */
        @media(max-width: 1024px) {
            .hero-split-layout, .row-editorial-top, .grid-three-cards, .section-product-wall, .story-images-row, .section-deals-magazine-grid, .shop-workspace-grid, .magazine-product-grid-layout, .lookbook-editorial-strip, .asymmetric-block-grid, .contact-view-split, .footer-top-columns-wrapper {
                grid-template-columns: 1fr !important;
            }
            .hero-split-layout { height: auto; }
            .wall-right-stack { height: auto; gap: 20px; margin-top: 20px; }
            .overlay-product-card { height: 240px; }
            .wall-left-billboard { height: 450px; }
            .picks-split-bottom { grid-template-columns: 1fr; }
            .magazine-deal-node { height: 350px !important; transform: none !important; }
        }

        /* Newsletter Portal Enhanced Styles */
.section-newsletter-portal {
    padding-top: 100px;
    padding-bottom: 120px;
    border-top: 1px solid var(--light-gray);
    display: grid;
    grid-template-columns: 1fr;
    text-align: left;
    background: var(--white);
}

.portal-form-wrapper {
    margin-top: 40px;
    width: 100%;
    max-width: 600px;
}

.portal-input-line {
    display: flex;
    border-bottom: 2px solid var(--black);
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.portal-input-line input {
    flex-grow: 1;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 300;
    padding: 4px 0;
}

.portal-input-line input:focus {
    outline: none;
}

.portal-input-line input::placeholder {
    color: #aaa;
    font-style: italic;
}

.portal-buttons-cluster {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.portal-btn {
    padding: 16px 32px;
    font-family: var(--font-head);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portal-btn-black {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
}

.portal-btn-black:hover {
    opacity: 0.85;
}

.portal-btn-outline {
    border: 1px solid var(--black);
    color: var(--black);
    background: transparent;
}

.portal-btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.portal-btn-success {
    background: #2d8f4e !important;
    border-color: #2d8f4e !important;
    color: var(--white) !important;
}

.portal-btn-danger {
    background: #c0392b !important;
    border-color: #c0392b !important;
    color: var(--white) !important;
}

/* Feedback Messages */
.feedback-success {
    color: #2d8f4e !important;
}

.feedback-error {
    color: #c0392b !important;
}

.feedback-warning {
    color: #d4a017 !important;
}

.feedback-info {
    color: var(--text-gray) !important;
}

#subscribeFeedback,
#unsubscribeFeedback {
    animation: feedbackFade 0.4s ease-out;
}

@keyframes feedbackFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .section-newsletter-portal {
        padding-top: 60px;
        padding-bottom: 80px;
    }
    
    .portal-btn {
        padding: 14px 24px;
        font-size: 0.7rem;
    }
    
    .portal-buttons-cluster {
        gap: 10px;
    }
    
    .portal-input-line input {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .portal-btn {
        width: 100%;
        text-align: center;
    }
}
