/* ============================================
   DOSED PEPTIDES - Complete Dark Theme
   ============================================ */

/* ---- RESET: Kill ALL Storefront default backgrounds ---- */
body,
.site-header,
.site-content,
.site-footer,
#page,
.content-area,
.hentry,
.storefront-sorting,
.col-full,
.woocommerce-active .site-header,
.storefront-primary-navigation,
.secondary-navigation,
table,
table th,
table td,
table tr,
.woocommerce-tabs,
.woocommerce-tabs .panel,
.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background-color: #000000 !important;
}

body {
    color: #c0c0c0;
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

p, li, td, th, span, div {
    color: #c0c0c0;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ---- REMOVE SIDEBAR ---- */
.widget-area,
.sidebar,
#secondary,
.storefront-sidebar,
aside.widget-area {
    display: none !important;
}

.content-area {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

.site-main {
    width: 100% !important;
}

/* ============================================
   STEP 2 — HEADER: Logo + Floating Pill Nav
   ============================================ */

.site-header {
    background: #000000 !important;
    border-bottom: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    z-index: 9999;
}

/* Hide default Storefront header contents */
.site-header .col-full > .site-branding,
.site-header .col-full > .site-search,
.site-header .col-full > .site-header-cart,
.storefront-primary-navigation,
.storefront-secondary-navigation,
.site-header-cart {
    display: none !important;
}

/* Our custom header wrapper */
.dosed-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Logo — hardcoded, bypasses WordPress/Jetpack */
.dosed-logo-wrap {
    flex-shrink: 0;
    z-index: 10;
}

.dosed-logo-link {
    display: block;
}

.dosed-logo-img {
    height: 70px;
    width: auto;
    display: block;
    max-width: none;
    border-radius: 0 !important;
}

/* Mobile header */
@media (max-width: 768px) {
    .dosed-header-wrap {
        padding: 12px 16px;
        gap: 8px;
    }

    .dosed-logo-img {
        height: 50px;
        width: auto;
        max-width: none;
    }
}

.dosed-site-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
}

.dosed-site-title:hover {
    color: #ffffff;
}

/* Floating pill nav: center-right */

/* Kill any Storefront/WP defaults that might clip logos */
.site-header .custom-logo-link img,
.custom-logo,
.site-logo img {
    max-width: none !important;
}
.dosed-nav-pill {
    display: flex;
    align-items: center;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 40px;
    gap: 0;
    margin-left: auto;
}

/* Nav list inside pill */
.dosed-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.dosed-nav-list li {
    margin: 0;
    padding: 0;
}

.dosed-nav-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    padding: 8px 18px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.dosed-nav-list li a:hover,
.dosed-nav-list li.current-menu-item a {
    color: #ffffff;
}

/* Cart icon inside pill */
.dosed-nav-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 8px 8px 18px;
    margin-left: 4px;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.dosed-nav-cart:hover {
    color: #ffffff;
}

.dosed-nav-cart svg {
    display: block;
}

.dosed-cart-badge {
    position: absolute;
    top: 0;
    right: -2px;
    background: #ffffff;
    color: #000000;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Mobile toggle */
.dosed-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 12px;
}

.dosed-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    
/* Kill any Storefront/WP defaults that might clip logos */
.site-header .custom-logo-link img,
.custom-logo,
.site-logo img {
    max-width: none !important;
}
.dosed-nav-pill {
        padding: 10px 16px;
        position: relative;
    }

    .dosed-mobile-toggle {
        display: flex;
    }

    .dosed-nav-list {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        background: rgba(30, 30, 30, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 16px 24px;
        flex-direction: column;
        min-width: 200px;
        z-index: 10001;
    }

    .dosed-nav-list.is-open {
        display: flex;
    }

    .dosed-nav-list li a {
        padding: 12px 8px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .dosed-nav-cart {
        border-left: none;
        padding-left: 8px;
    }
}

/* ============================================
   STEP 4 — FOOTER
   ============================================ */

.site-footer {
    background: #000000 !important;
    border-top: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide all default Storefront footer content */
.site-footer .col-full,
.site-footer .footer-widgets,
.site-info,
.storefront-handheld-footer-bar {
    display: none !important;
}

.dosed-footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dosed-footer a {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dosed-footer a:hover {
    color: #ffffff;
}

.dosed-footer-sep {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 20px;
    font-size: 12px;
}

/* ============================================
   STEP 5 — SINGLE PRODUCT PAGE
   ============================================ */

/* Two-column layout */
.single-product div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    align-items: start;
}

/* Image: left column */
.single-product div.product .woocommerce-product-gallery {
    position: relative;
}

.single-product div.product .woocommerce-product-gallery img {
    border: none !important;
    border-radius: 0;
    background: transparent !important;
}

/* Glow/reflection below image */
.single-product div.product .woocommerce-product-gallery::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 10%;
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(10px);
}

/* Summary: right column */
.single-product div.product .summary.entry-summary {
    padding-top: 20px;
}

/* Product title */
.single-product div.product .product_title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* Price */
.single-product div.product p.price,
.single-product div.product span.price,
.single-product div.product .woocommerce-Price-amount {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 2.5rem !important;
    margin-bottom: 20px;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.single-product div.product p.price del {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 1.5rem !important;
}

/* Short description */
.single-product div.product .woocommerce-product-details__short-description,
.single-product div.product .woocommerce-product-details__short-description p {
    color: #c0c0c0 !important;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Quantity selector */
.single-product .quantity {
    display: inline-flex;
    align-items: center;
    margin-right: 12px;
    margin-bottom: 16px;
}

.single-product .quantity .qty {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px;
    width: 70px;
    height: 50px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    -moz-appearance: textfield;
}

.single-product .quantity .qty::-webkit-inner-spin-button,
.single-product .quantity .qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ADD TO CART button */
.single-product .single_add_to_cart_button,
.single-product button.single_add_to_cart_button {
    background: #ffffff !important;
    color: #000000 !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    border: none !important;
    border-radius: 8px;
    padding: 15px 40px;
    width: 100%;
    display: block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.single-product .single_add_to_cart_button:hover {
    background: #e0e0e0 !important;
    color: #000000 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* Make quantity + button stack properly */
.single-product form.cart {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.single-product form.cart .quantity {
    margin-bottom: 16px;
}

.single-product form.cart .single_add_to_cart_button {
    margin-top: 0;
}

/* LEARN MORE button */
.dosed-learn-more-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    border-radius: 8px;
    padding: 15px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 12px;
    box-sizing: border-box;
}

.dosed-learn-more-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

/* WooCommerce Tabs - dark restyle */
.woocommerce-tabs {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 30px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    list-style: none;
    display: flex;
    gap: 0;
    padding: 0;
    margin: 0 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
    display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

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

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce div.product .woocommerce-tabs .panel p {
    color: #c0c0c0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Single product responsive */
@media (max-width: 768px) {
    .single-product div.product {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 24px 16px;
    }

    .single-product div.product .product_title {
        font-size: 1.5rem;
    }

    .single-product div.product p.price,
    .single-product div.product span.price,
    .single-product div.product .woocommerce-Price-amount {
        font-size: 2rem !important;
    }
}

/* ============================================
   STEP 6 — SHOP PAGE / PRODUCT GRID
   ============================================ */

/* 3 column grid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0;
    margin: 0;
}

@media (max-width: 900px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}

/* Product cards */
.woocommerce ul.products li.product {
    background: #111111;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* Product card images */
.woocommerce ul.products li.product img,
.woocommerce ul.products li.product a img {
    border: none !important;
    background: transparent !important;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* Product card names */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
    color: #ffffff !important;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* Product card prices */
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .price span {
    color: #ffffff !important;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* Product card button */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button {
    background: #ffffff !important;
    color: #000000 !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    border: none !important;
    border-radius: 8px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 12px;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.add_to_cart_button:hover {
    background: #e0e0e0 !important;
    color: #000000 !important;
    transform: translateY(-1px);
}

/* Sale badge */
.woocommerce span.onsale {
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    border-radius: 4px;
}

/* ============================================
   STEP 7 — FORMS: Cart, Checkout, My Account
   ============================================ */

/* Input fields */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="date"],
textarea,
select,
.input-text,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
    background: #111111 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus,
.input-text:focus {
    border-color: rgba(255, 255, 255, 0.5) !important;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05);
}

::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

/* Labels */
label,
.woocommerce form .form-row label {
    color: #c0c0c0 !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Select2 dropdowns (used in WooCommerce) */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #ffffff transparent transparent transparent;
}

.select2-dropdown {
    background: #111111 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.select2-container--default .select2-results__option {
    color: #c0c0c0;
}

/* All WooCommerce buttons */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce .cart .button,
.woocommerce .checkout-button,
.woocommerce #place_order,
button[type="submit"],
input[type="submit"] {
    background: #ffffff !important;
    color: #000000 !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    border: none !important;
    border-radius: 8px;
    padding: 15px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    background: #e0e0e0 !important;
    color: #000000 !important;
    transform: translateY(-1px);
}

/* Cart page */
.woocommerce-cart .woocommerce table.shop_table {
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px;
}

.woocommerce table.shop_table th {
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.woocommerce table.shop_table td {
    color: #c0c0c0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.woocommerce table.shop_table td.product-name a {
    color: #ffffff !important;
}

.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal {
    color: #ffffff !important;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    background: #000000 !important;
}

/* Cart quantity */
.woocommerce .quantity .qty {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px;
}

/* Remove link in cart */
.woocommerce a.remove {
    color: rgba(255, 255, 255, 0.5) !important;
}

.woocommerce a.remove:hover {
    color: #ff4444 !important;
    background: transparent !important;
}

/* Checkout form */
.woocommerce-checkout .woocommerce-checkout-review-order-table {
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* My Account navigation */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
}

.woocommerce-MyAccount-navigation ul li a {
    color: rgba(255, 255, 255, 0.6) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    color: #ffffff !important;
}

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-info {
    background: #111111 !important;
    border-top-color: #ffffff !important;
    color: #ffffff !important;
}

.woocommerce-error {
    background: #111111 !important;
    border-top-color: #ff4444 !important;
    color: #ffffff !important;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
    color: #ffffff !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    color: #ffffff !important;
}

/* ============================================
   STEP 8 — HOMEPAGE HERO
   ============================================ */

.dosed-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 120px 24px 80px;
}

.dosed-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.1;
}

.dosed-hero p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    margin: 0 0 40px;
    font-weight: 400;
}

.dosed-hero-btn {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 18px 60px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dosed-hero-btn:hover {
    background: #e0e0e0;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

/* ============================================
   CONTACT FORM STYLES
   ============================================ */

.dosed-contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.dosed-form-half .dosed-form-field {
    flex: 1;
}

.dosed-form-field label {
    display: block;
    color: #c0c0c0 !important;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.dosed-form-field label .req { color: #ff4444; }
.dosed-form-field label .opt { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

.dosed-contact-form input,
.dosed-contact-form textarea {
    width: 100%;
}

.dosed-submit-btn {
    background: #ffffff !important;
    color: #000000 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 15px 40px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dosed-submit-btn:hover {
    background: #e0e0e0 !important;
    transform: translateY(-1px);
}

.dosed-contact-success {
    text-align: center;
    padding: 80px 24px;
}

.dosed-contact-success h2 {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin: 0 0 12px;
}

.dosed-contact-success p {
    color: #c0c0c0;
}

.dosed-contact-errors {
    background: rgba(255,68,68,0.08);
    border: 1px solid rgba(255,68,68,0.25);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.dosed-contact-errors p {
    color: #ff6b6b !important;
    margin: 0 0 4px;
    font-size: 0.9rem;
}

.dosed-recaptcha-notice {
    color: rgba(255,255,255,0.3) !important;
    font-size: 0.75rem;
}

.dosed-recaptcha-notice a { color: rgba(255,255,255,0.5) !important; }

.grecaptcha-badge { visibility: hidden !important; }

@media (max-width: 600px) {
    .dosed-form-half { flex-direction: column; }
}

/* ============================================
   MISC OVERRIDES
   ============================================ */

/* Kill Storefront breadcrumbs bar background */
.storefront-breadcrumb,
.woocommerce-breadcrumb {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.4);
}

.woocommerce-breadcrumb a {
    color: rgba(255, 255, 255, 0.4);
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    color: #ffffff !important;
    background: #111111 !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #ffffff !important;
    color: #000000 !important;
}

/* Star ratings */
.star-rating span::before,
.star-rating::before {
    color: #ffffff !important;
}

/* Price on any page */
.woocommerce .price .amount,
.woocommerce-Price-amount {
    color: #ffffff;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000000; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* Selection */
::selection { background: rgba(255,255,255,0.15); color: #ffffff; }

/* Ensure #content area is full width */
.col-full {
    max-width: 1400px;
    padding: 0 40px;
}

/* Terms checkbox row */
.dosed-terms-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c0c0c0 !important;
}

.dosed-terms-row input[type="checkbox"] {
    accent-color: #ffffff;
}

/* Hide "Home" title on homepage */
.home .entry-title {
    display: none !important;
}
