/*
Theme Name: Stéphanie Cachard
Description: Custom theme for Stéphanie Cachard Jewelry Shop
Version: 1.0
Author: DGS
Text Domain: stephaniecachard
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
*/

@font-face {
    font-family: "Euclid Circular A";
    src: url("fonts/EuclidCircularA-Light.woff2") format("woff2"),
         url("fonts/EuclidCircularA-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Euclid Circular A";
    src: url("fonts/EuclidCircularA-Regular.woff2") format("woff2"),
         url("fonts/EuclidCircularA-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Times New Roman", Times, serif;
    background: #ffffff;
    color: #000000;
    -webkit-font-smoothing: antialiased;
}

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

ul, ol {
    list-style: none;
}

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 100;
}

.site-header.scrolled {
}

.header-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 0px;
    max-width: 900px;
    margin: 0 auto;
}


.header-left {
    flex: 1;
    padding-top: 10px;
}


.header-left a {
    font-family: "Times New Roman", Times, serif;
    font-size: 14px;
    color: #221f20;
}

.header-left a:hover {
    opacity: 0.7;
}

.header-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-center .site-logo img {
    height: 80px;
    width: auto;
}


.header-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 16px;
    padding-top: 10px;
}


.header-right a {
    font-family: "Times New Roman", Times, serif;
    font-size: 14px;
    color: #221f20;
}

.header-right a:hover {
    opacity: 0.7;
}

/* Search modal */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.search-overlay.active {
    display: flex;
}

.search-overlay form {
    width: 90%;
    max-width: 600px;
    display: flex;
    position: relative;
    border: 1px solid #fff;
}

.search-overlay input[type="search"] {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 19px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 15px 0;
    outline: none;
    width: 100%;
    background: transparent;
    color: #fff;
    text-indent: 19px;
}

.search-overlay input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-overlay button[type="submit"] {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 19px;
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    padding: 12px 30px;
    cursor: pointer;
    white-space: nowrap;
    margin-left: 15px;
    transition: opacity 0.2s;
}

.search-overlay button[type="submit"]:hover {
    opacity: 0.8;
}

.search-overlay .search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: "Times New Roman", Times, serif;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* ===== CATEGORY NAV ===== */
.category-nav {
    text-align: center;
    padding: 15px 0;
    max-width: 900px;
    margin: 0 auto;
    transition: padding 0.3s ease;
}


.category-nav ul {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.category-nav ul li a {
    font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    color: #221f20;
    transition: opacity 0.2s;
}

.category-nav ul li a:hover,
.category-nav ul li.current-cat a {
    opacity: 0.6;
}

/* Hide ShiftNav burger on desktop */
#shiftnav-toggle-main,
.shiftnav-toggle {
    display: none !important;
}

/* ===== SHOP CONTAINER ===== */
.sc-shop-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

/* ===== TOOLBAR (Sort By) ===== */
.sc-shop-toolbar {
    display: flex;
    justify-content: flex-end;
    padding: 15px 0 15px 0;
}

.sc-shop-toolbar .woocommerce-ordering select {
    font-family: "Times New Roman", Times, serif;
    font-size: 14px;
    color: #221f20;
    border: none;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 0;
    text-align: right;
}

/* ===== PRODUCT GRID ===== */
.sc-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 5px;
    row-gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sc-product-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sc-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.sc-product-image {
    overflow: hidden;
    background: #000;
}

.sc-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.sc-product-info {
    text-align: center;
    padding: 2px 0 30px;
}

.sc-product-title {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    color: #221f20;
    margin-bottom: 0;
    display: inline;
}

.sc-product-price {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    color: rgba(34, 31, 32, 0.7);
    font-style: italic;
    display: inline;
}

.sc-product-price::before {
    content: "- ";
}

.sc-price-on-request {
    font-style: italic;
    text-transform: lowercase;
}

.sc-product-price del {
    opacity: 0.5;
}

.sc-product-price ins {
    text-decoration: none;
}

/* ===== NO PRODUCTS ===== */
.woocommerce-info,
.sc-shop-container p.woocommerce-info {
    text-align: center;
    font-family: "Euclid Circular A", sans-serif;
    font-size: 19px;
    font-weight: bold;
    color: #221f20;
    padding: 80px 0;
}

.sc-back-home {
    text-align: center;
    margin-top: 0;
}

.sc-back-home a {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 15px;
    color: #221f20;
    text-decoration: underline;
}

/* ===== LOADING ===== */
.sc-loading {
    text-align: center;
    padding: 30px 0;
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    color: #221f20;
}

/* ===== SINGLE PRODUCT ===== */
.sc-single-product {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 40px;
}

.sc-breadcrumbs {
    margin-bottom: 0;
    position: absolute;
    border: 0;
    z-index: 11;
    margin-left: -249px;
    text-align: right;
}

.sc-breadcrumb-nav {
    font-family: "Times New Roman", Times, serif;
    font-size: 12px;
    color: #221f20;
    background: #fff;
}

.sc-breadcrumb-nav span {
    color: #000;
}

.sc-breadcrumb-nav a {
    color: #221f20;
    text-decoration: none;
}

.sc-breadcrumb-nav a:hover {
    opacity: 0.6;
}

.sc-product-layout {
    display: grid;
    grid-template-columns: 80px 1.3fr 1fr;
    gap: 10px;
    align-items: start;
}

/* Thumbnails */
.sc-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sc-thumb {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    overflow: hidden;
    width: 100%;
}

.sc-thumb.active,
.sc-thumb:hover {
    opacity: 1;
}

.sc-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

/* Main image */
.sc-gallery-main {
    background: #000;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

.sc-gallery-main img {
    width: 100%;
    height: auto;
    display: block;
}

.sc-gallery-main .sc-zoom-lens {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 250%;
    z-index: 5;
    cursor: zoom-in;
}

.sc-gallery-main:hover .sc-zoom-lens {
    display: block;
}

.sc-gallery-main:hover img {
    opacity: 0;
}

.sc-gallery-main .sc-zoom-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.sc-gallery-main:hover .sc-zoom-icon {
    opacity: 1;
}

.sc-zoom-icon svg {
    width: 18px;
    height: 18px;
    stroke: #221f20;
    fill: none;
    stroke-width: 2;
}

/* Zoom modal */
.sc-zoom-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    cursor: zoom-out;
    justify-content: center;
    align-items: center;
}

.sc-zoom-overlay.active {
    display: flex;
}

.sc-zoom-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.sc-zoom-overlay .sc-zoom-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    font-family: "Times New Roman", Times, serif;
    line-height: 1;
    z-index: 10;
}

.sc-zoom-overlay .sc-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    padding: 20px;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.sc-zoom-overlay .sc-lightbox-arrow:hover {
    opacity: 1;
}

.sc-zoom-overlay .sc-lightbox-prev {
    left: 15px;
}

.sc-zoom-overlay .sc-lightbox-next {
    right: 15px;
}

/* Product details */
.sc-product-details {
    padding: 0 20px;
}

.sc-detail-title {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    font-weight: 600;
    /* text-transform: uppercase; */
    color: #221f20;
    margin-bottom: 10px;
}

.sc-detail-subtitle {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.sc-detail-price {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    color: #221f20;
    margin-bottom: 30px;
}

.sc-detail-description {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    color: #221f20;
    line-height: 1.3;
    margin-bottom: 30px;
}

.sc-detail-description p {
    margin: 0;
}

/* +Details toggle */
.sc-detail-more {
    margin-bottom: 60px;
}

.sc-details-toggle {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    color: #221f20;
    text-decoration: none;
    cursor: pointer;
}

.sc-details-toggle:hover {
    opacity: 0.6;
}

.sc-details-content {
    display: none;
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    color: #221f20;
    line-height: 1.3;
    margin-top: 10px;
}

.sc-details-content.active {
    display: block;
}

.sc-details-content p {
    margin: 0 0 10px;
}

/* Add to cart area */
.sc-add-to-cart .variations {
    width: 100%;
    margin-bottom: 0;
}

.sc-add-to-cart .variations select,
.sc-add-to-cart select {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    width: 100%;
    padding: 5px 15px;
    border: 1px solid #000;
    background: #fff;
    color: #221f20;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    text-align: center;
}

.sc-add-to-cart .variations td {
    display: block;
    width: 100%;
    padding: 0;
}

.sc-add-to-cart .variations tr {
    display: block;
    margin-bottom: 8px;
}

.sc-add-to-cart .variations th,
.sc-add-to-cart .variations td.label {
    display: none;
}

.sc-add-to-cart .single_add_to_cart_button,
.sc-add-to-cart button[type="submit"] {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    width: 100%;
    padding: 8px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: none;
    transition: background 0.2s;
}

.sc-add-to-cart .single_add_to_cart_button:hover {
    background: #000;
}

.sc-add-to-cart .single_add_to_cart_button.disabled,
.sc-add-to-cart .single_add_to_cart_button:disabled {
    opacity: 1;
    cursor: not-allowed;
}

.sc-add-to-cart .quantity {
    display: none;
    margin-bottom: 15px;
    position: relative;
}

.sc-add-to-cart .quantity.sc-show {
    display: block;
}

.sc-add-to-cart .quantity::before {
    content: "Select Quantity";
    display: block;
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    color: #221f20;
    text-align: center;
    margin-bottom: 8px;
}

.sc-add-to-cart .quantity input[type="number"] {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    width: 100%;
    padding: 5px 15px;
    border: 1px solid #000;
    background: #fff;
    color: #221f20;
    text-align: center;
    -moz-appearance: textfield;
}

.sc-add-to-cart .quantity input[type="number"]::-webkit-inner-spin-button,
.sc-add-to-cart .quantity input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
}

.sc-add-to-cart .reset_variations {
    display: none !important;
}

.sc-add-to-cart .woocommerce-variation-price {
    display: none;
}

.sc-add-to-cart table.variations {
    border: none;
}

.sc-add-to-cart table.variations td,
.sc-add-to-cart table.variations tr {
    border: none;
}

/* ===== RELATED PRODUCTS ===== */
.sc-related {
    margin-top: 60px;
    padding-top: 40px;
}

.sc-related-title {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #221f20;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* ===== CART PAGE ===== */
.woocommerce-cart .site-content,
.woocommerce-checkout .site-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    font-family: "Euclid Circular A", sans-serif;
    color: #221f20;
}

/* Cart table */
.woocommerce-cart-form table.shop_table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    font-family: "Euclid Circular A", sans-serif;
}

.woocommerce-cart-form table.shop_table thead {
    border-bottom: 1px solid #e0e0e0;
}

.woocommerce-cart-form table.shop_table thead th {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
    color: #221f20;
    padding: 10px 8px;
    text-align: left;
    border: none;
}

.woocommerce-cart-form table.shop_table tbody td {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    color: #221f20;
    padding: 20px 8px;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

/* Product thumbnail in cart */
.woocommerce-cart-form .product-thumbnail img {
    width: 80px;
    height: auto;
}

/* Product name */
.woocommerce-cart-form .product-name a {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    color: #221f20;
    text-decoration: none;
}

.woocommerce-cart-form .product-name a:hover {
    opacity: 0.6;
}

/* Variation data */
.woocommerce-cart-form .product-name .variation {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.woocommerce-cart-form .product-name .variation dt,
.woocommerce-cart-form .product-name .variation dd {
    display: inline;
    margin: 0;
    font-style: normal;
}

.woocommerce-cart-form .product-name .variation p {
    margin: 2px 0;
}

/* Remove button */
.woocommerce-cart-form .product-remove a.remove {
    font-size: 20px;
    color: #221f20 !important;
    text-decoration: none;
    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
}

.woocommerce-cart-form .product-remove a.remove:hover {
    color: #c00 !important;
}

/* Quantity input in cart */
.woocommerce-cart-form .quantity input[type="number"] {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    width: 60px;
    padding: 3px 8px;
    border: 1px solid #000;
    text-align: center;
    background: #fff;
    color: #221f20;
}

/* Cart actions row */
.woocommerce-cart-form .actions {
    padding: 20px 8px !important;
    border-bottom: none !important;
    text-align: right;
}

.woocommerce-cart-form .actions .coupon {
    display: inline-flex;
    gap: 0;
    align-items: center;
    float: left;
}

.woocommerce-cart-form .actions button[name="update_cart"] {
    white-space: nowrap;
}

.woocommerce-cart-form .actions .coupon input {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    padding: 8px 12px;
    border: 1px solid #000;
    background: #fff;
}

.woocommerce-cart-form .actions button,
.woocommerce-cart-form .actions .button {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    padding: 5px 20px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.woocommerce-cart-form .actions button:hover,
.woocommerce-cart-form .actions .button:hover {
    background: #000;
}

/* Cart totals */
.cart-collaterals {
    margin-top: 40px;
    overflow: hidden;
}

.cart_totals {
    float: right;
    width: 100%;
    max-width: 400px;
    background: #f8f8f8;
    padding: 25px 30px;
}

.cart_totals h2 {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
    color: #221f20;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.cart_totals table {
    width: 100%;
    border-collapse: collapse;
}

.cart_totals table th,
.cart_totals table td {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    color: #221f20;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
    vertical-align: top;
}

.cart_totals table th {
    font-weight: normal;
    text-transform: uppercase;
    font-size: 12px;
    width: 40%;
}

.cart_totals table td {
    text-align: right;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-weight: bold;
    font-size: 12px;
    border-bottom: none;
    padding-top: 18px;
}

.cart_totals .shipping td {
    text-align: right;
}

.cart_totals .shipping td p {
    margin: 0;
}

.cart_totals .shipping .woocommerce-shipping-destination {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.cart_totals .shipping a {
    font-size: 12px;
    color: #221f20;
}

/* Checkout button */
.wc-proceed-to-checkout a.checkout-button,
.wc-proceed-to-checkout .button {
    display: block;
    width: 100%;
    text-align: center;
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    padding: 5px;
    background: #2c2c2c;
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.2s;
}

.wc-proceed-to-checkout a.checkout-button:hover {
    background: #000;
}

/* Empty cart */
.cart-empty {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 16px;
    color: #221f20;
    text-align: center;
    padding: 60px 0 20px;
}

.return-to-shop a {
    display: inline-block;
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    padding: 12px 30px;
    background: #2c2c2c;
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s;
}

.return-to-shop a:hover {
    background: #000;
}

.return-to-shop {
    text-align: center;
    margin-top: 10px;
}

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: none;
    background: #f8f8f8;
    color: #221f20;
    list-style: none;
}

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

/* ===== CHECKOUT PAGE ===== */
.woocommerce-checkout .woocommerce {
    font-family: "Euclid Circular A", sans-serif;
}

/* Checkout columns */
.woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    width: 100%;
}

/* Section headings */
.woocommerce-checkout h3,
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout #order_review_heading {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #221f20;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

/* Form fields */
.woocommerce-checkout .form-row {
    margin-bottom: 15px;
}

.woocommerce-checkout .form-row label {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    color: #221f20;
    display: block;
    margin-bottom: 5px;
}

.woocommerce-checkout .form-row label .required {
    color: #221f20;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    width: 100%;
    padding: 5px 12px;
    border: 1px solid #ccc;
    background: #fff;
    color: #221f20;
    outline: none;
    transition: border-color 0.2s;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
    border-color: #000;
}

.woocommerce-checkout .form-row textarea {
    min-height: 80px;
    resize: vertical;
}

/* Select2 dropdown override */
.woocommerce-checkout .select2-container .select2-selection--single {
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 0;
}

.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    color: #221f20;
    line-height: 40px;
    padding-left: 12px;
}

.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

/* Ship to different address */
.woocommerce-checkout .woocommerce-shipping-fields #ship-to-different-address {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    color: #221f20;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox input {
    width: 15px;
    height: 15px;
    position: relative;
    top: 3px;
}

/* Order review table */
.woocommerce-checkout .woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Euclid Circular A", sans-serif;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    color: #221f20;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
    font-weight: bold;
    font-size: 14px;
    border-bottom: none;
    padding-top: 15px;
}

/* Payment methods */
.woocommerce-checkout #payment {
    background: #f8f8f8;
    padding: 20px;
    margin-top: 20px;
}

.woocommerce-checkout #payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    border: none;
}

.woocommerce-checkout #payment ul.payment_methods li {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    color: #221f20;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.woocommerce-checkout #payment ul.payment_methods li:last-child {
    border-bottom: none;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    cursor: pointer;
}

.woocommerce-checkout #payment .payment_box {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 13px;
    color: #666;
    padding: 10px 0;
    background: transparent;
}

.woocommerce-checkout #payment .payment_box::before {
    display: none;
}

/* Place order button */
.woocommerce-checkout #place_order {
    display: block;
    width: 100%;
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    padding: 10px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
    margin-top: 15px;
}

.woocommerce-checkout #place_order:hover {
    background: #000;
}

/* Privacy text */
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

/* Woo form login/coupon toggles */
.woocommerce-checkout .woocommerce-form-login-toggle,
.woocommerce-checkout .woocommerce-form-coupon-toggle {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Price on request checkout note */
.sc-por-note {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 13px;
    color: #221f20;
    line-height: 1.5;
    padding: 15px 0 !important;
    border-top: 1px solid #e0e0e0;
}

/* ===== ORDER PAY PAGE ===== */
.woocommerce-order-pay .site-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 20px;
}

.woocommerce-order-pay .woocommerce {
    font-family: "Euclid Circular A", sans-serif;
    color: #221f20;
}

.woocommerce-order-pay .woocommerce ul.order_details {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    background: #f8f8f8;
    padding: 25px 30px;
}

.woocommerce-order-pay .woocommerce ul.order_details li {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    color: #221f20;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.woocommerce-order-pay .woocommerce ul.order_details li:last-child {
    border-bottom: none;
}

.woocommerce-order-pay .woocommerce ul.order_details li strong {
    font-weight: 600;
}

.woocommerce-order-pay #payment {
    background: #f8f8f8;
    padding: 25px 30px;
    margin-top: 20px;
}

.woocommerce-order-pay #payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    border: none;
}

.woocommerce-order-pay #payment ul.payment_methods li {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    padding: 10px 0;
}

.woocommerce-order-pay #payment ul.payment_methods li label {
    font-family: "Euclid Circular A", sans-serif;
    cursor: pointer;
}

.woocommerce-order-pay #payment .payment_box {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 13px;
    color: #666;
    padding: 15px 0;
    background: transparent;
}

.woocommerce-order-pay #payment .payment_box::before {
    display: none;
}

.woocommerce-order-pay #payment .payment_box fieldset {
    border: 1px solid #ddd;
    padding: 20px;
    margin: 0;
    background: #fff;
}

.woocommerce-order-pay #payment .payment_box label {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 13px;
    color: #221f20;
    display: block;
    margin-bottom: 5px;
}

.woocommerce-order-pay #payment .payment_box input,
.woocommerce-order-pay #payment .payment_box .wc-credit-card-form-card-number,
.woocommerce-order-pay #payment .payment_box .wc-credit-card-form-card-expiry,
.woocommerce-order-pay #payment .payment_box .wc-credit-card-form-card-cvc {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    background: #fff;
    margin-bottom: 15px;
}

.woocommerce-order-pay #payment .payment_box .form-row {
    margin-bottom: 15px;
}

.woocommerce-order-pay #place_order {
    display: block;
    width: 100%;
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    padding: 10px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
    margin-top: 20px;
}

.woocommerce-order-pay #place_order:hover {
    background: #000;
}

/* ===== ORDER RECEIVED / THANK YOU PAGE ===== */
.woocommerce-order-received .site-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

.woocommerce-order-received .woocommerce {
    font-family: "Euclid Circular A", sans-serif;
    color: #221f20;
}

.woocommerce-order-received .woocommerce-thankyou-order-received {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    color: #221f20;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.woocommerce-order-received .woocommerce-order-overview {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #f8f8f8;
    padding: 25px 30px;
}

.woocommerce-order-received .woocommerce-order-overview li {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

.woocommerce-order-received .woocommerce-order-overview li strong {
    display: block;
    font-size: 12px;
    color: #221f20;
    margin-top: 5px;
    text-transform: none;
}

.woocommerce-order-received .woocommerce-order-overview li.total {
    display: none;
}

.woocommerce-order-received h2 {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    color: #221f20;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.woocommerce-order-received table.shop_table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Euclid Circular A", sans-serif;
    border: none;
}

.woocommerce-order-received table.shop_table thead th {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
    color: #221f20;
    padding: 10px 8px;
    text-align: left;
    border: none;
    border-bottom: 1px solid #e0e0e0;
}

.woocommerce-order-received table.shop_table tbody td,
.woocommerce-order-received table.shop_table tfoot td,
.woocommerce-order-received table.shop_table tfoot th {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    color: #221f20;
    padding: 12px 8px;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}

.woocommerce-order-received table.shop_table tfoot .order-total th,
.woocommerce-order-received table.shop_table tfoot .order-total td {
    font-weight: bold;
    font-size: 16px;
}

/* Billing/Shipping addresses */
.woocommerce-order-received .woocommerce-columns--addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.woocommerce-order-received .woocommerce-column__title {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
    color: #221f20;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.woocommerce-order-received address {
    font-family: "Euclid Circular A", sans-serif;
    font-size: 12px;
    font-style: normal;
    color: #221f20;
    line-height: 1.6;
}

/* ===== BURGER & MOBILE MENU (hidden on desktop) ===== */
.mobile-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 22px;
    height: 14px;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    margin-right: 12px;
}

.mobile-burger span {
    display: block;
    width: 100%;
    height: 1px;
    background: #999;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9998;
    flex-direction: column;
    align-items: center;
}

.mobile-menu-overlay.open {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 28px 24px 20px;
    position: relative;
    flex-shrink: 0;
}

.mobile-menu-close {
    position: absolute;
    left: 6vw;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    width: 26px;
    height: 26px;
    padding: 0;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #0c0d0d;
}

.mobile-menu-close::before {
    transform: rotate(45deg);
}

.mobile-menu-close::after {
    transform: rotate(-45deg);
}

.mobile-menu-logo {
    width: 55vw;
    max-width: 260px;
    height: auto;
}

.mobile-menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3vh;
    gap: 20px;
}

.mobile-nav-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-menu-nav a {
    font-family: "Times New Roman", Times, serif;
    font-size: 20px;
    font-weight: 400;
    color: #0c0d0d;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: opacity 0.2s ease;
}

.mobile-menu-nav a:hover {
    opacity: 0.5;
}

.mobile-menu-nav ul,
.mobile-menu-nav ul li {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

::marker {
    display: none;
    color: #fff;
}

.mobile-nav-group.mobile-nav-extra {
    padding-top: 20px;
}

/* ===== MOBILE (768px and below) ===== */
.search-icon { display: none; }
.sc-toolbar-homepage { display: none; }

@media (max-width: 768px) {
    .header-inner {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 20px 0px;
        max-width: 600px;
        margin: 0 auto;
    }

    .header-center .site-logo img {
        height: 70px;
        width: auto;
        transition: height 0.3s ease;
    }

    .sc-shop-container {
        max-width: 600px;
        margin: 0 auto;
        padding: 0;
    }
    .sc-single-product {
        max-width: 600px;
        margin: 0 auto;
        padding: 20px 40px;
    }

    .sc-breadcrumbs {
        margin-bottom: 0;
        position: absolute;
        border: 0;
        z-index: 11;
        margin-left: -110px;
        text-align: left;
        width: 100px;
    }

    .woocommerce-cart .site-content,
    .woocommerce-checkout .site-content {
        max-width: 600px;
        margin: 0 auto;
        padding: 30px 20px;
    }

    .woocommerce-order-received .site-content {
        max-width: 600px;
        margin: 0 auto;
        padding: 30px 20px;
    }
}

/* ===== MOBILE (480px and below) ===== */
@media (max-width: 480px) {
    .mobile-burger {
        display: flex;
    }

    .category-nav {
        display: none;
    }

    .header-inner {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 20px 0px;
        max-width: 90%;
        margin: 0 auto;
    }

    .header-center .site-logo img {
        height: auto;
        width: auto;
    }

    .header-left {
        display: flex;
        align-items: center;
        flex: 0 0 25%;
    }

    .header-center {
        flex: 0 0 50%;
    }

    .header-right {
        flex: 0 0 25%;
    }

    .header-left .homepage-link {
        display: none;
    }

    .header-right a {
        font-family: "Times New Roman", Times, serif;
        font-size: 12px;
        color: #221f20;
    }

    .search-icon { display: block; }
    .search-text { display: none; }
    .search-toggle { color: #999; }
    .cart-text { display: none; }
    .cart-count {
        font-size: 14px;
        text-decoration: none;
        display: inline-block;
        border-bottom: 1px solid currentColor;
        padding-bottom: 4px;
        padding-left: 3px;
        padding-right: 3px;
    }

    .sc-shop-toolbar {
        justify-content: space-between;
        align-items: center;
    }

    .sc-toolbar-homepage {
        display: block;
        font-family: "Times New Roman", Times, serif;
        font-size: 12px;
        color: #221f20;
        text-decoration: none;
    }

    .sc-shop-container {
        max-width: 90%;
        margin: 0 auto;
        padding: 0;
    }

    .sc-product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 5px;
        row-gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .sc-product-title {
        font-family: "Euclid Circular A", sans-serif;
        font-size: 12px;
        font-weight: 600;
        text-transform: none;
        color: #221f20;
        margin-bottom: 0;
    }

    .sc-product-price {
        font-family: "Euclid Circular A", sans-serif;
        font-size: 12px;
        color: rgba(34, 31, 32, 0.7);
        font-style: italic;
    }

    .sc-shop-toolbar .woocommerce-ordering select {
        font-family: "Times New Roman", Times, serif;
        font-size: 12px;
        color: #221f20;
        border: none;
        background: transparent;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        padding-right: 0;
        text-align: right;
    }

    .sc-breadcrumbs {
        margin-bottom: 0;
        position: relative;
        border: 0;
        z-index: 11;
        margin-left: 0;
        text-align: left;
        width: 100%;
        margin-bottom: 10px;
    }

    .sc-product-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sc-gallery-thumbs {
        flex-direction: row;
        order: 2;
    }

    .sc-gallery-main {
        order: 1;
    }

    .sc-product-details {
        order: 3;
    }

    .sc-single-product {
        max-width: 400px;
        padding: 20px 20px;
    }

    /* Cart: table to stacked cards */
    .woocommerce-cart .site-content,
    .woocommerce-checkout .site-content {
        max-width: 400px;
        padding: 20px 15px;
    }

    .woocommerce-cart-form table.shop_table,
    .woocommerce-cart-form table.shop_table thead,
    .woocommerce-cart-form table.shop_table tbody,
    .woocommerce-cart-form table.shop_table tr,
    .woocommerce-cart-form table.shop_table td {
        display: block;
        width: 100%;
    }

    .woocommerce-cart-form table.shop_table thead {
        display: none;
    }

    .woocommerce-cart-form table.shop_table tbody tr {
        border-bottom: 1px solid #e0e0e0;
        padding: 20px 0;
        position: relative;
    }

    .woocommerce-cart-form table.shop_table tbody td {
        padding: 4px 0;
        border: none;
        text-align: left;
    }

    .woocommerce-cart-form table.shop_table tbody td::before {
        content: attr(data-title);
        font-family: "Euclid Circular A", sans-serif;
        font-size: 10px;
        font-weight: normal;
        text-transform: uppercase;
        color: #888;
        display: block;
        margin-bottom: 3px;
    }

    .woocommerce-cart-form .product-remove {
        text-align: left;
        padding-top: 10px;
    }

    .woocommerce-cart-form .product-remove a.remove {
        font-size: 12px !important;
        width: auto !important;
        height: auto !important;
        color: #c00 !important;
        font-family: "Euclid Circular A", sans-serif;
        text-transform: uppercase;
    }

    .woocommerce-cart-form .product-remove a.remove::after {
        content: "Remove";
    }

    .woocommerce-cart-form .product-remove::before {
        display: none;
    }

    .woocommerce-cart-form .product-thumbnail img {
        width: 80px;
    }

    .woocommerce-cart-form .actions {
        text-align: center;
    }

    .woocommerce-cart-form .actions .coupon {
        float: none;
        margin-bottom: 10px;
    }

    .cart_totals {
        float: none;
        max-width: 100%;
    }

    .woocommerce-checkout .col2-set {
        display: flex;
        flex-direction: column;
    }

    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2 {
        width: 100%;
        float: none;
    }
}
