/*
Theme Name: VIVID
Author: Forcefield Web Development
Author URI: https://forcefieldnc.com
Version: 2.88
Description: Custom base theme
*/

/* ============================================================
   FONTS
   ============================================================ */

@font-face {
    font-family: 'Josefin Sans';
    src: url('fonts/JosefinSans-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ============================================================
   BASE
   ============================================================ */

body, html {
    font-family: 'Outfit' !important;
}

/* Offset anchor targets so they clear the fixed 125px header */
html {
    scroll-padding-top: 145px;
    /* No elastic overscroll bounce — it exposes empty space above the fixed
       header. Tradeoff: also disables Chrome-Android pull-to-refresh (fine
       for a brand site). Background is a fallback for browsers that ignore
       the property — matches the dark hero so any gap blends, not flashes. */
    overscroll-behavior-y: none;
    background: #1a1a18;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 0 36px;
    display: flex;
    align-items: center;
    height: 125px;
    transition: background-color 0.4s ease;
}

.site-header.is-scrolled {
    background-color: #fff;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #ddd;
}

body.admin-bar .site-header {
    top: 32px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    height: 125px;
}

/* ── Logo ── */

.logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-primary,
.logo-scrolled {
    top: 0;
    left: 0;
    width: 150px;
    height: auto;
    display: block;
}

.logo-primary {
    position: absolute;
    width: 150px;
    opacity: 1;
    transition: opacity 0.35s ease;
}

.logo-scrolled {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.site-header.is-scrolled .logo-primary {
    opacity: 0;
    pointer-events: none;
}

.site-header.is-scrolled .logo-scrolled {
    opacity: 1;
    pointer-events: auto;
}

/* ── Nav ── */

.nav-left {
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > li {
    position: relative;
}

.site-header ul li a {
    font-family: 'Josefin Sans';
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff !important;
    text-decoration: none;
}

.site-header.is-scrolled ul li a {
    color: #000 !important;
}

/* ── Hamburger ── */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── Mobile Drawer ── */

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    padding: 80px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.12);
}

.mobile-drawer.is-open {
    right: 0;
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #000;
}

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

.drawer-nav li { border-bottom: 1px solid #eee; }

.drawer-nav a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
}

.drawer-nav a:hover { opacity: 0.6; }

.drawer-cta {
    display: inline-block;
    margin-top: 24px;
}

.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1999;
}

.drawer-overlay.is-open { display: block; }

/* ── No-hero state ── */

.no-hero .site-header,
.force-header-scrolled .site-header {
    background: #fff;
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.no-hero .logo-primary,
.force-header-scrolled .logo-primary { opacity: 0; }

.no-hero .logo-scrolled,
.force-header-scrolled .logo-scrolled { opacity: 1; }

.no-hero .main-nav > li > a,
.force-header-scrolled .main-nav > li > a {
    color: #000 !important;
}

/* ── Cart icon ── */

.header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #fff;
    transition: opacity .2s ease;
}

.header-cart:hover {
    opacity: .7;
}

.header-cart svg {
    width: 22px;
    height: 22px;
    display: block;
}

.site-header.is-scrolled .header-cart,
.no-hero .header-cart,
.force-header-scrolled .header-cart {
    color: #000;
}

.header-cart-count {
    position: absolute;
    top: -7px;
    right: -9px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    box-sizing: border-box;
    border-radius: 8px;
    background: #f08a62;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    font-family: 'Outfit';
}

.header-cart-count.is-empty {
    display: none;
}

/* ============================================================
   HERO / SLIDER
   ============================================================ */

.home-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.home-slider-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1;
}

.home-slider-splide {
    width: 100%;
    height: 100%;
}

/* Splide's core CSS keeps .splide visibility:hidden until JS adds
   .is-initialized — with delayed JS that blocks LCP paint for seconds.
   The pre-init state below already renders correctly, so show it now. */
.splide.home-slider-splide {
    visibility: visible;
}

/* Paint the first slide instantly (LCP); hide the rest until Splide mounts */
.home-slider-splide:not(.is-initialized) .splide__slide:not(:first-of-type) {
    display: none;
}

.home-slider-splide .splide__track,
.home-slider-splide .splide__list,
.home-slider-splide .splide__slide {
    width: 100%;
    height: 100%;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ============================================================
   PROJECT HERO
   ============================================================ */

.project-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-hero {
    height: 400px;
}

.project-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 0;
}

.project-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* About hero: nudge the crop ~100px down from the top */
.about-hero .project-hero-img {
    object-position: center -100px;
}

.project-hero-title {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    font-weight: 300;
    width: 100%;
    max-width: 900px;
    padding: 0 24px;
    font-size: 65px;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .project-hero-title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .project-hero-title {
        font-size: 32px;
    }
}

.project-hero-title,
.hero-scroll-caret {
    z-index: 1;
}

.hero-scroll-caret {
    display: flex;
    justify-content: center;
    margin: 40px auto 0;
    z-index: 1;
    width: 80px !important;
    color: #fff;
    opacity: 0.85;
    animation: caret-bounce 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes caret-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.85; }
    50%       { transform: translateY(8px); opacity: 1; }
}

#the-text {
    scroll-margin-top: 15px;
}

/* ============================================================
   PROJECT CONTENT
   ============================================================ */

.project-content-wrap .content-wrap {
    padding: 50px;
    font-weight: 300;
    font-size: 18px;
    max-width: 990px;
    margin: auto;
}

/* ============================================================
   TEXT BLOCKS
   ============================================================ */

.gray-text-block {
    background-color: #f8f8f8;
}

.eyebrow {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 7px;
    font-size: 11px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.inner-text {
    max-width: 1300px;
    margin: auto;
    background-color: #f8f8f8;
    padding: 80px;
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
}

.gray-text-block h1,
.gray-text-block h2 {
    font-family: 'Josefin Sans';
    font-size: 40px;
    font-weight: 400;
    display: block;
    max-width: 700px;
    line-height: 44px !important;
}

/* Single project intro: center the text block */
.project-intro .inner-text {
    text-align: center;
}

.project-intro .inner-text h2 {
    margin-left: auto;
    margin-right: auto;
}

/* About intro: image (40%) left, text (60%) right */
.about-intro-inner.has-media {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1300px;
    margin: auto;
    padding: 80px 40px;
}

.about-intro-inner.has-media .about-intro-media {
    flex: 0 0 40%;
}

.about-intro-inner.has-media .about-intro-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-intro-inner.has-media .inner-text {
    flex: 1;
    max-width: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .about-intro-inner.has-media {
        flex-direction: column;
        gap: 32px;
        padding: 48px 24px;
    }
    .about-intro-inner.has-media .about-intro-media {
        flex-basis: auto;
        width: 100%;
    }
}

/* ── CTA Section ── */

.cta-section {
    background-color: #333 !important;
    text-align: center;
}

.cta-section .inner-text {
    background-color: #333;
}

.cta-section .wpforms-required-label {
    display: none;
}

.cta-section label,
.cta-section legend {
    color: #e8e8e8 !important;
    text-align: left;
}

.cta-section h2,
.cta-section .eyebrow,
.cta-section p {
    color: #f8f8f8 !important;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 400;
}

.wpforms-submit {
    background-color: white !important;
    color: #333 !important;
    text-transform: uppercase !important;
    font-family: 'Outfit';
}

.error-404-links {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.error-404-links li {
    margin-bottom: 8px;
}

.error-404-links a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #f08a62;
}

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */

/* Aligns with the grid's own 30px gutter so the heading sits flush with the
   first column. */
.projects-heading {
    padding: 70px 30px 0;
}

.projects-heading h2 {
    font-family: 'Josefin Sans';
    font-size: 40px;
    font-weight: 400;
    line-height: 44px;
    max-width: 700px;
    margin: 22px 0 0;
}

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

.vivid-project-item {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.vivid-project-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    opacity: 1;
    transition: opacity .3s ease;
    z-index: 1;
}

.vivid-project-item:hover::after {
    opacity: 0;
}

/* Cards with SEO copy: keep the overlay on hover so the subtitle stays readable */
.vivid-project-item.has-subtitle:hover::after {
    opacity: 1;
}

.vivid-project-item:hover .vivid-project-title {
    opacity: 0;
}

.vivid-project-subtitle {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
    padding: 28px;
    letter-spacing: .3px;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: opacity .3s ease;
}

.vivid-project-item.has-subtitle:hover .vivid-project-subtitle {
    opacity: 1;
}

.vivid-project-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.vivid-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .5s cubic-bezier(.4,0,.2,1);
}

.vivid-project-image img:hover {
    opacity: .7;
    cursor: pointer;
}

.vivid-project-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 400;
    text-align: center;
    padding: 20px;
    letter-spacing: 1px;
    pointer-events: none;
    z-index: 2;
    transition: opacity .3s ease;
}

/* ============================================================
   MASONRY GALLERY
   ============================================================ */

.vivid-masonry-gallery {
    column-count: 2;
    column-gap: 24px;
    margin-bottom: 80px;
}

.vivid-masonry-item {
    break-inside: avoid;
    margin-bottom: 24px;
}

.vivid-masonry-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* JS-enhanced: left-to-right source order, staggered columns */
.vivid-masonry-gallery.is-flex {
    column-count: initial;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.masonry-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.masonry-col .vivid-masonry-item {
    margin-bottom: 0;
}

/* Single project: back to portfolio */
.project-back {
    text-align: center;
    padding: 0 24px 100px;
    margin-top: 40px;
}

.back-to-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.back-arrow {
    transition: transform .25s ease;
}

.back-to-portfolio:hover .back-arrow {
    transform: translateX(-5px);
}

/* ============================================================
   TEAM
   ============================================================ */

.team-section {
    padding: 80px 40px;
}

.team-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 2rem;
}

.team-member {
    cursor: default;
}

.team-img {
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-bio-trigger {
    cursor: pointer;
}

.team-bio-trigger img {
    transition: transform 0.4s ease;
}

.team-bio-trigger:hover img {
    transform: scale(1.03);
}

.team-name {
    font-size: 18px;
    margin-bottom: 0;
}

p.team-title {
    font-weight: 200;
    margin-top: 0px !important;
    font-size: 14px;
}

.team-bio {
    font-weight: 300;
}

.team-bio-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #999;
    cursor: pointer;
    margin-top: .75rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.team-bio-btn:hover { color: #000; }

/* ── Team Modal ── */

.team-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.team-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.team-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.team-modal-box {
    position: relative;
    background: #fff;
    z-index: 1;
    max-width: 920px;
    width: 92%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 50px;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0;
}

.team-modal.is-open .team-modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.team-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #000;
}

.team-modal-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.team-modal-img {
    width: 180px;
    flex-shrink: 0;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.team-modal-bio {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-top: 1rem;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services-grid-section {
    padding: 80px 40px;
}

.services-grid-inner {
    max-width: 1300px;
    margin: 0 auto;
}

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

.service-card {
    padding: 40px 32px;
    border: 0.5px solid #e0dbd4;
    display: flex;
    flex-direction: column;
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
}

.service-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.service-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #666;
    margin-bottom: 2rem;
}

.service-btn,
.black-button {
    display: inline-block;
    font-family: 'Josefin Sans';
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    background: #1a1a18;
    border: 1px solid #1a1a18;
    text-decoration: none;
    padding: 13px 28px;
    transition: background-color .25s ease, color .25s ease;
}

.service-btn {
    margin-top: auto;
    align-self: flex-start;
}

.service-btn:hover,
.black-button:hover {
    background: transparent;
    color: #1a1a18;
}

/* ============================================================
   STORE - CATEGORIES
   ============================================================ */

.store-categories {
    padding: 80px 40px;
}

.store-categories-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.store-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.store-cat-item {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.store-cat-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    transition: opacity 0.3s ease;
}

.store-cat-item:hover::after {
    opacity: 0;
}

.store-cat-img {
    aspect-ratio: 1;
    overflow: hidden;
}

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

.store-cat-item:hover .store-cat-img img {
    transform: scale(1.04);
}

.store-cat-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    z-index: 1;
}

/* ── Category siblings ── */

.cat-siblings {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0px 30px 0px;
    max-width: 1300px;
    margin: 0 auto;
}

.cat-sibling-link {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #888;
    text-decoration: none;
    padding: 6px 14px;
    border: 0.5px solid #ddd;
}

.cat-sibling-link:hover {
    color: #000;
    border-color: #000;
}

.cat-sibling-link.is-active {
    color: #000;
    border-color: #000;
}

/* ============================================================
   STORE - PRODUCTS
   ============================================================ */

.store-products {
    padding: 80px 40px;
    margin-top: 100px;
    background-color: #fff;
}

.store-products-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.store-products ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.store-products ul.products::before,
.store-products ul.products::after {
    display: none;
}

.store-products ul.products li.product {
    position: relative;
    overflow: hidden;
    border: 2px solid #ddd;
    padding: 20px;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

.store-products ul.products li.product a.woocommerce-loop-product__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.store-products ul.products li.product a.woocommerce-loop-product__link img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.store-products ul.products li.product:hover a.woocommerce-loop-product__link img {
    transform: scale(1.04);
}

.store-products ul.products li.product .woocommerce-loop-product__title {
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 12px 0 4px;
    font-weight: 400;
    line-height: 1.4;
}

.store-products ul.products li.product .price {
    font-size: 13px;
    color: #888;
}

.store-products ul.products li.product a.button {
    display: none;
}

.woocommerce img,
.woocommerce-page img {
    height: 100%;
    max-width: 100%;
}

/* ── Store pagination ── */

.store-products .woocommerce-pagination {
    margin-top: 60px;
}

.store-products .woocommerce-pagination ul.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 0;
}

.store-products .woocommerce-pagination ul.page-numbers li {
    border: 0;
    margin: 0;
    padding: 0;
    float: none;
    overflow: visible;
}

.store-products .woocommerce-pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    font-size: 12px;
    letter-spacing: .12em;
    color: #888;
    text-decoration: none;
    border: 0.5px solid #ddd;
    background: none;
    position: relative;
    transition: color .25s ease, border-color .25s ease;
}

.store-products .woocommerce-pagination a.page-numbers:hover {
    color: #000;
    border-color: #000;
    background: none;
}

.store-products .woocommerce-pagination .page-numbers.current {
    color: #000;
    border-color: #f08a62;
    background: none;
}

.store-products .woocommerce-pagination .page-numbers.current::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: #f08a62;
}

.store-products .woocommerce-pagination .page-numbers.dots {
    border: 0;
    min-width: auto;
    padding: 0 4px;
}

.store-products .woocommerce-pagination .page-numbers.prev,
.store-products .woocommerce-pagination .page-numbers.next {
    text-transform: uppercase;
    font-size: 11px;
    padding: 0 18px;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-page {
    display: grid;
    grid-template-columns: .5fr .5fr;
    min-height: calc(100vh - 125px);
}

.contact-left {
    background: #1a1a18;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-eyebrow {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.5rem;
}

.contact-heading {
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
    font-family: Georgia, serif;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail-label {
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.contact-detail-value a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.contact-detail-value a:hover { color: #fff; }

.contact-divider {
    width: 30px;
    height: 0.5px;
    background: rgba(255,255,255,0.2);
    margin: 2rem 0;
}

.contact-hours {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
}

.contact-right {
    background: #f8f8f8;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-right-eyebrow {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: #1a1a18;
    color: rgba(255,255,255,0.6);
    padding: 60px 40px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-col h2 {
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.footer-logo img {
    width: 120px;
    height: auto;
    margin-bottom: 1.25rem;
    display: block;
    opacity: 0.85;
}

.footer-col address {
    font-style: normal;
    margin-bottom: 1rem;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer-col a:hover { color: #fff; }

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.footer-col ul li a {
    display: block;
    padding: 5px 0;
}

.footer-copy {
    margin-top: 1rem;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.ff-credit {
	display: block;
	font-size: 9px;
	color: rgba(255,255,255,0.2);
	text-decoration: none;
	letter-spacing: .5px;
	margin-top: 6px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 4px;
}

.social-icons a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
    .hamburger { display: flex; }

    #site-navigation,
    .nav-divider,
    .header-cta { display: none; }

    .site-header {
        height: 85px;
        background: #fff;
        box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    }

    .header-container { height: 80px; }

    .logo-primary { opacity: 0; }
    .logo-scrolled { opacity: 1; }

    .header-cart { color: #000; }

    .logo-primary,
    .logo-scrolled { width: 110px; }

    .site-header { padding: 0 20px; }

    body { padding-top: 85px !important; }

    .content-area {
        margin-top: 0;
        margin-bottom: 2rem;
    }

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

    .vivid-project-title {
        font-size: 18px !important;
        line-height: 24px !important;
        font-family: 'Josefin Sans' !important;
    }

    .vivid-masonry-gallery { column-count: 2; }

    .project-content-wrap .content-wrap { padding: 20px; }

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

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

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

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

    .contact-page { grid-template-columns: 1fr; }
    .contact-left { padding: 60px 30px; }
    .contact-right { padding: 60px 30px; }

    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    h2 {
        font-size: 24px;
        line-height: 30px !important;
    }

    .cta-section h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .projects-heading {
        padding-top: 45px;
    }

    .projects-heading h2 {
        font-size: 26px;
        line-height: 32px;
        margin-top: 18px;
    }

    .cta-section {
        padding: 30px 0;
    }

    .cta-section .inner-text {
        padding: 20px 22px;
    }

    .cta-section h2 {
        margin-bottom: 10px;
    }

    h3 { font-size: 18px; }

    .site-header ul li a {
        color: #000 !important;
    }
}

@media (max-width: 600px) {
    .vivid-project-grid { grid-template-columns: 1fr; }
    .vivid-masonry-gallery { column-count: 1; }
    .team-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .team-modal-inner { flex-direction: column; }
    .team-modal-img { width: 100%; }
    .team-modal-box { padding: 30px 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .store-products { padding: 40px 20px; }
    .store-products ul.products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header { top: 46px; }
}

/* ============================================================
   VENDORS PAGE
   (recovered from Customizer Additional CSS — 2026-07-05)
   ============================================================ */

.vendors-page {
    padding-top: 125px;
    background: #fff;
}

.vendors-header {
    background: #f8f8f8;
    padding: 80px 40px;
}

.vendors-header-inner {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.vendors-header h1 {
    font-family: 'Josefin Sans';
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin-top: 50px;
}

.vendors-header p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    max-width: 700px;
    margin: 1rem auto 0;
}

.vendors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 20px;
}

.vendor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 44px 32px;
    text-align: center;
    background: #fff;
    border: 1px solid #e0dbd4;
    border-radius: 6px;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.vendor-item:hover {
    border-color: #ddd;
    box-shadow: 0 12px 30px rgba(26, 26, 24, 0.08);
    transform: translateY(-4px);
}

.vendor-item > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.vendor-item img {
    width: 200px;
    height: auto;
    object-fit: contain;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

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

.vendor-name {
    display: block;
    margin-top: 18px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    transition: color 0.3s ease;
}

.vendor-item:hover .vendor-name {
    color: #1a1a18;
}

@media (max-width: 980px) {
    .vendors-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 600px) {
    .vendors-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .vendor-item { padding: 28px 18px; }
    .vendor-item img { width: 140px; }
    .vendor-name { font-size: 0.65rem; margin-top: 14px; }
}

/* ============================================================
   NAV DROPDOWN
   ============================================================ */

.main-nav > li.menu-item-has-children {
    padding-bottom: 18px;
    margin-bottom: -18px;
}

.main-nav > li.menu-item-has-children > a::after {
    content: ' ▾';
    font-size: 14px;
    opacity: .5;
}

.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(250,250,250,.8);
    border: 1px solid #eee;
    border-top: 2px solid #000;
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    z-index: 100;
}

.main-nav > li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    pointer-events: all;
}

.main-nav .sub-menu li {
    border-bottom: 1px solid #eee;
    padding: 0 20px;
}

.main-nav .sub-menu li:last-child {
    border-bottom: none;
}

.main-nav .sub-menu a {
    font-family: 'Josefin Sans';
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #222 !important;
    text-decoration: none;
    padding: 13px 18px;
    display: block;
    white-space: nowrap;
    border-bottom: none;
}

.main-nav .sub-menu a:hover {
    text-decoration: underline;
    background: unset;
}

/* ============================================================
   BLOG - SINGLE POST
   ============================================================ */

.single-post-wrap {
    padding-top: 125px;
}

.post-header {
    background: #f8f8f8;
    padding: 80px 40px;
}

.post-header-inner {
    max-width: 860px;
    margin: 0 auto;
}

.post-title {
    font-family: 'Josefin Sans';
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 50px;
}

.post-hero-img {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.post-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-content-wrap {
    padding: 80px 40px;
}

.post-content-inner {
    max-width: 860px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
}

.post-content-inner h2 {
    font-family: 'Josefin Sans';
    font-size: 28px;
    font-weight: 400;
    margin: 2rem 0 1rem;
}

.post-content-inner p {
    margin-bottom: 1.5rem;
}

.post-content-inner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem 0;
}

@media (max-width: 980px) {
    .single-post-wrap { padding-top: 85px; }
    .post-header { padding: 60px 20px; }
    .post-title { font-size: 32px; }
    .post-content-wrap { padding: 40px 20px; }
}

/* ============================================================
   BLOG - ARCHIVE
   ============================================================ */

.archive-header {
    background: #1a1a18;
    min-height: 300px;
    padding: 125px 40px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.archive-header-inner {
    max-width: 860px;
    margin: 0 auto;
}

.archive-header h1 {
    font-family: 'Josefin Sans';
    font-size: 60px;
    font-weight: 300;
    color: #fff;
    margin-top: 24px;
}

.archive-header .eyebrow {
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.4);
}

/* ── Longform content page ── */

.longform-wrap {
    padding: 80px 40px 100px;
    background: #fff;
}

.longform-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;
    color: #333;
}

.longform-content > *:first-child {
    margin-top: 0;
}

.longform-content h2 {
    font-family: 'Josefin Sans';
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a18;
    margin: 2.4em 0 0.6em;
}

.longform-content h3 {
    font-family: 'Josefin Sans';
    font-size: 21px;
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a18;
    margin: 2em 0 0.5em;
}

.longform-content p {
    margin: 0 0 1.4em;
}

.longform-content ul,
.longform-content ol {
    margin: 0 0 1.4em;
    padding-left: 1.4em;
}

.longform-content li {
    margin-bottom: 0.5em;
}

.longform-content a {
    color: #1a1a18;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #f08a62;
}

.longform-content a:hover {
    color: #f08a62;
}

.longform-content strong {
    font-weight: 600;
    color: #1a1a18;
}

.longform-content hr {
    border: none;
    border-top: 1px solid #e0dbd4;
    margin: 3em 0;
}

@media (max-width: 768px) {
    .longform-wrap {
        padding: 48px 24px 64px;
    }

    .longform-content {
        font-size: 16px;
    }

    .longform-content h2 {
        font-size: 24px;
    }
}

/* ── Featured card ── */

.archive-featured {
    background: #f8f8f8;
    padding: 60px 40px;
}

.archive-featured-inner {
    width: 90%;
    max-width: 1300px;
    margin: 50px auto;
}

.archive-featured-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    text-decoration: none;
    color: inherit;
    align-items: center;
}

.archive-featured-img {
    width: 420px;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.archive-featured-content h2 {
    font-family: 'Josefin Sans';
    font-size: 32px;
    font-weight: 400;
    margin: 30px 0;
    line-height: 1.3;
}

.archive-featured-content h2 a {
    text-decoration: none;
    color: black;
}

.archive-featured-content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: #666;
    margin-bottom: 1.5rem;
}

.archive-read-more {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
}

/* ── Grid ── */

.post-archive-wrap {
    padding: 80px 40px;
    background-color: #fff;
}

.post-archive-inner {
    max-width: 1300px;
    margin: 0 auto;
}

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

.archive-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.archive-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

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

.archive-card:hover .archive-card-img img {
    transform: scale(1.03);
}

.archive-card-meta {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: .5rem;
}

.archive-card h3 {
    font-family: 'Josefin Sans';
    font-size: 20px;
    font-weight: 400;
    margin-bottom: .75rem;
    line-height: 1.3;
}

.archive-card p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
}

.archive-card .archive-read-more {
    display: inline-block;
    margin-top: 1.25rem;
}

/* ── Pagination ── */

.nav-links {
    display: flex;
    gap: 12px;
    margin-top: 60px;
    justify-content: center;
}

.nav-links a,
.nav-links span {
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 0.5px solid #ddd;
    text-decoration: none;
    color: #000;
}

.nav-links .current {
    background: #1a1a18;
    color: #fff;
    border-color: #1a1a18;
}

@media (max-width: 980px) {
    .inner-text {
        padding: 30px;
    }

    .archive-featured-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .archive-featured-img {
        width: 100%;
        height: 240px;
    }

    .archive-grid { grid-template-columns: repeat(2, 1fr); }
    .archive-header h1 { font-size: 40px; }
}

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

/* ============================================================
   STORE - PAGE SHELL
   ============================================================ */

body.woocommerce-page #main {
    width: 90%;
    margin: 60px auto 100px;
    max-width: 1300px;
}

.woo-page-header {
    background: #1a1a18;
    padding: 160px 40px 80px;
    text-align: center;
}

.woo-page-header-inner {
    max-width: 860px;
    margin: 0 auto;
}

.woo-page-header h1 {
    font-family: 'Josefin Sans';
    font-size: 60px;
    font-weight: 300;
    color: #fff;
    margin-top: 1rem;
}

.woo-content-wrap {
    padding: 80px 40px;
    background: #fff;
}

.woo-content-inner {
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 980px) {
    .woo-page-header { padding: 120px 20px 60px; }
    .woo-page-header h1 { font-size: 36px; }
    .woo-content-wrap { padding: 40px 20px; }
}

.cat-siblings-inner {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 40px;
}

body {
    background: #fff;
}

.cat-siblings {
    background-color: #fff;
}

.store-products {
    margin-top: 0;
    padding-top: 0;
}

#product- {
    max-width: 1300px;
    margin: 100px auto;
}

.no-results {
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 40px;
    text-align: center;
    font-weight: 300;
    color: #666;
}

/* ============================================================
   CART (shortcode)
   ============================================================ */

body.woocommerce-cart .woocommerce {
    font-size: 16px;
    font-weight: 300;
}

/* ── Line-items table ── */

.woocommerce-cart-form table.cart {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.woocommerce-cart-form table.cart thead th {
    font-family: 'Outfit';
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-align: left;
    vertical-align: middle;
    padding: 16px 0;
    border-bottom: 1px solid #e0dbd4;
}

.woocommerce-cart-form table.cart td {
    padding: 26px 16px 26px 0;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.woocommerce-cart-form .product-thumbnail img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    display: block;
}

.woocommerce-cart-form .product-name a {
    color: #1a1a18;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: .04em;
}

.woocommerce-cart-form .product-name a:hover {
    color: #f08a62;
}

.woocommerce-cart-form .product-price,
.woocommerce-cart-form .product-subtotal {
    color: #666;
    font-size: 15px;
}

.woocommerce-cart-form .quantity input.qty {
    width: 68px;
    padding: 11px;
    border: 1px solid #ddd;
    text-align: center;
    font-family: 'Outfit';
    font-size: 15px;
}

.woocommerce a.remove {
    color: #bbb !important;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    border-radius: 0;
    background: none !important;
}

.woocommerce a.remove:hover {
    color: #1a1a18 !important;
    background: none !important;
}

/* ── Coupon + actions row ── */

.woocommerce-cart-form td.actions {
    padding-top: 30px;
    border-bottom: none;
    overflow: hidden;
}

.woocommerce-cart-form td.actions .coupon {
    float: left;
    display: flex;
    gap: 10px;
}

.woocommerce-cart-form td.actions input#coupon_code {
    padding: 13px 16px;
    border: 1px solid #ddd;
    font-family: 'Outfit';
    font-size: 13px;
}

.woocommerce-cart-form td.actions button[name="update_cart"] {
    float: right;
}

/* ── Cart totals ── */

.cart-collaterals {
    margin-top: 60px;
    display: flex;
    justify-content: flex-end;
}

.cart-collaterals .cart_totals {
    width: 100%;
    max-width: 440px;
    background: #f8f8f8;
    padding: 38px 36px;
}

.cart_totals h2 {
    font-family: 'Josefin Sans';
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 22px;
}

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

.cart_totals th,
.cart_totals td {
    padding: 16px 0;
    border-bottom: 1px solid #e0dbd4;
    text-align: left;
    vertical-align: middle;
    font-weight: 400;
    font-size: 15px;
    color: #444;
}

.cart_totals td {
    text-align: right;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-family: 'Josefin Sans';
    font-size: 19px;
    color: #1a1a18;
    border-bottom: none;
    padding-top: 20px;
}

.wc-proceed-to-checkout {
    margin-top: 26px;
}

.wc-proceed-to-checkout a.checkout-button {
    display: inline-block;
    width: auto;
}

/* ── Notices ── */

.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .cart-empty {
    background: #f8f8f8;
    border-top: 2px solid #1a1a18;
    font-size: 14px;
}

/* ── Buttons: black bg, white text, coral on hover ── */

.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button.alt,
.woocommerce a.checkout-button {
    background-color: #1a1a18 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Outfit';
    padding: 15px 30px !important;
    transition: background-color .25s ease;
}

.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button.alt:hover,
.woocommerce a.checkout-button:hover {
    background-color: #f08a62 !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .woocommerce-cart-form td.actions .coupon,
    .woocommerce-cart-form td.actions button[name="update_cart"] {
        float: none;
        width: 100%;
    }

    .woocommerce-cart-form td.actions button[name="update_cart"] {
        margin-top: 12px;
    }

    .cart-collaterals {
        justify-content: stretch;
    }

    .cart-collaterals .cart_totals {
        max-width: none;
    }
}

/* ============================================================
   SINGLE PRODUCT (PDP)
   ============================================================ */

.single-product div.product {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px 90px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

.single-product .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tabs / related / upsells span the full width below the two columns */
.single-product div.product .woocommerce-tabs,
.single-product div.product .related,
.single-product div.product .upsells {
    grid-column: 1 / -1;
    margin-top: 24px;
}

/* ── Summary ── */
.single-product .summary {
    background: #f8f8f8;
    padding: 48px 44px;
}

.single-product .summary > * {
    margin-bottom: 24px;
}

.single-product .summary .price,
.single-product .summary .price .woocommerce-Price-amount {
    color: #1a1a18 !important;
    font-family: 'Josefin Sans';
    font-size: 26px;
    font-weight: 400;
}

.single-product .summary .woocommerce-product-details__short-description {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
}

/* ── Quantity + Add to cart ── */
.single-product .summary form.cart {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.single-product .summary .quantity input.qty {
    width: 64px;
    min-height: 52px;
    border: 1px solid #e0dbd4;
    background: #fff;
    text-align: center;
    font-size: 15px;
    font-family: 'Outfit';
}

.single-product .summary .single_add_to_cart_button {
    background: #1a1a18 !important;
    color: #fff !important;
    border: 1px solid #1a1a18 !important;
    border-radius: 0 !important;
    font-family: 'Josefin Sans';
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 16px 42px !important;
    transition: background-color .25s ease, color .25s ease;
}

.single-product .summary .single_add_to_cart_button:hover {
    background: transparent !important;
    color: #1a1a18 !important;
}

/* ── Meta (SKU / category) ── */
.single-product .summary .product_meta {
    font-size: 12px;
    letter-spacing: .04em;
    color: #999;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 0;
}

.single-product .summary .product_meta a {
    color: #1a1a18;
}

/* ── Tabs ── */
.single-product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0 0 28px;
    border-bottom: 1px solid #e0dbd4;
    list-style: none;
    display: flex;
    gap: 28px;
}

.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

.single-product .woocommerce-tabs ul.tabs li {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0 0 12px;
    margin: 0;
}

.single-product .woocommerce-tabs ul.tabs li a {
    font-family: 'Josefin Sans';
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #1a1a18 !important;
    padding: 0;
}

.single-product .woocommerce-tabs .panel {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* "Description" heading inside the panel duplicates the tab label */
.single-product .woocommerce-tabs .panel > h2:first-child {
    display: none;
}

/* ── Related / upsells ── */
.single-product .related > h2,
.single-product .upsells > h2 {
    font-family: 'Josefin Sans';
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 32px;
}

.single-product .related ul.products li.product a,
.single-product .upsells ul.products li.product a {
    text-decoration: none;
    color: #1a1a18;
}

.single-product .related ul.products li.product .woocommerce-loop-product__title,
.single-product .upsells ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Josefin Sans';
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.4;
    color: #1a1a18;
    padding: 12px 0 4px;
}

.single-product .related ul.products li.product .price,
.single-product .related ul.products li.product .price .woocommerce-Price-amount,
.single-product .upsells ul.products li.product .price,
.single-product .upsells ul.products li.product .price .woocommerce-Price-amount {
    color: #888 !important;
    font-size: 13px;
    font-weight: 400;
}

.single-product .related ul.products li.product img,
.single-product .upsells ul.products li.product img {
    aspect-ratio: 1;
    object-fit: cover;
}

.single-product .related ul.products a.button,
.single-product .upsells ul.products a.button {
    display: inline-block;
    margin-top: 12px;
    background: #1a1a18 !important;
    color: #fff !important;
    border: 1px solid #1a1a18 !important;
    border-radius: 0 !important;
    font-family: 'Josefin Sans';
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 11px 22px !important;
    transition: background-color .25s ease, color .25s ease;
}

.single-product .related ul.products a.button:hover,
.single-product .upsells ul.products a.button:hover {
    background: transparent !important;
    color: #1a1a18 !important;
}

@media (max-width: 768px) {
    .single-product div.product {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 24px 60px;
    }

    .single-product .summary {
        padding: 32px 24px;
    }

    .single-product .summary form.cart {
        flex-wrap: wrap;
    }

    .single-product .summary .single_add_to_cart_button {
        flex: 1;
    }
}


