/* --- Variables V2 --- */
:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --accent-color: #111111;
    /* Black accent for brutalist look */
    --soft-gray: #f4f4f4;
    --border-color: #e0e0e0;

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Manrope', sans-serif;

    --container-width: 1400px;
    /* Wider container */
    --gap: 20px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.big-title {
    font-size: 6vw;
    /* Responsive huge query */
    line-height: 0.85;
    font-weight: 800;
    display: flex;
    flex-direction: column;
}

.section-title-large {
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* --- Utilities --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.padding-y {
    padding: 80px 0;
}

/* --- Marquee Bar --- */
.marquee-bar {
    background: var(--text-color);
    color: white;
    padding: 8px 0;
    overflow: hidden;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.marquee-content span {
    font-size: 0.75rem;
    /* Restore font size */
    display: inline-block;
    padding-right: 50px;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Header V2 --- */
.header {
    position: absolute;
    top: 40px;
    /* Below marquee */
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    padding: 20px 0;
    transition: all 0.3s ease;
    color: white;
    /* Default white for Hero V4 */
}

.header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    color: var(--text-color);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    padding: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    z-index: 10;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.header-actions {
    display: flex;
    gap: 30px;
}

.header-actions a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    /* Slightly larger for icons */
    letter-spacing: 0.5px;
    position: relative;
    color: inherit;
}

.header-actions a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: 0.3s;
}

.header-actions a:hover::after {
    width: 100%;
}

/* Menu Button */
.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
}

.menu-btn .bar {
    height: 2px;
    background-color: white !important;
    /* Default white */
    transition: 0.3s;
}

.header.scrolled .menu-btn .bar {
    background-color: var(--text-color) !important;
}

.menu-btn .bar.long {
    width: 100%;
}

.menu-btn .bar.short {
    width: 60%;
}

.menu-btn:hover .bar.short {
    width: 100%;
}

/* --- Desktop Nav --- */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.desktop-nav>ul {
    display: flex;
    gap: 40px;
}

.desktop-nav a {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    color: inherit;
    opacity: 0.8;
    transition: 0.3s;
    text-transform: uppercase;
}

.desktop-nav a:hover {
    opacity: 1;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Responsive Menu Logic */
@media (max-width: 1024px) {
    .header {
        top: 25px;
        /* Marquee'ye daha da yaklaştırıldı */
        padding: 5px 0;
        /* İç dikey boşluk biraz daha azaltıldı */
    }

    .header-inner {
        position: relative;
        justify-content: center;
        min-height: 60px;
    }

    .desktop-nav {
        display: none;
        /* Hide on mobile/tablet */
    }

    .logo {
        position: relative;
        z-index: 2;
        margin: 0 auto;
    }

    .logo img {
        height: 55px !important;
        /* Logo biraz büyük olsun */
    }

    .header-actions {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        margin: 0;
        padding: 0;
    }

    .header-actions .btn-text {
        display: none;
    }

    .header-actions .mobile-res-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.3);
        font-size: 1.2rem;
        color: white;
        transition: 0.3s;
    }

    .header.scrolled .header-actions .mobile-res-icon {
        color: var(--text-color);
        border-color: rgba(0, 0, 0, 0.1);
    }

    .header-actions .btn-underline::after {
        display: none;
        /* remove underline for icon */
    }

    .menu-btn {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
}

@media (min-width: 1025px) {
    .header-actions .mobile-res-icon {
        display: none;
    }
}

@media (min-width: 1025px) {
    .menu-btn {
        display: none;
        /* Hide hamburger on desktop */
    }

    /* Desktop Dropdown Styles */
    .desktop-nav li {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 220px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        border-radius: 8px;
        padding: 5px 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        list-style: none;
        display: flex;
        /* Force vertical flow */
        flex-direction: column;
        text-align: left;
        margin-top: 5px;
        gap: 0;
        /* Small distance from the trigger */
    }

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

    .dropdown-menu li {
        width: 100%;
        display: block;
        margin: 0 !important;
    }

    .dropdown-menu a {
        display: block !important;
        padding: 8px 20px !important;
        font-size: 0.8rem !important;
        color: #111 !important;
        text-align: left;
        white-space: nowrap;
        transition: 0.2s;
        opacity: 0.8 !important;
    }

    .dropdown-menu a:hover {
        background: #f9f9f9;
        color: #000 !important;
        opacity: 1 !important;
        padding-left: 25px !important;
    }

    /* Remove the underline effect from dropdown links */
    .dropdown-menu a::after {
        display: none !important;
    }
}

/* Overlay Menu (Now using .mobile-drawer styles) */
/* Kept for JS selection compatibility, but layout relies on .mobile-drawer class */

.overlay-menu.active {
    opacity: 1;
    visibility: visible;
}

.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    z-index: 10001;
}

/* Reset for Drawer Header */
.drawer-header .close-menu-btn {
    position: static;
    font-size: 2rem;
    color: #999;
}

.mobile-nav {
    width: 100%;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav>ul>li {
    border-bottom: 1px solid #eee;
    /* Light border for white bg */
}

.mobile-nav>ul>li>a {
    display: block;
    padding: 15px 0;
}

.menu-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.overlay-menu a {
    color: var(--text-color);
    /* Dark text */
    font-family: var(--font-display);
    font-size: 1.2rem;
    /* Adjusted for drawer list style */
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.submenu-toggle {
    width: 35px;
    height: 35px;
    color: #999;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: 0.3s;
    border: 1px solid #eee;
}

.has-submenu.active .submenu-toggle {
    transform: rotate(180deg);
    background: var(--text-color);
    color: white;
    border-color: var(--text-color);
}

/* Submenu Styles */
.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #f9f9f9;
    /* Light gray background for nested items */
    border-radius: 4px;
}

.has-submenu.active .submenu {
    max-height: 500px;
    margin-bottom: 20px;
}

.submenu li {
    border-bottom: 1px solid #fff;
    padding: 0;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu li a {
    display: block;
    padding: 12px 20px;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: #666;
    /* Muted text */
    text-transform: none;
}

.submenu li a:hover {
    color: var(--text-color);
    background: #eee;
    padding-left: 25px;
}

/* --- Hero V4 (Immersive + Floating Cards) --- */
.hero-v4 {
    position: relative;
    height: 100vh;
    width: 100%;
    color: white;
    overflow: hidden;
}

.hero-bg-v4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-v4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomSlow 20s infinite alternate;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

@keyframes zoomSlow {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-container-v4 {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
}

.hero-main-text {
    max-width: 800px;
}

.tag-pill {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    margin-bottom: 0px !important;
}

.main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 6rem;
    line-height: 0.95;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.main-title em {
    font-family: var(--font-heading);
    /* Serif font for contrast if avail, using body logic fallback */
    font-family: var(--font-display);
    /* Explicitly use serif for elegance */
    font-style: italic;
    font-weight: 400;
}

.hero-main-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-primary-v4 {
    background: white;
    color: var(--text-color);
    padding: 18px 45px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s;
}

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

/* Floating Cards */
.hero-floating-cards {
    position: absolute;
    bottom: 50px;
    right: 30px;
    display: flex;
    gap: 20px;
}

.float-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.float-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-color);
}

.card-info {
    flex: 1;
}

.card-info strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 3px;
    color: white;
}

.card-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.action-icon {
    font-size: 0.9rem;
    color: white;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .main-title {
        font-size: 4rem;
        width: 100%;
    }

    .hero-v4 {
        height: auto;
        min-height: 70vh;
        /* Mobilde yükseklik azaltıldı */
        padding-bottom: 50px;
    }

    .hero-floating-cards {
        position: relative;
        bottom: auto;
        right: auto;
        flex-direction: column;
        margin-top: 50px;
        width: 100%;
        padding: 0 30px;
    }

    .float-card {
        min-width: 100%;
    }

    .hero-container-v4 {
        padding-top: 180px;
        /* Header'dan uzaklaştırıldı */
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .hero-main-text p {
        font-size: 1rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-v4 {
        width: 100%;
        text-align: center;
    }
}

/* --- Bento Grid --- */
.section-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--text-color);
    padding-bottom: 20px;
}

.link-arrow {
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
}

.bento-item {
    position: relative;
    background: var(--soft-gray);
    overflow: hidden;
    border-radius: 4px;
    /* Minimal radius */
    transition: transform 0.3s;
}

.bento-item:hover {
    transform: scale(0.98);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.bento-item:hover img {
    transform: scale(1.1);
}

.bento-item.item-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.item-2 {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-item.item-3 {
    grid-column: span 1;
    grid-row: span 1;
    background: var(--text-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-item.item-4 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-item.item-5 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-item.item-6 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
}

.bento-overlay .bento-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 0;
    font-weight: 900;
    font-family: Outfit;
}

.bento-overlay span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bento-overlay.dark-text .bento-title {
    color: var(--text-color);
}

.bento-overlay.dark-text span {
    color: #555;
}

.text-block {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.text-block .bento-title {
    margin-bottom: 10px;
    line-height: 1.2;
}

.text-block p {
    color: #aaa;
    font-size: 0.9rem;
}

.circle-btn {
    width: 40px;
    height: 40px;
    background: white;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.contain-img {
    object-fit: contain !important;
    padding: 20px;
}

/* --- Ticker Strip --- */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--soft-gray);
    padding: 20px 0;
    border-top: 1px solid var(--text-color);
    border-bottom: 1px solid var(--text-color);
}

.ticker {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.ticker__item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1.8rem;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 1px;
}

/* --- Products V2 --- */
.product-scroller {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.prod-card-v2 .img-box {
    position: relative;
    background: var(--soft-gray);
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    margin-bottom: 20px;
    overflow: hidden;
}

.prod-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Helps integrate isolated images */
    transition: 0.4s;
}

.prod-card-v2:hover img {
    transform: scale(1.05);
}

.hover-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    transform: translateY(100%);
    transition: 0.3s;
}

.prod-card-v2:hover .hover-actions {
    transform: translateY(0);
}

.action-btn {
    width: 100%;
    background: var(--text-color);
    color: white;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.info-box .top-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.info-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.info-box .price {
    font-weight: 700;
    font-family: var(--font-body);
}

.info-box .desc {
    color: #777;
    font-size: 0.9rem;
}

/* --- Editorial --- */
.editorial {
    padding: 100px 0;
}

.editorial-container {
    display: flex;
    max-width: var(--container-width);
    margin: 0 auto;
    align-items: center;
}

.editorial-img {
    flex: 1.5;
    height: 600px;
}

.editorial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s;
}

.editorial-img:hover img {
    filter: grayscale(0%);
}

.editorial-content {
    flex: 1;
    padding: 60px;
    background: white;
    margin-left: -100px;
    /* Overlap effect */
    z-index: 2;
    border: 1px solid #eee;
}

.editorial-content .label {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 10px;
    color: #999;
}

.editorial-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1;
}

.editorial-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.btn-underline {
    border-bottom: 2px solid var(--text-color);
    font-weight: 700;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* --- Footer V2 --- */
.footer-v2 {
    background: var(--text-color);
    color: white;
    padding: 100px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.footer-big-text {
    display: block;
    /* Acts like the h2 it replaced */
    font-size: 8rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 80px;
    margin-top: 20px;
}

.footer-nav .col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-nav a {
    color: #999;
    font-weight: 500;
}

.footer-nav a:hover {
    color: white;
}

.simple-form {
    display: flex;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
}

.simple-form input {
    background: transparent;
    border: none;
    color: white;
    outline: none;
    flex: 1;
}

.simple-form button {
    color: white;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom .links a {
    margin-left: 20px;
}

/* --- Responsive V2 --- */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .bento-item.item-1 {
        grid-column: span 2;
    }

    .bento-item.item-2 {
        grid-column: span 1;
    }

    .bento-item.item-3 {
        grid-column: span 1;
    }

    .bento-item.item-4 {
        grid-column: span 2;
    }

    .bento-item.item-5 {
        grid-column: span 1;
    }

    .bento-item.item-6 {
        grid-column: span 1;
    }

    .editorial-container {
        flex-direction: column;
    }

    .editorial-content {
        margin-left: 0;
        margin-top: -50px;
        width: 100%;
        /* Changed from 90% to avoid overflow issues */
        max-width: 90%;
        /* Added max-width for safe margins */
        padding: 40px;
        /* Reduced padding */
    }

    .editorial-content h2 {
        font-size: 2.5rem;
        /* Smaller font on tablet/small laptop */
    }

    .footer-big-text {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .footer-big-text {
        font-size: 3rem;
        /* Scaled down for mobile */
    }
}

@media (max-width: 480px) {
    .footer-big-text {
        font-size: 2.2rem;
        /* Even smaller for small phones */
    }
}

@media (max-width: 768px) {
    .big-title {
        font-size: 14vw;
    }

    .header {
        top: 70px;
    }

    /* Adjust for wrapped marquee if needed */
    .bento-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding-bottom: 0;
        margin-left: 0;
        margin-right: 0;
        overflow-x: visible;
    }

    .bento-item {
        flex: unset;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        scroll-snap-align: none;
    }

    .bento-item.item-1,
    .bento-item.item-2,
    .bento-item.item-3,
    .bento-item.item-4,
    .bento-item.item-5,
    .bento-item.item-6 {
        grid-column: auto;
        grid-row: auto;
    }

    .footer-nav {
        flex-direction: column;
        gap: 40px;
    }

    .marquee-content {
        animation-duration: 15s;
    }
}

/* --- Product Page Styles --- */
.product-page-body .header,
.about-page-body .header {
    position: absolute;
    top: 40px;
    /* Offset for marquee bar */
    left: 0;
    width: 100%;
    background: transparent;
    color: white;
    border-bottom: none;
}

.product-page-body .menu-btn .bar,
.about-page-body .menu-btn .bar {
    background-color: white;
}

.product-page-body .logo,
.about-page-body .logo {
    color: white;
}

.product-page-body .header:not(.scrolled) .desktop-nav a,
.product-page-body .header:not(.scrolled) .header-actions a,
.about-page-body .header:not(.scrolled) .desktop-nav a,
.about-page-body .header:not(.scrolled) .header-actions a {
    color: white;
}


/* Contact & Blog Page specific header fix (ensure dark text when not scrolled) */
.contact-page-body .header,
.blog-page-body .header,
.blog-single-page-body .header {
    top: 0;
}

.contact-page-body .header:not(.scrolled) .logo,
.contact-page-body .header:not(.scrolled) .desktop-nav a,
.contact-page-body .header:not(.scrolled) .header-actions a,
.blog-page-body .header:not(.scrolled) .logo,
.contact-page-body .header:not(.scrolled) .header-actions a {
    color: var(--text-color);
}

.blog-page-body .header:not(.scrolled) .desktop-nav a,
.blog-page-body .header:not(.scrolled) .header-actions a,
.blog-single-page-body .header:not(.scrolled) .logo,
.blog-single-page-body .header:not(.scrolled) .desktop-nav a,
.blog-single-page-body .header:not(.scrolled) .header-actions a {
    color: white;
    /* White text on Dark Hero */
}

.contact-page-body .header:not(.scrolled) .menu-btn .bar,
.blog-page-body .header:not(.scrolled) .menu-btn .bar {
    background-color: var(--text-color);
}

.blog-single-page-body .header:not(.scrolled) .menu-btn .bar {
    background-color: white;
}

/* Sticky styles for product & about page header */
.product-page-body .header.scrolled,
.about-page-body .header.scrolled,
.contact-page-body .header.scrolled,
.blog-page-body .header.scrolled,
.blog-single-page-body .header.scrolled {
    background: white;
    color: var(--text-color);
    top: 0;
}

.product-page-body .header.scrolled .menu-btn .bar,
.about-page-body .header.scrolled .menu-btn .bar,
.contact-page-body .header.scrolled .menu-btn .bar,
.blog-page-body .header.scrolled .menu-btn .bar,
.blog-single-page-body .header.scrolled .menu-btn .bar {
    background-color: var(--text-color);
}

.product-page-body .header.scrolled .logo,
.about-page-body .header.scrolled .logo,
.contact-page-body .header.scrolled .logo {
    color: var(--text-color);
}


.product-layout {
    padding-top: 40px;
    padding-bottom: 100px;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
}

.breadcrumbs a:hover {
    color: var(--text-color);
}

.product-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-item {
    background: var(--soft-gray);
    width: 100%;
    /* Keep aspect ratio */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-info-sticky {
    position: sticky;
    top: 100px;
    /* Offset for header */
}

.product-cat {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.product-title {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 20px;
}

.product-price {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.price-val {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-body);
}

.price-installment {
    color: #888;
    font-size: 0.9rem;
}

.product-short-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.product-options {
    margin-bottom: 30px;
}

.opt-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.color-swatches {
    display: flex;
    gap: 10px;
}

.swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.2s;
}

.swatch.active {
    border-color: var(--text-color);
    transform: scale(1.1);
    box-shadow: 0 0 0 2px white, 0 0 0 3px var(--text-color);
}

.product-actions-block {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    width: 120px;
}

.qty-btn {
    width: 40px;
    height: 50px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.quantity-selector input {
    width: 40px;
    height: 50px;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    outline: none;
    background: transparent;
}

.btn-add-cart {
    flex: 1;
    background: var(--text-color);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-add-cart:hover {
    background: #333;
}

.btn-fav {
    width: 50px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-fav:hover {
    border-color: var(--text-color);
}

/* Accordions */
.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-item:first-child {
    border-top: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: left;
    color: var(--text-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* Approximate max height */
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-header i {
    transition: 0.3s;
}

/* Responsive Product */
@media (max-width: 1024px) {
    .product-main-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        order: 1;
    }

    .product-info-sticky {
        order: 2;
        position: static;
        margin-top: 20px;
    }

    /* --- Product Page V3 (WooCommerce Style) --- */
    .woo-product-body .header {
        position: sticky;
        top: 0;
        background: white;
        box-shadow: 0 1px 0 #eee;
        padding: 15px 0;
    }

    .woo-product-body .logo,
    .woo-product-body .header-actions a,
    .woo-product-body .menu-btn .bar {
        color: var(--text-color);
    }

    .woo-breadcrumb {
        margin: 20px 0 40px;
        font-size: 0.85rem;
        color: #888;
    }

    .woo-breadcrumb a:hover {
        color: var(--text-color);
    }

    .single-product-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        margin-bottom: 80px;
    }

    /* Gallery */
    .woo-gallery {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .woo-gallery .main-image {
        position: relative;
        background: var(--soft-gray);
        width: 100%;
        aspect-ratio: 1;
        /* Square for standard layout ease */
        display: flex;
        /* Centering */
        align-items: center;
        justify-content: center;
        overflow: hidden;
        cursor: zoom-in;
    }

    .woo-gallery .main-image img {
        width: 80%;
        /* Show product clearly with whitespace */
        height: auto;
        object-fit: contain;
        mix-blend-mode: multiply;
        transition: transform 0.5s;
    }

    .woo-gallery .main-image:hover img {
        transform: scale(1.1);
    }

    .badge-new {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--text-color);
        color: white;
        padding: 5px 10px;
        font-size: 0.7rem;
        font-weight: 700;
    }

    .thumb-grid {
        display: flex;
        gap: 15px;
    }

    .thumb {
        width: 80px;
        height: 80px;
        background: var(--soft-gray);
        cursor: pointer;
        border: 1px solid transparent;
        transition: 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .thumb img {
        width: 90%;
        height: 90%;
        object-fit: contain;
        mix-blend-mode: multiply;
    }

    .thumb.active {
        border-color: var(--text-color);
    }

    /* Summary */
    .woo-summary {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .sku-text {
        font-size: 0.8rem;
        color: #999;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .woo-title {
        font-size: 3rem;
        margin-bottom: 20px;
        line-height: 1;
    }

    .woo-price-rating {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }

    .woo-price-rating .price {
        font-size: 2rem;
        font-weight: 700;
        font-family: var(--font-body);
    }

    .woo-price-rating .rating {
        color: #ffc107;
        font-size: 0.9rem;
    }

    .woo-price-rating .rating span {
        color: #888;
        margin-left: 5px;
    }

    .woo-short-desc {
        color: #555;
        margin-bottom: 30px;
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .cart-form {
        margin-bottom: 40px;
    }

    .var-row {
        margin-bottom: 20px;
    }

    .var-row label {
        display: block;
        font-weight: 700;
        margin-bottom: 8px;
        font-size: 0.9rem;
    }

    .var-row select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        font-family: var(--font-body);
        font-size: 1rem;
        outline: none;
        cursor: pointer;
    }

    .add-to-cart-group {
        display: flex;
        gap: 15px;
    }

    .qty-input {
        width: 80px;
        padding: 10px;
        text-align: center;
        font-size: 1.1rem;
        border: 1px solid #ddd;
        font-family: var(--font-body);
    }

    .btn-woo-add {
        flex: 1;
        background: var(--text-color);
        color: white;
        font-weight: 700;
        font-family: var(--font-display);
        font-size: 1rem;
        letter-spacing: 1px;
        transition: 0.3s;
    }

    .btn-woo-add:hover {
        background: #333;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .product-meta {
        font-size: 0.85rem;
        color: #888;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .product-meta a {
        color: var(--text-color);
        font-weight: 500;
    }

    /* Tabs */
    .woo-tabs {
        margin: 60px 0;
    }

    .tabs-nav {
        display: flex;
        border-bottom: 1px solid #ddd;
        margin-bottom: 30px;
    }

    .tabs-nav li {
        padding: 15px 30px;
        font-family: var(--font-display);
        font-weight: 700;
        cursor: pointer;
        color: #888;
        position: relative;
        transition: 0.3s;
    }

    .tabs-nav li.active {
        color: var(--text-color);
    }

    .tabs-nav li.active::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--text-color);
    }

    .tab-content {
        display: none;
        animation: fadeIn 0.5s;
    }

    .tab-content.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .tab-content h3 {
        margin-bottom: 20px;
        font-size: 1.5rem;
    }

    .tab-content p {
        color: #555;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .desc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .d-item {
        background: var(--soft-gray);
        padding: 20px;
    }

    .d-item i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .d-item h4 {
        margin-bottom: 5px;
    }

    .woo-table {
        width: 100%;
        border-collapse: collapse;
    }

    .woo-table th,
    .woo-table td {
        padding: 15px;
        border-bottom: 1px solid #eee;
        text-align: left;
    }

    .woo-table th {
        width: 200px;
        font-weight: 700;
    }

    /* Separation Ticker */
    .separation {
        margin: 60px 0;
    }

    @media (max-width: 768px) {
        .single-product-grid {
            grid-template-columns: 1fr;
        }
    }

    /* --- Product Page V2 (Editorial) --- */
    .prod-v2-hero {
        position: relative;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        color: white;
    }

    .prod-v2-hero .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .prod-v2-hero .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.7);
    }

    .hero-content-center {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .collection-tag {
        display: inline-block;
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .prod-title-huge {
        font-size: 8vw;
        line-height: 0.9;
        font-weight: 800;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .prod-subtitle {
        font-size: 1.5rem;
        font-family: var(--font-display);
        font-style: italic;
        opacity: 0.9;
    }

    .scroll-indicator {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        z-index: 2;
        opacity: 0.7;
    }

    .scroll-indicator span {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .scroll-indicator .line {
        width: 1px;
        height: 60px;
        background: white;
    }

    .prod-v2-story {
        padding: 100px 30px;
        max-width: 900px;
        /* Editorial reading width */
        margin: 0 auto;
        text-align: center;
    }

    .story-title {
        font-size: 3rem;
        margin-bottom: 30px;
    }

    .story-text {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 60px;
    }

    .full-width-img {
        margin: 60px 0;
        width: 100%;
    }

    .full-width-img img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .specs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        text-align: left;
        margin-top: 80px;
        border-top: 1px solid #ddd;
        padding-top: 40px;
    }

    .spec-item h3 {
        font-size: 1rem;
        margin-bottom: 10px;
        color: var(--text-color);
    }

    .spec-item p {
        font-size: 0.9rem;
        color: #666;
    }

    /* Sticky Bottom Bar */
    .sticky-purchase-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        border-top: 1px solid #eee;
        padding: 20px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 999;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .sticky-purchase-bar.visible {
        transform: translateY(0);
    }

    .bar-info {
        display: flex;
        flex-direction: column;
    }

    .bar-title {
        font-weight: 700;
        font-size: 1rem;
    }

    .bar-price {
        color: #666;
        font-size: 0.9rem;
    }

    .bar-actions {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .color-select {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .color-select .dot {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid transparent;
    }

    .color-select .dot.selected {
        border-color: var(--text-color);
        padding: 2px;
        background-clip: content-box;
    }

    .btn-buy-now {
        background: var(--text-color);
        color: white;
        padding: 15px 40px;
        font-weight: 700;
        font-family: var(--font-display);
        letter-spacing: 1px;
        transition: 0.3s;
    }

    .btn-buy-now:hover {
        background: #333;
        transform: translateY(-2px);
    }

    .related-dark {
        background: #111;
        color: white;
        padding: 80px 0;
    }

    .related-dark h3 {
        text-align: center;
        margin-bottom: 50px;
        font-size: 2rem;
    }

    .related-grid {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .rel-item {
        text-align: center;
        width: 250px;
    }

    .rel-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        margin-bottom: 15px;
        opacity: 0.7;
        transition: 0.3s;
    }

    .rel-item:hover img {
        opacity: 1;
    }

    @media (max-width: 768px) {
        .prod-title-huge {
            font-size: 15vw;
        }

        .specs-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .sticky-purchase-bar {
            flex-direction: column;
            gap: 15px;
            padding: 15px 20px;
        }

        .bar-actions {
            width: 100%;
            justify-content: space-between;
        }

        .btn-buy-now {
            padding: 12px 20px;
            font-size: 0.8rem;
        }
    }
}

.btn-underline {
    border-bottom: 2px solid var(--text-color);
}

/* --- 1. Features Strip --- */
.features-strip {
    background: var(--text-color);
    color: white;
    padding: 40px 0;
}

.feature-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
}

.feature-item i {
    font-size: 2rem;
    color: #888;
    /* Muted icon */
}

.feature-item .text h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.feature-item .text p {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}

/* --- 2. Lookbook (Masonry ish) --- */
.section-header-centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-header-centered .sub-title {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
}

.section-header-centered h2,
.section-header-centered .section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
}

.lb-item {
    position: relative;
    overflow: hidden;
    background: var(--soft-gray);
}

.lb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.lb-item:hover img {
    transform: scale(1.05);
}

.lb-item.big {
    grid-column: span 2;
    grid-row: span 2;
}

.lb-item.wide {
    grid-column: span 2;
}

/* --- 3. Testimonials --- */
.bg-soft {
    background-color: #f9f9f9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testi-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.testi-card:hover {
    transform: translateY(-5px);
}

.testi-card .stars {
    color: #e0ac00;
    /* Goldish */
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testi-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.testi-card .author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-card .author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.testi-card .author span {
    font-weight: 700;
    font-size: 0.9rem;
}

/* --- 4. FAQ --- */
.faq-section {
    background: white;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.faq-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.faq-intro p {
    color: #777;
    margin-bottom: 30px;
}

.btn-text {
    font-weight: 700;
    border-bottom: 1px solid black;
    padding-bottom: 2px;
}

.faq-list details {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-list summary {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-list details[open] summary::after {
    content: '−';
}

.faq-list p {
    margin-top: 15px;
    color: #666;
    line-height: 1.6;
}

/* --- Responsive New Sections --- */
@media (max-width: 768px) {
    .feature-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 2x2 grid on mobile */
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
        /* Stack */
        grid-template-rows: auto;
    }

    .lb-item,
    .lb-item.big,
    .lb-item.wide {
        grid-column: span 1;
        /* Reset spans */
        grid-row: span 1;
        height: 250px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header-centered h2 {
        font-size: 2rem;
    }
}

/* --- Blog Section --- */
.blog-section {
    background: var(--bg-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: transparent;
    cursor: pointer;
}

.blog-img {
    position: relative;
    height: 300px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: var(--text-color);
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    transition: 0.3s;
}

.blog-card:hover .blog-content h3 {
    color: #666;
}

.blog-content p {
    color: #888;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.read-more {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 2px;
}

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

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

/* --- Categories Scroller --- */
.categories-section {
    overflow: hidden;
}

.category-scroller {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 20px;
    padding-right: 30px;
    /* End padding */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.category-scroller::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.cat-card {
    flex: 0 0 350px;
    height: 450px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: center;
    border-radius: 4px;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Fix for transparent pngs used as covers */
.cat-card .contain-img-fix {
    object-fit: contain;
    background: var(--soft-gray);
    padding: 40px;
}

.cat-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    transform: translateY(10px);
    transition: 0.3s;
}

.cat-card:hover .cat-info {
    transform: translateY(0);
}

.cat-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.cat-info span {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .cat-card {
        flex: 0 0 280px;
        height: 380px;
    }
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.branches-grid .cat-card {
    flex: unset;
    min-width: unset;
    width: 100%;
    height: 480px;
}

@media (max-width: 1024px) {
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .branches-grid .cat-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .branches-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        margin-left: -30px;
        margin-right: -30px;
        padding-left: 30px;
        padding-right: 30px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .branches-grid::-webkit-scrollbar {
        display: none;
    }

    .branches-grid .cat-card {
        flex: 0 0 85%;
        height: 400px;
        scroll-snap-align: center;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .branches-grid .cat-card {
        height: 320px;
        flex: 0 0 90%;
    }

    .branches-grid .cat-info h3 {
        font-size: 1.2rem;
    }

    .branches-grid .cat-info span {
        font-size: 0.7rem;
    }
}

/* --- Cat Card With Actions (Branches) --- */
.cat-card-with-actions {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.cat-card-with-actions:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cat-card-link {
    flex: 1;
    display: block;
    position: relative;
    overflow: hidden;
}

.cat-card-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.cat-actions {
    display: flex;
    gap: 10px;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #eee;
    border-top: none;
}

.btn-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none !important;
}

.btn-telefon {
    background: #111;
    color: #fff !important;
}

.btn-telefon:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff !important;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* Desktop: match height of cat-card */
.branches-grid .cat-card-with-actions {
    height: 480px;
}

.branches-grid .cat-card-with-actions .cat-card-link {
    flex: 1;
    min-height: 0;
}

@media (max-width: 1024px) {
    .branches-grid .cat-card-with-actions {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .branches-grid .cat-card-with-actions {
        height: auto;
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .branches-grid .cat-card-with-actions .cat-card-link {
        height: auto;
        aspect-ratio: 1;
    }
}

@media (max-width: 480px) {
    .branches-grid .cat-card-with-actions {
        flex: 0 0 90%;
    }

    .branches-grid .cat-card-with-actions .cat-card-link {
        height: auto;
        aspect-ratio: 1;
    }

    .btn-action {
        font-size: 0.7rem;
        padding: 10px 8px;
    }
}

/* --- Slider Nav --- */
.slider-nav {
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: var(--text-color);
}

.slider-btn:hover {
    background: var(--text-color);
    color: white;
    border-color: var(--text-color);
}

/* --- Mobile fixes for Editorial Section --- */
@media (max-width: 600px) {
    .editorial-content {
        padding: 30px;
        /* Even smaller padding on mobile */
        width: 95%;
        max-width: 95%;
    }

    .editorial-content h2 {
        font-size: 2rem;
        /* Much smaller font to prevent overflow */
    }
}

/* --- Product Page Layout --- */
.page-padding-top {
    height: 120px;
    /* Spacer for fixed header */
    width: 100%;
}

.breadcrumb-nav {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #888;
}

.breadcrumb-nav a:hover {
    color: var(--text-color);
}

.breadcrumb-nav .sep {
    margin: 0 10px;
    font-size: 0.8rem;
    color: #ccc;
}

.product-page {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Gallery Grid */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    background: var(--soft-gray);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item.main {
    grid-column: span 2;
    aspect-ratio: 16/10;
}

.gallery-item:not(.main) {
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Using contain for transparent furniture images */
    padding: 20px;
    transition: 0.5s;
    mix-blend-mode: multiply;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Sticky Details */
.product-details-sticky {
    position: sticky;
    top: 120px;
    align-self: start;
}

.tag-pill.dark {
    background: var(--text-color);
    color: white;
    border: none;
    margin-bottom: 15px;
}

.prod-title {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 20px;
}

.price-row {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 500;
    margin-bottom: 30px;
}

.short-desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* Options */
.option-group {
    margin-bottom: 30px;
}

.opt-label {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.color-opts {
    display: flex;
    gap: 15px;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
}

.color-btn.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    height: 55px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    padding: 0 10px;
    width: 120px;
    justify-content: space-between;
}

.qty-selector button {
    font-size: 1.2rem;
    padding: 0 10px;
    color: var(--text-color);
}

.add-to-cart-btn {
    flex: 1;
    background: var(--text-color);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.add-to-cart-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Simple Accordion */
.prod-accordion {
    border-top: 1px solid #eee;
}

.acc-item {
    border-bottom: 1px solid #eee;
}

.acc-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.acc-item.active .acc-body {
    max-height: 200px;
    padding-bottom: 20px;
}

.acc-item.active .acc-header i {
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .product-page {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .prod-title {
        font-size: 2.5rem;
    }

    .action-buttons {
        flex-direction: column;
        height: auto;
    }

    .add-to-cart-btn {
        padding: 20px;
    }

    .qty-selector {
        width: 100%;
        height: 50px;
        justify-content: center;
        gap: 20px;
    }
}

/* Gallery Main + Thumbs Layout */
.product-gallery-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-main {
    width: 100%;
    /* aspect-ratio: 4/3; REMOVED to allow full image height */
    background: var(--soft-gray);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* For button positioning */
}

.gallery-main img {
    width: 100%;
    height: auto;
    /* Allow natural height */
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Expand Button */
.expand-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 2;
}

.expand-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: #bbb;
}

.gallery-thumbs {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.thumb-item {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    background: var(--soft-gray);
    transition: 0.3s;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.3s;
}

.thumb-item:hover img,
.thumb-item.active img {
    opacity: 1;
}

.thumb-item.active {
    border-color: var(--text-color);
}

@media (max-width: 1024px) {
    .product-gallery-v2 {
        margin-bottom: 40px;
        /* Restore spacing lost from old class */
    }
}

@media (max-width: 600px) {
    .gallery-main {
        aspect-ratio: 1;
        /* Square for mobile */
    }

    .thumb-item {
        width: 70px;
        height: 70px;
    }

    /* Product Scroller Generic (Related Products) */
    .product-scroller {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
    }

    .product-scroller .prod-card-v2 {
        min-width: 280px;
        /* Fixed width for scrolling */
        scroll-snap-align: center;
    }
}

/* Ensure header is visible on product page (white bg) */
.product-page-body .header {
    color: var(--text-color);
}

/* --- Refined Product Page Spacing --- */
/* Reduce top spacing for product page */
.product-page-body .page-padding-top {
    height: 90px;
}

/* Reduce breadcrumb bottom margin */
.product-page-body .breadcrumb-nav {
    margin-bottom: 20px;
}

/* Reduce spacing for Related Products */
.product-page-body .related-section.padding-y {
    padding-top: 40px;
}

@media (max-width: 600px) {

    /* Mobile font size fix for "BUNLARI DA SEVEBILIRSINIZ" */
    .section-title-large {
        font-size: 1.8rem;
    }
}

/* --- Collections Page Grid Styles --- */
.collections-section {
    padding-top: 50px;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.prod-card-v2 .img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Make it square */
    background: #f4f4f4;
    overflow: hidden;
    margin-bottom: 20px;
}

.collection-card {
    position: relative;
    height: 500px;
    background: #f4f4f4;
    overflow: hidden;
    overflow: hidden;
}

.collection-card .col-img {
    height: 100%;
    width: 100%;
    position: relative;
}

.collection-card .col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover .col-img img {
    transform: scale(1.05);
}

.col-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Darkening */
    transition: 0.3s;
}

.collection-card:hover .col-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.col-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    color: white;
}

.col-content h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.col-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 300;
}

.col-content.dark-text {
    color: var(--text-color);
}

.col-content.dark-text h2 {
    text-shadow: none;
}

/* Special Card for New Arrivals */
.collection-card.special {
    background: white;
    border: 1px solid var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s;
}

.collection-card.special:hover {
    background: var(--text-color);
}

.collection-card.special .text-center-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.collection-card.special h3 {
    font-size: 3rem;
    line-height: 1;
    color: var(--text-color);
    transition: 0.3s;
}

.collection-card.special:hover h3 {
    color: white;
}

.collection-card.special:hover .tag-pill.dark {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.circle-arrow-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-color);
    transition: 0.3s;
}

.collection-card.special:hover .circle-arrow-btn {
    border-color: white;
    color: white;
    transform: rotate(-45deg);
}

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

    .collection-card {
        height: 400px;
    }

    .col-content h2 {
        font-size: 2rem;
    }
}

/* --- Products Page Layout --- */
.page-header {
    margin-bottom: 40px;
}

.page-title-big {
    font-size: 3.5rem;
    margin-bottom: 10px;
    line-height: 1;
}

.products-layout {
    display: flex;
    gap: 50px;
}

.padding-bottom {
    padding-bottom: 100px;
}

/* Sidebar */
.sidebar-filters {
    width: 250px;
    flex-shrink: 0;
}

.filter-group {
    margin-bottom: 40px;
}

.filter-group h3 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.filter-group ul li {
    margin-bottom: 12px;
}

.filter-group ul li a {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.filter-group ul li a:hover,
.filter-group ul li a.active {
    color: var(--text-color);
    text-decoration: underline;
}

.filter-group ul li span {
    color: #999;
    font-size: 0.8rem;
    margin-left: 5px;
}

.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-range-inputs input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
}

.filter-btn {
    width: 100%;
    background: var(--soft-gray);
    padding: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.filter-btn:hover {
    background: var(--text-color);
    color: white;
}

.color-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.color-circle:hover {
    transform: scale(1.2);
}

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

.toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 30px;
}

.result-count {
    color: #888;
    font-size: 0.9rem;
}

.sort-selector select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

.products-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    font-weight: 600;
    transition: 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background: var(--text-color);
    color: white;
    border-color: var(--text-color);
}

.pagination a:last-child {
    width: auto;
    padding: 0 20px;
}

/* Responsive Products Layout */
@media (min-width: 1025px) {
    .mobile-tool-bar {
        display: none;
    }
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }

    .products-layout {
        flex-direction: column;
        padding-top: 20px;
    }

    /* Mobile Tool Bar */
    .mobile-tool-bar {
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    .mobile-tool-btn {
        flex: 1;
        padding: 12px 0;
        background: white;
        border: 1px solid #eee;
        font-family: var(--font-display);
        font-weight: 600;
        font-size: 0.8rem;
        letter-spacing: 1px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s ease;
    }

    .mobile-tool-btn i {
        font-size: 0.9rem;
        color: var(--text-color);
    }

    .mobile-tool-btn:active {
        background: #f9f9f9;
        transform: scale(0.98);
    }
}

/* --- Mobile Drawer (Left) --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    /* Hidden by default */
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: white;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
}

.mobile-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.drawer-header h3 {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #999;
}

.drawer-content {
    padding: 25px;
}

.drawer-list {
    list-style: none;
    padding: 0;
}

.drawer-list li {
    margin-bottom: 20px;
}

.drawer-list a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.drawer-list a.active {
    color: #c5a47e;
    text-decoration: underline;
}

/* --- Mobile Popup (Filter) --- */
.mobile-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mobile-popup.active {
    visibility: visible;
    pointer-events: auto;
}

.popup-box {
    position: relative;
    width: 100%;
    max-width: 450px;
    background: white;
    z-index: 2;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 4px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.mobile-popup.active .popup-box {
    transform: translateY(0);
    opacity: 1;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.close-popup {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #999;
    cursor: pointer;
}

.popup-content {
    padding: 25px;
    overflow-y: auto;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-popup.active .popup-overlay {
    opacity: 1;
}

.apply-filters-btn {
    width: 100%;
    background: var(--text-color);
    color: white;
    border: none;
    padding: 15px;
    font-weight: 600;
    margin-top: 30px;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .products-grid-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .prod-card-v2 .img-box {
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 12px;
    }

    .info-box h3 {
        font-size: 0.95rem;
        /* Smaller titles for mobile */
    }

    .info-box .price {
        font-size: 0.9rem;
    }

    .hover-actions {
        display: none;
        /* Often hover actions aren't great on touch, but if they want to keep it, we could change it to a permanent button */
    }
}

/* --- About Page Styles (Updated for Immersive Header) --- */
.about-hero-v2 {
    position: relative;
    height: 70vh;
    min-height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    margin-bottom: 80px;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.about-hero-container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 800px;
}

.about-main-title {
    font-size: 5rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.about-sub-text {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .about-main-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .about-hero-v2 {
        height: 60vh;
        text-align: center;
    }

    .about-hero-content {
        margin: 0 auto;
    }

    .about-main-title {
        font-size: 3rem;
    }
}

/* Split Section */
.split-section {
    position: relative;
    overflow: hidden;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.split-section.reverse .split-container {
    flex-direction: row-reverse;
}

.split-img {
    flex: 1;
    height: 500px;
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.split-img img.contain-img-fix {
    object-fit: contain;
    padding: 40px;
}

.bg-white {
    background: white;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.split-content .sub-title {
    display: block;
    font-size: 0.9rem;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.split-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Values Section */
.bg-soft {
    background-color: var(--soft-gray);
}

.section-header-centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header-centered h2,
.section-header-centered .section-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-header-centered p {
    color: #777;
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.value-card {
    padding: 40px 20px;
    background: white;
    border: 1px solid #e0e0e0;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.icon-box-large {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive About */
@media (max-width: 1024px) {
    .about-hero-text .page-title-big {
        font-size: 3.5rem;
    }

    .split-container {
        flex-direction: column;
        gap: 40px;
    }

    .split-section.reverse .split-container {
        flex-direction: column;
    }

    .split-img {
        width: 100%;
        height: 400px;
    }
}

/* --- Contact Page Styles --- */
.section-desc {
    max-width: 500px;
    margin-top: 20px;
    color: #666;
    font-size: 1.1rem;
}

.contact-layout {
    display: flex;
    gap: 80px;
    margin-top: 60px;
}

.contact-left {
    flex: 1;
}

.contact-right {
    flex: 1.2;
}

.contact-info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: var(--font-heading-main);
}

.contact-info-block p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 5px;
}

.contact-info-block p.hours {
    color: #666;
    font-size: 0.95rem;
}

.contact-info-block a {
    text-decoration: none;
    color: var(--text-color);
    position: relative;
}

.contact-info-block a:hover {
    text-decoration: underline;
}

.map-container {
    margin-top: 40px;
    width: 100%;
    filter: grayscale(100%);
    border-radius: 4px;
    overflow: hidden;
    transition: filter 0.3s;
}

.map-container:hover {
    filter: grayscale(0%);
}

/* Form Styles */
.contact-form {
    background: #fafafa;
    padding: 40px;
    border-radius: 4px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: white;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 0;
    /* Sharp edges */
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-color);
}

.btn-black-large {
    width: 100%;
    padding: 18px;
    background: var(--text-color);
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
}

.btn-black-large:hover {
    background: #333;
}

/* Responsive Contact */
@media (max-width: 900px) {
    .contact-layout {
        flex-direction: column;
        gap: 50px;
    }

    .contact-right {
        order: -1;
        /* Form first on mobile usually better for conversion, or keep standard order */
        order: 1;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

/* --- Category Page (Editorial) Styles --- */
.category-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    margin-top: -80px;
    /* Pull up behind fixed header if transparent, but here we have sticky */
    margin-top: 0;
    overflow: hidden;
}

.cat-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cat-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.cat-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
}

.collection-year {
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.9;
}

.cat-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-family: var(--font-heading-main);
    line-height: 1;
}

.cat-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 500px;
    line-height: 1.6;
}

/* Sub Nav */
.sub-cat-nav-wrapper {
    position: sticky;
    top: 80px;
    /* Adjustment for sticky header */
    background: white;
    border-bottom: 1px solid #eee;
    z-index: 90;
    padding: 15px 0;
}

.sub-cat-nav {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 5px;
    /* Scrollbar spacing if any */
}

/* Hide Scrollbar */
.sub-cat-nav::-webkit-scrollbar {
    display: none;
}

.sub-cat-nav a {
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.sub-cat-nav a.active,
.sub-cat-nav a:hover {
    color: var(--text-color);
}

.sub-cat-nav a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    bottom: -17px;
    /* Align with border-bottom */
    left: 0;
}

/* Mixed Grid */
.mixed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 30px;
}

.grid-item {
    position: relative;
}

.featured-large {
    grid-column: span 2;
    grid-row: span 2;
}

.wide-banner {
    grid-column: span 2;
    background: #f4f4f4;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.wide-banner img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60%;
    object-fit: cover;
    z-index: 1;
    mask-image: linear-gradient(to right, transparent, black 20%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%);
}

.wide-banner .banner-content {
    position: relative;
    z-index: 2;
    width: 50%;
    padding: 40px;
}

.wide-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.wide-banner a {
    margin-top: 15px;
    display: inline-block;
    font-weight: 600;
    color: var(--text-color);
}

.inspiration-block {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.inspiration-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.inspiration-block:hover img {
    transform: scale(1.05);
}

.inspiration-block .overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
}

.inspiration-block .overlay-text span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.inspiration-block .overlay-text h3 {
    font-size: 1.5rem;
    margin-top: 5px;
}

/* Editorial Product Card */
.prod-card-editorial {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.prod-card-editorial .img-wrap {
    flex: 1;
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 500px;
    /* Fixed height for large item */
}

.prod-card-editorial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-new {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: black;
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.prod-card-editorial .info-wrap {
    padding-top: 20px;
}

.prod-card-editorial h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.prod-card-editorial .details {
    color: #666;
    margin-bottom: 15px;
}

.prod-card-editorial .price-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.prod-card-editorial .price {
    font-size: 1.3rem;
    font-weight: 600;
}

.prod-card-editorial .btn-text {
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .mixed-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured-large {
        grid-column: span 2;
    }

    .wide-banner {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .mixed-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .cat-title {
        font-size: 3rem;
    }

    .prod-card-editorial .img-wrap {
        height: 350px;
    }

    .wide-banner img {
        width: 100%;
        position: relative;
        height: 200px;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .wide-banner {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .wide-banner .banner-content {
        width: 100%;
    }
}

/* --- Products Page Hero --- */
.products-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    margin-bottom: 60px;
}

.products-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.products-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.products-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.breadcrumb-mini {
    padding-top: 100px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    opacity: 0.8;
    letter-spacing: 1px;
}

.breadcrumb-mini a {
    color: white;
    text-decoration: none;
}

.breadcrumb-mini .sep {
    margin: 0 10px;
}

.hero-title-main {
    font-size: 4.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-title-main .dot {
    color: #c5a47e;
    /* Accent color */
}

.hero-subtitle-text {
    font-size: 1.2rem;
    max-width: 500px;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .hero-title-main {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .products-hero {
        height: 50vh;
        text-align: center;
    }

    .products-hero-content {
        margin: 0 auto;
    }

    .hero-title-main {
        font-size: 2.8rem;
    }

    .hero-subtitle-text {
        margin: 0 auto;
    }

}

/* --- Contact Page Styles (Updated for Immersive Header) --- */
.contact-hero-v2 {
    position: relative;
    height: 70vh;
    min-height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    margin-bottom: 80px;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-main-title {
    font-size: 5rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.1;
}

.contact-sub-text {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-hero-container {
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    max-width: 800px;
}

@media (max-width: 1024px) {
    .contact-main-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-v2 {
        height: 60vh;
        text-align: center;
    }

    .contact-hero-content {
        margin: 0 auto;
    }

    .contact-main-title {
        font-size: 3rem;
    }


}

/* --- Blog Page Styles --- */

.blog-layout {
    margin-top: 40px;
}

/* Featured Post */
.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.featured-img {
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
    /* Slight radius for premium feel */
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-post:hover .featured-img img {
    transform: scale(1.03);
}

.featured-content .blog-cat {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.featured-title {
    font-size: 2.5rem;
    font-family: var(--font-display);
    line-height: 1.2;
    margin-bottom: 15px;
}

.featured-title a:hover {
    text-decoration: underline;
}

.blog-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.blog-meta .author:before {
    content: "•";
    margin: 0 10px;
}

.featured-excerpt {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more i {
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.card-img {
    position: relative;
    height: 280px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 2px;
}

.prod-card-v2 .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fix distortion for all product images */
    transition: transform 0.5s ease;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .card-img img {
    transform: scale(1.05);
}

.card-cat {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 5px 10px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 1.5rem;
    font-family: var(--font-display);
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid currentColor;
    align-self: flex-start;
    padding-bottom: 2px;
}

.read-more-link:hover {
    color: #666;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    font-weight: 600;
    transition: 0.3s;
}

.page-link.active,
.page-link:hover {
    background: var(--text-color);
    color: white;
    border-color: var(--text-color);
}

.page-link.next {
    border: none;
    font-size: 1.2rem;
}

.page-link.next:hover {
    background: transparent;
    color: var(--text-color);
    transform: translateX(5px);
}

/* Responsive Blog */
@media (max-width: 1024px) {
    .featured-post {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-img {
        height: 400px;
    }

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

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-img {
        height: 250px;
    }

    .featured-title {
        font-size: 1.8rem;
    }

    .card-img {
        height: 220px;
    }
}

/* --- Blog Single Page (Redesign with Sidebar) --- */

/* Immersive Hero */
.blog-hero-immersive {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -80px;
    /* Pull up behind header if header is transparent */
    color: white;
    margin-bottom: 60px;
}

.blog-hero-immersive .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.blog-hero-immersive .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Slightly darker for better contrast with smaller text */
    z-index: -1;
}

.blog-hero-immersive .hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease forwards;
    margin-top: 40px;
    /* Offset for header */
}

.hero-cat {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border-radius: 30px;
}

.hero-title {
    font-size: 2.8rem;
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-meta span {
    position: relative;
}

.hero-meta span:not(:last-child):after {
    content: "•";
    position: absolute;
    right: -13px;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

/* Page Layout (Sidebar) */
.blog-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* 2/3 Content, 1/3 Sidebar */
    gap: 60px;
    padding-bottom: 80px;
}

/* Main Content Column */
.blog-main-column {
    width: 100%;
}

.article-content {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content .lead-text {
    font-size: 1.35rem;
    font-weight: 300;
    color: #000;
    line-height: 1.6;
    margin-bottom: 40px;
}

.article-content h2 {
    margin-top: 50px;
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.article-content h3 {
    margin-top: 40px;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-family: var(--font-display);
}

.article-quote {
    border-left: 4px solid var(--text-color);
    padding-left: 30px;
    margin: 40px 0;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    color: #444;
    line-height: 1.4;
    background: #fafafa;
    padding: 30px;
    border-radius: 0 4px 4px 0;
}

.article-image-block {
    margin: 40px 0;
}

.article-image-block img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
}

.article-image-block .img-caption {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.article-footer {
    border-top: 1px solid #eee;
    margin-top: 60px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-footer .tags span {
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 10px;
    color: #555;
}

.share-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: #333;
}

.share-links a:hover {
    background: var(--text-color);
    color: white;
    border-color: var(--text-color);
}

/* Author Box */
.author-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    background: #222;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: var(--font-display);
}

.author-info h4 {
    margin-bottom: 5px;
    font-family: var(--font-display);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    margin-bottom: 40px;
}

.widget-title {
    font-size: 1.2rem;
    font-family: var(--font-display);
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--text-color);
}

/* Search Widget */
.widget-search form {
    display: flex;
    position: relative;
}

.widget-search input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

.widget-search input:focus {
    border-color: var(--text-color);
}

.widget-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666;
}

/* Categories Widget */
.widget-categories ul li {
    margin-bottom: 12px;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 8px;
}

.widget-categories ul li a {
    display: flex;
    justify-content: space-between;
    color: #555;
    transition: 0.3s;
}

.widget-categories ul li a:hover {
    color: var(--text-color);
    transform: translateX(5px);
}

.widget-categories ul li a span {
    color: #aaa;
    font-size: 0.85rem;
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.recent-post-item .rp-img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.recent-post-item .rp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-item h5 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.recent-post-item h5 a:hover {
    text-decoration: underline;
}

.rp-date {
    font-size: 0.75rem;
    color: #999;
}

/* Newsletter Widget */
.widget-newsletter p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.widget-newsletter input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.widget-newsletter button {
    width: 100%;
    padding: 12px;
    background: var(--text-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.widget-newsletter button:hover {
    background: #000;
}

/* Recent Products Widget */
.recent-product-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.recent-product-item .rp-img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.recent-product-item .rp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-product-item h5 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.recent-product-item h5 a:hover {
    text-decoration: underline;
}

.rp-price {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 700;
    font-family: var(--font-display);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}


/* Responsive Blog Single Redesign */
@media (max-width: 1024px) {
    .blog-content-wrapper {
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }

    .blog-hero-immersive {
        height: 50vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* Related Posts */
.related-section {
    padding-bottom: 80px;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.related-title {
    font-size: 2rem;
    font-family: var(--font-display);
    margin-bottom: 40px;
    text-align: center;
}

/* --- Collection Split Section --- */
.collection-split-section {
    background: #f9f9f9;
    padding: 80px 0;
    margin-bottom: 60px;
}

.split-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Text Column */
.col-text {
    position: sticky;
    top: 140px;
}

.col-text .sub-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
    font-weight: 700;
}

.col-text h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.col-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Right Product Column */
.col-products {
    min-width: 0;
    overflow: hidden;
}

.product-scroller-minimal {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.product-scroller-minimal::-webkit-scrollbar {
    height: 4px;
}

.product-scroller-minimal::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
}

.prod-card-min {
    flex: 0 0 220px;
    scroll-snap-align: start;
    cursor: pointer;
}

.prod-card-min .img-wrap {
    width: 100%;
    aspect-ratio: 1;
    background: white;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.prod-card-min .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
    mix-blend-mode: multiply;
}

.add-btn-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: var(--text-color);
    color: white;
    border: none;
    border-radius: 50%;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-card-min:hover .img-wrap img {
    transform: scale(1.05);
}

.prod-card-min:hover .add-btn-icon {
    opacity: 1;
    transform: translateY(0);
}

.min-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.min-info span {
    font-size: 0.9rem;
    color: #777;
    font-family: var(--font-display);
    font-weight: 600;
}

@media (max-width: 900px) {
    .collection-split-section {
        padding: 60px 0;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .col-text {
        position: static;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .col-text p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Category 2 (Collection Detail Layout) --- */

/* Collection Hero */
.collection-hero {
    position: relative;
    height: 85vh;
    width: 100%;
    margin-bottom: 0;
}

.col-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.col-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.col-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.col-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding-top: 60px;
    /* Offset for header */
    z-index: 2;
}

.col-subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.col-title {
    font-family: var(--font-body);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 400;
}

.col-desc {
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Collection Story */
.story-text h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-color);
}

.row-story {
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-text {
    flex: 1;
}

.story-visual {
    flex: 1;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.material-badges {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge {
    background: #f4f4f4;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}

/* Pieces Grid */
.collection-products {
    background: #fff;
}

.pieces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.piece-card {
    display: flex;
    flex-direction: column;
}

.piece-img {
    position: relative;
    background: #f9f9f9;
    height: 350px;
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
}

.piece-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* mix-blend-mode: multiply; removed */
    padding: 0;
    transition: transform 0.4s ease;
}

.piece-card:hover .piece-img img {
    transform: scale(1.08);
}

.piece-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 5px 10px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.piece-info h4 {
    font-size: 1.4rem;
    font-family: var(--font-display);
    margin-bottom: 5px;
}

.piece-desc {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 42px;
    /* Fixed height for alignment */
}

.piece-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.piece-footer .price {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
}

.btn-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.btn-circle:hover {
    background: var(--text-color);
    border-color: var(--text-color);
    color: white;
}

/* Bundle Offer */
.bundle-offer {
    background: #f8f8f8;
    padding: 100px 0;
}

.bundle-box {
    background: white;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.bundle-content {
    flex: 1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bundle-visual {
    flex: 1.2;
}

.bundle-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bundle-content h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.price-lockup {
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
}

.new-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
}

/* Animations removed */

/* Keyframes removed */

/* Responsive Collection */
@media (max-width: 1024px) {
    .pieces-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .col-title {
        font-size: 3.5rem;
    }

    .row-story {
        flex-direction: column;
        gap: 40px;
    }

    .story-visual {
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .pieces-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        /* Reduced gap */
        padding: 0 15px;
        /* Add side padding for mobile */
    }

    .piece-img {
        height: auto;
        aspect-ratio: 1 / 1;
        /* Square images on mobile */
    }

    .col-hero-content {
        justify-content: flex-end;
        padding-bottom: 60px;
    }

    .col-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    }

    .col-title {
        font-size: 3rem;
    }

    .bundle-box {
        flex-direction: column-reverse;
    }

    .bundle-content {
        padding: 40px;
        align-items: center;
        text-align: center;
    }

    .bundle-visual {
        height: 250px;
    }
}

/* --- Projects Page Styles --- */
.projects-page-body {
    background: #fff;
    color: var(--text-color);
}

.filters-nav {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-top: 40px;
}

.filter-btn {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0;
    position: relative;
    font-family: var(--font-body);
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--text-color);
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -21px;
    /* Aligns with border-bottom of container */
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-color);
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: white;
}

/* Large items span 2 columns on larger screens */
.project-card.large {
    grid-column: span 2;
}

.project-card .p-img {
    position: relative;
    width: 100%;
    height: 400px;
    /* Default height */
    overflow: hidden;
}

.project-card.large .p-img {
    height: 600px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.05);
    /* Gentle zoom */
}

.p-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0.9;
    transition: 0.3s;
}

.p-cat {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.p-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .project-card.large {
        grid-column: span 1;
    }

    .project-card .p-img,
    .project-card.large .p-img {
        height: 350px;
        /* Unified height for mobile */
    }

    .filters-nav {
        gap: 20px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 15px;
        /* Adjust for scrollbar if any */
    }

    .filters-nav::-webkit-scrollbar {
        display: none;
    }
}

/* --- Project Single Page Redesign (Sticky Split) --- */

.project-split-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    /* Fixed width sidebar, Fluid content */
    gap: 80px;
}

/* Left Column: Sticky */
.project-info-col {
    position: relative;
}

.project-sticky-content {
    position: sticky;
    top: 120px;
    /* Offset for fixed header */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.back-link {
    font-size: 0.9rem;
    color: #999;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.back-link:hover {
    color: var(--text-color);
}

.project-cat-label-dark {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
}

.project-title-sticky {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.1;
    margin: 0;
    color: var(--text-color);
}

.project-meta-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.p-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.pm-label {
    color: #888;
}

.pm-value {
    color: var(--text-color);
    font-weight: 500;
    text-align: right;
}

.project-desc-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.project-desc-text p {
    margin-bottom: 15px;
}

.project-mini-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.project-mini-nav .nav-item {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.project-mini-nav .nav-item:hover {
    color: var(--text-color);
}

.project-mini-nav .sep {
    color: #eee;
}

/* Right Column: Visuals */
.project-visuals-col {
    display: flex;
    flex-direction: column;
    gap: 60px;
    /* Space between large images */
}

.visual-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    /* Subtle radius */
}

.visual-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.image-caption {
    font-size: 0.85rem;
    color: #999;
    margin-top: 15px;
    font-style: italic;
}

/* Responsive Split */
@media (max-width: 1024px) {
    .project-split-wrapper {
        grid-template-columns: 1fr;
        /* Stack */
        gap: 50px;
    }

    .project-sticky-content {
        position: static;
        /* Remove sticky on mobile */
    }

    .project-title-sticky {
        font-size: 2.5rem;
    }

    .project-visuals-col {
        gap: 30px;
    }
}

/* --- Restored Pagination Styles --- */
.project-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
    border-top: 1px solid #eee;
    margin-bottom: 80px;
}

.pagination-link {
    display: flex;
    flex-direction: column;
}

.pagination-link.next {
    align-items: flex-end;
    text-align: right;
}

.pagination-link .label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 5px;
}

.pagination-link a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: 0.3s;
}

.pagination-link a:hover {
    opacity: 0.7;
}

.all-projects-btn {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .project-pagination {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding-top: 40px;
        margin-bottom: 50px;
    }

    .pagination-link {
        align-items: center;
        width: 100%;
    }

    .pagination-link.next {
        align-items: center;
        text-align: center;
    }

    .pagination-link a {
        font-size: 1.3rem;
        /* Slightly smaller for mobile */
    }

    .all-projects-btn {
        order: 2;
        /* Move to middle or bottom if preferred, currently middle by default flex order */
        margin: 10px 0;
    }
}

/* Instagram Links Mobile Fix */
.insta-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.insta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-display);
    font-size: 1.2rem;
    transition: opacity 0.3s;
}

.insta-link i {
    font-size: 1.2rem;
}

.insta-link:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .insta-links-container {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .insta-link {
        font-size: 1.1rem;
    }
}

/* --- Reservation Modal --- */
.res-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.res-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.res-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.res-modal.active .res-container {
    transform: translateY(0);
}

.res-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.res-close:hover {
    background: #000;
    color: #fff;
}

/* Step Transitions */
.res-step {
    display: none;
    animation: fadeInSlide 0.5s ease forwards;
}

.res-step.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.res-container h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.res-container .step-desc {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Branch Grid */
.branch-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.branch-item {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 150px;
    transition: 0.3s;
}

.branch-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.branch-item:hover img {
    transform: scale(1.1);
}

.branch-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.branch-name-overlay h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.branch-name-overlay span {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Channel Selection */
.channel-selection {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.channel-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: #f9f9f9;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid transparent;
}

.channel-btn i {
    font-size: 1.5rem;
}

.channel-btn.whatsapp i {
    color: #25D366;
}

.channel-btn.phone i {
    color: #007AFF;
}

.channel-btn:hover {
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #eee;
    transform: translateY(-2px);
}

.back-btn {
    margin-top: 20px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    margin-right: auto;
}

.back-btn:hover {
    color: #000;
}

@media (max-width: 480px) {
    .res-container {
        padding: 30px 20px;
    }

    .res-container h2 {
        font-size: 1.5rem;
    }

    .branch-selection-grid {
        gap: 10px;
    }

    .branch-item {
        height: 120px;
    }
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
    transition: 0.3s;
}

.lightbox-close:hover {
    transform: scale(1.1);
    color: #ccc;
}

.bento-item {
    cursor: zoom-in;
}

/* SEO Content Tables Responsive Fix */
.seo-text-content {
    width: 100%;
    overflow: hidden;
}

.seo-text-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
    margin-top: 15px;
    margin-bottom: 15px;
}

.seo-text-content table th,
.seo-text-content table td {
    padding: 10px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.seo-text-content table thead th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: var(--text-color);
}

/* SEO Content Lists */
.seo-text-content ul,
.seo-text-content ol {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 25px;
}

.seo-text-content li {
    margin-bottom: 8px;
    line-height: 1.8;
}

/* SEO Content Blockquote */
.seo-text-content blockquote {
    border-left: 4px solid var(--text-color);
    background-color: #f5f5f5;
    padding: 15px 25px;
    margin: 20px 0;
    font-style: italic;
    color: #444;
    border-radius: 0 4px 4px 0;
}

.seo-text-content {
    max-height: 500px;
    overflow: auto;
}

/* --- Service Modal Content Styles --- */
#sm-desc h1,
#sm-desc h2,
#sm-desc h3,
#sm-desc h4,
#sm-desc h5,
#sm-desc h6 {
    color: var(--text-color);
    font-family: var(--font-display);
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-weight: 700;
    line-height: 1.3;
}

#sm-desc h2 {
    font-size: 1.6rem;
}

#sm-desc h3 {
    font-size: 1.4rem;
}

#sm-desc h4 {
    font-size: 1.2rem;
}

#sm-desc p {
    margin-bottom: 1.2em;
}

#sm-desc ul,
#sm-desc ol {
    margin: 1.5em 0;
    padding-left: 20px;
}

#sm-desc li {
    margin-bottom: 0.6em;
    position: relative;
    list-style: inherit;
}

#sm-desc blockquote {
    border-left: 4px solid var(--text-color);
    background: #f9f9f9;
    padding: 20px 30px;
    margin: 2em 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    border-radius: 0 8px 8px 0;
}

#sm-desc table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    font-size: 0.95rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

#sm-desc table th,
#sm-desc table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

#sm-desc table thead th {
    background-color: #f5f5f5;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

#sm-desc table tbody tr:last-child td {
    border-bottom: none;
}

#sm-desc table tbody tr:hover {
    background-color: #fcfcfc;
}

#sm-desc a {
    color: var(--text-color);
    text-decoration: underline;
    font-weight: 600;
}

#sm-desc img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5em 0;
}