.jewelry-page {
    font-family: var(--font-body);
    font-size: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
}

.jewelry-page .jewelry-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.jewelry-page .jewelry-hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
    color: #1c1c1a;
}

.jewelry-page .jewelry-hero p {
    font-family: var(--font-body);
    color: #777;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    margin: 0;
}

.jewelry-page .empty-state {
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: #666;
}

.jewelry-page .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.jewelry-page .product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.jewelry-page .product-card {
    position: relative;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.jewelry-page .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.09);
}

.jewelry-page .product-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    background: #f5f5f5;
    overflow: hidden;
}

.jewelry-page .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.jewelry-page .product-card:hover .product-image {
    transform: scale(1.04);
}

.jewelry-page .product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #9a9a9a;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    font-family: var(--font-body);
}

.jewelry-page .product-card-body {
    padding: 1.1rem 1rem 0.9rem;
    text-align: left;
}

.jewelry-page .product-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #1c1c1a;
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.jewelry-page .product-price {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #8a6d3b;
    margin: 0;
}

.jewelry-page .product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.jewelry-page .product-detail-image {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jewelry-page .detail-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.jewelry-page .detail-placeholder {
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #9a9a9a;
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.jewelry-page .product-detail-info {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.jewelry-page .detail-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: #9a9a9a;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.jewelry-page .detail-name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0 0 1rem;
    color: #1c1c1a;
    line-height: 1.15;
}

.jewelry-page .detail-price {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 600;
    color: #8a6d3b;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.jewelry-page .detail-stock {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.jewelry-page .detail-description {
    margin-bottom: 2rem;
}

.jewelry-page .detail-description h3 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: #444;
}

.jewelry-page .detail-description p {
    margin: 0;
    color: #666;
    line-height: 1.75;
    font-size: 0.95rem;
}

.jewelry-page .add-to-cart-form {
    margin-top: 1rem;
}

.jewelry-page .quantity-group {
    margin-bottom: 1.4rem;
}

.jewelry-page .quantity-label {
    display: block;
    margin-bottom: 0.7rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #333;
}

.jewelry-page .detail-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.jewelry-page .jewelry-btn-secondary {
    display: inline-block;
    padding: 0.7rem 1.2rem;
    background: #fff;
    color: #222;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    transition: all 0.2s ease;
}

.jewelry-page .jewelry-btn-secondary:hover {
    background: #f5f5f5;
    color: #222;
}

.jewelry-page .jewelry-add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    padding: 0.9rem 1.6rem;
    background: #786C3B;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.jewelry-page .jewelry-add-to-cart-btn:hover {
    background: #5a5029;
    color: #fff;
}

.jewelry-page .jewelry-add-to-cart-btn:active {
    transform: translateY(1px);
}

.jewelry-page .quantity-group .qty-box {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.jewelry-page .quantity-group .jewelry-qty-minus,
.jewelry-page .quantity-group .jewelry-qty-plus {
    width: 36px;
    height: 36px;
    border: 1px solid #d6d6d6;
    background: #f7f7f7;
    border-radius: 10px;
    color: #444;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    margin: 0;
    transition: all 0.2s ease;
}

.jewelry-page .quantity-group .jewelry-qty-minus:hover,
.jewelry-page .quantity-group .jewelry-qty-plus:hover {
    background: #ececec;
    color: #222;
}

.jewelry-page .quantity-group .jewelry-quantity-input {
    width: 64px;
    max-width: 64px;
    height: 44px;
    min-height: 44px;
    padding: 0.35rem 0.4rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #c8c8c8;
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
    box-sizing: border-box;
    text-align: center;
    margin: 0;
}

.jewelry-page .cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.jewelry-page .cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.jewelry-page .cart-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.6rem;
    background: #fff;
    border: 1px solid #ece7dc;
    border-radius: 20px;
    padding: 1.4rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.jewelry-page .cart-item-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
}

.jewelry-page .cart-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jewelry-page .cart-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #9a9a9a;
    font-size: 0.95rem;
}

.jewelry-page .cart-item-info {
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.jewelry-page .cart-item-info h3 {
    font-family: var(--font-display);
    margin: 0 0 0.8rem;
    color: #1c1c1a;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.jewelry-page .cart-price,
.jewelry-page .cart-subtotal {
    font-family: var(--font-body);
    margin: 0 0 0.5rem;
    color: #555;
    font-size: 0.92rem;
}

.jewelry-page .cart-update-form {
    margin: 0.5rem 0 1rem;
}

.jewelry-page .cart-quantity-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.jewelry-page .cart-quantity-label {
    font-family: var(--font-body);
    margin: 0;
    min-width: 90px;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    color: #333;
}

.jewelry-page .cart-quantity-row .qty-box {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.jewelry-page .cart-quantity-row .jewelry-quantity-input,
.jewelry-page .cart-quantity-row .cart-quantity-input {
    width: 72px;
    max-width: 72px;
    min-height: 36px;
    height: 36px;
    padding: 0.3rem 0.4rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 2px solid #c8c8c8;
    border-radius: 10px;
    background: #fff;
    box-shadow: none;
    box-sizing: border-box;
    text-align: center;
    margin: 0;
}

.jewelry-page .cart-quantity-row .jewelry-qty-minus,
.jewelry-page .cart-quantity-row .jewelry-qty-plus {
    width: 32px;
    height: 32px;
    border: 1px solid #d6d6d6;
    background: #f7f7f7;
    border-radius: 8px;
    color: #444;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    line-height: 1;
    padding: 0;
    margin: 0;
    transition: all 0.2s ease;
}

.jewelry-page .cart-quantity-row .jewelry-qty-minus:hover,
.jewelry-page .cart-quantity-row .jewelry-qty-plus:hover {
    background: #ececec;
    color: #222;
}

.jewelry-page .jewelry-btn-remove {
    margin-top: auto;
    align-self: flex-end;
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #b33a3a;
    text-decoration: none;
    font-weight: 600;
}

.jewelry-page .jewelry-btn-remove:hover { text-decoration: underline; }

.jewelry-page .cart-summary {
    background: #fff;
    border: 1px solid #e7e2d7;
    border-radius: 20px;
    padding: 1.6rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 6rem;
}

.jewelry-page .cart-summary h2 {
    font-family: var(--font-display);
    margin: 0 0 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #1c1c1a;
}

.jewelry-page .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ececec;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.jewelry-page .summary-row strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1c1c1a;
}

.jewelry-page .summary-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.jewelry-page .jewelry-cart-link {
    font-family: var(--font-body);
    text-decoration: none;
    color: #666;
    font-size: 0.88rem;
}

.jewelry-page .jewelry-cart-link:hover { text-decoration: underline; }

.jewelry-page .jewelry-cart-primary-btn,
.jewelry-page .jewelry-cart-secondary-btn {
    width: 100%;
    text-align: center;
}

.jewelry-page .jewelry-cart-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    background: #786C3B;
    border-color: #786C3B;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.jewelry-page .jewelry-cart-primary-btn:hover {
    background: #5a5029;
    color: #fff;
}

.jewelry-page .jewelry-cart-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    background: #fff;
    color: #333;
    text-decoration: none;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.jewelry-page .jewelry-cart-secondary-btn:hover {
    background: #f7f7f7;
    color: #222;
}

.jewelry-page .jewelry-back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    color: #786C3B;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}

.jewelry-page .jewelry-back-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .jewelry-page .product-detail { grid-template-columns: 1fr; }
    .jewelry-page .product-detail-image,
    .jewelry-page .detail-image,
    .jewelry-page .detail-placeholder {
        min-height: 380px;
        height: 380px;
    }
    .jewelry-page .cart-layout { grid-template-columns: 1fr; }
    .jewelry-page .cart-item { grid-template-columns: 1fr; }
    .jewelry-page .cart-item-image { height: 240px; }
    .jewelry-page .cart-summary { position: static; }
    .jewelry-page .jewelry-btn-remove { align-self: flex-start; margin-top: 1rem; }
}

.jewelry-page .result-card {
    max-width: 520px;
    margin: 4rem auto;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

.jewelry-page .result-icon { font-size: 3.5rem; margin-bottom: 1rem; }

.jewelry-page .result-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: #1c1c1a;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.jewelry-page .result-subtitle {
    font-family: var(--font-body);
    color: #666;
    font-size: 0.92rem;
    margin-bottom: 1.8rem;
}

.jewelry-page .result-order-info {
    background: #f9f7f2;
    border: 1px solid #e8e2d4;
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1.8rem;
    text-align: left;
}

.jewelry-page .result-order-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.jewelry-page .result-order-row:last-child { margin-bottom: 0; }

.jewelry-page .result-order-label {
    font-family: var(--font-body);
    color: #888;
    font-size: 0.88rem;
}

.jewelry-page .result-order-value {
    font-family: var(--font-body);
    font-weight: 600;
    color: #333;
    font-size: 0.88rem;
}

.jewelry-page .result-order-value.status { color: #786C3B; }

.jewelry-page .result-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.95rem;
    background: #786C3B;
    color: #fff !important;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.2s ease;
}

.jewelry-page .result-btn:hover { background: #5a5029; }

.jewelry-page .jewelry-filter-bar {
    margin-bottom: 2rem;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.jewelry-page .jewelry-filter-form {
    width: 100%;
}

.jewelry-page .filter-bar-inner {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1.5px solid #e0ddd4;
    padding: 0 0.5rem;
}

/* ---- Dropdown trigger buttons ---- */
.jewelry-page .filter-dropdown {
    position: relative;
}

.jewelry-page .filter-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: #555;
    background: none;
    border: none;
    padding: 1rem 1.2rem;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    margin-bottom: -1px;
}

.jewelry-page .filter-dropdown-btn:hover,
.jewelry-page .filter-dropdown:hover .filter-dropdown-btn {
    color: var(--oakwood);
    border-bottom-color: var(--oakwood);
}

.jewelry-page .filter-dropdown-btn.is-active {
    color: var(--oakwood);
    font-weight: 600;
    border-bottom-color: var(--oakwood);
}

.jewelry-page .filter-active-label {
    color: var(--oakwood);
}

.jewelry-page .filter-chevron {
    width: 10px;
    height: 10px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.jewelry-page .filter-dropdown:hover .filter-chevron {
    transform: rotate(180deg);
}

/* ---- Dropdown menus ---- */
.jewelry-page .filter-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 100;
    padding: 0.4rem 0;
    animation: dropdownFade 0.15s ease;
}

.jewelry-page .filter-dropdown-menu--sort {
    right: 0;
    left: auto;
    min-width: 200px;
}

.jewelry-page .filter-dropdown-menu--price {
    min-width: 260px;
    padding: 1rem 1.2rem;
}

.jewelry-page .filter-dropdown:hover .filter-dropdown-menu {
    display: block;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Dropdown items ---- */
.jewelry-page .filter-dropdown-item {
    display: block;
    padding: 0.55rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.84rem;
    color: #555;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    user-select: none;
}

.jewelry-page .filter-dropdown-item:hover {
    background: rgba(120, 108, 59, 0.07);
    color: var(--oakwood);
    text-decoration: none;
}

.jewelry-page .filter-dropdown-item.active {
    color: var(--oakwood);
    font-weight: 600;
    background: rgba(120, 108, 59, 0.06);
}

.jewelry-page .filter-dropdown-item input[type="radio"] {
    display: none;
}

/* ---- Price dropdown internals ---- */
.jewelry-page .price-dropdown-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.jewelry-page .price-prefix,
.jewelry-page .price-sep {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #888;
}

.jewelry-page .price-input {
    width: 75px;
    height: 34px;
    padding: 0 0.5rem;
    border: 1.5px solid #d8d8d8;
    border-radius: 7px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    box-sizing: border-box;
    outline: none;
}

.jewelry-page .price-input:focus { border-color: var(--oakwood); }

.jewelry-page .filter-apply-btn {
    width: 100%;
    height: 34px;
    padding: 0 1rem;
    background: var(--oakwood);
    color: #fff;
    border: none;
    border-radius: 7px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.jewelry-page .filter-apply-btn:hover { background: var(--oakwood-dark); }

/* ---- Sort right-aligned ---- */
.jewelry-page .filter-dropdown--right {
    margin-left: auto;
}

/* ---- Clear ---- */
.jewelry-page .filter-clear-btn {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--oakwood);
    text-decoration: none;
    padding: 0 0.8rem;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.jewelry-page .filter-clear-btn:hover {
    color: #c0392b;
    text-decoration: none;
}

@media (max-width: 768px) {
    .jewelry-page .filter-bar-inner { flex-wrap: wrap; }
    .jewelry-page .filter-dropdown--right { margin-left: 0; }
    .jewelry-page .filter-dropdown-menu { position: fixed; left: 1rem; right: 1rem; min-width: unset; }
}

.jewelry-page .result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.jewelry-page .result-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
}

.jewelry-page .result-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.95rem;
    background: #fff;
    color: #333;
    border: 1.5px solid #d7d7d7;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.jewelry-page .result-btn-secondary:hover {
    background: #f7f7f7;
    border-color: #bbb;
    color: #333;
    text-decoration: none;
}

.jewelry-page .quantity-group select {
    height: 44px;
    border: 2px solid #c8c8c8;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: #fff;
    color: #333;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20'><path d='M5 7l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    padding: 0 2rem 0 1rem;
    min-width: 120px;
    width: auto;
    transition: border-color 0.2s;
}

.jewelry-page .quantity-group select:focus {
    border-color: #786C3B;
}

/* ---- Sort ---- */
.filter-group-sort {
    border-top: 1px solid rgba(120, 108, 59, 0.1);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.filter-sort-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.filter-sort-radio {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: #666;
    padding: 0.35rem 0.9rem;
    border: 1px solid #d1d1d1;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    user-select: none;
}

.filter-sort-radio input[type="radio"] {
    display: none;
}

.filter-sort-radio:hover {
    border-color: var(--oakwood);
    color: var(--oakwood);
}

.filter-sort-radio.active {
    background: var(--oakwood);
    border-color: var(--oakwood);
    color: #fff;
}
