:root {
    --strazar-ink: #122333;
    --strazar-primary: #1a3a5c;
    --strazar-primary-dark: #0d2137;
    --strazar-blue: #2b4468;
    --strazar-gold: #cfa834;
    --strazar-gold-hover: #b8932b;
    --strazar-line: #d9dee3;
    --strazar-muted: #5f6b76;
    --strazar-surface: #f4f6f7;
}

.strazar-shop-shell-active #header,
.strazar-shop-shell-active #footer {
    display: none;
}

.strazar-shop-shell-active .woocommerce-result-count,
.strazar-shop-shell-active .woocommerce-ordering {
    display: none;
}

.strazar-shop-shell-active.strazar-menu-open {
    overflow: hidden;
}

.strazar-site-nav,
.strazar-site-mobile-menu,
.strazar-site-footer {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0;
}

.strazar-site-nav *,
.strazar-site-mobile-menu *,
.strazar-site-footer * {
    box-sizing: border-box;
}

.strazar-site-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.strazar-site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 33, 55, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.strazar-site-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 18px;
}

.strazar-site-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.strazar-site-brand:hover {
    color: #fff;
}

.strazar-site-brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(207, 168, 52, 0.5));
}

.strazar-site-brand span {
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.strazar-site-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.strazar-site-nav-links a {
    display: block;
    padding: 8px 9px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    text-transform: none;
    white-space: nowrap;
}

.strazar-site-nav-links a:hover,
.strazar-site-nav-links a.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.strazar-site-nav-links a.is-active {
    box-shadow: inset 0 -2px 0 var(--strazar-gold);
}

.strazar-site-nav-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 8px;
}

.strazar-site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 15px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    text-transform: none;
    white-space: nowrap;
}

.strazar-site-btn-gold {
    border-color: var(--strazar-gold);
    background: var(--strazar-gold);
    color: var(--strazar-primary-dark);
}

.strazar-site-btn-gold:hover {
    border-color: var(--strazar-gold-hover);
    background: var(--strazar-gold-hover);
    color: var(--strazar-primary-dark);
}

.strazar-site-btn-outline {
    border-color: var(--strazar-gold);
    background: transparent;
    color: var(--strazar-gold);
}

.strazar-site-btn-outline:hover {
    background: var(--strazar-gold);
    color: var(--strazar-primary-dark);
}

.strazar-site-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    color: #fff;
}

.strazar-site-cart:hover {
    border-color: var(--strazar-gold);
    color: var(--strazar-gold);
}

.strazar-site-cart svg {
    width: 20px;
    height: 20px;
}

.strazar-site-cart span {
    position: absolute;
    top: -7px;
    right: -7px;
    display: grid;
    min-width: 18px;
    height: 18px;
    place-items: center;
    padding: 0 4px;
    border-radius: 9px;
    background: var(--strazar-gold);
    color: var(--strazar-primary-dark);
    font-size: 10px;
    font-weight: 700;
}

.strazar-site-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.strazar-site-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
}

.strazar-site-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    padding: 100px 24px 40px;
    background: rgba(13, 33, 55, 0.99);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.strazar-site-mobile-menu.open {
    display: flex;
}

.strazar-site-mobile-menu>a {
    width: 100%;
    max-width: 320px;
    padding: 13px 24px;
    border-radius: 8px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: none;
}

.strazar-site-mobile-menu>a:hover,
.strazar-site-mobile-menu>a.is-active {
    background: rgba(255, 255, 255, 0.07);
}

.strazar-site-mobile-menu .strazar-site-btn {
    margin-top: 8px;
}

.strazar-site-mobile-close {
    position: absolute;
    top: 48px;
    right: 24px;
    padding: 8px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.strazar-site-footer {
    margin-top: 72px;
    padding: 72px 0 0;
    background: var(--strazar-primary-dark);
    color: rgba(255, 255, 255, 0.7);
}

.strazar-site-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.strazar-site-footer-heading {
    margin: 0 0 20px;
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

.strazar-site-footer-links,
.strazar-site-footer-social {
    margin: 0;
    padding: 0;
    list-style: none;
}

.strazar-site-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.strazar-site-footer-links a,
.strazar-site-footer-contact p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.6;
}

.strazar-site-footer-links a:hover {
    color: var(--strazar-gold);
}

.strazar-site-footer-contact p {
    margin: 0 0 8px;
}

.strazar-site-footer-contact a {
    color: var(--strazar-gold);
}

.strazar-site-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.strazar-site-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
}

.strazar-site-footer-social a:hover {
    border-color: rgba(207, 168, 52, 0.3);
    background: rgba(207, 168, 52, 0.15);
    color: var(--strazar-gold);
}

.strazar-site-footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.strazar-site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.strazar-site-footer-bottom>div {
    display: flex;
    gap: 20px;
}

.strazar-site-footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
}

.strazar-site-footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.65);
}

.strazar-shop-shell-active .shop-container .products.row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-right: 0;
    margin-left: 0;
}

.strazar-shop-shell-active .shop-container .product-small.col {
    width: auto;
    max-width: none;
    min-width: 0;
    padding: 0;
    flex-basis: auto;
}

.strazar-shop-shell-active .product-small .col-inner {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--strazar-line);
    border-radius: 6px;
    background: #fff;
}

.strazar-shop-shell-active .product-small .box-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
}

.strazar-shop-shell-active .product-small .box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.strazar-shop-shell-active .product-small .box-text {
    padding: 16px 18px 20px;
}

.strazar-shop-shell-active .product-small .add-to-cart-button {
    margin: 14px 0 0;
}

.woocommerce-page .shop-container,
.woocommerce-page .container {
    max-width: 1180px;
}

.strazar-shop-shell-active .product-container {
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

.strazar-shop-shell-active .related-products-wrapper>.row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    overflow: visible !important;
    margin-right: 0;
    margin-left: 0;
    transform: none !important;
}

.strazar-shop-shell-active .related-products-wrapper>.row>.product-small.col {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0;
    padding: 0;
    float: none !important;
}

.strazar-shop-shell-active .related-products-wrapper>.row>.flickity-button {
    display: none;
}

.strazar-shop-intro {
    margin: 0 0 34px;
    padding: 54px 0 30px;
    border-bottom: 1px solid var(--strazar-line);
}

.strazar-shop-intro h1 {
    max-width: 760px;
    margin: 0 0 12px;
    color: var(--strazar-ink);
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: 0;
}

.strazar-shop-intro p:last-child {
    max-width: 720px;
    margin: 0;
    color: var(--strazar-muted);
    font-size: 17px;
    line-height: 1.65;
}

.strazar-shop-eyebrow {
    margin: 0 0 10px;
    color: var(--strazar-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none;
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0 0 18px;
    overflow: hidden;
    border: 1px solid var(--strazar-line);
    border-radius: 6px;
    background: #fff;
}

.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 0 16px;
    object-fit: cover;
    object-position: center top;
    background: #fff;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
    margin-right: 18px;
    margin-left: 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 48px;
    padding: 0;
    color: var(--strazar-ink);
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: 0;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--strazar-blue);
    font-weight: 800;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    min-height: 42px;
    padding: 11px 17px;
    border: 1px solid var(--strazar-gold);
    border-radius: 5px;
    background: var(--strazar-gold);
    color: var(--strazar-ink);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    border-color: var(--strazar-ink);
    background: var(--strazar-ink);
    color: #fff;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    min-height: 44px;
    border: 1px solid #aeb8c1;
    border-radius: 4px;
    background: #fff;
    box-shadow: none;
}

.woocommerce .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #payment {
    border-radius: 6px;
    background: var(--strazar-surface);
}

.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--strazar-blue);
}

.woocommerce-error {
    border-top-color: #b42318;
}

@media (max-width: 1120px) {
    .strazar-site-nav-links {
        display: none;
    }

    .strazar-site-nav-toggle {
        display: flex;
    }
}

@media (max-width: 900px) {
    .woocommerce ul.products,
    .strazar-shop-shell-active .shop-container .products.row,
    .strazar-shop-shell-active .related-products-wrapper>.row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .strazar-site-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .strazar-site-nav-inner {
        min-height: 64px;
    }

    .strazar-site-nav-actions .strazar-site-btn-outline,
    .strazar-site-nav-actions .strazar-site-cart {
        display: none;
    }

    .strazar-site-nav-actions .strazar-site-btn-gold {
        min-height: 34px;
        padding: 8px 14px;
        font-size: 12px;
    }

    .strazar-site-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .woocommerce ul.products,
    .strazar-shop-shell-active .shop-container .products.row,
    .strazar-shop-shell-active .related-products-wrapper>.row {
        grid-template-columns: 1fr;
    }

    .strazar-site-container {
        padding: 0 16px;
    }

    .strazar-site-nav-inner {
        gap: 10px;
    }

    .strazar-site-brand {
        gap: 8px;
    }

    .strazar-site-brand img {
        width: 32px;
        height: 32px;
    }

    .strazar-site-brand span {
        font-size: 18px;
    }

    .strazar-site-footer {
        padding-top: 52px;
    }

    .strazar-shop-intro h1 {
        font-size: 38px;
    }
}
