/*
Theme Name: GradePixel Theme
Theme URI: https://gradepixel.com
Author: GradePixel Team
Author URI: https://gradepixel.com
Description: Custom theme for GradePixel
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, right-sidebar, responsive-layout, accessibility-ready
Text Domain: gradepixel-theme
*/
:root {
    /* ---- Theme Tokens (Light Default) ---- */
    --bg: #FDFDFD;
    --surface: #FFFFFF;
    --surface-2: #F9f9f9;
    --text: #555555;
    --heading: #111111;
    --text-muted: #777777;
    --border: rgba(0, 0, 0, 0.08);
    --divider: rgba(0, 0, 0, 0.05);
    --link: #2563EB;

    --cta-bg: #111111;
    --cta-text: #FFFFFF;
    --cta-border: #111111;

    --header-bg: rgba(255, 255, 255, 0.8);
    --header-bg-sticky: rgba(255, 255, 255, 0.96);
    --header-text: #111111;
    --header-border: rgba(0, 0, 0, 0.06);

    /* Sidebar / Submenu */
    --submenu-bg: #FFFFFF;
    --submenu-text: #111111;
    --submenu-border: rgba(0, 0, 0, 0.05);
    --submenu-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    /* Legacy/Internal Palette (mapped to tokens) */
    --bg-page: var(--bg);
    --bg-card: var(--surface);
    --text-primary: var(--heading);
    --text-secondary: var(--text);
    --accent: #2563EB;
    --accent-dark: #1E40AF;
    --white: #ffffff;
    --black: #111111;
    --primary: var(--accent);
    --text-main: var(--heading);

    /* Layout Tokens */
    --radius-large: 24px;
    --radius-small: 8px;
    --spacing-container: 1280px;
    --header-height: 80px;

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Animation */
    --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);

    /* ---- Typography Scale ---- */
    --fs-h1: clamp(44px, 5.2vw, 64px);
    --fs-h2: clamp(32px, 3.6vw, 48px);
    --fs-h3: clamp(20px, 2.2vw, 28px);
    --fs-h4: clamp(16px, 1.6vw, 20px);
    --fs-body-lg: clamp(16px, 1.25vw, 18px);
    --fs-body: 14px;
    --fs-body-sm: 12px;
    --fs-caption: 12px;

    --lh-tight: 1.05;
    --lh-title: 1.15;
    --lh-body: 1.65;

    --ls-h1: -0.03em;
    --ls-h2: -0.03em;
    --ls-h3: -0.015em;
}

/* =========================
   2) SCROLL ANIMATIONS
   ========================= */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.in-view {
    opacity: 1;
}

/* =========================
   3) RESET / BASE
   ========================= */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    font-family: var(--font-main);
    color: var(--text);
    padding: 20px;
    min-height: 100vh;
    padding-top: 90;
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Heading hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: var(--lh-title);
    color: var(--heading);
}

h1 {
    font-size: var(--fs-h1);
    letter-spacing: var(--ls-h1);
    line-height: var(--lh-tight);
}

h2 {
    font-size: var(--fs-h2);
    letter-spacing: var(--ls-h2);
}

h3 {
    font-size: var(--fs-h3);
    letter-spacing: var(--ls-h3);
}

h4 {
    font-size: var(--fs-h4);
}

p {
    color: var(--text);
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-white {
    color: #fff;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-80 {
    margin-top: 80px;
}

.ml-30 {
    margin-left: 30px;
}

/* =========================
   4) LAYOUT WRAPPER
   ========================= */
.main-wrapper {
    background-color: var(--bg-card);
    width: 100%;
    min-height: calc(100vh - 40px);
    border-radius: var(--radius-large);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 100px 0;
}

/* =========================
   5) HEADER / NAV
   ========================= */
.header {
    padding: 12px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
}

.header.is-sticky {
    position: fixed;
    background: var(--header-bg-sticky);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid var(--header-border);
    animation: slideInDown 0.4s ease forwards;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 500;
    color: var(--header-text);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 10px;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    padding: 6px 6px 6px 20px;
    border-radius: 100px;
    position: relative;
    border: 1px solid var(--header-border);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    padding: 8px 16px;
    transition: var(--transition);
    border-radius: 100px;
    display: block;
}

.nav-link:hover,
.nav-link.active {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-link:hover {
    color: var(--text-secondary);
}


/* Buttons */
.btn-primary {
    background-color: var(--cta-bg);
    color: var(--cta-text);
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--cta-border);
}

.btn-primary:hover {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--heading);
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid var(--heading);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background-color: var(--heading);
    color: var(--surface);
}

.btn-outline-small {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #e0e0e0;
    border-radius: 100px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-small:hover {
    background-color: #f9f9f9;
    border-color: var(--text-primary);
}

.btn-outline-large {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
    width: 100%;
    text-align: center;
}

.btn-outline-large:hover {
    border-color: var(--black);
    background: #f8fafc;
}

/* ===== Header CTA button (Book a Call) ===== */
.gp-nav-panel nav.nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* menu ul từ wp_nav_menu */
.gp-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* CTA link in header.php */
a.gp-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--cta-bg);
    color: var(--cta-text) !important;
    padding: 14px 24px;
    border-radius: 999px;

    font-weight: 500;
    font-size: 14px;
    text-decoration: none !important;
    line-height: 1;
    white-space: nowrap;

    border: 1px solid var(--cta-border);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

a.gp-nav-cta:hover {
    background: var(--accent, #2563eb);
    border-color: var(--accent, #2563eb);
    color: #fff !important;
    transform: translateY(-2px);
}

/* chặn màu tím visited */
a.gp-nav-cta:visited {
    color: #fff !important;
}

/* 6) HERO (HOME) — FIX: fixed frame, image cover, content can grow========================= */

.hero-new {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    background-image: none !important;
    background-color: #fff;
    /* hoặc transparent */
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100%;
}

/* Hero outer frame (always same rounded frame) */
.hero-image-container {
    width: calc(100% - 40px);
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    min-height: clamp(520px, 70vh, 760px);
    /* Fix: Dynamic height based on viewport */
    height: auto;
    /* Fix: Allow growth for content */
    background: #111;
}

/* Keep hover smooth */
.hero-image-container:hover .hero-img {
    transform: scale(1.05);
}

.hero-image-container img {
    max-width: none !important;
}

/* Image becomes a background layer that always covers */
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 1;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}


/* Overlay becomes content layer (NOT absolute) so container can grow with text */
.hero-overlay {
    position: relative;
    /* quan trọng: cho phép đẩy chiều cao container */
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    /* Fix: Responsive padding */
    padding: clamp(36px, 6vh, 72px) clamp(22px, 4vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(to right,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .40) 52%,
            rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    width: 100%;
}

.hero-overlay h1,
.hero-overlay p {
    margin-top: 16px;
    color: #fff;
}

/* Fix: Responsive Typography */
.hero-title {
    font-size: clamp(34px, 4.6vw, 72px);
    line-height: 1.12;
    margin-top: 0;
}

.hero-sub {
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.6;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-image-container {
        width: calc(100% - 20px);
        /* Fix: Mobile height relies on content + padding, no fixed constraint */
        min-height: auto;
        height: auto;
    }

    .hero-overlay {
        padding: 32px 20px 40px;
        /* Fix: Adjust mobile padding */
        justify-content: flex-end;
        padding-bottom: calc(32px + env(safe-area-inset-bottom));
    }

    .hero-img {
        object-position: center top;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================
   7) ADS CONVERSION
   ========================= */
.ads-conversion-section {
    padding: 120px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ads-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.ads-labels {
    font-size: var(--fs-caption);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    font-weight: 600;
}

.ads-text-refined {
    font-size: var(--fs-body-lg);
    line-height: var(--lh-body);
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.ads-text-refined.question {
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

h2.ads-text-refined.question {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: clamp(22px, 2.2vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #111827;
    /* gần giống màu đen trong hình */
    margin: 10px 0 0;
}

h2.ads-text-refined.question .accent {
    color: #2F6BFF;
    /* màu xanh kiểu trong hình */
    font-weight: 600;
    /* giữ đồng bộ */
}

.ads-text-refined .text-accent {
    color: var(--accent);
    font-weight: 600;
}

.ads-main-content .ads-action {
    margin-top: 40px;
}

/* =========================
   8) MODERN PORTFOLIO (OUR WORKS)
   ========================= */
.portfolio-modern-section {
    background: #ffffff;
    color: #000;
    overflow: hidden;
    padding: 100px 0;
}

.portfolio-modern-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.modern-header-desc {
    font-size: var(--fs-body-lg);
    opacity: 0.85;
    line-height: 1.6;
    font-weight: 400;
    color: #555;
    max-width: 420px;
}

.modern-title-stacked {
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.85;
    margin: 0;
    font-family: var(--font-main);
    text-align: right;
    color: #000;
}

/* Portfolio Grid (single definition) */
.workflow-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    margin-top: 60px;
}

.wf-category-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.wf-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #f5f5f5;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.wf-image-wrapper img,
.wf-image-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wf-category-card:hover .wf-image-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wf-category-card:hover .wf-image-wrapper img,
.wf-category-card:hover .wf-image-wrapper video {
    transform: scale(1.05);
}

.wf-card-content {
    padding: 0 5px;
}

.wf-card-content h3 {
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: #000;
}

.wf-card-content p {
    font-size: var(--fs-body-sm);
    color: #666;
    line-height: 1.6;
}

/* =========================
   9) WORKFLOW ACTION
   ========================= */
.bg-light {
    background-color: #F9F9F9;
}

.workflow-action-section {
    background-color: var(--bg-page);
    padding: 120px 0;
}

.section-header.side-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.learn-more-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.learn-more-link:hover {
    border-bottom-color: var(--text-primary);
    opacity: 0.7;
}

.section-title-large {
    font-size: var(--fs-h2);
    letter-spacing: var(--ls-h2);
    font-weight: 400;
    line-height: var(--lh-title);
}

/* 3 col grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: #fff;
    padding: 48px;
    border-radius: 32px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.step-number {
    font-size: 12px;
    font-weight: 600;
    color: #4b6fff;
    margin-bottom: 18px;
    display: block;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.process-card h3 {
    font-size: clamp(22px, 2.2vw, 32px);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    font-weight: 500;
}

.process-card p {
    color: var(--text-secondary);
    line-height: var(--lh-body);
    font-size: var(--fs-body);
}

.link-arrow {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 2px;
    transition: var(--transition);
}

.link-arrow:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* =========================
   11) TESTIMONIALS
   ========================= */
/* =========================
   Testimonials (match mock)
   ========================= */

.testimonials-section {
    background: #fff;
}

.testimonials-head {
    text-align: center;
    margin-bottom: 26px;
}

.testimonials-title {
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    font-weight: 500;
}

/* Controls under title */
.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* reuse your nav btn, but smaller like mock */
.testimonials-controls .nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #e9e9e9;
    background: #fff;
    color: #111;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
}

.testimonials-controls .nav-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* Track */
.testimonials-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 22px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 10px 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

/* Card */
.testimonial-card {
    scroll-snap-align: center;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 18px;
    padding: 28px 28px 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

/* middle card slightly emphasized like mock */
.testimonial-card.is-featured {
    box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
    transform: translateY(-4px);
}

/* Quote text */
.testimonial-quote {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.65;
    color: #1a1a1a;
}

/* Footer */
.testimonial-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f3f3f3;
    gap: 14px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;
}

.testimonial-name {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.testimonial-role {
    font-size: 12px;
    color: rgba(0, 0, 0, .55);
}

/* Quote mark bottom-right */
.testimonial-mark {
    font-size: 44px;
    line-height: 1;
    color: rgba(0, 0, 0, .12);
    font-family: serif;
    transform: translateY(6px);
}

/* Responsive: 1-2 card on small screens */
@media (max-width: 900px) {
    .testimonials-track {
        grid-auto-columns: minmax(260px, 78%);
    }

    .testimonial-card.is-featured {
        transform: none;
    }
}

@media (max-width: 520px) {
    .testimonials-title {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 22px;
    }
}


/* =========================
   12) WHY CHOOSE SECTION
   ========================= */
.why-choose-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

/* center text block like your screenshot */
.why-choose-section .row-optimize {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.why-choose-section .why-text-col {
    width: 100% !important;
    max-width: 800px !important;
    padding-right: 0 !important;
    text-align: center !important;
    margin: 0 auto !important;
    flex: none !important;
    float: none !important;
}

.why-choose-section .section-desc {
    margin-left: auto !important;
    margin-right: auto !important;
}

.why-choose-section .why-actions {
    display: flex;
    justify-content: center !important;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

/* ===== floating cards layout ===== */
.floating-cards-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 90px;
    margin-top: 130px;
    height: 420px;
    /* enough room like screenshot */
}

/* thin center line like screenshot */
.floating-cards-wrapper::before {
    content: '';
    position: absolute;
    top: 52%;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 0, 0, 0.10) 20%,
            rgba(0, 0, 0, 0.10) 80%,
            transparent);
    transform: rotate(-2deg);
    z-index: 0;
}

/* card base */
.float-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    z-index: 1;

    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
    transform: translateY(0) rotate(0deg);
    transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
    will-change: transform;
}

.float-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* badge pill bottom-left */
.card-float-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;

    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    padding: 10px 18px;

    font-size: 13px;
    font-weight: 600;
    color: #111;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(10px);
}

/* hover like screenshot (lift + slightly scale) */
.float-card:hover {
    transform: translateY(-14px) scale(1.02) rotate(var(--r, 0deg));
    box-shadow: 0 45px 95px rgba(0, 0, 0, 0.14);
    z-index: 5;
}

/* ===== individual sizes + offsets + angles ===== */
.card-studio {
    width: 300px;
    height: 360px;
    margin-top: 80px;
    --r: -2deg;
    transform: rotate(-2deg);
}

.card-tech {
    width: 240px;
    height: 240px;
    margin-top: -40px;
    border-radius: 44px;
    --r: 3deg;
    transform: rotate(3deg);
}

.card-prod {
    width: 360px;
    height: 250px;
    margin-top: 60px;
    --r: -1.5deg;
    transform: rotate(-1.5deg);
}

.card-gear {
    width: 240px;
    height: 300px;
    margin-top: 0px;
    --r: 2deg;
    transform: rotate(2deg);
}

/* ===== responsive ===== */
@media (max-width: 1100px) {
    .floating-cards-wrapper {
        gap: 36px;
        height: auto;
        margin-top: 70px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .floating-cards-wrapper::before {
        display: none;
    }

    .card-studio,
    .card-tech,
    .card-prod,
    .card-gear {
        margin-top: 0 !important;
        transform: rotate(0deg);
        --r: 0deg;
    }
}

/* =========================
   13) STUDIO TYPES (DARK)
   ========================= */
.studio-types-section {
    background-color: #0d0d0d;
    color: #fff;
    padding: 120px 0;
}

.studio-featured-layout {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.studio-cards-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.studio-v-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: #fff;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.studio-v-card:hover {
    transform: translateY(-8px);
}

.studio-v-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.studio-v-card:hover .studio-v-img {
    transform: scale(1.08);
}

.studio-v-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    inset: auto 0 0 0;
    height: 60%;
    display: flex;
    align-items: flex-end;
    padding: 34px 26px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.78) 25%,
            rgba(0, 0, 0, 0.35) 55%,
            rgba(0, 0, 0, 0.00) 100%);
}

.studio-v-content h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 650;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    font-family: var(--font-main);
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
}

.studio-v-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    opacity: 1;
    margin-bottom: 10px;
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.55);
}

.studio-v-price {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.55);
}

.studio-v-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(120% 80% at 50% 20%,
            rgba(0, 0, 0, 0) 35%,
            rgba(0, 0, 0, 0.35) 100%);
    opacity: .9;
}

.studio-v-card:hover .studio-v-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.82) 28%,
            rgba(0, 0, 0, 0.38) 58%,
            rgba(0, 0, 0, 0.00) 100%);
}

/* Sidebar */
.studio-sidebar-content {
    padding-left: 20px;
}

.sidebar-title {
    font-size: clamp(28px, 2.8vw, 40px);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--cta-text, #fff);
    /* Ensures readability in Light Mode on dark background */
}

[data-theme="dark"] .sidebar-title {
    color: var(--heading) !important;
    /* Uses theme heading color in Dark Mode */
}

.sidebar-desc {
    font-size: var(--fs-body-sm);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.btn-sidebar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #222;
    color: #fff;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.btn-sidebar:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateX(5px);
}

/* =========================
   14) CTA SECTION
   ========================= */
.cta-section {
    padding: 120px 0;
    text-align: center;
    background-color: var(--white);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content .eyebrow {
    display: inline-block;
    font-size: var(--fs-caption);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    margin-bottom: 14px;
    font-weight: 700;
}

.cta-content h2 {
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 500;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.cta-content p {
    font-size: var(--fs-body-lg);
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* =========================
   15) FOOTER (single final definition)
   ========================= */
.main-footer {
    padding: 80px 0 40px;
    background-color: var(--bg-page);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: var(--fs-body-sm);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: var(--fs-caption);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--black);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: var(--fs-body-sm);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--fs-body-sm);
    color: var(--text-muted);
}

/* =========================
   16) KEYFRAMES
   ========================= */
@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   17) RESPONSIVE (BASE)
   ========================= */
@media (max-width: 1200px) {
    .studio-featured-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .studio-sidebar-content {
        padding-left: 0;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .section-header.side-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-modern-header {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .modern-title-stacked {
        text-align: left;
        font-size: 80px;
    }

    .workflow-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cs-under-armour {
        grid-column: 1 / 3;
        height: 500px;
    }

    .cs-bento-footer {
        grid-column: 1 / 3;
    }
}

@media (max-width: 768px) {
    .hero-image-container {
        width: calc(100% - 20px);
        height: calc(100vh - 120px);
        min-height: 520px;
    }

    .hero-overlay {
        padding: 22px;
        justify-content: flex-end;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-img {
        object-position: center top;
        /* mobile ưu tiên thấy phần “đẹp” phía trên */
    }

    .container {
        padding: 0 20px;
    }

    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-overlay {
        padding: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .ads-conversion-section {
        padding: 80px 0;
    }

    .ads-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .workflow-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .studio-cards-column {
        grid-template-columns: 1fr;
    }

    .floating-cards-wrapper {
        flex-wrap: wrap;
        height: auto;
        gap: 20px;
        margin-top: 40px;
    }

    .float-card {
        width: 45% !important;
        height: 200px !important;
        margin-top: 0 !important;
        margin-bottom: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }
}

/* =========================
   19) PORTFOLIO HERO (REFERENCE STYLE)
   ========================= */
.portfolio-hero {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding: 140px 0 80px;
    /* Space for fixed header */
    background: #111;
}

.portfolio-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.portfolio-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.75);
    /* Heavy dark overlay */
    z-index: 2;
}

.portfolio-hero-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
}

.portfolio-eyebrow {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 16px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.portfolio-title {
    font-family: var(--font-main);
    font-size: clamp(48px, 6vw, 68px);
    font-weight: 300;
    /* Thin look like reference */
    margin-bottom: 24px;
    line-height: 1.1;
    color: #ffffff;
}

.portfolio-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 480px;
}

.portfolio-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent, #2563EB);
    color: #fff;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.portfolio-cta-btn:hover {
    background-color: var(--accent-dark, #1E40AF);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer Menu */
.footer-links .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links .menu li {
    margin-bottom: 12px;
}

.footer-links .menu li a {
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.main-footer .footer-links .menu li a {
    color: var(--text-muted);
}

.main-footer .footer-links .menu li a:hover {
    color: var(--primary);
    padding-left: 5px;
    /* giữ hiệu ứng bạn đang dùng */
}

/* Assuming footer has dark background or similar? 
   Checking existing footer css... 
   .footer-links ul li a { color: #fff? or inherited? } 
   Let's check "footer.php" styles in style.css.
   I can't see footer styles in the view_file clear enough.
   Assuming light theme based on :root css.
   But typical footer is dark?
   Let's just style as per previous:
   .footer-links ul li a -> existing was just <a> inside ul.
   Check style.css for footer links.
*/

/* Re-applying generic Footer Link styles just in case */
.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

/* Ensure Dropdowns inherit styles properly */
/* =========================
   HEADER: sticky + mobile
   ========================= */
/* Hamburger button */
.gp-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.gp-burger {
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    display: inline-block;
    position: relative;
}

.gp-burger::before,
.gp-burger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--text-primary);
}

.gp-burger::before {
    top: -6px;
}

.gp-burger::after {
    top: 6px;
}

/* Active state for WP menu */
.nav .current-menu-item>a,
.nav .current_page_item>a,
.nav .current-menu-ancestor>a {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Dropdown (submenu) */
.nav .menu-item-has-children {
    position: relative;
}

.nav .menu-item-has-children>.sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 50;
}

.nav .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav .sub-menu li a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
}

/* Mobile */
@media (max-width: 900px) {
    .gp-nav-toggle {
        display: inline-flex;
    }

    .header-container {
        flex-direction: row;
        /* giữ logo + burger ngang */
        gap: 14px;
    }

    .gp-nav-wrap {
        position: absolute;
        top: calc(100% + 10px);
        right: 40px;
        left: 40px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: all 0.2s ease;
    }

    .gp-nav-wrap.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
        padding: 10px;
        border-radius: 20px;
    }

    .nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .nav ul li a {
        padding: 12px 14px;
    }

    /* dropdown becomes stacked on mobile */
    .nav .menu-item-has-children>.sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 6px 0 0;
        margin-left: 8px;
    }
}


@media (max-width: 900px) {
    body {
        padding-top: 0;
    }
}

.no-js .slide-up,
.no-js .fade-in {
    opacity: 1;
    transform: none;
}

/* =========================
   PRIMARY NAV – CLEAN VERSION
   ========================= */

.gp-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* =========================
   DESKTOP
   ========================= */
@media (min-width: 901px) {

    .gp-nav-wrap {
        position: static;
        display: block;
    }

    .gp-nav-panel {
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
    }

    .gp-nav {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .gp-nav>li {
        position: relative;
    }

    .gp-nav>li>a {
        text-decoration: none;
        color: #111;
        font-weight: 400;
        padding: 10px 16px;
        border-radius: 999px;
        background: transparent;
        transition: background .18s ease,
            box-shadow .18s ease,
            transform .18s ease;
    }

    /* ✅ HOVER: pill đen nhạt */
    .gp-nav>li>a:hover {
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(6px);
        box-shadow:
            0 12px 40px rgba(0, 0, 0, 0.18),
            inset 0 0 0 1px rgba(255, 255, 255, 0.06);
        transform: translateY(-1px);
    }

    /* active: KHÔNG pill */
    .gp-nav .current-menu-item>a,
    .gp-nav .current-menu-ancestor>a {
        font-weight: 400;
        background: transparent;
        box-shadow: none;
        transform: none;
    }

    /* dropdown */
    .gp-nav .sub-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        min-width: 220px;
        padding: 10px;
        margin: 0;
        list-style: none;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 16px;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
        display: none;
    }

    .gp-nav li:hover>.sub-menu {
        display: block;
    }

    .gp-nav .sub-menu a {
        display: block;
        padding: 10px 12px;
        border-radius: 12px;
        color: #111;
        text-decoration: none;
    }

    .gp-nav .sub-menu a:hover {
        background: rgba(0, 0, 0, 0.04);
    }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 900px) {

    .gp-nav-wrap {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: all .2s ease;
    }

    .gp-nav-wrap.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .gp-nav-panel {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 22px;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
        padding: 14px;
    }

    .gp-nav {
        display: grid;
        gap: 8px;
    }

    .gp-nav>li {
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .gp-nav a {
        display: flex;
        justify-content: space-between;
        padding: 14px;
        color: #111;
        font-weight: 400;
        text-decoration: none;
    }

    .gp-nav .current-menu-item>a,
    .gp-nav .current-menu-ancestor>a {
        background: rgba(0, 0, 0, 0.04);
    }

    .gp-nav .sub-menu {
        list-style: none;
        padding: 0 10px 10px;
        display: grid;
        gap: 6px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all .22s ease;
    }

    .gp-nav li.is-sub-open>.sub-menu {
        max-height: 600px;
        opacity: 1;
    }

    .gp-nav li.menu-item-has-children>a::after {
        content: "▾";
        opacity: .6;
        transition: transform .2s ease;
    }

    .gp-nav li.is-sub-open>a::after {
        transform: rotate(180deg);
    }
}


/* ===== Sticky header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 3000;
    transition: box-shadow .2s ease, background .2s ease, backdrop-filter .2s ease;
}

/* Khi scroll xuống */
.header.is-sticky {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* (Optional) tránh menu dropdown bị che */
.gp-nav-wrap {
    z-index: 3001;
}

/* =========================
   Fix extra top space (Desktop + Mobile)
   Keep sticky working + WP admin bar safe
   ========================= */


/* Make header stick to the very top */
#site-header {
    top: 0;
    /* sticky anchor */
    margin-top: 0 !important;
}

/* Khi sticky: header sáng => logo/menu tối */
#site-header.is-sticky {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
}

#site-header.is-sticky .gp-brand,
#site-header.is-sticky .gp-brand a,
#site-header.is-sticky .gp-nav a {
    color: #111;
}


/* If you have spacing on header container, reduce it */
.header-container {
    padding-top: 12px;
    /* chỉnh số này nhỏ/lớn tuỳ bạn */
    padding-bottom: 12px;
    /* chỉnh số này nhỏ/lớn tuỳ bạn */
}

/* Remove accidental top margin from first section after header */
.site-content,
main.site-content,
#content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* WordPress Admin Bar: push sticky header down correctly */
body.admin-bar #site-header {
    top: 32px;
    /* desktop admin bar */
}

@media (max-width: 782px) {
    body.admin-bar #site-header {
        top: 46px;
        /* mobile admin bar */
    }
}

/* Optional: if your big rounded white card has too much top spacing */
.main-wrapper {
    padding-top: 0 !important;
}

/* =========================================
   12) DYNAMIC GALLERY GRID (ACF)
   ========================================= */
.gp-gallery-grid-section {
    padding: 80px 0;
    background-color: var(--bg-page, #fff);
}

.gp-gallery-grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gp-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
    aspect-ratio: 4 / 3;
}

.gp-grid-item a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.gp-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: block;
}

.gp-grid-item:hover img {
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 1024px) {
    .gp-gallery-grid-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .gp-gallery-grid-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gp-grid-item {
        aspect-ratio: 3 / 2;
    }
}

/* ============================================
   GLOBAL BREADCRUMBS
   ============================================ */
.gp-global-breadcrumbs {
    background: var(--bg-card, #fff);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.75rem 0;
}

.gp-global-breadcrumbs .container {
    max-width: var(--spacing-container, 1280px);
    margin: 0 auto;
    padding: 0 20px;
}

.gp-global-breadcrumbs .gp-breadcrumbs {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-size: 0.8125rem;
    line-height: 1.5;
}

.gp-global-breadcrumbs .gp-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gp-global-breadcrumbs .gp-breadcrumbs__item {
    display: inline-flex;
    align-items: center;
}

.gp-global-breadcrumbs .gp-breadcrumbs__link {
    color: var(--accent, #2563EB);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.gp-global-breadcrumbs .gp-breadcrumbs__link:hover {
    text-decoration: underline;
}

.gp-global-breadcrumbs .gp-breadcrumbs__sep {
    margin: 0 0.5rem;
    color: var(--text-secondary, #555);
    opacity: 0.5;
}

.gp-global-breadcrumbs .gp-breadcrumbs__current {
    color: var(--text-primary, #111);
}