:root {
    --bg-color: #0f0f0f;
    --card-bg: #1c1c1c;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --white: #ffffff;
    --black: #000000;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

body.light-theme {
    --bg-color: #f0f0f0;
    --card-bg: #ffffff;
    --text-primary: #111111;
    --text-secondary: #666666;
    --white: #111111;
    --black: #ffffff;
    --glass-bg: rgba(0, 0, 0, 0.05);
    --glass-hover: rgba(0, 0, 0, 0.1);
    --glass-border: rgba(0, 0, 0, 0.1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    height: 100vh;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Left Panel */
.left-panel {
    position: relative;
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: calc(100vh - 32px);
}

/* Slider Images */
.slider-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) grayscale(20%);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slider-images img.active {
    opacity: 1;
}

/* Right Panel */
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: calc(100vh - 32px);
    overflow-y: auto;
}

.right-panel::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for clean look */
}

/* Top Bridge Connector */
.nav-connector {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 16px;
    /* Matches body padding */
    background: var(--bg-color);
    z-index: 99;
    /* Below wrappers (100) but above everything else */
}

/* Floating Nav Pill Wrapper */
.nav-pill-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    background: var(--bg-color);
    padding: 16px 32px 16px 24px;
    border-bottom-right-radius: var(--radius-lg);
    z-index: 100;
}

.nav-pill-wrapper::before {
    content: '';
    position: absolute;
    right: -24px;
    top: 16px;
    width: 24px;
    height: 24px;
    border-top-left-radius: 24px;
    box-shadow: -12px -12px 0 12px var(--bg-color);
    z-index: -1;
    pointer-events: none;
}

.nav-pill-wrapper::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 24px;
    height: 24px;
    border-top-left-radius: 24px;
    box-shadow: -12px -12px 0 12px var(--bg-color);
    z-index: -1;
    pointer-events: none;
}

/* Right Nav Pill Wrapper (Lang & Search) */
.nav-pill-wrapper-right {
    position: fixed;
    top: 0;
    right: 0;
    background: var(--bg-color);
    padding: 16px 16px 16px 24px;
    border-bottom-left-radius: var(--radius-lg);
    z-index: 100;
}

.nav-pill-wrapper-right::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 16px;
    width: 24px;
    height: 24px;
    border-top-right-radius: 24px;
    box-shadow: 12px -12px 0 12px var(--bg-color);
    z-index: -1;
    pointer-events: none;
}

.nav-pill-wrapper-right::after {
    content: '';
    position: absolute;
    bottom: -24px;
    right: 0;
    width: 24px;
    height: 24px;
    border-top-right-radius: 24px;
    box-shadow: 12px -12px 0 12px var(--bg-color);
    z-index: -1;
    pointer-events: none;
}

.nav-pill {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    color: var(--white);
    font-size: 1.8rem;
    font-family: 'Text Me One', sans-serif;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 9px;
}

.nav-links a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.theme-toggle {
    width: 48px;
    height: 24px;
    background: var(--glass-bg);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid var(--glass-border);
}

.theme-toggle:hover {
    background: var(--glass-hover);
}

.theme-toggle .toggle-dot {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

body.light-theme .theme-toggle .toggle-dot {
    transform: translateX(24px);
}

.search-btn,
.profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--glass-bg);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover,
.profile-btn:hover {
    background: var(--glass-hover);
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
    z-index: 10;
}

.arrow svg {
    width: 28px;
    height: 28px;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) translateY(-45%);
    /* Adjust Y slightly for scale offset */
}

.arrow-left {
    left: 16px;
}

.arrow-right {
    right: 16px;
}

/* Dots */
.dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: var(--white);
    transform: scale(1.3);
}


/* Right Panel Components */
.top-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
    flex-shrink: 0;
}

/* Bio Card */
.bio-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bio-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

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

.bio-name {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.bio-title {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.bio-desc {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Social Stack */
.social-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-btn {
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.3s;
    cursor: pointer;
    color: var(--text-primary);
}

.social-btn:hover {
    background: var(--card-hover);
}

.social-icon {
    color: var(--text-secondary);
    font-size: 1rem;
}

.social-btn.contact-btn {
    background: var(--white);
    color: var(--black);
    margin-top: 4px;
}

.social-btn.contact-btn:hover {
    background: #f0f0f0;
}

/* Section Title */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8px 8px 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
}

.view-all {
    text-decoration: underline;
    color: var(--white);
    cursor: pointer;
}

/* Bottom Grid */
.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    flex-grow: 1;
}

.img-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    cursor: pointer;
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.img-card:hover img {
    filter: brightness(0.6) blur(4px);
    transform: scale(1.02);
}

.img-card .product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px 24px 24px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 5;
}

.img-card:hover .product-info {
    transform: translateY(0);
    opacity: 1;
}

.img-card .product-name {
    font-size: 1.1rem;
    font-weight: 500;
}

.img-card .product-price {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Image Card Cutout Label */
.img-card .cutout-label {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bg-color);
    padding: 16px 24px;
    border-radius: 0;
    border-bottom-right-radius: 24px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
    transition: padding 0.3s ease;
    z-index: 10;
}

.img-card .cutout-label::before {
    content: '';
    position: absolute;
    right: -24px;
    top: 0;
    width: 24px;
    height: 24px;
    border-top-left-radius: 24px;
    box-shadow: -12px -12px 0 12px var(--bg-color);
    z-index: -1;
    pointer-events: none;
}

.img-card .cutout-label::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 24px;
    height: 24px;
    border-top-left-radius: 24px;
    box-shadow: -12px -12px 0 12px var(--bg-color);
    z-index: -1;
    pointer-events: none;
}

/* ---------------------------------
   MAGIC CUTOUT EFFECTS & FLOATING BTNS
-----------------------------------*/

.cutout-wrapper {
    position: absolute;
    background: var(--bg-color);
    z-index: 2;
}

/* Floating View Project Button (No Cutout) */
.view-project-btn {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
    z-index: 10;
}

.view-project-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Cutout for Left Panel (Bottom Right) */
.cutout-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--bg-color);
    padding: 16px 0 0 16px;
    border-top-left-radius: 24px;
}

.cutout-bottom-right::before {
    content: '';
    position: absolute;
    left: -24px;
    bottom: 0;
    width: 24px;
    height: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 12px 12px 0 12px var(--bg-color);
    z-index: -1;
    pointer-events: none;
}

.cutout-bottom-right::after {
    content: '';
    position: absolute;
    top: -24px;
    right: 0;
    width: 24px;
    height: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 12px 12px 0 12px var(--bg-color);
    z-index: -1;
    pointer-events: none;
}

/* Cutout for Right Panel Cards (Removed wrapper) */

/* Inner Cutout Content */
.cutout-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.cutout-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}


.cutout-label {
    background: #0f0f0f;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--white);
    display: flex;
    align-items: center;
    transition: padding 0.3s ease;
}

.cutout-label .arrow-icon {
    display: inline-flex;
    align-items: center;
    max-width: 0;
    opacity: 0;
    transition: max-width 0.3s ease, opacity 0.3s ease, margin-left 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
}

.img-card:hover .cutout-label .arrow-icon {
    max-width: 20px;
    opacity: 1;
    margin-left: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    body {
        grid-template-columns: 1fr;
        height: auto;
        overflow: visible;
    }

    .left-panel {
        height: 60vh;
    }

    .right-panel {
        height: auto;
    }

    .top-section {
        grid-template-columns: 1fr;
    }

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

/* ---------------------------------
   MOBILE MENU & LANG DROPDOWN
-----------------------------------*/

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 16px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    min-width: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid var(--glass-border);
}

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

.lang-menu a {
    padding: 8px 16px;
    color: var(--text-secondary);
    text-align: center;
    transition: color 0.3s, background 0.3s;
}

.lang-menu a:hover {
    color: var(--white);
    background: var(--glass-bg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    color: var(--white);
    align-items: center;
    justify-content: center;
}

/* ---------------------------------
   RESPONSIVE (MOBILE)
-----------------------------------*/
@media (max-width: 992px) {
    body {
        grid-template-columns: 1fr;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .left-panel {
        height: 60vh;
        min-height: 400px;
    }

    .right-panel {
        height: auto;
        overflow-y: visible;
    }

    /* Footer Mobile Adjustments */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-cta {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-card {
        padding: 24px;
    }

    .top-section {
        grid-template-columns: 1fr;
    }

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

    .nav-pill-wrapper {
        width: auto;
        padding-right: 24px;
    }

    /* Hide desktop nav links, theme toggle, and desktop lang dropdown */
    .nav-pill-wrapper .nav-links,
    .theme-toggle,
    .lang-dropdown {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* ---------------------------------
   SEARCH MODAL & BACKDROP
-----------------------------------*/
.search-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 90;
    /* Header is 100, so header stays unblurred */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    position: fixed;
    top: 76px;
    right: 24px;
    width: 340px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 12px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.light-theme .search-modal {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.search-modal-content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    padding: 4px 0;
    font-family: inherit;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-modal-close {
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.search-modal-close:hover {
    color: var(--text-primary);
}

.search-results {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 24px;
    /* Space at the bottom of the list */
}

.search-results::-webkit-scrollbar {
    display: none;
}

.search-results.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    cursor: pointer;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, background 0.3s;
}

body.light-theme .search-result-item {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.search-result-item:hover {
    background: rgb(0 0 0);
    transform: translateY(-2px);
}

.search-result-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

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

.search-result-title {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.search-result-price {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .search-modal {
        top: 76px;
        left: 24px;
        right: 24px;
        width: auto;
    }
}

/* ---------------------------------
   MOBILE MENU MODAL
-----------------------------------*/
.mobile-menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f0f0fba;
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}

.mobile-menu-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    color: var(--white);
    transition: transform 0.3s;
}

.mobile-menu-close:hover {
    transform: scale(1.1);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav-links a {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--text-secondary);
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 12px 24px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.mobile-lang-btn:hover {
    color: var(--white);
    background: var(--glass-hover);
}

/* ---------------------------------
   LANGUAGE MODAL (MOBILE)
-----------------------------------*/
.lang-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f0f0fba;
    backdrop-filter: blur(10px);
    z-index: 2100;
    /* Above mobile menu */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}

.lang-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    color: var(--white);
    transition: transform 0.3s;
}

.lang-modal-close:hover {
    transform: scale(1.1);
}

.lang-modal-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.lang-modal-list a {
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s;
}

.lang-modal-list a.active,
.lang-modal-list a:hover {
    color: var(--white);
}

/* ---------------------------------
   FOOTER SECTION
-----------------------------------*/
.footer-section {
    position: relative;
    z-index: 10;
}

.footer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: var(--black);
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-catalog-btn {
    background: var(--black);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s;
}

.footer-catalog-btn:hover {
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--black);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    color: var(--black);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.legal-col {
    grid-column: 1 / -1;
    margin-top: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    align-items: center;
    text-align: center;
}

.legal-col .legal-links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright {
    font-size: 0.85rem;
    color: #666;
}

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

.social-icon-link {
    color: var(--black);
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
}

.social-icon-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ---------------------------------
   LOGIN MODAL
-----------------------------------*/
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.login-modal.active {
    opacity: 1;
    visibility: visible;
}

.login-modal-content {
    background: var(--white);
    width: 90%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    box-sizing: border-box;
}

.login-modal.active .login-modal-content {
    transform: translateY(0);
}

.login-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    color: var(--black);
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
}

.login-modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.login-header h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 8px;
    font-weight: 500;
}

.login-header p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.login-form label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-form input {
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--black);
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.login-form input:focus {
    border-color: var(--black);
}

.login-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    margin-bottom: 24px;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    background: #222;
}

.form-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.form-footer a {
    color: var(--black);
    font-weight: 500;
    text-decoration: underline;
}