/*
Theme Name: Storefront Child
Theme URI: https://example.com/storefront-child
Description: Child theme for Storefront WooCommerce theme.
Author: Your Name
Author URI: https://example.com
Template: storefront
Version: 1.0.0
Text Domain: storefront-child
*/

/* Custom Fonts */
/* Avenir Font Family */
@font-face {
    font-family: 'Avenir';
    src: url('fonts/Avenir/Avenir Light/Avenir Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir';
    src: url('fonts/Avenir/Avenir Book/Avenir Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir';
    src: url('fonts/Avenir/Avenir Regular/Avenir Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir';
    src: url('fonts/Avenir/Avenir Heavy/Avenir Heavy.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir';
    src: url('fonts/Avenir/Avenir Black/Avenir Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Freight Big Pro Font Family */
@font-face {
    font-family: 'Freight Big Pro';
    src: url('fonts/Freight_Big_Pro/Freight Big Pro Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Freight Big Pro';
    src: url('fonts/Freight_Big_Pro/Freight Big Pro Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Freight Big Pro';
    src: url('fonts/Freight_Big_Pro/Freight Big Pro Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Freight Big Pro';
    src: url('fonts/Freight_Big_Pro/Freight Big Pro Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Global Styles */
body {
    background-color: #FFFFFF;
    color: #222222;
    font-family: 'Avenir', sans-serif;
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Freight Big Pro', serif;
}

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

/* Top Notice Bar */
.storefront-notice-bar {
    background-color: #8A9A86;
    color: #222222;
    padding: 12px 0;
    text-align: center;
    font-family: 'Avenir', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.notice-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.notice-bar-content .heart {
    color: #8A9A86;
    font-size: 16px;
}

/* Site Header */
.site-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 !important;
    --mobile-header-height: 72px;
}

/* Header Container */
.header-container {
    padding: 0;
    width: 100%;
}

.site-branding .site-title, .site-branding .site-description {
    display: none;
}

.site-header .site-logo-anchor, .site-header .site-logo-link, .site-header .custom-logo-link {
    text-align: center;
}

.site-header .site-logo-anchor img, .site-header .site-logo-link img, .site-header .custom-logo-link img {
    margin: 0px auto;
}

.woocommerce-active .site-header .site-branding {
    width: 100%;
    margin: 0;
}

/* Header Inner */
.header-inner {
    width: 90%;
    margin: 0 auto;
    padding: 15px 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 20;
    padding: 0;
}

.mobile-menu-bars,
.mobile-menu-bars::before,
.mobile-menu-bars::after {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background-color: #222222;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-bars::before {
    transform: translateY(-7px);
}

.mobile-menu-bars::after {
    transform: translateY(5px);
}

.mobile-menu-toggle:checked + .mobile-menu-button .mobile-menu-bars {
    background-color: transparent;
}

.mobile-menu-toggle:checked + .mobile-menu-button .mobile-menu-bars::before {
    transform: rotate(45deg);
}

.mobile-menu-toggle:checked + .mobile-menu-button .mobile-menu-bars::after {
    transform: rotate(-45deg);
}

.mobile-menu-panel {
    position: fixed;
    top: 180px;
    right: 0;
    bottom: 0;
    width: 20rem;
    max-width: 100%;
    background-color: #FFFFFF;
    box-shadow: -24px 0 80px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 19;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.mobile-menu-toggle:checked ~ .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-panel::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(34,34,34,0.08);
}

.mobile-navigation {
    flex: 1;
    overflow-y: auto;
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(34,34,34,0.08);
}

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

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    font-family: 'Avenir', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #222222;
    text-decoration: none;
}

.mobile-header-actions {
    display: none;
}

.mobile-search-icon,
.mobile-cart-icon {
    display: none;
}

.mobile-menu-actions {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.mobile-menu-button-link {
    display: inline-flex;
    width: 100%;
    padding: 1rem 1.25rem;
    justify-content: center;
    align-items: center;
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
}

.mobile-menu-button-link:hover {
    opacity: 0.92;
}

.mobile-menu-button-link:not(.mobile-menu-whatsapp) {
    background-color: #222222;
    border-radius: 2px;
}

.mobile-menu-button-link.mobile-menu-whatsapp {
    background-color: #8A9A86;
    color: #222222;
    border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0;
    }
    
    .header-inner {
        width: 100%;
        padding: 15px;
        position: relative;
    }

    .header-row {
        grid-template-columns: 140px 1fr;
        gap: 0;
        padding: 0 !important;
    }

    .header-row.header-row-2 {
        display: none;
    }

    .header-col-left {
        display: none;
    }

    .header-col-center {
        justify-self: start;
    }

    .header-col-right {
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 0;
    }

    .whatsapp-link {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .mobile-header-actions {
        display: flex;
        gap: 0.75rem;
        align-items: center;
    }

    .mobile-header-actions .mobile-search-icon,
    .mobile-header-actions .mobile-cart-icon,
    .mobile-header-actions .mobile-menu-button {
        display: flex;
    }

    .mobile-menu-button-link {
        width: 100%;
    }
}

/* Header Rows */
.header-row {
    display: grid;
    grid-template-columns: 140px 1fr 140px;
    align-items: center;
    padding: 0 !important;
    gap: 20px;
}

/* Header Columns */
.header-col-left {
    text-align: left;
}

.header-col-center {
    text-align: center;
}

.header-col-right {
    text-align: right;
}

/* Contact & WhatsApp Links */
.contact-link,
.whatsapp-link {
    font-family: 'Avenir', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: #222222;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 200;
    letter-spacing: 1px;
}

.contact-link:hover,
.whatsapp-link:hover {
    color: #8A9A86;
}

/* Site Branding */
.site-branding {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.site-branding img {
    max-width: 150px;
    height: auto;
    margin-bottom: 5px;
}

.site-title {
    font-family: 'Freight Big Pro', serif;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

.site-title a {
    color: #222222;
    text-decoration: none;
}

.site-description {
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    color: #999;
    margin: 2px 0 0 0;
}

/* Main Navigation Menu */
.main-navigation {
    display: flex;
    justify-content: center;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.main-menu li {
    position: relative;
}

.main-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background-color: #222222;
    transition: 0.3s ease all;
    opacity: 0.3;
}

.main-menu a {
    display: block;
    padding: 5px 1rem !important;
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    font-weight: 200;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #222222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-menu a:hover {
    color: #8A9A86;
}

.woocommerce-active .site-header .main-navigation {
    width: 100% !important;
    float: left;
    margin-right: 0px;
    clear: both;
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.search-icon,
.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222222;
    text-decoration: none;
    position: relative;
    transition: opacity 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.search-icon svg,
.cart-icon svg {
    width: 22px;
    height: 22px;
}

.search-icon:hover svg path,
.cart-icon:hover svg path {
    fill: #8A9A86;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #8A9A86;
    color: #fff;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

/* ===== ARCHIVE PAGE STYLES ===== */

.category-top-section {
    padding: 60px 0 30px;
    background-color: #FFFFFF;
}

.category-top-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.category-page-title {
    font-family: 'Freight Big Pro', serif;
    font-size: 44px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 20px;
}

.category-page-description {
    font-family: 'Avenir', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #222222;
    max-width: 820px;
    margin: 0 auto;
}

.category-toolbar-row {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}

.category-toolbar-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.category-toolbar-left {
    font-family: 'Avenir', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #5F625D;
}

.category-toolbar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: 320px;
    min-width: 0;
}

/* ===== WOOCOMMERCE SHOP EXPERIENCE ===== */

:root {
    /*
    UK Wedding Favors palette.
    Pure white canvas, soft black text, and sage green accents.
    */
    --nv-ink: #222222;
    --nv-muted: #5F625D;
    --nv-cream: #FFFFFF;
    --nv-panel: #FFFFFF;
    --nv-blush: #8A9A86;
    --nv-rose: #8A9A86;
    --nv-sage: #8A9A86;
    --nv-line: rgba(34, 34, 34, 0.13);
    --nv-shadow: 0 18px 45px rgba(34, 34, 34, 0.07);
}

.nikkahveil-commerce #content {
    width: 100%;
    padding: 0;
}

.nikkahveil-commerce #content > .col-full {
    width: min(90%, 1240px);
    max-width: none;
    margin: 0 auto;
    padding: 18px 0 72px;
}

.nikkahveil-commerce .content-area {
    width: 100%;
    float: none;
    margin: 0;
}

.nikkahveil-commerce .widget-area,
.nikkahveil-commerce .storefront-breadcrumb {
    display: none;
}

.nikkahveil-commerce .nv-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 18px;
    padding: 0 0 14px;
    border-bottom: 1px solid var(--nv-line);
    color: var(--nv-muted);
    font-family: 'Avenir', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.nikkahveil-commerce .nv-breadcrumb a {
    color: var(--nv-muted);
    text-decoration: none;
}

.nikkahveil-commerce .nv-breadcrumb a:hover {
    color: var(--nv-ink);
}

.woocommerce-products-header {
    position: relative;
    margin: 0 0 28px;
    padding: 64px 7vw 56px;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(138, 154, 134, 0.72)),
        #FFFFFF;
    border: 1px solid rgba(34, 34, 34, 0.08);
}

.woocommerce-products-header::before,
.woocommerce-products-header::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.woocommerce-products-header::before {
    inset: 18px;
    border: 1px solid rgba(34, 34, 34, 0.08);
}

.woocommerce-products-header::after {
    width: 160px;
    height: 160px;
    right: -54px;
    bottom: -58px;
    border: 1px solid rgba(138, 154, 134, 0.28);
    transform: rotate(18deg);
}

.woocommerce-products-header .woocommerce-products-header__title,
.woocommerce-products-header .page-title {
    position: relative;
    z-index: 1;
    margin: 0 auto 14px;
    max-width: 860px;
    color: var(--nv-ink);
    font-family: 'Freight Big Pro', serif;
    font-size: clamp(42px, 7vw, 82px);
    font-weight: 400;
    line-height: 0.96;
}

.woocommerce-products-header .term-description,
.woocommerce-products-header .page-description {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    color: var(--nv-muted);
    font-family: 'Avenir', sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.category-page-kicker {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    color: var(--nv-sage);
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.storefront-sorting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 30px;
    padding: 16px 0;
    border-top: 1px solid var(--nv-line);
    border-bottom: 1px solid var(--nv-line);
}

.storefront-sorting::before,
.storefront-sorting::after {
    display: none;
}

.woocommerce-result-count {
    margin: 0;
    padding: 0;
    color: var(--nv-muted);
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.woocommerce-ordering {
    position: relative;
    margin: 0;
    padding: 0;
}

.woocommerce-ordering select,
.custom-select-button {
    position: relative;
    min-width: 220px;
    height: 44px;
    padding: 0 42px 0 16px;
    border: 1px solid var(--nv-line);
    border-radius: 0;
    background-color: #fff;
    color: var(--nv-ink);
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: left;
    text-transform: uppercase;
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-button::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--nv-ink);
    border-bottom: 1px solid var(--nv-ink);
    transform: translateY(-68%) rotate(45deg);
}

.custom-select-options {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--nv-line);
    box-shadow: var(--nv-shadow);
}

.custom-select-options.open {
    display: block;
}

.custom-select-option {
    padding: 10px 12px;
    color: var(--nv-muted);
    cursor: pointer;
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.custom-select-option:hover,
.custom-select-option.selected {
    background: #FFFFFF;
    color: var(--nv-ink);
}

.archive-service-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: -8px 0 34px;
    background: var(--nv-line);
    border: 1px solid var(--nv-line);
}

.archive-service-strip span {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: #FFFFFF;
    color: var(--nv-ink);
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.site-main ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px 28px;
    clear: both;
}

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

.site-main ul.products li.product,
.site-main ul.products.columns-2 li.product,
.site-main ul.products.columns-3 li.product,
.site-main ul.products.columns-4 li.product {
    display: flex;
    width: auto;
    float: none;
    flex-direction: column;
    margin: 0;
    padding: 0 0 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(34, 34, 34, 0.08);
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-main ul.products li.product:hover {
    transform: translateY(-4px);
    border-color: rgba(138, 154, 134, 0.28);
    box-shadow: var(--nv-shadow);
}

ul.products li.product .woocommerce-LoopProduct-link {
    color: inherit;
    text-decoration: none;
}

ul.products li.product img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    margin: 0 0 18px;
    background: #FFFFFF;
}

.product-card-eyebrow {
    padding: 0 18px;
    color: var(--nv-sage);
    font-family: 'Avenir', sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-category__title {
    padding: 6px 18px 0;
    color: var(--nv-ink);
    font-family: 'Freight Big Pro', serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.05;
}

ul.products li.product .price {
    padding: 0 18px;
    margin: 12px 0 8px;
    color: var(--nv-ink);
    font-family: 'Avenir', sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.product-card-note {
    padding: 0 18px;
    color: var(--nv-muted);
    font-size: 13px;
}

ul.products li.product .onsale {
    position: absolute;
    top: 12px;
    left: 12px;
    margin: 0;
    padding: 7px 10px;
    border: 0;
    background: var(--nv-rose);
    color: #fff;
    font-family: 'Avenir', sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

ul.products li.product .button {
    align-self: stretch;
    margin: 18px 18px 0;
    padding: 13px 16px;
    background: var(--nv-ink);
    color: #fff;
    border: 1px solid var(--nv-ink);
    border-radius: 0;
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

ul.products li.product .button:hover {
    background: var(--nv-rose);
    border-color: var(--nv-rose);
    color: #fff;
}

.woocommerce-pagination {
    float: none;
    margin-top: 36px;
}

.woocommerce-pagination .page-numbers {
    border: 0;
}

.woocommerce-pagination .page-numbers li .page-numbers {
    min-width: 42px;
    height: 42px;
    padding: 11px 12px;
    border: 1px solid var(--nv-line);
    background: #fff;
    color: var(--nv-ink);
}

.woocommerce-pagination .page-numbers li .page-numbers.current,
.woocommerce-pagination .page-numbers li .page-numbers:hover {
    background: var(--nv-ink);
    color: #fff;
}

/* ===== SINGLE PRODUCT ===== */

.single-product div.product {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 56px;
    align-items: start;
    overflow: visible;
}

.single-product div.product::before,
.single-product div.product::after {
    display: none;
}

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

.single-product div.product .summary {
    position: sticky;
    top: 28px;
    width: auto;
    float: none;
    margin: 0;
    padding: 34px;
    background: #fff;
    border: 1px solid rgba(34, 34, 34, 0.1);
    box-shadow: 0 18px 45px rgba(34, 34, 34, 0.06);
}

.single-product div.product .woocommerce-product-gallery img {
    width: 100%;
    background: #FFFFFF;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
    margin-bottom: 16px;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

.single-product-eyebrow {
    margin-bottom: 10px;
    color: var(--nv-sage);
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.single-product div.product .product_title {
    margin: 0 0 16px;
    color: var(--nv-ink);
    font-family: 'Freight Big Pro', serif;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 400;
    line-height: 0.98;
}

.single-product div.product p.price {
    margin: 0 0 22px;
    color: var(--nv-ink);
    font-family: 'Avenir', sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.single-product div.product .woocommerce-product-details__short-description {
    color: var(--nv-muted);
    font-size: 16px;
    line-height: 1.8;
}

.single-product div.product form.cart {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin: 24px 0 0;
    padding: 0;
}

.single-product div.product form.cart .quantity {
    float: none;
    margin: 0;
}

.single-product div.product .quantity .qty {
    width: 76px;
    height: 52px;
    padding: 0;
    border: 1px solid var(--nv-line);
    background: #FFFFFF;
    color: var(--nv-ink);
    font-weight: 900;
}

.single-product div.product form.cart .button {
    flex: 1;
    min-height: 52px;
    padding: 15px 22px;
    background: var(--nv-ink);
    border: 1px solid var(--nv-ink);
    border-radius: 0;
    color: #fff;
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.single-product div.product form.cart .button:hover {
    background: var(--nv-rose);
    border-color: var(--nv-rose);
}

.single-product-highlights {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--nv-line);
    list-style: none;
}

.single-product-highlights li {
    position: relative;
    padding-left: 26px;
    color: var(--nv-muted);
    font-size: 14px;
    line-height: 1.5;
}

.single-product-highlights li::before {
    content: '';
    position: absolute;
    top: 0.42em;
    left: 2px;
    width: 9px;
    height: 9px;
    border: 1px solid var(--nv-sage);
    background: #F5F7F4;
    transform: rotate(45deg);
}

.single-product div.product .product_meta {
    margin-top: 22px;
    padding-top: 18px;
    color: var(--nv-muted);
    border-top: 1px solid var(--nv-line);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-care-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 34px;
    margin: 42px 0 0;
    padding: 42px;
    background: #FFFFFF;
    border: 1px solid rgba(34, 34, 34, 0.08);
}

.product-care-panel h2 {
    margin: 0 0 10px;
    color: var(--nv-ink);
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
}

.product-care-panel p {
    margin: 0;
    color: var(--nv-muted);
    font-size: 15px;
    line-height: 1.8;
}

.product-care-steps {
    display: grid;
    gap: 12px;
    counter-reset: care-step;
}

.product-care-steps span {
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    color: var(--nv-ink);
    font-family: 'Avenir', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-care-steps span::before {
    counter-increment: care-step;
    content: counter(care-step, decimal-leading-zero);
    color: var(--nv-rose);
    font-weight: 900;
}

.woocommerce-tabs {
    grid-column: 1 / -1;
    padding: 56px 0 0;
    border-top: 1px solid var(--nv-line);
}

.woocommerce-tabs ul.tabs,
.storefront-full-width-content .woocommerce-tabs ul.tabs {
    width: 28%;
    margin: 0;
}

.woocommerce-tabs .panel,
.storefront-full-width-content .woocommerce-tabs .panel {
    width: 66%;
    margin: 0;
    color: var(--nv-muted);
    font-size: 15px;
    line-height: 1.8;
}

.woocommerce-tabs ul.tabs li a {
    color: var(--nv-ink);
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.related.products,
.up-sells.products {
    grid-column: 1 / -1;
    margin-top: 56px;
    padding-top: 42px;
    border-top: 1px solid var(--nv-line);
}

.related.products > h2,
.up-sells.products > h2 {
    margin-bottom: 28px;
    color: var(--nv-ink);
    font-size: 44px;
    font-weight: 400;
    text-align: center;
}

@media (max-width: 980px) {
    .site-main ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 20px;
    }

    .single-product div.product {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .single-product div.product .summary {
        position: relative;
        top: auto;
        padding: 28px;
    }

    .product-care-panel {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .woocommerce-tabs ul.tabs,
    .storefront-full-width-content .woocommerce-tabs ul.tabs,
    .woocommerce-tabs .panel,
    .storefront-full-width-content .woocommerce-tabs .panel {
        width: 100%;
        float: none;
    }

    .woocommerce-tabs ul.tabs {
        margin-bottom: 22px;
    }
}

@media (max-width: 768px) {
    .nikkahveil-commerce #content > .col-full {
        width: min(92%, 1240px);
        padding: 28px 0 54px;
    }

    .woocommerce-products-header {
        padding: 44px 22px 40px;
        margin-bottom: 22px;
    }

    .woocommerce-products-header::before {
        inset: 10px;
    }

    .storefront-sorting {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .woocommerce-ordering,
    .woocommerce-ordering select,
    .custom-select-button,
    .custom-select-wrapper {
        width: 100%;
    }

    .archive-service-strip {
        grid-template-columns: 1fr;
        margin-bottom: 28px;
    }

    .archive-service-strip span {
        min-height: 48px;
    }

    ul.products li.product .woocommerce-loop-product__title,
    ul.products li.product .woocommerce-loop-category__title {
        font-size: 24px;
    }

    .single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .single-product div.product form.cart {
        flex-direction: column;
    }

    .single-product div.product .quantity .qty,
    .single-product div.product form.cart .button {
        width: 100%;
    }

    .product-care-panel h2,
    .related.products > h2,
    .up-sells.products > h2 {
        font-size: 34px;
    }
}

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

    .single-product div.product .summary {
        padding: 22px;
    }

    .single-product div.product .product_title {
        font-size: 40px;
    }

    .product-care-panel {
        padding: 24px;
    }

    .product-care-steps span {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}

/* ===== MAIN CONTENT CONTAINER ===== */

#content {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
    min-height: 50vh;
}

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

.site-footer {
    background-color: #FFFFFF;
    color: #222222;
    padding: 0;
}

.footer-top {
    padding: 80px 0 60px;
    background-color: #FFFFFF;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-column h3,
.footer-column h4,
.footer-column .widgettitle {
    font-family: 'Freight Big Pro', serif;
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #8A9A86;
}

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

.footer-column ul li {
    margin: 0 0 14px 0;
}

.footer-column ul li a {
    font-family: 'Avenir', sans-serif;
    font-size: 14px;
    color: #222222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #8A9A86;
}

.footer-column p {
    font-family: 'Avenir', sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: #5F625D;
    margin: 0;
}

.footer-copyright {
    background-color: #FFFFFF;
    padding: 30px 0;
    border-top: 1px solid rgba(138, 154, 134, 0.28);
}

.footer-copyright-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.copyright-left {
    text-align: left;
}

.copyright-right {
    text-align: right;
}

.copyright-center {
    text-align: center;
}

.footer-copyright-container p {
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    color: #5F625D;
    margin: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-icon:not(.pinterest) {
    display: none;
}

.social-icon:hover {
    opacity: 0.8;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-columns {
        gap: 30px;
    }

    .footer-copyright-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 60px 0 40px;
    }

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

    .footer-copyright-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .copyright-left,
    .copyright-right {
        justify-content: center;
        text-align: center;
    }

    .copyright-left p,
    .copyright-right p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-copyright-container {
        grid-template-columns: 1fr;
    }

    .social-icons {
        gap: 15px;
    }
}

/* Storefront compatibility overrides. Keep these at the end so WooCommerce layout rules cannot re-float cards. */
body.nikkahveil-commerce.storefront-full-width-content .site-main ul.products,
body.nikkahveil-commerce .site-main ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px 28px;
    width: 100%;
    margin: 0;
}

body.nikkahveil-commerce.storefront-full-width-content .site-main ul.products::before,
body.nikkahveil-commerce.storefront-full-width-content .site-main ul.products::after,
body.nikkahveil-commerce .site-main ul.products::before,
body.nikkahveil-commerce .site-main ul.products::after {
    display: none;
}

body.nikkahveil-commerce.storefront-full-width-content .site-main ul.products[class*="columns-"] li.product,
body.nikkahveil-commerce .site-main ul.products[class*="columns-"] li.product,
body.nikkahveil-commerce .site-main ul.products li.product {
    width: auto !important;
    float: none !important;
    clear: none !important;
    margin: 0 !important;
}

body.nikkahveil-commerce.storefront-full-width-content.single-product div.product,
body.nikkahveil-commerce.single-product div.product {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 56px;
    align-items: start;
    overflow: visible;
}

body.nikkahveil-commerce.storefront-full-width-content.single-product div.product::before,
body.nikkahveil-commerce.storefront-full-width-content.single-product div.product::after,
body.nikkahveil-commerce.single-product div.product::before,
body.nikkahveil-commerce.single-product div.product::after {
    display: none;
}

body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .woocommerce-product-gallery,
body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .images,
body.nikkahveil-commerce.single-product div.product .woocommerce-product-gallery,
body.nikkahveil-commerce.single-product div.product .images {
    grid-column: 1;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .summary,
body.nikkahveil-commerce.single-product div.product .summary {
    grid-column: 2;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .product-care-panel,
body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .woocommerce-tabs,
body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .related.products,
body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .up-sells.products,
body.nikkahveil-commerce.single-product div.product .product-care-panel,
body.nikkahveil-commerce.single-product div.product .woocommerce-tabs,
body.nikkahveil-commerce.single-product div.product .related.products,
body.nikkahveil-commerce.single-product div.product .up-sells.products {
    grid-column: 1 / -1;
}

.storefront-product-pagination {
    display: none;
}

@media (max-width: 980px) {
    body.nikkahveil-commerce.storefront-full-width-content .site-main ul.products,
    body.nikkahveil-commerce .site-main ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 20px;
    }

    body.nikkahveil-commerce.storefront-full-width-content.single-product div.product,
    body.nikkahveil-commerce.single-product div.product {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .woocommerce-product-gallery,
    body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .images,
    body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .summary,
    body.nikkahveil-commerce.single-product div.product .woocommerce-product-gallery,
    body.nikkahveil-commerce.single-product div.product .images,
    body.nikkahveil-commerce.single-product div.product .summary {
        grid-column: 1;
    }
}

@media (max-width: 560px) {
    body.nikkahveil-commerce.storefront-full-width-content .site-main ul.products,
    body.nikkahveil-commerce .site-main ul.products {
        grid-template-columns: 1fr;
    }
}

/* ===== VISUAL REFINEMENT PASS ===== */

body {
    background: var(--nv-cream);
    color: var(--nv-ink);
}

#content,
.nikkahveil-commerce #content {
    width: 100%;
    background: var(--nv-cream);
}

#content > .col-full,
.nikkahveil-commerce #content > .col-full,
.footer-container,
.footer-copyright-container {
    width: 90%;
    max-width: 1440px;
}

.nikkahveil-commerce #content > .col-full {
    padding: 32px 0 74px;
}

.woocommerce-products-header {
    margin: 0 0 24px;
    padding: 46px 32px 42px;
    background: var(--nv-panel);
    border-color: rgba(34, 34, 34, 0.08);
}

.woocommerce-products-header::before {
    inset: 14px;
    border-color: rgba(34, 34, 34, 0.08);
}

.woocommerce-products-header::after {
    display: none;
}

.woocommerce-products-header .woocommerce-products-header__title,
.woocommerce-products-header .page-title {
    margin-bottom: 10px;
    font-size: clamp(44px, 5.8vw, 72px);
    line-height: 0.94;
}

.woocommerce-products-header .term-description,
.woocommerce-products-header .page-description {
    max-width: 620px;
    font-size: 14px;
    line-height: 1.75;
}

.category-page-kicker {
    margin-top: 14px;
    color: var(--nv-muted);
    font-size: 10px;
    letter-spacing: 0.2em;
}

.storefront-sorting {
    margin: 0 0 24px;
    padding: 16px 0;
    background: transparent;
    border-color: rgba(34, 34, 34, 0.11);
}

.woocommerce-ordering select,
.custom-select-button {
    min-width: 190px;
    height: 36px;
    background: #fff;
    border-color: rgba(34, 34, 34, 0.1);
    font-size: 10px;
    letter-spacing: 0.12em;
}

.woocommerce-result-count {
    color: var(--nv-muted);
    font-size: 10px;
    letter-spacing: 0.16em;
}

.archive-service-strip {
    margin: 0 0 30px;
    background: rgba(34, 34, 34, 0.1);
    border-color: rgba(34, 34, 34, 0.1);
}

.archive-service-strip span {
    min-height: 46px;
    background: #FFFFFF;
    color: var(--nv-ink);
    font-size: 10px;
    letter-spacing: 0.16em;
}

body.nikkahveil-commerce.storefront-full-width-content .site-main ul.products,
body.nikkahveil-commerce .site-main ul.products {
    gap: 46px 34px;
}

.site-main ul.products li.product,
.site-main ul.products.columns-2 li.product,
.site-main ul.products.columns-3 li.product,
.site-main ul.products.columns-4 li.product,
body.nikkahveil-commerce.storefront-full-width-content .site-main ul.products[class*="columns-"] li.product,
body.nikkahveil-commerce .site-main ul.products[class*="columns-"] li.product,
body.nikkahveil-commerce .site-main ul.products li.product {
    padding-bottom: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.site-main ul.products li.product:hover {
    transform: none;
    box-shadow: none;
}

ul.products li.product img {
    aspect-ratio: 4 / 5.25;
    margin-bottom: 16px;
    background: var(--nv-panel);
}

.product-card-eyebrow {
    padding: 0;
    color: var(--nv-muted);
    font-size: 9px;
    letter-spacing: 0.18em;
}

ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-category__title {
    padding: 7px 0 0;
    max-width: 95%;
    font-size: 24px;
    line-height: 1.03;
}

ul.products li.product .price {
    padding: 0;
    margin: 11px 0 5px;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.product-card-note {
    padding: 0;
    color: var(--nv-muted);
    font-size: 12px;
}

ul.products li.product .button {
    width: 100%;
    margin: 16px 0 0;
    padding: 12px 14px;
    background: var(--nv-ink);
    border-color: var(--nv-ink);
    font-size: 10px;
    letter-spacing: 0.16em;
}

ul.products li.product .button:hover {
    background: var(--nv-rose);
    border-color: var(--nv-rose);
}

ul.products li.product .onsale {
    top: 10px;
    left: 10px;
    padding: 6px 8px;
    background: #7B8C77;
    font-size: 9px;
    letter-spacing: 0.12em;
}

.woocommerce-pagination {
    margin-top: 34px;
}

body.nikkahveil-commerce.storefront-full-width-content.single-product div.product,
body.nikkahveil-commerce.single-product div.product {
    gap: 48px;
}

.single-product div.product .summary,
body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .summary,
body.nikkahveil-commerce.single-product div.product .summary {
    padding: 30px;
    background: #fff;
    border-color: rgba(34, 34, 34, 0.08);
    box-shadow: 0 16px 42px rgba(34, 34, 34, 0.05);
}

.single-product div.product .product_title {
    font-size: clamp(42px, 4.8vw, 62px);
}

.single-product div.product .woocommerce-product-details__short-description {
    font-size: 14px;
    line-height: 1.75;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
    gap: 8px;
}

.product-care-panel {
    background: var(--nv-panel);
    border: 0;
}

.product-care-steps span {
    background: #FFFFFF;
}

.woocommerce-tabs {
    border-color: rgba(34, 34, 34, 0.12);
}

.related.products,
.up-sells.products {
    border-color: rgba(34, 34, 34, 0.12);
}

.site-footer {
    background: var(--nv-panel);
    color: var(--nv-ink);
}

.footer-top {
    padding: 72px 0 56px;
    background: var(--nv-panel);
}

.footer-columns {
    grid-template-columns: 1.15fr repeat(3, 1fr);
    gap: 56px;
}

.footer-column h3,
.footer-column h4,
.footer-column .widgettitle {
    color: var(--nv-ink);
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 24px;
    font-weight: 400;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a,
.footer-column p {
    color: var(--nv-muted);
    font-size: 13px;
}

.footer-column ul li a:hover {
    color: var(--nv-rose);
}

.footer-copyright {
    background: #FFFFFF;
    border-top: 1px solid rgba(34, 34, 34, 0.1);
}

.footer-copyright-container p {
    color: var(--nv-muted);
}

.social-icon svg path {
    fill: var(--nv-muted);
}

.copyright-right a {
    color: inherit;
    text-decoration: none;
}

.copyright-right a:hover {
    color: var(--nv-rose);
}

.social-icon:hover svg path {
    fill: var(--nv-rose);
}

@media (max-width: 980px) {
    body.nikkahveil-commerce.storefront-full-width-content .site-main ul.products,
    body.nikkahveil-commerce .site-main ul.products {
        gap: 38px 24px;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

@media (max-width: 768px) {
    #content > .col-full,
    .nikkahveil-commerce #content > .col-full,
    .footer-container,
    .footer-copyright-container {
        width: 90%;
    }

    .woocommerce-products-header {
        padding: 38px 20px 34px;
    }

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

/* ===== KWH REFERENCE PRODUCT LAYOUT ===== */

body.nikkahveil-commerce.storefront-full-width-content .site-main ul.products,
body.nikkahveil-commerce .site-main ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px 28px;
}

ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-category__title {
    font-size: 21px;
    line-height: 1.05;
}

ul.products li.product .price {
    font-size: 11px;
}

body.single-product.nikkahveil-commerce #content > .col-full {
    width: 90%;
    max-width: 1440px;
    padding-top: 54px;
}

body.nikkahveil-commerce.storefront-full-width-content.single-product div.product,
body.nikkahveil-commerce.single-product div.product {
    grid-template-columns: minmax(420px, 0.88fr) minmax(420px, 1fr);
    gap: clamp(56px, 8vw, 118px);
    align-items: start;
}

body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .woocommerce-product-gallery,
body.nikkahveil-commerce.single-product div.product .woocommerce-product-gallery,
body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .images,
body.nikkahveil-commerce.single-product div.product .images {
    max-width: 560px;
    justify-self: end;
}

body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .summary,
body.nikkahveil-commerce.single-product div.product .summary {
    max-width: 540px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    justify-self: start;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport,
.single-product div.product .woocommerce-product-gallery img {
    background: var(--nv-panel);
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
    margin-bottom: 12px;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    opacity: 1;
}

.single-product-eyebrow {
    display: none;
}

.single-product div.product .product_title {
    margin-bottom: 10px;
    font-size: clamp(42px, 4.5vw, 60px);
    line-height: 0.96;
}

.single-product div.product p.price {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(34, 34, 34, 0.1);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.single-product div.product .woocommerce-product-details__short-description {
    margin-bottom: 32px;
    color: #5F625D;
    font-size: 14px;
    line-height: 1.82;
}

.single-product div.product form.cart {
    display: block;
    margin: 30px 0 0;
}

.single-product div.product table.variations {
    width: 100%;
    margin: 0 0 10px;
}

.single-product div.product table.variations tr {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 10px;
}

.single-product div.product table.variations th,
.single-product div.product table.variations td {
    display: block;
    padding: 0;
    list-style: none;
}

.single-product div.product table.variations label {
    margin: 0;
    color: var(--nv-muted);
    font-family: 'Avenir', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.single-product div.product table.variations select {
    width: 100%;
    max-width: none;
    min-height: 48px;
    padding: 0 42px 0 18px;
    background-color: var(--nv-panel);
    border: 0;
    color: var(--nv-ink);
    font-family: 'Avenir', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.single-product div.product .single_variation_wrap,
.single-product div.product .variations_button {
    width: 100%;
}

.single-product div.product .single_variation {
    margin: 10px 0;
}

.nikkahveil-personalization {
    margin: 18px 0 20px;
    padding: 22px;
    background: #FFFFFF;
    border: 1px solid rgba(34, 34, 34, 0.10);
}

.nikkahveil-personalization__header {
    margin-bottom: 18px;
}

.nikkahveil-personalization__header p {
    margin: 0;
    color: var(--nv-ink);
    font-family: 'Freight Big Pro', serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
}

.nikkahveil-personalization__header span {
    display: block;
    margin-top: 8px;
    color: var(--nv-muted);
    font-size: 12px;
    line-height: 1.5;
}

.nikkahveil-personalization__field {
    margin: 0 0 14px;
    padding: 0;
    border: 0;
}

.nikkahveil-personalization__field:last-child {
    margin-bottom: 0;
}

.nikkahveil-personalization__field label,
.nikkahveil-personalization__field legend {
    display: block;
    margin: 0 0 8px;
    color: var(--nv-muted);
    font-family: 'Avenir', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.nikkahveil-personalization__choices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.nikkahveil-personalization__choices label {
    margin: 0;
}

.nikkahveil-personalization__choices input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.nikkahveil-personalization__choices span {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--nv-panel);
    border: 1px solid transparent;
    color: var(--nv-ink);
    font-family: 'Avenir', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
}

.nikkahveil-personalization__choices input:checked + span {
    background: var(--nv-ink);
    border-color: var(--nv-ink);
    color: #fff;
}

.nikkahveil-personalization__choices input:focus-visible + span {
    outline: 2px solid var(--nv-rose);
    outline-offset: 2px;
}

.nikkahveil-personalization__date {
    display: none;
}

.nikkahveil-personalization.has-event-date .nikkahveil-personalization__date {
    display: block;
}

.nikkahveil-personalization input[type="text"],
.nikkahveil-personalization input[type="date"],
.nikkahveil-personalization textarea {
    width: 100%;
    min-height: 48px;
    padding: 13px 14px;
    background: var(--nv-panel);
    border: 1px solid transparent;
    border-radius: 0;
    color: var(--nv-ink);
    font-family: 'Avenir', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: none;
}

.nikkahveil-personalization textarea {
    min-height: 92px;
    resize: vertical;
}

.nikkahveil-personalization input[type="text"]:focus,
.nikkahveil-personalization input[type="date"]:focus,
.nikkahveil-personalization textarea:focus {
    background: #fff;
    border-color: rgba(34, 34, 34, 0.28);
    outline: 0;
}

.single-product div.product .quantity {
    display: none;
}

.single-product div.product form.cart .button,
.single-product div.product form.cart .nikkahveil-secondary-product-cta {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin: 0 0 10px;
    padding: 15px 18px;
    background: var(--nv-blush);
    border: 0;
    color: var(--nv-ink);
    font-family: 'Avenir', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
}

.single-product div.product form.cart .button:hover,
.single-product div.product form.cart .nikkahveil-secondary-product-cta:hover {
    background: var(--nv-ink);
    color: #fff;
}

.single-product div.product form.cart .nikkahveil-secondary-product-cta {
    background: #FFFFFF;
}

.single-product div.product .reset_variations {
    display: inline-block;
    margin: 6px 0 0;
    color: var(--nv-muted);
    font-size: 11px;
}

.nikkahveil-product-accordions {
    margin-top: 26px;
    border-top: 1px solid rgba(34, 34, 34, 0.12);
}

.nikkahveil-product-accordion {
    border-bottom: 1px solid rgba(34, 34, 34, 0.12);
}

.nikkahveil-product-accordion summary {
    position: relative;
    display: block;
    padding: 17px 28px 17px 0;
    color: var(--nv-ink);
    cursor: pointer;
    font-family: 'Avenir', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    list-style: none;
    text-transform: uppercase;
}

.nikkahveil-product-accordion summary::-webkit-details-marker {
    display: none;
}

.nikkahveil-product-accordion summary::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 4px;
    color: var(--nv-muted);
    font-size: 15px;
    line-height: 1;
    transform: translateY(-50%);
}

.nikkahveil-product-accordion[open] summary::after {
    content: '-';
}

.nikkahveil-product-accordion-content {
    padding: 0 0 20px;
    color: var(--nv-muted);
    font-size: 13px;
    line-height: 1.75;
}

.nikkahveil-product-accordion-content table {
    margin: 0;
    font-size: 12px;
}

.single-product div.product .product_meta,
.single-product-highlights,
.product-care-panel {
    display: none;
}

.single-product .related.products {
    margin-top: 110px;
    padding-top: 0;
    border-top: 0;
}

.single-product .related.products > h2,
.single-product .up-sells.products > h2 {
    margin-bottom: 34px;
    font-size: 34px;
    font-weight: 400;
}

body.single-product.nikkahveil-commerce .related.products ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.single-product .related.products ul.products li.product .button {
    display: none;
}

.single-product .related.products ul.products li.product img {
    aspect-ratio: 3 / 4.2;
}

.single-product .related.products ul.products li.product .woocommerce-loop-product__title {
    max-width: 75%;
    font-size: 22px;
}

@media (max-width: 1180px) {
    body.nikkahveil-commerce.storefront-full-width-content .site-main ul.products,
    body.nikkahveil-commerce .site-main ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.nikkahveil-commerce.storefront-full-width-content.single-product div.product,
    body.nikkahveil-commerce.single-product div.product {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
        gap: 44px;
    }
}

@media (max-width: 900px) {
    body.nikkahveil-commerce.storefront-full-width-content.single-product div.product,
    body.nikkahveil-commerce.single-product div.product {
        grid-template-columns: 1fr;
    }

    body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .woocommerce-product-gallery,
    body.nikkahveil-commerce.single-product div.product .woocommerce-product-gallery,
    body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .images,
    body.nikkahveil-commerce.single-product div.product .images,
    body.nikkahveil-commerce.storefront-full-width-content.single-product div.product .summary,
    body.nikkahveil-commerce.single-product div.product .summary {
        max-width: none;
        justify-self: stretch;
    }
}

@media (max-width: 768px) {
    body.nikkahveil-commerce.storefront-full-width-content .site-main ul.products,
    body.nikkahveil-commerce .site-main ul.products,
    body.single-product.nikkahveil-commerce .related.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .single-product div.product table.variations tr {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 520px) {
    body.nikkahveil-commerce.storefront-full-width-content .site-main ul.products,
    body.nikkahveil-commerce .site-main ul.products,
    body.single-product.nikkahveil-commerce .related.products ul.products {
        grid-template-columns: 1fr;
    }
}

/* ===== FINAL SHOP REQUESTS ===== */

body.single-product.nikkahveil-commerce #content > .col-full {
    padding-top: 28px;
}

.single-product span.onsale,
.single-product div.product .onsale {
    display: none !important;
}

ul.products li.product .button,
ul.products li.product .nikkahveil-view-product-button,
.single-product .related.products ul.products li.product .button,
.single-product .related.products ul.products li.product .nikkahveil-view-product-button {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    background: #8A9A86;
    border-color: #8A9A86;
    color: var(--nv-ink);
}

ul.products li.product .button:hover,
ul.products li.product .nikkahveil-view-product-button:hover,
.single-product .related.products ul.products li.product .button:hover,
.single-product .related.products ul.products li.product .nikkahveil-view-product-button:hover {
    background: var(--nv-ink);
    border-color: var(--nv-ink);
    color: #fff;
}

body.single-product.nikkahveil-commerce .related.products ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.single-product .related.products ul.products li.product .button {
    display: flex;
}

.single-product .related.products {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 620px;
}

@media (max-width: 1180px) {
    body.single-product.nikkahveil-commerce .related.products ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body.single-product.nikkahveil-commerce .related.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    body.single-product.nikkahveil-commerce #content > .col-full {
        padding-top: 20px;
    }

    body.single-product.nikkahveil-commerce .related.products ul.products {
        grid-template-columns: 1fr;
    }
}

/* ===== ARCHIVE POLISH + IMAGE HOVER CTA ===== */

.woocommerce-products-header {
    margin-bottom: 20px;
    padding: 30px 28px 28px;
}

.woocommerce-products-header::before {
    inset: 12px;
}

.woocommerce-products-header .woocommerce-products-header__title,
.woocommerce-products-header .page-title {
    margin-bottom: 8px;
    font-size: clamp(46px, 4.8vw, 78px);
}

.category-page-kicker {
    margin-top: 8px;
    font-size: 11px;
}

.storefront-sorting {
    display: grid;
    grid-template-columns: minmax(180px, 260px) 1fr minmax(180px, 260px);
    align-items: center;
    margin-bottom: 22px;
    padding: 18px 0;
}

.storefront-sorting .woocommerce-ordering {
    justify-self: start;
}

.storefront-sorting .woocommerce-result-count {
    justify-self: center;
    text-align: center;
}

.storefront-sorting .woocommerce-pagination {
    justify-self: end;
    margin-top: 0;
}

.woocommerce-pagination .page-numbers li .page-numbers {
    min-width: 42px;
    height: 42px;
    padding: 11px 13px;
}

.archive-service-strip {
    margin-bottom: 24px;
}

body.nikkahveil-commerce .site-main ul.products li.product {
    position: relative;
}

ul.products li.product .woocommerce-LoopProduct-link {
    position: relative;
    display: block;
    container-type: inline-size;
}

ul.products li.product .woocommerce-LoopProduct-link::after {
    content: 'View Product';
    position: absolute;
    z-index: 4;
    top: calc(131.25cqw - 42px);
    right: 0;
    left: 0;
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    background: #8A9A86;
    color: var(--nv-ink);
    font-family: 'Avenir', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

ul.products li.product:hover .woocommerce-LoopProduct-link::after,
ul.products li.product:focus-within .woocommerce-LoopProduct-link::after {
    opacity: 1;
    transform: translateY(0);
}

.single-product .related.products ul.products li.product .woocommerce-LoopProduct-link::after {
    top: calc(140cqw - 42px);
}

ul.products li.product .button,
ul.products li.product .nikkahveil-view-product-button,
.single-product .related.products ul.products li.product .button,
.single-product .related.products ul.products li.product .nikkahveil-view-product-button {
    display: none;
}

@media (max-width: 768px) {
    .nikkahveil-commerce #content > .col-full {
        padding-top: 14px;
    }

    .nikkahveil-commerce .nv-breadcrumb {
        margin-bottom: 14px;
        padding-bottom: 12px;
    }

    .woocommerce-products-header {
        padding: 28px 18px 26px;
    }

    .storefront-sorting {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .storefront-sorting .woocommerce-ordering,
    .storefront-sorting .woocommerce-result-count,
    .storefront-sorting .woocommerce-pagination {
        justify-self: stretch;
    }

    .storefront-sorting .woocommerce-result-count {
        text-align: left;
    }

    .storefront-sorting .woocommerce-pagination {
        justify-self: start;
    }

    ul.products li.product .woocommerce-LoopProduct-link::after {
        opacity: 1;
        transform: none;
    }
}

/* ===== VARIATIONS + HOMEPAGE ===== */

.single-product div.product form.cart .quantity,
.single-product div.product .quantity,
.single-product div.product .quantity.hidden {
    display: none !important;
}

.single-product div.product table.variations select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--nv-muted) 50%),
        linear-gradient(135deg, var(--nv-muted) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 13px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.single-product div.product table.variations select:focus {
    outline: 1px solid rgba(34, 34, 34, 0.35);
    outline-offset: 2px;
}

.single-product div.product form.cart table.variations td.value {
    position: relative;
}

.single-product .nv-native-variation-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.single-product .nv-variation-select {
    position: relative;
    width: 100%;
}

.single-product .nv-variation-select__button {
    position: relative;
    width: 100%;
    min-height: 52px;
    padding: 16px 48px 16px 18px;
    border: 1px solid rgba(34, 34, 34, 0.12);
    background: #FFFFFF;
    color: var(--nv-ink);
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-align: left;
    box-shadow: none;
}

.single-product .nv-variation-select__button::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid var(--nv-muted);
    border-bottom: 1.5px solid var(--nv-muted);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s ease;
}

.single-product .nv-variation-select.is-open .nv-variation-select__button::after {
    transform: translateY(-30%) rotate(-135deg);
}

.single-product .nv-variation-select__button:focus-visible {
    outline: 1px solid rgba(34, 34, 34, 0.35);
    outline-offset: 2px;
}

.single-product .nv-variation-select__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 30;
    width: 100%;
    max-height: 280px;
    overflow-y: auto;
    border: 1px solid rgba(34, 34, 34, 0.12);
    background: #fff;
    box-shadow: var(--nv-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.single-product .nv-variation-select.is-open .nv-variation-select__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.single-product .nv-variation-select__option {
    display: block;
    width: 100%;
    padding: 14px 18px;
    border: 0;
    border-bottom: 1px solid rgba(34, 34, 34, 0.08);
    background: #fff;
    color: var(--nv-ink);
    font-family: 'Avenir', sans-serif;
    font-size: 11px;
    letter-spacing: 0.03em;
    text-align: left;
    box-shadow: none;
}

.single-product .nv-variation-select__option:last-child {
    border-bottom: 0;
}

.single-product .nv-variation-select__option:hover,
.single-product .nv-variation-select__option:focus-visible,
.single-product .nv-variation-select__option.is-selected {
    background: #8A9A86;
    color: var(--nv-ink);
}

.single-product .nv-variation-select__option.is-placeholder {
    color: var(--nv-muted);
}

.single-product .nv-variation-select__option:disabled {
    color: rgba(95, 98, 93, 0.5);
    background: #FFFFFF;
    cursor: not-allowed;
}

.page-template-template-homepage #content,
.home #content {
    width: 100%;
    padding: 0;
    background: var(--nv-cream);
}

.page-template-template-homepage #content > .col-full,
.home #content > .col-full {
    width: 100%;
    max-width: none;
    padding: 0;
}

.nikkahveil-home {
    color: var(--nv-ink);
}

.nv-home-hero {
    width: 100%;
    overflow: hidden;
}

.nv-home-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.nv-home-slider::-webkit-scrollbar {
    display: none;
}

.nv-home-slide {
    min-height: clamp(520px, 72vh, 760px);
    display: flex;
    align-items: center;
    padding: 80px 5%;
    scroll-snap-align: start;
    background:
        linear-gradient(90deg, rgba(34, 34, 34, 0.42), rgba(34, 34, 34, 0.05)),
        var(--nv-panel);
    position: relative;
}

.nv-home-slide-1 {
    background:
        linear-gradient(90deg, rgba(34, 34, 34, 0.46), rgba(34, 34, 34, 0.06)),
        url('orignal/storefront/assets/images/customizer/starter-content/hero.jpg') center / cover;
}

.nv-home-slide-2,
.nv-home-slide-3 {
    background:
        linear-gradient(90deg, rgba(34, 34, 34, 0.42), rgba(34, 34, 34, 0.08)),
        #8A9A86;
}

.nv-home-slide-content {
    width: min(520px, 90%);
    color: #fff;
}

.nv-home-slide-content p,
.nv-section-heading p {
    margin: 0 0 12px;
    font-family: 'Avenir', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nv-home-slide-content h1 {
    margin: 0 0 18px;
    font-size: clamp(54px, 8vw, 92px);
    font-weight: 400;
    line-height: 0.9;
    color: #fff;
}

.nv-home-slide-content span {
    display: block;
    max-width: 430px;
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.7;
}

.nv-home-slide-content a,
.nv-section-heading a,
.nv-home-products .button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    background: #8A9A86;
    color: var(--nv-ink);
    font-family: 'Avenir', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
}

.nv-home-section,
.nv-home-seo,
.nv-home-faq {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 82px 0;
}

.nv-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.nv-section-heading h2,
.nv-home-seo h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 400;
    line-height: 0.96;
}

.nv-home-bestsellers ul.products,
.nv-home-products ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px 28px;
    width: 100%;
    margin: 0;
}

.nv-home-bestsellers ul.products::before,
.nv-home-bestsellers ul.products::after,
.nv-home-products ul.products::before,
.nv-home-products ul.products::after {
    display: none;
}

.nv-home-bestsellers ul.products li.product,
.nv-home-products ul.products li.product,
.nv-home-bestsellers ul.products[class*="columns-"] li.product,
.nv-home-products ul.products[class*="columns-"] li.product {
    width: auto !important;
    float: none !important;
    clear: none !important;
    margin: 0 !important;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.nv-home-seo {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    padding: 72px 5%;
    background: var(--nv-panel);
    max-width: none;
}

.nv-home-seo > div {
    max-width: 660px;
}

.nv-home-seo > div:first-child {
    justify-self: end;
}

.nv-home-seo p {
    color: var(--nv-muted);
    font-size: 15px;
    line-height: 1.85;
}

.nv-home-city-keywords {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.nv-home-city-keywords li {
    padding: 12px 14px;
    border: 1px solid rgba(138, 154, 134, 0.32);
    color: var(--nv-ink);
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nv-home-testimonials {
    text-align: center;
}

.nv-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.nv-testimonial-grid blockquote {
    margin: 0;
    padding: 34px;
    background: #fff;
    color: var(--nv-muted);
    font-family: 'Freight Big Pro', serif;
    font-size: 28px;
    line-height: 1.15;
}

.nv-home-reels {
    padding-top: 30px;
}

.nv-reels-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.nv-reels-grid iframe,
.nv-reels-grid video,
.nv-reel-placeholder {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: var(--nv-panel);
}

.nv-reel-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nv-muted);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nv-home-faq {
    max-width: 980px;
}

.nv-home-faq details {
    border-bottom: 1px solid rgba(34, 34, 34, 0.12);
}

.nv-home-faq summary {
    padding: 22px 34px 22px 0;
    cursor: pointer;
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.nv-home-faq p {
    color: var(--nv-muted);
    line-height: 1.8;
}

@media (max-width: 980px) {
    .nv-home-bestsellers ul.products,
    .nv-home-products ul.products,
    .nv-reels-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nv-home-seo {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .nv-home-seo > div:first-child {
        justify-self: start;
    }

    .nv-testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .nv-home-city-keywords {
        grid-template-columns: 1fr;
    }

    .nv-home-slide {
        min-height: 580px;
        padding: 58px 5%;
    }

    .nv-section-heading {
        display: block;
    }

    .nv-section-heading a {
        margin-top: 18px;
    }

    .nv-home-bestsellers ul.products,
    .nv-home-products ul.products,
    .nv-reels-grid {
        grid-template-columns: 1fr;
    }
}



.archive .woocommerce-notices-wrapper {
    display: none;
}

.storefront-full-width-content .woocommerce-products-header {
    padding: 3em 0;
}



.home.blog .site-header{
	margin-bottom: 0px;
}

.right-sidebar .content-area {
    width: 100%;
    float: none;
    margin: 0px;
}



.nv-home-slide-1 {
    background:
        linear-gradient(90deg, rgba(48, 44, 41, 0.46), rgba(48, 44, 41, 0.06)),
        url('http://ukweddingfavors.com/wp-content/uploads/2026/06/nikkah-favor-boxes-in-uk-Large.webp') center / cover;
}

/* Cart and checkout full-screen flow */
body.nikkahveil-checkout-shell {
    background: #f7f3ee;
}

body.nikkahveil-checkout-shell #page,
body.nikkahveil-checkout-shell #content {
    min-height: 100vh;
    background: #f7f3ee;
}

body.nikkahveil-checkout-shell #content > .col-full {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(22px, 4vw, 56px);
    box-sizing: border-box;
}

body.nikkahveil-checkout-shell .content-area,
body.nikkahveil-checkout-shell .site-main {
    width: 100% !important;
    max-width: 1280px;
    float: none !important;
    margin: 0 auto !important;
}

body.nikkahveil-checkout-shell .widget-area,
body.nikkahveil-checkout-shell #secondary {
    display: none !important;
}

body.nikkahveil-checkout-shell .entry-header {
    max-width: 1280px;
    margin: 0 auto 28px;
    padding: 0;
    border: 0;
}

body.nikkahveil-checkout-shell .entry-title {
    margin: 0;
    color: var(--nv-ink);
    font-family: 'Freight Big Pro', serif;
    font-size: clamp(42px, 7vw, 86px);
    font-weight: 400;
    line-height: 0.95;
}

body.nikkahveil-checkout-shell .entry-content {
    margin: 0;
}

body.nikkahveil-checkout-shell .woocommerce {
    color: var(--nv-ink);
}

body.nikkahveil-checkout-shell .woocommerce-notices-wrapper,
body.nikkahveil-checkout-shell .woocommerce-message,
body.nikkahveil-checkout-shell .woocommerce-info,
body.nikkahveil-checkout-shell .woocommerce-error {
    max-width: 1280px;
    margin: 0 auto 18px;
    border: 1px solid rgba(34, 34, 34, 0.12);
    background: #fff;
    color: var(--nv-ink);
}

body.nikkahveil-checkout-shell .woocommerce-cart-form,
body.nikkahveil-checkout-shell .cart-collaterals,
body.nikkahveil-checkout-shell form.checkout {
    background: #fff;
    border: 1px solid rgba(34, 34, 34, 0.10);
    box-shadow: 0 24px 70px rgba(34, 34, 34, 0.08);
}

body.nikkahveil-checkout-shell.woocommerce-cart .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 24px;
    align-items: start;
}

body.nikkahveil-checkout-shell.woocommerce-cart .woocommerce-notices-wrapper {
    grid-column: 1 / -1;
    width: 100%;
}

body.nikkahveil-checkout-shell .woocommerce-cart-form,
body.nikkahveil-checkout-shell .cart-collaterals {
    padding: clamp(18px, 3vw, 34px);
}

body.nikkahveil-checkout-shell .cart-collaterals .cart_totals {
    width: 100%;
    float: none;
}

body.nikkahveil-checkout-shell table.shop_table,
body.nikkahveil-checkout-shell table.shop_table th,
body.nikkahveil-checkout-shell table.shop_table td {
    border-color: rgba(34, 34, 34, 0.10);
}

body.nikkahveil-checkout-shell table.shop_table {
    margin: 0;
    border: 0;
    border-collapse: collapse;
    background: transparent;
}

body.nikkahveil-checkout-shell table.shop_table th {
    color: var(--nv-muted);
    font-family: 'Avenir', sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.nikkahveil-checkout-shell table.shop_table td {
    padding: 18px 12px;
    vertical-align: middle;
}

body.nikkahveil-checkout-shell .product-name,
body.nikkahveil-checkout-shell .cart_totals h2,
body.nikkahveil-checkout-shell #order_review_heading {
    color: var(--nv-ink);
    font-family: 'Freight Big Pro', serif;
    font-weight: 400;
}

body.nikkahveil-checkout-shell .cart_totals h2,
body.nikkahveil-checkout-shell #order_review_heading {
    margin: 0 0 20px;
    font-size: 34px;
    line-height: 1;
}

body.nikkahveil-checkout-shell .quantity .qty,
body.nikkahveil-checkout-shell input.input-text,
body.nikkahveil-checkout-shell select,
body.nikkahveil-checkout-shell textarea {
    min-height: 48px;
    border: 1px solid rgba(34, 34, 34, 0.16);
    border-radius: 0;
    background: #fbfaf7;
    color: var(--nv-ink);
    box-shadow: none;
}

body.nikkahveil-checkout-shell .button,
body.nikkahveil-checkout-shell button.button,
body.nikkahveil-checkout-shell input.button,
body.nikkahveil-checkout-shell #place_order {
    min-height: 50px;
    padding: 15px 22px;
    border: 1px solid var(--nv-ink);
    border-radius: 0;
    background: var(--nv-ink);
    color: #fff;
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.nikkahveil-checkout-shell .button:hover,
body.nikkahveil-checkout-shell button.button:hover,
body.nikkahveil-checkout-shell input.button:hover,
body.nikkahveil-checkout-shell #place_order:hover {
    background: var(--nv-rose);
    border-color: var(--nv-rose);
    color: #fff;
}

body.nikkahveil-checkout-shell .wc-proceed-to-checkout .button {
    width: 100%;
}

body.nikkahveil-checkout-shell form.checkout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
    gap: 0;
    overflow: hidden;
}

body.nikkahveil-checkout-shell #customer_details {
    padding: clamp(22px, 4vw, 48px);
}

body.nikkahveil-checkout-shell #customer_details .col-1,
body.nikkahveil-checkout-shell #customer_details .col-2 {
    width: 100%;
    float: none;
}

body.nikkahveil-checkout-shell #customer_details .col-2 {
    margin-top: 28px;
}

body.nikkahveil-checkout-shell #order_review_heading,
body.nikkahveil-checkout-shell #order_review {
    grid-column: 2;
    background: #eee7df;
}

body.nikkahveil-checkout-shell #order_review_heading {
    padding: clamp(22px, 4vw, 42px) clamp(22px, 4vw, 42px) 0;
}

body.nikkahveil-checkout-shell #order_review {
    padding: 18px clamp(22px, 4vw, 42px) clamp(22px, 4vw, 42px);
}

body.nikkahveil-checkout-shell .woocommerce-billing-fields h3,
body.nikkahveil-checkout-shell .woocommerce-additional-fields h3 {
    margin: 0 0 18px;
    color: var(--nv-ink);
    font-family: 'Freight Big Pro', serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
}

body.nikkahveil-checkout-shell form .form-row label {
    color: var(--nv-muted);
    font-family: 'Avenir', sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

body.nikkahveil-checkout-shell .woocommerce-privacy-policy-text {
    color: var(--nv-muted);
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 860px) {
    body.nikkahveil-checkout-shell #content > .col-full {
        padding: 18px;
    }

    body.nikkahveil-checkout-shell.woocommerce-cart .woocommerce,
    body.nikkahveil-checkout-shell form.checkout {
        grid-template-columns: 1fr;
    }

    body.nikkahveil-checkout-shell #order_review_heading,
    body.nikkahveil-checkout-shell #order_review {
        grid-column: 1;
    }

    body.nikkahveil-checkout-shell table.shop_table_responsive tr td::before {
        color: var(--nv-muted);
        font-family: 'Avenir', sans-serif;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 0.10em;
        text-transform: uppercase;
    }
}

/* Split-screen cart and checkout refinement */
body.nikkahveil-checkout-shell #content {
    background: #f8f5f0;
}

body.nikkahveil-checkout-shell #content > .col-full {
    min-height: 100vh;
    padding: 0;
}

body.nikkahveil-checkout-shell .site-main,
body.nikkahveil-checkout-shell .content-area {
    max-width: none;
}

body.nikkahveil-checkout-shell .entry-header {
    display: none;
}

body.nikkahveil-checkout-shell .entry-content {
    margin: 0;
}

body.nikkahveil-checkout-shell .edit-link,
body.nikkahveil-checkout-shell .post-edit-link {
    display: none;
}

.nikkahveil-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    background: #f8f5f0;
}

.nikkahveil-checkout-flow {
    display: contents;
}

body.nikkahveil-checkout-shell .wp-block-woocommerce-cart,
body.nikkahveil-checkout-shell .wp-block-woocommerce-checkout,
body.nikkahveil-checkout-shell .wc-block-components-sidebar-layout,
body.nikkahveil-checkout-shell .wc-block-cart,
body.nikkahveil-checkout-shell .wc-block-checkout,
body.nikkahveil-checkout-shell .wc-block-cart__submit-container {
    display: contents !important;
}

body.nikkahveil-checkout-shell .wc-block-components-main,
body.nikkahveil-checkout-shell .wc-block-cart__main,
body.nikkahveil-checkout-shell .wc-block-checkout__main {
    grid-column: 1;
    grid-row: 2;
    width: auto !important;
    padding: 0 clamp(22px, 5vw, 76px) clamp(34px, 5vw, 76px) !important;
}

body.nikkahveil-checkout-shell .wc-block-components-sidebar,
body.nikkahveil-checkout-shell .wc-block-cart__sidebar,
body.nikkahveil-checkout-shell .wc-block-checkout__sidebar {
    grid-column: 2;
    grid-row: 1 / -1;
    width: auto !important;
    min-height: 100vh;
    margin: 0 !important;
    padding: clamp(28px, 4vw, 56px) !important;
    background: #eee6dc;
    box-sizing: border-box;
}

body.nikkahveil-checkout-shell .wc-block-components-sidebar > div,
body.nikkahveil-checkout-shell .wc-block-cart__sidebar > div,
body.nikkahveil-checkout-shell .wc-block-checkout__sidebar > div,
body.nikkahveil-checkout-shell .wc-block-components-sidebar .wc-block-components-totals-wrapper,
body.nikkahveil-checkout-shell .wc-block-components-main .wc-block-cart-items,
body.nikkahveil-checkout-shell .wc-block-components-main .wc-block-checkout__form,
body.nikkahveil-checkout-shell .wc-block-cart__main .wc-block-cart-items,
body.nikkahveil-checkout-shell .wc-block-checkout__main .wc-block-checkout__form {
    background: #fff;
    border-color: rgba(34, 34, 34, 0.10);
}

body.nikkahveil-checkout-shell .wc-block-components-sidebar > div,
body.nikkahveil-checkout-shell .wc-block-cart__sidebar > div,
body.nikkahveil-checkout-shell .wc-block-checkout__sidebar > div {
    position: sticky;
    top: 32px;
}

body.nikkahveil-checkout-shell .wc-block-components-title,
body.nikkahveil-checkout-shell .wc-block-components-sidebar .wc-block-components-totals-item__label,
body.nikkahveil-checkout-shell .wc-block-components-sidebar .wc-block-components-totals-item__value,
body.nikkahveil-checkout-shell .wc-block-cart__sidebar .wc-block-components-totals-item__label,
body.nikkahveil-checkout-shell .wc-block-cart__sidebar .wc-block-components-totals-item__value,
body.nikkahveil-checkout-shell .wc-block-checkout__sidebar .wc-block-components-totals-item__label,
body.nikkahveil-checkout-shell .wc-block-checkout__sidebar .wc-block-components-totals-item__value {
    color: var(--nv-ink);
}

body.nikkahveil-checkout-shell .wc-block-components-button {
    min-height: 50px;
    border-radius: 0;
    background: var(--nv-ink);
    color: #fff;
    font-family: 'Avenir', sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.nikkahveil-checkout-shell .wc-block-components-button:hover {
    background: var(--nv-rose);
    color: #fff;
}

body.nikkahveil-checkout-shell .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    grid-template-rows: auto 1fr auto;
    align-items: stretch;
    min-height: 100vh;
}

body.nikkahveil-checkout-shell .woocommerce-notices-wrapper,
body.nikkahveil-checkout-shell .woocommerce-message,
body.nikkahveil-checkout-shell .woocommerce-info,
body.nikkahveil-checkout-shell .woocommerce-error {
    grid-column: 1 / -1;
    width: auto;
    max-width: none;
    margin: 24px clamp(22px, 5vw, 76px) 0;
}

.nikkahveil-checkout-brand {
    grid-column: 1;
    grid-row: 1;
    padding: clamp(28px, 5vw, 68px) clamp(22px, 5vw, 76px) 28px;
}

.nikkahveil-checkout-brand__logo {
    display: inline-flex;
    max-width: 220px;
    align-items: center;
    color: var(--nv-ink);
    font-family: 'Freight Big Pro', serif;
    font-size: 30px;
    line-height: 1;
    text-decoration: none;
}

.nikkahveil-checkout-brand__logo img,
.nikkahveil-checkout-brand__logo-image {
    width: auto;
    max-width: 220px;
    max-height: 72px;
}

.nikkahveil-checkout-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
    color: var(--nv-muted);
    font-family: 'Avenir', sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.nikkahveil-checkout-steps span:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: rgba(34, 34, 34, 0.28);
}

.nikkahveil-checkout-brand h1 {
    max-width: 640px;
    margin: 18px 0 0;
    color: var(--nv-ink);
    font-family: 'Freight Big Pro', serif;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 400;
    line-height: 0.95;
}

body.nikkahveil-checkout-shell .woocommerce-cart-form {
    grid-column: 1;
    grid-row: 2;
    padding: 0 clamp(22px, 5vw, 76px) clamp(34px, 5vw, 76px);
    background: transparent;
    border: 0;
    box-shadow: none;
}

body.nikkahveil-checkout-shell .woocommerce-cart-form > table.shop_table {
    background: #fff;
    border: 1px solid rgba(34, 34, 34, 0.08);
    box-shadow: 0 18px 50px rgba(34, 34, 34, 0.06);
}

body.nikkahveil-checkout-shell .cart-collaterals {
    grid-column: 2;
    grid-row: 1 / -1;
    min-height: 100vh;
    padding: clamp(28px, 4vw, 56px);
    background: #eee6dc;
    border: 0;
    box-shadow: none;
}

body.nikkahveil-checkout-shell .cart-collaterals .cart_totals {
    position: sticky;
    top: 32px;
}

body.nikkahveil-checkout-shell form.checkout {
    display: contents;
    background: transparent;
    border: 0;
    box-shadow: none;
}

body.nikkahveil-checkout-shell #customer_details {
    grid-column: 1;
    grid-row: 2;
    padding: 0 clamp(22px, 5vw, 76px) clamp(34px, 5vw, 76px);
}

body.nikkahveil-checkout-shell #customer_details .col-1,
body.nikkahveil-checkout-shell #customer_details .col-2 {
    padding: clamp(22px, 3vw, 34px);
    background: #fff;
    border: 1px solid rgba(34, 34, 34, 0.08);
    box-shadow: 0 18px 50px rgba(34, 34, 34, 0.06);
}

body.nikkahveil-checkout-shell #order_review_heading,
body.nikkahveil-checkout-shell #order_review {
    grid-column: 2;
    background: #eee6dc;
}

body.nikkahveil-checkout-shell #order_review_heading {
    grid-row: 1;
    align-self: end;
    padding: clamp(28px, 4vw, 56px) clamp(28px, 4vw, 56px) 0;
}

body.nikkahveil-checkout-shell #order_review {
    grid-row: 2 / -1;
    min-height: calc(100vh - 128px);
    padding: 18px clamp(28px, 4vw, 56px) clamp(28px, 4vw, 56px);
}

.nikkahveil-checkout-copyright {
    grid-column: 1;
    grid-row: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(22px, 5vw, 76px) clamp(22px, 4vw, 34px);
    color: var(--nv-muted);
    font-family: 'Avenir', sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nikkahveil-checkout-copyright p {
    margin: 0;
}

.nikkahveil-checkout-copyright a {
    color: var(--nv-ink);
    text-decoration: none;
}

.nikkahveil-checkout-copyright a:hover {
    color: var(--nv-rose);
}

@media (max-width: 980px) {
    body.nikkahveil-checkout-shell #content {
        background: #f8f5f0;
    }

    body.nikkahveil-checkout-shell .woocommerce {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 0;
    }

    .nikkahveil-checkout-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 0;
    }

    .nikkahveil-checkout-brand {
        padding: 28px 18px 24px;
    }

    body.nikkahveil-checkout-shell .woocommerce-cart-form,
    body.nikkahveil-checkout-shell #customer_details,
    .nikkahveil-checkout-copyright {
        padding: 0 18px 24px;
    }

    body.nikkahveil-checkout-shell .cart-collaterals,
    body.nikkahveil-checkout-shell #order_review_heading,
    body.nikkahveil-checkout-shell #order_review,
    body.nikkahveil-checkout-shell .wc-block-components-main,
    body.nikkahveil-checkout-shell .wc-block-components-sidebar,
    body.nikkahveil-checkout-shell .wc-block-cart__main,
    body.nikkahveil-checkout-shell .wc-block-cart__sidebar,
    body.nikkahveil-checkout-shell .wc-block-checkout__main,
    body.nikkahveil-checkout-shell .wc-block-checkout__sidebar {
        grid-column: 1;
        grid-row: auto;
        min-height: 0;
        padding-left: 18px;
        padding-right: 18px;
        background: #eee6dc;
    }

    body.nikkahveil-checkout-shell .cart-collaterals .cart_totals {
        position: static;
    }
}


.woocommerce-cart .hentry, .woocommerce-checkout .hentry {
    margin: 0px;
}
body.nikkahveil-checkout-shell .wc-block-components-main .wc-block-checkout__form, body.nikkahveil-checkout-shell .wc-block-checkout__main .wc-block-checkout__form {
    background: #f9f5f1;
    border-color: rgba(34, 34, 34, 0.10);
}

body.nikkahveil-checkout-shell .wc-block-components-sidebar > div,body.nikkahveil-checkout-shell .wc-block-checkout__sidebar > div,  body.nikkahveil-checkout-shell .wc-block-components-sidebar .wc-block-components-totals-wrapper{
    background: #eee6dc;
    border-color: rgba(34, 34, 34, 0.10);
        padding-left: 6px;
    padding-right: 6px;

}
