/*
Theme Name: Obsidyan Core
Theme URI: https://example.com/obsidiancore
Author: ObsidyanCore LLC
Description: Mobile-first clean WordPress starter theme.
Version: 1.0.1
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: obsidyan-core
*/

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Sora:wght@600;700;800&family=Barlow:wght@100;400;500;700;800;900&display=swap");

:root {
    --oc-bg: #060606;
    --oc-panel: #151719;
    --oc-panel-2: #1f2327;
    --oc-text: #f5f7f9;
    --oc-muted: #a5acb3;
    --oc-lime: #a7ff19;
    --oc-line: rgba(255, 255, 255, 0.08);
    --oc-border: #2e3339;
    --oc-wrap: min(1320px, 92vw);
    --oc-radius: 14px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: #1a1a1a;
    color: var(--oc-text);
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    scroll-behavior: smooth;
}

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

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

main {
    margin-top: 0;
}

.screen-reader-text {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
}

.oc-wrap {
    width: var(--oc-wrap);
    margin-inline: auto;
}

.oc-header {
    position: static;
    width: 100%;
    z-index: 60;
    background: transparent;
    border-bottom: 1px solid #262626;
    backdrop-filter: blur(10px);
}

.oc-header-inner {
    min-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.4rem;
    position: relative;
}

.oc-brand img {
    width: clamp(150px, 18vw, 300px);
}

.oc-cart-btn {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(167, 255, 25, 0.45);
    border-radius: 999px;
    background: rgba(167, 255, 25, 0.12);
    color: var(--oc-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed !important;
    right: 24px !important;
    bottom: 24px !important;
    top: auto !important;
    left: auto !important;
    padding: 0;
    z-index: 99999;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    transition: background 0.16s ease, border-color 0.16s ease;
    overflow: visible;
}

.oc-cart-btn:hover {
    background: rgba(167, 255, 25, 0.2);
    border-color: rgba(167, 255, 25, 0.65);
}

.oc-cart-icon {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.oc-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #9EFF00;
    color: #0d1404;
    border: 1px solid #0d1404;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    font-family: "Barlow", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.oc-cart-empty-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -52%);
    width: min(360px, 90vw);
    background: rgba(18, 20, 22, 0.5);
    border: 1px solid #2a2d31;
    border-radius: 14px;
    padding: 1.2rem 1rem 1rem;
    text-align: center;
    z-index: 100001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.oc-cart-empty-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.oc-cart-empty-popup__icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 0.75rem;
}

.oc-cart-empty-popup__icon svg {
    width: 100%;
    height: 100%;
}

.oc-cart-empty-popup__icon .icon-bg {
    fill: #f1f3f5;
}

.oc-cart-empty-popup__icon .icon-cart,
.oc-cart-empty-popup__icon .icon-wheel,
.oc-cart-empty-popup__icon .icon-x {
    fill: none;
    stroke: #151719;
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.oc-cart-empty-popup__icon .icon-wheel {
    fill: #151719;
    stroke-width: 0;
}

.oc-cart-empty-popup__icon .icon-badge {
    fill: #9EFF00;
}

.oc-cart-empty-popup p {
    margin: 0;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #ffffff;
}

.oc-contact-form-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -52%);
    width: min(400px, 90vw);
    background: rgba(18, 20, 22, 0.95);
    border: 1px solid #2a2d31;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    z-index: 100001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.oc-contact-form-popup.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%);
}

.oc-contact-form-popup__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.oc-contact-form-popup__message {
    margin: 0;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.5;
}

.oc-contact-form-popup__message.is-success {
    color: #9EFF00;
}

.oc-contact-form-popup__message.is-error {
    color: #ff6b6b;
}

.oc-contact-form-popup__button {
    background: #9EFF00 !important;
    color: #0d1404 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: box-shadow 0.2s ease !important;
}

.oc-contact-form-popup__button:hover {
    box-shadow: 0 0 8px rgba(158, 255, 0, 0.6), 0 0 16px rgba(158, 255, 0, 0.4), 0 0 24px rgba(158, 255, 0, 0.2) !important;
}

.oc-nav {
    display: none;
}

.oc-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    border: none;
    border-radius: 0;
    background: transparent;
}

.oc-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0;
    color: #e8ebf0;
    border: none;
    transition: color 0.2s ease;
}

.oc-nav a:hover {
    color: var(--oc-lime);
}

.oc-nav a.is-active {
    background: none;
    border-color: transparent;
    color: var(--oc-lime);
}

.oc-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--oc-border);
    border-radius: 50px;
    cursor: pointer;
}

.oc-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--oc-text);
}

.oc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 1.25rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    border: 1px solid #3a4249;
    background: #23282e;
    color: #f0f3f6;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.oc-btn:hover {}

.oc-btn--accent {
    background: var(--oc-lime);
    color: #0d1404;
    border-color: transparent;
    font-size: 0.92rem;
    min-height: 46px;
    transition: box-shadow 0.2s ease !important;
}

.oc-btn--accent:hover {
    box-shadow: 0 0 8px rgba(167, 255, 25, 0.6), 0 0 16px rgba(167, 255, 25, 0.4), 0 0 24px rgba(167, 255, 25, 0.2) !important;
}

.oc-contact-btn {
    display: none;
    min-width: 145px;
    padding: 0 1.4rem;
}

.oc-hero {
    position: relative;
    overflow: hidden;
    min-height: min(86vh, 880px);
    background-image: url('../../images/bk_hero.png');
    background-size: 1573px auto;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
}

.oc-hero-box {
    text-align: center;
    padding-top: clamp(72px, 10vh, 120px);
    max-width: 980px;
    margin-inline: auto;
    position: relative;
    z-index: 2;
}

.oc-kicker,
.oc-hero h1 {
    font-family: "Sora", "Space Grotesk", sans-serif;
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 0.92;
    font-size: 96px;
}

.oc-hero h1 {
    margin-top: clamp(0.2rem, 1.5vw, 0.75rem);
}

.oc-hero-pill {
    margin: clamp(0.85rem, 1.8vw, 1.3rem) auto 0;
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 20, 20, 0.6);
    flex-wrap: wrap;
    justify-content: center;
}

.oc-hero-pill strong,
.oc-hero-pill span {
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    line-height: 1.4;
}

.oc-hero-pill strong {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(50, 50, 50, 0.8);
    font-weight: 700;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
    display: inline-block;
}



.oc-hero-pill span {
    color: #a5acb3;
    font-weight: 400;
}

.oc-actions {
    margin-top: 1.4rem;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.oc-actions .oc-btn {
    min-width: 155px;
    padding: 0 1.35rem;
}

.oc-hero-mountain {
    display: none;
}

.oc-trusted {
    position: relative;
    background: transparent;
    border-top: 1px solid #262626;
    border-bottom: 1px solid #262626;
    padding: 2rem 0;
}

.oc-trusted-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid #262626;
    background: #1a1a1a;
    font-weight: 600;
    font-size: 0.92rem;
}

.oc-trusted-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.8rem;
}

.oc-trusted-logo {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 10px;
    padding: 0.8rem;
    overflow: hidden;
}

.oc-trusted-logo img {
    width: 100%;
    height: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.oc-trusted-grid .oc-trusted-logo:nth-child(3) img {
    max-width: 190px;
}

.oc-trusted-logo:hover img {
    opacity: 1;
}

.oc-trusted-grid span {
    display: none;
}

.oc-contact {
    background: transparent;
    padding-bottom: clamp(2.8rem, 7vw, 5rem);
}

.oc-services {
    padding: 0;
    background: transparent;
}

.oc-services-hero {
    border: 1px solid #21262c;
    height: 336px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.2rem 1rem;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url("../../images/our_services.png") no-repeat center/cover;
    margin-bottom: 0;
    gap: 0.5rem;
}

.oc-services-hero h2 {
    margin: 0;
    font-family: "Sora", "Space Grotesk", sans-serif;
    font-size: clamp(1.5rem, 3.8vw, 2.6rem);
    letter-spacing: -0.025em;
    text-align: center;
}

.oc-services-hero p {
    margin: 0.3rem 0 0;
    font-size: 0.78rem;
    color: #b8c0c8;
    max-width: 800px;
    text-align: center;
}

.oc-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.oc-service-card {
    background: transparent;
    border: 1px solid #232933;
    padding: 1rem;
    min-height: 290px;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
}

.oc-service-icon {
    width: 88px;
    height: 88px;
    max-width: 88px;
    max-height: 88px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 1rem 0;
    object-fit: contain;
}

.oc-service-card h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.oc-service-card p {
    margin: 0.75rem 0 0;
    color: #aab1b9;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.58;
}

.oc-service-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 34px;
    margin-top: 1rem;
    border-radius: 6px;
    border: 1px solid #2b333d;
    background: transparent;
    color: #e8edf2;
    font-size: 0.72rem;
    font-weight: 600;
}

.oc-products {
    padding: 0.5rem 0 2rem;
    background: transparent;
}

.oc-products-title {
    margin: 30px 0;
    text-align: center;
    font-family: "Sora", "Space Grotesk", sans-serif;
    font-size: 68px;
    letter-spacing: -0.035em;
    font-weight: 900;
    line-height: 0.92;
    color: #ffffff;
}

.oc-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.oc-product-card {
    background: transparent;
    border: 1px solid #232a33;
    padding: 0.75rem;
}

.oc-product-kicker {
    margin: 0 0 0.55rem;
    color: #92a0af;
    font-size: 0.68rem;
}

.oc-product-media {
    border-radius: 6px;
    border: 1px solid #2f3945;
    width: 100%;
    aspect-ratio: 630 / 400;
    margin-bottom: 0.65rem;
    position: relative;
    overflow: hidden;
}

.oc-product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.oc-product-media--idscanner {
    background:
        linear-gradient(130deg, rgba(43, 112, 255, 0.58), rgba(181, 24, 200, 0.52)),
        radial-gradient(circle at 18% 20%, rgba(115, 219, 255, 0.55), transparent 40%),
        #0f1d37;
}

.oc-product-media--xray {
    background:
        linear-gradient(145deg, rgba(84, 135, 255, 0.58), rgba(49, 67, 104, 0.75)),
        radial-gradient(circle at 70% 28%, rgba(255, 81, 166, 0.48), transparent 38%),
        #172437;
}

.oc-product-media--stoma {
    background:
        linear-gradient(145deg, rgba(239, 244, 237, 0.92), rgba(186, 204, 162, 0.82)),
        repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0 22px, transparent 22px 44px),
        #d8e0d2;
}

.oc-product-media--tagit {
    background:
        linear-gradient(145deg, rgba(54, 63, 77, 0.95), rgba(36, 41, 50, 0.98)),
        radial-gradient(circle at 80% 20%, rgba(103, 143, 255, 0.35), transparent 33%),
        #1f2631;
}

.oc-product-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.oc-product-head h3 {
    margin: 0;
    font-size: 0.86rem;
    color: #9EFF00;
    transition: all 0.2s ease;
    cursor: pointer;
}

.oc-product-head h3:hover {}

.oc-product-title-link {
    display: flex;
    align-items: center;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.oc-product-title-link h3 {
    margin: 0;
    font-size: 1.72rem;
    font-family: "Barlow", sans-serif;
    font-weight: 100;
    color: #9EFF00;
    transition: all 0.2s ease;
    cursor: pointer;
}

.oc-product-title-link:hover h3 {
    text-shadow: 0 0 8px rgba(167, 255, 25, 0.6), 0 0 16px rgba(167, 255, 25, 0.4), 0 0 24px rgba(167, 255, 25, 0.2);
}

.oc-product-head a {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.76rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.oc-product-head a:hover {
    filter: drop-shadow(0 0 8px rgba(167, 255, 25, 0.6)) drop-shadow(0 0 16px rgba(167, 255, 25, 0.4)) drop-shadow(0 0 24px rgba(167, 255, 25, 0.2));
}

.oc-product-head a img {
    width: 32px;
    height: 32px;
    display: block;
}

.oc-product-card p {
    margin: 0.55rem 0 0;
    color: #9eabb8;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.55;
}

.oc-contact-hero {
    margin: 0 auto;
    max-width: 100%;
    border-bottom: 1px solid #272d33;
    padding: clamp(2.1rem, 6vw, 4.4rem) 1rem clamp(2.2rem, 6vw, 4rem);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url("../../images/contact_bk.png") no-repeat center/cover;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.oc-contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(106deg, rgba(210, 230, 177, 0.08) 0 2px, transparent 2px 13px);
    opacity: 0.45;
    pointer-events: none;
}

.oc-contact-logo-mark,
.oc-contact-hero h2,
.oc-contact-hero p,
.oc-contact-hero .oc-btn {
    position: relative;
    z-index: 1;
}

.oc-contact-logo-mark {
    font-weight: 700;
    font-size: clamp(0.68rem, 1vw, 0.84rem);
    letter-spacing: 0.2em;
    color: #edf3e4;
    margin: 0 auto 0.8rem;
    display: block;
    text-align: center;
    max-width: 200px;
}

.oc-contact-hero h2 {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 46px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    width: 100%;
}

.oc-contact-hero p {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.006em;
    color: #E6E6E6;
    margin: 0;
    width: 100%;
}

.oc-contact-layout {
    max-width: 1060px;
    margin: 4rem auto 0;
    padding-inline: 2rem;
}

.oc-form {
    width: 100%;
    padding: 2rem;
    border: 1px solid #2b3138;
    background: transparent;
    border-radius: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 2rem;
    min-height: 50px;
}

.oc-form label {
    display: grid;
    gap: 0.5rem;
    background: #262626;
    border: 1px solid #353b42;
    border-radius: 8px;
    padding: 0.85rem 0.95rem;
}

.oc-form span,
.oc-form legend {
    font-size: 0.77rem;
    font-weight: 700;
    color: #eef2f6;
    line-height: 1;
}

.oc-form input,
.oc-form textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #3b424a;
    color: #fff;
    padding: 0.5rem 0;
    outline: none;
    font: inherit;
    font-size: 0.84rem;
}

.oc-form input::placeholder,
.oc-form textarea::placeholder {
    color: #7a838d;
}

.oc-form-full {
    grid-column: 1 / -1;
}

.oc-reasons {
    margin: 0;
    padding: 0.85rem 0.95rem;
    border: 1px solid #353b42;
    border-radius: 8px;
    background: #262626;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 1.2rem;
}

.oc-reasons legend {
    grid-column: 1 / -1;
    padding: 0;
}

.oc-reasons label {
    background: none;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.79rem;
    color: #e6ebf0;
}

.oc-reasons input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #4f5761;
    background: transparent;
    border-radius: 3px;
    position: relative;
    margin: 0;
}

.oc-reasons input[type="checkbox"]:checked {
    background: transparent;
    border-color: #93dd1e;
}

.oc-reasons input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 4px;
    border-left: 2px solid #a7ff19;
    border-bottom: 2px solid #a7ff19;
    transform: rotate(-45deg);
    top: 4px;
    left: 3px;
}

.oc-form button.oc-btn {
    margin: 0.35rem auto 0;
    min-width: 160px;
}

.oc-footer {
    padding: 2.4rem 0 1.5rem;
    border-top: 1px solid #1f2328;
    background: transparent;
}

.oc-footer-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #252a31;
    padding-bottom: 1.15rem;
}

.oc-brand--footer img {
    width: clamp(80px, 6.5vw, 160px);
}

.oc-footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.oc-footer-nav a {
    padding: 0.42rem 0.62rem;
    border-radius: 8px;
    border: 1px solid transparent;
    color: #dde3e9;
    font-weight: 600;
    font-size: 0.84rem;
}

.oc-footer-nav a:hover {
    border-color: #384049;
    background: #1a1f24;
}

.oc-social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid #303742;
    border-radius: 999px;
    padding: 0.5rem 0.7rem;
    background: transparent;
}

.oc-social strong {
    font-size: 0.74rem;
    margin-right: 0.3rem;
    white-space: nowrap;
}

.oc-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.oc-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    color: var(--oc-lime);
    filter: brightness(1) saturate(1);
}

.oc-social a:hover {
    filter: drop-shadow(0 0 8px rgba(167, 255, 25, 0.6)) drop-shadow(0 0 16px rgba(167, 255, 25, 0.4)) drop-shadow(0 0 24px rgba(167, 255, 25, 0.2));
}

.oc-footer-bottom {
    padding-top: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #c9d1d8;
    font-size: 0.85rem;
    gap: 2rem;
}

.oc-footer-contact {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
}

.oc-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
}

.oc-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--oc-lime);
    filter: brightness(0.8) saturate(1);
}

.oc-footer-copyright {
    margin: 0;
    text-align: right;
    font-size: 0.75rem;
}

@media (max-width: 1080px) {
    .oc-trusted-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .oc-service-grid {
        grid-template-columns: 1fr;
    }

    .oc-service-card {
        text-align: center;
        justify-items: center;
    }

    .oc-service-icon {
        margin: 0 auto 1rem auto;
        justify-content: center;
    }

    .oc-product-grid {
        grid-template-columns: 1fr;
    }

    .oc-footer-top {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .oc-footer-nav {
        justify-content: center;
    }

    .oc-social {
        display: none;
    }

    .oc-footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .oc-footer-contact {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }

    .oc-contact-item {
        width: auto;
        justify-content: center;
    }

    .oc-footer-copyright {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 860px) {
    .oc-header-inner {
        grid-template-columns: 1fr auto auto;
        min-height: 72px;
    }

    .oc-cart-btn {
        right: 16px !important;
        bottom: 16px !important;
    }

    .oc-contact-btn {
        display: none;
    }

    .oc-menu-toggle {
        display: none;
    }

    .oc-actions {
        display: none;
    }

    .oc-nav ul {
        display: none;
    }

    .oc-nav ul.is-open {
        display: flex;
        position: absolute;
        top: 76px;
        right: 4vw;
        width: min(280px, 92vw);
        background: #14181c;
        border: 1px solid #353b43;
        border-radius: 12px;
        padding: 0.55rem;
        flex-direction: column;
        gap: 0.4rem;
    }

    .oc-nav ul.is-open a {
        width: 100%;
        justify-content: flex-start;
        padding: 0.5rem 0.8rem;
    }

    .oc-hero {
        min-height: 620px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .oc-hero-box {
        padding-top: 0;
    }

    .oc-hero-mountain {
        inset: auto -20% -30% -20%;
        height: 72%;
    }

    .oc-trusted {
        padding: 1.65rem 0;
    }

    .oc-trusted-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .oc-contact-layout {
        margin-top: 0;
        padding-inline: 0;
    }

    .oc-form {
        grid-template-columns: 1fr;
        border-left: 0;
        border-right: 0;
    }

    .oc-reasons {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 540px) {
    .oc-wrap {
        width: min(94vw, 560px);
    }

    .oc-brand img {
        width: 170px;
    }

    .oc-kicker,
    .oc-hero h1 {
        font-size: 50px;
    }

    .oc-hero-pill {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        gap: 0.3rem;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .oc-hero-pill strong,
    .oc-hero-pill span {
        font-family: "Barlow", sans-serif;
        font-size: 12px;
        line-height: 1.4;
    }

    .oc-hero-pill span {
        font-weight: 100;
        color: #a5acb3;
    }

    .oc-hero-pill strong {
        font-weight: 500;
        color: #ffffff;
        background: transparent;
        border: none;
        padding: 0;
        border-radius: 0;
        width: auto;
        text-align: center;
    }

    .oc-actions .oc-btn {
        width: 100%;
    }

    .oc-trusted-tag {
        font-size: 0.8rem;
        top: -13px;
    }

    .oc-trusted-grid span {
        min-height: 52px;
        font-size: 0.58rem;
    }

    .oc-services {
        padding-top: 1.1rem;
    }

    .oc-service-card {
        min-height: 0;
    }

    .oc-product-media {
        min-height: 145px;
    }
}

/* WooCommerce Notices */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    background: var(--oc-panel-2);
    border: 1px solid var(--oc-border);
    border-left: 3px solid var(--oc-lime);
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
    color: var(--oc-text);
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.woocommerce-message {
    border-left-color: var(--oc-lime);
    background: linear-gradient(90deg, rgba(167, 255, 25, 0.06), transparent);
}

/* Hide add-to-cart success notice banner globally */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-message {
    display: none !important;
}

.woocommerce-message::before {
    display: none;
}

.woocommerce-message a.button,
.woocommerce-message .button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 38px !important;
    padding: 0 1.5rem !important;
    border-radius: 9999px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    border: none !important;
    background: #9EFF00 !important;
    color: #0d1404 !important;
    text-decoration: none !important;
    transition: box-shadow 0.2s ease !important;
    cursor: pointer !important;
}

.woocommerce-message a.button:hover,
.woocommerce-message .button:hover {
    box-shadow: 0 0 8px rgba(158, 255, 0, 0.6), 0 0 16px rgba(158, 255, 0, 0.4), 0 0 24px rgba(158, 255, 0, 0.2) !important;
}

.woocommerce-error {
    border-left-color: #ff6b6b;
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.05), transparent);
}

.woocommerce-error::before {
    content: "✕";
    font-size: 1.4rem;
    color: #ff6b6b;
    font-weight: bold;
    flex-shrink: 0;
}

.woocommerce-info {
    border-left-color: #4ecdc4;
    background: linear-gradient(90deg, rgba(78, 205, 196, 0.05), transparent);
}

.woocommerce-info::before {
    content: "ℹ";
    font-size: 1.4rem;
    color: #4ecdc4;
    font-weight: bold;
    flex-shrink: 0;
}

/* WooCommerce Product Page - Keep original layout */
.woocommerce div.product {
    border: none;
    background: transparent;
    padding: 0;
}

/* WooCommerce Product Gallery Thumbnails */
.woocommerce div.product .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
    width: 100%;
}

.woocommerce div.product .flex-control-thumbs {
    margin: 10px 0 0 0 !important;
    display: flex !important;
    flex-wrap: wrap;
    gap: 5px !important;
}

.woocommerce div.product .flex-control-thumbs li {
    width: 163px !important;
    height: 99px !important;
    margin: 0 !important;
    flex: 0 0 163px;
}

.woocommerce div.product .flex-control-thumbs li:nth-child(n+5) {
    display: none;
}

.woocommerce div.product .flex-control-thumbs img {
    width: 163px !important;
    height: 99px !important;
    max-width: 163px !important;
    object-fit: cover;
    display: block;
}

body.woocommerce.single-product div.product .product_title,
body.woocommerce.single-product div.product h1.product_title,
body.woocommerce.single-product div.product h1.product_title.entry-title,
body.single-product .woocommerce div.product .summary h1.product_title {
    font-family: "Barlow", sans-serif !important;
    font-weight: 100 !important;
    font-size: 96px !important;
    color: #9EFF00 !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

body.woocommerce.single-product div.product .product_title *,
body.woocommerce.single-product div.product h1.product_title * {
    font-family: "Barlow", sans-serif !important;
    font-weight: 100 !important;
    color: #9EFF00 !important;
}

.oc-single-product-title {
    font-family: "Barlow", sans-serif !important;
    font-weight: 100 !important;
    font-size: 96px !important;
    color: #9EFF00 !important;
    text-align: center !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    line-height: 0.95 !important;
}

/* Final single-product title fallback (independent of WooCommerce body class variants) */
.single-product .product .summary>h1,
.single-product h1.product_title,
.single-product .product_title {
    font-family: "Barlow", sans-serif !important;
    font-weight: 100 !important;
    font-size: 96px !important;
    color: #9EFF00 !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    line-height: 0.95 !important;
}

.single-product .product .summary>h1 *,
.single-product h1.product_title *,
.single-product .product_title * {
    font-family: "Barlow", sans-serif !important;
    font-weight: 100 !important;
    color: #9EFF00 !important;
}

.woocommerce div.product .price {
    color: #9EFF00 !important;
    font-weight: 900 !important;
    margin: 80px 0 1rem 0 !important;
    font-size: 48px !important;
    font-family: "Barlow", sans-serif !important;
}


.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 18px !important;
    font-family: "Barlow", sans-serif !important;
    font-weight: 400 !important;
    color: #98989A !important;
}

.woocommerce div.product p {
    font-size: 18px !important;
    font-family: "Barlow", sans-serif !important;
    font-weight: 400 !important;
    color: #98989A !important;
}

.woocommerce div.product p.oc-annual-subscription-notice,
.woocommerce div.product .summary p.oc-annual-subscription-notice,
p.oc-annual-subscription-notice {
    color: #9EFF00 !important;
    font-family: "Barlow", sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    margin: 0.5rem 0 1rem 0 !important;
}

.woocommerce div.product .woocommerce-price-amount {
    color: #9EFF00 !important;
}

.woocommerce div.product .woocommerce-variation-price .price {
    color: #9EFF00 !important;
}

.quantity input.qty {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid #262626 !important;
    border-radius: 50px !important;
    padding: 0.6rem 1.2rem !important;
    width: 80px !important;
    height: 44px !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.woocommerce-cart .wc-block-components-quantity-selector,
.woocommerce-cart .wc-block-components-quantity-selector input,
.woocommerce-cart .wc-block-components-quantity-selector button,
.woocommerce-cart .wc-block-components-quantity-selector button svg {
    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

.woocommerce .quantity,
.woocommerce-cart .quantity,
.woocommerce-cart .wc-block-components-quantity-selector {
    border-radius: 999px !important;
    overflow: hidden !important;
}

.woocommerce-cart .wc-block-components-quantity-selector {
    border: 1px solid #262626 !important;
}

.woocommerce-cart .wc-block-components-quantity-selector input,
.woocommerce-cart .wc-block-components-quantity-selector button {
    border-radius: 0 !important;
}

.woocommerce-cart .wc-block-components-quantity-selector button,
.woocommerce-cart .wc-block-components-quantity-selector button:hover,
.woocommerce-cart .wc-block-components-quantity-selector button:focus,
.woocommerce-cart .wc-block-components-quantity-selector button:active,
.woocommerce-cart .wc-block-components-quantity-selector button:focus-visible {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.quantity input.qty:focus {
    outline: none !important;
    border-color: #9EFF00 !important;
}

/* Hide spinner arrows on number input */
.quantity input.qty::-webkit-outer-spin-button,
.quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.quantity input.qty[type=number] {
    appearance: textfield !important;
    -moz-appearance: textfield !important;
}

.woocommerce div.product form.cart .button {
    background: #9EFF00 !important;
    color: #0d1404 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0 1.8rem !important;
    min-height: 44px !important;
    height: 44px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    transition: box-shadow 0.2s ease !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.woocommerce div.product form.cart .button:hover {
    box-shadow: 0 0 8px rgba(158, 255, 0, 0.6), 0 0 16px rgba(158, 255, 0, 0.4), 0 0 24px rgba(158, 255, 0, 0.2) !important;
}

/* Hide WooCommerce Tabs header - Show Description Text Only */
.woocommerce-tabs ul.tabs {
    display: none !important;
}

.woocommerce-tabs .panel {
    border: none;
    padding: 0;
}

.woocommerce-tabs .panel h2 {
    font-family: "Barlow", sans-serif !important;
    font-weight: 500 !important;
    font-size: 24px !important;
    color: var(--oc-text) !important;
    margin-bottom: 1.5rem !important;
}

.woocommerce-tabs .panel p {
    font-size: 18px !important;
    font-family: "Barlow", sans-serif !important;
    font-weight: 400 !important;
}

/* Hide Related Products */
.woocommerce div.product .related.products {
    display: none !important;
}

/* Hide Product Category */
.woocommerce div.product .product_meta .posted_in {
    display: none;
}

/* Cart page title */
.woocommerce-cart h1,
.woocommerce-cart .entry-title,
.woocommerce-cart .wp-block-post-title {
    font-family: "Barlow", sans-serif !important;
    font-weight: 100 !important;
    font-size: 48px !important;
    color: #9EFF00 !important;
    text-align: center !important;
    line-height: 1.05;
    margin-top: 0;
    margin-bottom: 24px;
}

/* Cart page: two-column layout (products 2/3, subtotals 1/3) */
.woocommerce-cart .woocommerce {
    width: 100% !important;
    max-width: 1024px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.woocommerce-cart .woocommerce-cart-form {
    width: 66.666% !important;
    max-width: none !important;
    float: left !important;
    margin: 0 !important;
}

.woocommerce-cart .cart-collaterals {
    width: 33.333% !important;
    float: right !important;
    clear: none !important;
    margin-top: 0 !important;
    padding-left: 28px !important;
    box-sizing: border-box;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.woocommerce-cart table.shop_table.cart {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Cart column alignment: fixed product/total widths */
.woocommerce-cart table.shop_table {
    width: 100% !important;
    table-layout: fixed;
}

.woocommerce-cart table.shop_table th.product-name,
.woocommerce-cart table.shop_table td.product-name {
    width: 66.666%;
    padding-left: 20px !important;
}

.woocommerce-cart table.shop_table th.product-total,
.woocommerce-cart table.shop_table td.product-total {
    width: 33.333%;
    text-align: right;
    padding-right: 0 !important;
}

.woocommerce-cart table.shop_table th.product-subtotal,
.woocommerce-cart table.shop_table td.product-subtotal {
    width: 33.333%;
    text-align: right;
    padding-right: 0 !important;
}

.woocommerce-cart .product-total {
    font-weight: 600;
    text-align: right;
}

.woocommerce-cart .product-subtotal {
    font-weight: 600;
    text-align: right;
}

.woocommerce-cart .quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.woocommerce-cart table.shop_table.cart th:first-child,
.woocommerce-cart table.shop_table.cart td:first-child {
    padding-left: 20px !important;
}

.woocommerce-cart table.shop_table.cart th:last-child,
.woocommerce-cart table.shop_table.cart td:last-child {
    padding-right: 0 !important;
}

/* Vertical centering for cart product list (classic cart) */
.woocommerce-cart table.shop_table.cart th,
.woocommerce-cart table.shop_table.cart td,
.woocommerce-cart table.shop_table.cart td.product-thumbnail,
.woocommerce-cart table.shop_table.cart td.product-name,
.woocommerce-cart table.shop_table.cart td.product-subtotal,
.woocommerce-cart table.shop_table.cart td.product-quantity,
.woocommerce-cart table.shop_table.cart td.product-remove {
    vertical-align: middle !important;
}

/* Vertical centering for cart rows (block cart) */
.woocommerce-cart .wc-block-cart-items__row {
    align-items: center !important;
}

.woocommerce-cart .wc-block-cart-items__row .wc-block-components-product-name,
.woocommerce-cart .wc-block-cart-items__row .wc-block-components-product-price,
.woocommerce-cart .wc-block-cart-items__row .wc-block-components-product-metadata {
    line-height: 1.25 !important;
}

/* Cart block layout: products 2/3, sidebar 1/3 */
.woocommerce-cart .wc-block-cart {
    display: grid !important;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
}

.woocommerce-cart .wc-block-cart .wc-block-cart__main,
.woocommerce-cart .wc-block-cart .wc-block-cart__sidebar {
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.woocommerce-cart .wc-block-cart .wc-block-cart__sidebar {
    margin-top: 0 !important;
}

@media (max-width: 860px) {

    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals {
        width: 100% !important;
        float: none !important;
    }

    .woocommerce-cart .cart-collaterals {
        padding-left: 0 !important;
        margin-top: 1.5rem !important;
    }

    .woocommerce-cart .wc-block-cart {
        display: block !important;
    }
}

@media (max-width: 860px) {

    body.woocommerce.single-product div.product .product_title,
    body.woocommerce.single-product div.product h1.product_title,
    body.woocommerce.single-product div.product h1.product_title.entry-title,
    body.single-product .woocommerce div.product .summary h1.product_title,
    .oc-single-product-title,
    .single-product .product .summary>h1,
    .single-product h1.product_title,
    .single-product .product_title {
        font-size: 48px !important;
    }

    .woocommerce div.product .summary,
    .woocommerce div.product div.summary {
        text-align: center !important;
    }

    .woocommerce div.product .price {
        text-align: center !important;
    }

    .woocommerce div.product .woocommerce-product-details__short-description {
        text-align: center !important;
    }

    .woocommerce div.product p.oc-annual-subscription-notice,
    p.oc-annual-subscription-notice {
        text-align: center !important;
    }

    .woocommerce div.product p {
        text-align: center !important;
    }

    .woocommerce div.product form.cart {
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }
}

/* Estimated total colors (classic totals) */
.woocommerce-cart .cart-collaterals .cart_totals .order-total th,
.woocommerce-cart .cart-collaterals .cart_totals .order-total td,
.woocommerce-cart .cart-collaterals .cart_totals .order-total .amount {
    color: #9EFF00 !important;
    font-family: "Barlow", sans-serif !important;
    font-weight: 700 !important;
    vertical-align: middle !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table th,
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table td {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table td {
    text-align: right !important;
}

.woocommerce-cart .cart-collaterals .cart_totals .order-total th {
    font-size: 0 !important;
}

.woocommerce-cart .cart-collaterals .cart_totals .order-total th::after {
    content: "TOTAL TO PAY";
    font-size: 1rem;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    color: #9EFF00;
    letter-spacing: 0.02em;
    line-height: 1.2;
    display: inline-block;
    vertical-align: middle;
}

/* Estimated total colors (block totals) */
.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    color: #9EFF00 !important;
    font-family: "Barlow", sans-serif !important;
    font-weight: 500 !important;
}

.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: 0 !important;
}

.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label::after {
    content: "TOTAL TO PAY";
    font-size: 1rem;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    color: #9EFF00;
    letter-spacing: 0.02em;
}

/* Cart checkout button: match green action buttons */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-checkout .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
    background: #9EFF00 !important;
    color: #0d1404 !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: "Barlow", sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
    padding: 0.85rem 2.5rem !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    transition: box-shadow 0.2s ease !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-block-cart__submit-button:hover,
.woocommerce-checkout .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
    box-shadow: 0 0 8px rgba(158, 255, 0, 0.6), 0 0 16px rgba(158, 255, 0, 0.4), 0 0 24px rgba(158, 255, 0, 0.2) !important;
}

/* Checkout page title - same as cart page */
.woocommerce-checkout h1,
.woocommerce-checkout .entry-title,
.woocommerce-checkout .wp-block-post-title {
    font-family: "Barlow", sans-serif !important;
    font-weight: 100 !important;
    font-size: 48px !important;
    color: #9EFF00 !important;
    text-align: center !important;
    line-height: 1.05;
    margin-top: 0;
    margin-bottom: 24px;
}

/* Checkout fields: match contact form styling */

/* Hide Express Checkout completely */
.wc-block-components-express-payment,
.wp-block-woocommerce-checkout-express-payment-block,
.wp-block-woocommerce-cart-express-payment-block,
.wc-block-components-express-payment--checkout,
.wc-block-components-express-payment--cart,
.wc-block-components-express-payment-continue-rule {
    display: none !important;
}

/* Checkout section headings (Contact information, Billing address, Payment options) */
.woocommerce-checkout .wc-block-components-checkout-step__heading,
.woocommerce-checkout .wc-block-components-checkout-step__title {
    color: #9EFF00 !important;
    text-align: center !important;
    font-family: "Barlow", sans-serif !important;
    font-weight: 500 !important;
    width: 100% !important;
    display: block !important;
}

.woocommerce-checkout form.checkout .form-row {
    background: #262626;
    border: 1px solid #353b42;
    border-radius: 8px;
    padding: 0.85rem 0.95rem;
    margin-bottom: 1rem;
}

.woocommerce-checkout form.checkout .form-row label {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 0.77rem;
    font-weight: 700;
    color: #eef2f6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.woocommerce-checkout form.checkout .form-row .input-text,
.woocommerce-checkout form.checkout .form-row select,
.woocommerce-checkout form.checkout .form-row textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #3b424a;
    color: #ffffff;
    padding: 0.5rem 0;
    outline: none;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 0.84rem;
    font-weight: 400;
    box-shadow: none;
}

.woocommerce-checkout form.checkout .form-row .input-text::placeholder,
.woocommerce-checkout form.checkout .form-row textarea::placeholder {
    color: #7a838d;
}

.woocommerce-checkout form.checkout .select2-container--default .select2-selection--single {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #3b424a;
    border-radius: 0;
    height: auto;
    min-height: 34px;
    padding: 0.5rem 0;
}

.woocommerce-checkout form.checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff;
    line-height: 1.2;
    padding-left: 0;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 0.84rem;
}

.woocommerce-checkout form.checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.woocommerce-checkout form.checkout .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #a5acb3 transparent transparent transparent;
}

.woocommerce-checkout .wc-block-components-text-input,
.woocommerce-checkout .wc-block-components-combobox-control,
.woocommerce-checkout .wc-block-components-address-form__address_1,
.woocommerce-checkout .wc-block-components-address-form__city,
.woocommerce-checkout .wc-block-components-address-form__state,
.woocommerce-checkout .wc-block-components-address-form__postcode {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0.4rem 0;
}

.woocommerce-checkout .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-components-combobox-control label,
.woocommerce-checkout .wc-block-components-text-input .wc-block-components-text-input__label,
.woocommerce-checkout .wc-block-components-combobox-control .wc-block-components-combobox-control__label {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 0.77rem;
    font-weight: 700;
    color: #eef2f6;
}

.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-combobox-control input,
.woocommerce-checkout .wc-block-components-text-input select,
.woocommerce-checkout .wc-block-components-text-input textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #3b424a;
    color: #ffffff;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 0.84rem;
    padding: 0.5rem 0;
    box-shadow: none;
}

/* Woo Blocks hard override: remove white native fields and match contact form */

/* Center the "+ Add apartment" and company links, make green */
.woocommerce-checkout .wc-block-components-address-form__address_2-toggle,
.woocommerce-checkout .wc-block-components-address-form__company-toggle {
    text-align: center !important;
    display: block !important;
}

.woocommerce-checkout .wc-block-components-address-form__address_2-toggle a,
.woocommerce-checkout .wc-block-components-address-form__address_2-toggle button,
.woocommerce-checkout .wc-block-components-address-form__address_2-toggle,
.woocommerce-checkout .wc-block-components-address-form__company-toggle a,
.woocommerce-checkout .wc-block-components-address-form__company-toggle button,
.woocommerce-checkout .wc-block-components-address-form__company-toggle {
    color: #9EFF00 !important;
    font-family: "Space Grotesk", "Segoe UI", sans-serif !important;
    font-size: 0.88rem !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
}

/* More horizontal space between side-by-side fields */
.woocommerce-checkout .wc-block-components-address-form,
.woocommerce-checkout .wc-block-components-form .wc-block-components-address-form {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 2rem !important;
    row-gap: 0 !important;
}

/* Full-width fields spanning both columns */
.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__address_1,
.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__address_2,
.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__address_2-toggle,
.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__company,
.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__company-toggle,
.woocommerce-checkout .wc-block-components-address-form> :first-child:nth-last-child(1) {
    grid-column: 1 / -1 !important;
}

/* Country/Region spans full width */
.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__country {
    grid-column: 1 / -1 !important;
}

/* Position company invoice fields right after company using CSS order */
.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__country {
    order: 1 !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__first_name {
    order: 2 !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__last_name {
    order: 3 !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__company {
    order: 4 !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__company-toggle {
    order: 4 !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__obsidyan-company-cif {
    order: 5 !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__obsidyan-company-reg {
    order: 6 !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__obsidyan-company-address {
    order: 7 !important;
    grid-column: 1 / -1 !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__address_1 {
    order: 8 !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__address_2 {
    order: 9 !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__address_2-toggle {
    order: 9 !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__city {
    order: 10 !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__state {
    order: 11 !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__postcode {
    order: 12 !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__phone {
    order: 13 !important;
}

/* Group company fields visually */
.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__company,
.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__obsidyan-company-cif,
.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__obsidyan-company-reg,
.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__obsidyan-company-address {
    background: #1a1d21 !important;
    border: 1px solid #2a2f35 !important;
    border-radius: 8px !important;
    padding: 0.85rem 0.95rem !important;
    margin-bottom: 0.25rem !important;
}

/* Company group: round top corners on first row, bottom corners on last */
.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__company {
    grid-column: 1 / -1 !important;
    border-radius: 8px 8px 0 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__obsidyan-company-cif {
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
    border-right: none !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__obsidyan-company-reg {
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

.woocommerce-checkout .wc-block-components-address-form>.wc-block-components-address-form__obsidyan-company-address {
    border-radius: 0 0 8px 8px !important;
    margin-bottom: 0.5rem !important;
}

.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0.4rem 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
}

.woocommerce-checkout .wc-block-components-form .wc-block-components-combobox-control,
.woocommerce-checkout .wc-block-components-form .wc-block-components-select {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0.4rem 0 !important;
    position: relative !important;
    padding-bottom: 0.65rem !important;
    box-sizing: border-box !important;
}

.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input__label {
    position: static !important;
    transform: none !important;
    display: block !important;
    margin: 0 0 0.35rem 0 !important;
    padding: 0 !important;
    color: #eef2f6 !important;
    font-family: "Space Grotesk", "Segoe UI", sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    opacity: 1 !important;
    text-transform: capitalize !important;
}

.woocommerce-checkout .wc-block-components-form .wc-block-components-combobox-control label,
.woocommerce-checkout .wc-block-components-form .wc-block-components-select label,
.woocommerce-checkout .wc-block-components-form .wc-block-components-combobox-control__label,
.woocommerce-checkout .wc-block-components-form .wc-block-components-select__label {
    position: absolute !important;
    bottom: 0.25rem !important;
    left: 0.95rem !important;
    top: auto !important;
    transform: none !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #eef2f6 !important;
    font-family: "Space Grotesk", "Segoe UI", sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    opacity: 1 !important;
    text-transform: capitalize !important;
}

.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-form .wc-block-components-combobox-control input,
.woocommerce-checkout .wc-block-components-form .wc-block-components-select select,
.woocommerce-checkout .wc-block-components-form input[type="text"],
.woocommerce-checkout .wc-block-components-form input[type="email"],
.woocommerce-checkout .wc-block-components-form input[type="tel"],
.woocommerce-checkout .wc-block-components-form textarea {
    background: transparent !important;
    color: #ffffff !important;
    border: 0 !important;
    border-bottom: 1px solid #3b424a !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: 100% !important;
    font-family: "Space Grotesk", "Segoe UI", sans-serif !important;
    font-size: 0.84rem !important;
    padding: 0.5rem 0 !important;
    outline: none !important;
}

/* Normalize combobox internal elements to match textbox height */
.woocommerce-checkout .wc-block-components-combobox-control .components-combobox-control__suggestions-container,
.woocommerce-checkout .wc-block-components-combobox-control .components-form-token-field__input-container {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    min-height: unset !important;
    height: auto !important;
}

.woocommerce-checkout .wc-block-components-combobox-control .components-form-token-field__label {
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.woocommerce-checkout .wc-block-components-combobox-control .components-combobox-control__suggestions-container input {
    height: auto !important;
    min-height: unset !important;
}

/* Ensure select dropdown displays properly */
.woocommerce-checkout .wc-block-components-form .wc-block-components-select select,
.woocommerce-checkout .wc-block-components-form select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239eff00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.5rem center !important;
    background-size: 1.2em !important;
    padding: 0.5rem 2rem 0.5rem 0 !important;
    cursor: pointer !important;
    outline: none !important;
    background-color: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid #3b424a !important;
}

/* Remove extra padding from select internal wrappers */
.woocommerce-checkout .wc-block-components-form .wc-block-components-select select {
    padding: 0.5rem 2rem 0.5rem 0 !important;
}

/* Country/Region dropdown - fully rounded styling */
.wc-blocks-components-select__container {
    display: block !important;
    width: 100% !important;
    background: transparent !important;
    position: relative !important;
    padding-bottom: 0 !important;
    margin-bottom: 1.2rem !important;
}

.wc-blocks-components-select__container .wc-blocks-components-select__label {
    position: absolute !important;
    bottom: -1.05rem !important;
    left: 0 !important;
    top: auto !important;
    right: auto !important;
    font-family: "Space Grotesk", "Segoe UI", sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: #eef2f6 !important;
    line-height: 1.2 !important;
    text-transform: capitalize !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
}

.wc-blocks-components-select__container .wc-blocks-components-select__select {
    width: 100% !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239eff00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0 center !important;
    background-size: 1.4em !important;
    border: none !important;
    border-bottom: 1px solid #3b424a !important;
    border-radius: 0 !important;
    padding: 0.5rem 2rem 0.5rem 0 !important;
    color: #ffffff !important;
    font-family: "Space Grotesk", "Segoe UI", sans-serif !important;
    font-size: 0.84rem !important;
    font-weight: 400 !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    cursor: pointer !important;
    line-height: 1.2 !important;
}

.wc-blocks-components-select__container .wc-blocks-components-select__select:focus {
    outline: none !important;
    border-bottom-color: #9EFF00 !important;
}

.wc-blocks-components-select__container .wc-blocks-components-select__select option {
    background: #262626 !important;
    color: #ffffff !important;
    padding: 0.5rem !important;
}

.wc-blocks-components-select__container .wc-blocks-components-select__expand,
.wc-blocks-components-select__container svg {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
}

.woocommerce-checkout .wc-block-components-form input::placeholder,
.woocommerce-checkout .wc-block-components-form textarea::placeholder {
    color: #7a838d !important;
}

.woocommerce-checkout .wc-block-components-form input:-webkit-autofill,
.woocommerce-checkout .wc-block-components-form input:-webkit-autofill:hover,
.woocommerce-checkout .wc-block-components-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0 1000px #262626 inset !important;
}