/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;700&family=Lato:wght@300;400;700&display=swap');

/* --- Root & Global Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #0c0b09;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Global Layout Container --- */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
    position: relative;
}

/* --- Premium Navigation Header --- */
.qadr-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 35px 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.qadr-header.scrolled {
    background: linear-gradient(
        135deg,
        #24180f 0%,
        #3b2b1d 50%,
        #5a4430 100%
    );
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(
        135deg,
        #24180f 0%,
        #3b2b1d 50%,
        #5a4430 100%
    );
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: all 0.3s ease;
    font-size: 20px;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background-color: #c95b1d;
    transform: translateY(-5px);
}

/* --- Header Container --- */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 50px;
}

/* --- Mobile Menu Toggle Button (Hidden on Desktop) --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.logo a {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 3px;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.main-nav a {
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    padding-bottom: 6px;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    transition: 0.2s;
    border-bottom: 1px solid #fff;
    color: #ffffff;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 28px;
}

.icon-link {
    color: #ffffff;
    font-size: 17px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.icon-link:hover {
    color: #c5a059;
    transform: translateY(-1px);
}

.login-text-link {
    font-family: 'Lato', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 7px 22px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.login-text-link:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* --- Shopping Cart Wrapper --- */
.cart-trigger {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -10px;
    background: #c5a059;
    color: #ffffff;
    font-size: 9px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* --- Cart Drawer --- */
.cart-open {
    overflow: hidden;
}

.qadr-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 13, 9, 0.46);
    opacity: 0;
    pointer-events: none;
    z-index: 1800;
    transition: opacity 0.34s ease;
}

.qadr-cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.qadr-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(560px, 100vw);
    height: 100vh;
    background: linear-gradient(135deg, #24180f 0%, #3b2b1d 50%, #5a4430 100%);
    color: #171411;
    z-index: 1801;
    display: flex;
    flex-direction: column;
    transform: translateX(104%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -24px 0 55px rgba(20, 15, 10, 0.2);
}

.qadr-cart-drawer.active {
    transform: translateX(0);
}

.qadr-cart-head {
    height: 101px;
    flex: 0 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dcd1bf;
}

.qadr-cart-head h2 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 8px;
    color: #dcd1bf;
}

.qadr-cart-close {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.qadr-cart-close span {
    position: absolute;
    left: 7px;
    top: 16px;
    width: 22px;
    height: 1.5px;
    background: #6d6964;
}

.qadr-cart-close span:first-child {
    transform: rotate(45deg);
}

.qadr-cart-close span:last-child {
    transform: rotate(-45deg);
}

.qadr-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 40px;
}

.qadr-cart-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    margin-bottom: 34px;
}

.qadr-cart-img {
    width: 150px;
    height: 200px;
    background: #181818;
    overflow: hidden;
}

.qadr-cart-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.qadr-cart-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 500;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
    margin: 2px 0 8px;
}

.qadr-cart-price {
    font-family: 'Lato', sans-serif;
    color: #6b6259;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.qadr-cart-size {
    color: #dcd1bf;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.qadr-cart-quality {
    min-height: 20px;
    color: #6b6259;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.qadr-cart-actions-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.qadr-qty-control {
    width: 130px;
    height: 46px;
    border: 2px solid #dcd1bf;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    background: transparent;
}

.qadr-qty-control button {
    border: none;
    background: transparent;
    color: #151515;
    font-size: 22px;
    cursor: pointer;
    height: 100%;
}

.qadr-qty-control span {
    text-align: center;
    font-size: 15px;
    letter-spacing: 2px;
}

.qadr-remove-item,
.qadr-order-note {
    border: none;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: #111111;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    letter-spacing: 0.4px;
    padding: 0 0 3px;
    cursor: pointer;
}

.qadr-cart-empty {
    flex: 1;
    padding: 44px 40px;
    display: none;
    color: #3b2b1d;
}

.qadr-cart-empty p {
    margin-bottom: 14px;
    color: #6b6259;
}

.qadr-cart-empty a {
    color: #ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.qadr-cart-footer {
    flex: 0 0 auto;
    padding: 38px 40px 32px;
    border-top: 1px solid #dcd1bf;
}

.qadr-cart-footer p {
    color: #6b6259;
    margin: 10px 0 24px;
    letter-spacing: 0.3px;
}

.qadr-discount-input {
    width: 100%;
    height: 56px;
    border: 1px solid rgba(36, 24, 15, 0.15);
    background: transparent;
    color: #171411;
    padding: 0 17px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    outline: none;
    margin-bottom: 20px;
}

.qadr-discount-input:focus {
    border-color: #c5a059;
}

.qadr-checkout-btn {
    width: 100%;
    height: 56px;
    border: none;
    background: #1f1f1d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    letter-spacing: 5px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.qadr-checkout-btn:hover {
    background: #3b2b1d;
    transform: translateY(-1px);
}

/* --- Product Add Popup --- */
.qadr-product-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 7, 6, 0.72);
    opacity: 0;
    pointer-events: none;
    z-index: 1900;
    transition: opacity 0.32s ease;
}

.qadr-product-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.qadr-product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(1030px, calc(100vw - 48px));
    max-height: calc(100vh - 56px);
    background: #1f1f1d;
    color: #ffffff;
    z-index: 1901;
    display: grid;
    grid-template-columns: minmax(280px, 43%) 1fr;
    gap: 50px;
    padding: 58px 62px;
    transform: translate(-50%, -46%) scale(0.96);
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    transition: opacity 0.3s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.qadr-product-modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.qadr-product-modal-close {
    position: absolute;
    top: 28px;
    right: 30px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.qadr-product-modal-close span {
    position: absolute;
    left: 7px;
    top: 17px;
    width: 25px;
    height: 2px;
    background: #ffffff;
}

.qadr-product-modal-close span:first-child {
    transform: rotate(45deg);
}

.qadr-product-modal-close span:last-child {
    transform: rotate(-45deg);
}

.qadr-product-modal-img {
    min-height: 520px;
    background: #111111;
    overflow: hidden;
}

.qadr-product-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qadr-product-modal-info {
    padding-right: 8px;
}

.qadr-product-modal-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    line-height: 1.45;
    letter-spacing: 7px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 2px 0 18px;
}

.qadr-modal-price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.qadr-modal-price-row span {
    color: #dcd1bf;
    font-size: 22px;
    letter-spacing: 3px;
}

.qadr-modal-quality {
    margin: 28px 0 24px;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.qadr-modal-section {
    margin-bottom: 18px;
}

.qadr-modal-label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 15px;
    letter-spacing: 1.2px;
    color: #ffffff;
}

.qadr-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.qadr-size-option {
    min-width: 74px;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.qadr-size-option:hover,
.qadr-size-option.active {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.qadr-size-option:disabled {
    opacity: 0.28;
    cursor: not-allowed;
    text-decoration: line-through;
}

.qadr-modal-stock-note {
    min-height: 22px;
    color: rgba(220, 209, 191, 0.8);
    font-size: 13px;
    letter-spacing: 1px;
    margin: 8px 0 22px;
}

.qadr-modal-qty {
    width: 160px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    margin-bottom: 40px;
}

.qadr-modal-qty button {
    height: 100%;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 23px;
    cursor: pointer;
}

.qadr-modal-qty button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.qadr-modal-qty span {
    text-align: center;
    font-size: 16px;
    letter-spacing: 2px;
}

.qadr-modal-add-btn {
    width: 100%;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 5px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.qadr-modal-add-btn:hover {
    background: #ffffff;
    color: #1f1f1d;
    border-color: #ffffff;
}

.qadr-modal-add-btn:disabled {
    opacity: 0.38;
    cursor: not-allowed;
}

/* --- Product Detail Page --- */
.product-detail-page {
    color: #f6efe5;
}

.product-detail-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 58%) minmax(360px, 42%);
    border-bottom: 1px solid rgba(220, 209, 191, 0.14);
}

.product-detail-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 96px 1fr;
    min-height: 100vh;
    background: #151411;
}

.product-thumb-stack {
    padding: 104px 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(0, 0, 0, 0.18);
    z-index: 2;
}

.product-thumb-btn {
    width: 58px;
    height: 78px;
    padding: 0;
    border: 1px solid rgba(220, 209, 191, 0.18);
    background: #0f0f0e;
    overflow: hidden;
    cursor: pointer;
}

.product-thumb-btn.active {
    border-color: #dcd1bf;
}

.product-thumb-btn img,
.product-main-photo img,
.product-story-image img,
.product-closeup-grid img,
.product-similar-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-main-photo {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: #12110f;
}

.product-main-photo img {
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-main-photo:hover img,
.product-closeup-grid div:hover img,
.product-similar-card:hover img {
    transform: scale(1.045);
}

.detail-badge {
    top: 112px;
    left: 24px;
}

.product-detail-info {
    padding: 136px 72px 56px;
    background: #161614;
}

.product-detail-eyebrow,
.product-detail-quality,
.product-detail-label-row,
.product-detail-strip span,
.product-detail-closeups > span,
.product-similar-section > span,
.product-story-copy > span {
    color: #dcd1bf;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-detail-info h1 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: 3px;
    margin: 12px 0 8px;
}

.product-detail-price {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #dcd1bf;
    font-size: 18px;
    letter-spacing: 1.5px;
    margin: 22px 0;
}

.product-detail-copy {
    max-width: 460px;
    color: rgba(246, 239, 229, 0.72);
    margin-bottom: 28px;
}

.product-detail-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.product-detail-label-row a {
    color: #dcd1bf;
    text-decoration: underline;
}

.detail-size-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.detail-size-row span {
    min-width: 48px;
    height: 36px;
    border: 1px solid rgba(220, 209, 191, 0.24);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    letter-spacing: 1.2px;
}

.detail-size-row span.disabled {
    opacity: 0.3;
    text-decoration: line-through;
}

.detail-add-to-cart {
    width: 100%;
    height: 56px;
    margin: 10px 0 24px;
    border: 1px solid #dcd1bf;
    background: #dcd1bf;
    color: #11110f;
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    cursor: pointer;
}

.product-detail-accordions {
    border-top: 1px solid rgba(220, 209, 191, 0.14);
}

.product-detail-accordions details {
    border-bottom: 1px solid rgba(220, 209, 191, 0.14);
    padding: 16px 0;
}

.product-detail-accordions summary {
    cursor: pointer;
    color: #dcd1bf;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 12px;
}

.product-detail-accordions p {
    color: rgba(246, 239, 229, 0.68);
    padding-top: 12px;
}

.product-story-section {
    display: grid;
    grid-template-columns: 58% 42%;
    border-bottom: 1px solid rgba(220, 209, 191, 0.14);
}

.product-story-image {
    min-height: 360px;
    overflow: hidden;
}

.product-story-copy {
    padding: 70px 72px;
    background: #181713;
}

.product-story-copy h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 500;
    margin: 12px 0 18px;
}

.product-story-copy p {
    color: rgba(246, 239, 229, 0.72);
    max-width: 430px;
}

.product-detail-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid rgba(220, 209, 191, 0.14);
    background: #12120f;
}

.product-detail-strip div {
    min-height: 84px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 34px;
    border-right: 1px solid rgba(220, 209, 191, 0.1);
}

.product-detail-strip strong {
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.product-detail-closeups,
.product-similar-section {
    padding: 42px 72px;
    border-bottom: 1px solid rgba(220, 209, 191, 0.14);
}

.product-closeup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.product-closeup-grid div {
    height: 210px;
    overflow: hidden;
    background: #181713;
}

.product-closeup-grid img,
.product-similar-card img {
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.product-similar-card {
    min-height: 260px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    background: #181713;
}

.product-similar-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82));
}

.product-similar-card div {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.product-similar-card strong {
    font-size: 12px;
    letter-spacing: 1.2px;
}

.product-similar-card span {
    color: #dcd1bf;
    font-size: 12px;
}

/* --- Product Detail Shop Layout Override --- */
.product-detail-shop-layout {
    grid-template-columns: minmax(0, 63%) minmax(380px, 37%);
    align-items: start;
}

.product-detail-scroll-gallery {
    grid-template-columns: 124px 1fr;
    min-height: auto;
}

.product-detail-scroll-gallery .product-thumb-stack {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 108px 24px 28px;
    overflow-y: auto;
}

.product-detail-scroll-gallery .product-thumb-btn {
    display: block;
    width: 74px;
    height: 96px;
    flex: 0 0 auto;
}

.product-main-photo-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-main-photo-stack .product-main-photo {
    min-height: 100vh;
    height: 100vh;
    margin: 0;
    border-bottom: 1px solid rgba(220, 209, 191, 0.1);
}

.product-main-photo-stack .product-main-photo img {
    object-fit: cover;
    object-position: center;
}

.product-detail-shop-layout .product-detail-info {
    position: sticky;
    top: 0;
    min-height: 100vh;
    padding: 118px 76px 52px;
    overflow-y: auto;
}

.product-detail-note,
.product-detail-composition {
    color: #f6efe5;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.product-detail-composition {
    font-style: italic;
    color: #dcd1bf;
}

.detail-qty-preview {
    width: 160px;
    height: 58px;
    border: 1px solid rgba(220, 209, 191, 0.2);
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    text-align: center;
    margin: 18px 0 20px;
    color: #ffffff;
}

.detail-qty-preview span,
.detail-qty-preview strong {
    font-size: 16px;
    letter-spacing: 1px;
}

.product-detail-shop-layout .detail-add-to-cart {
    background: transparent;
    color: #ffffff;
    border-color: rgba(220, 209, 191, 0.22);
}

.product-detail-shop-layout .detail-add-to-cart:hover {
    background: #dcd1bf;
    color: #11110f;
}

.product-detail-shop-layout + .product-similar-section {
    background: #11110f;
}

body.product-detail-body .qadr-header,
.qadr-header.detail-solid-header {
    background: linear-gradient(135deg, #24180f 0%, #3b2b1d 50%, #5a4430 100%);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.28);
}

.product-detail-body .product-detail-page {
    background: #0c0b09;
    color: #281d13;
    padding-top: 70px;
}
.product-detail-body .product-detail-shop-layout {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 34px 25px 58px;
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(340px, 40%);
    gap: 34px;
    border-bottom: none;
    min-height: auto;
}

.product-detail-body .product-detail-scroll-gallery {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    background: transparent;
    min-height: auto;
}

.product-detail-body .product-thumb-stack {
    position: sticky;
    top: 104px;
    height: calc(100vh - 124px);
    padding: 0;
    overflow-y: auto;
    background: transparent;
    gap: 14px;
}

.product-detail-body .product-thumb-btn {
    width: 86px;
    height: 112px;
    border: 1px solid rgba(40, 29, 19, 0.18);
    background: #dcd1bf;
}

.product-detail-body .product-thumb-btn:hover,
.product-detail-body .product-thumb-btn.active {
    border-color: #5a4430;
}

.product-detail-body .product-thumb-btn img,
.product-detail-body .product-main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-detail-body .product-main-photo-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-detail-body .product-main-photo {
    height: min(760px, calc(100vh - 120px));
    min-height: 560px;
    margin: 0;
    background: #dcd1bf;
    overflow: hidden;
    border: 1px solid rgba(40, 29, 19, 0.08);
    cursor: zoom-in;
    scroll-margin-top: 104px;
}

.product-detail-body .product-main-photo img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-detail-body .product-zoom-trigger {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
    display: block;
}

.product-detail-body .product-main-photo:hover img {
    transform: scale(1.055);
}

.product-detail-body .detail-badge {
    top: 18px;
    left: 18px;
}

.product-detail-body .product-detail-info {
    position: sticky;
    top: 104px;
    min-height: auto;
    max-height: calc(100vh - 124px);
    overflow-y: auto;
    padding: 34px;
    background: #3b2b1d;
    color: #dcd1bf;
    border: 1px solid rgba(220, 209, 191, 0.14);
}

.product-detail-body .product-detail-eyebrow,
.product-detail-body .product-detail-quality,
.product-detail-body .product-detail-label-row,
.product-detail-body .product-similar-section > span {
    color: #c5a059;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
}

.product-detail-body .product-detail-info h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.12;
    letter-spacing: 2px;
    color: #f6efe5;
    margin: 10px 0 8px;
}

.product-detail-body .product-detail-price {
    color: #f6efe5;
    margin: 20px 0;
}

.product-detail-body .product-detail-copy,
.product-detail-body .product-detail-note,
.product-detail-body .product-detail-composition,
.product-detail-body .product-detail-accordions p {
    color: rgba(246, 239, 229, 0.78);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

.product-detail-body .product-detail-note {
    margin-bottom: 10px;
}

.product-detail-body .product-detail-composition {
    color: #dcd1bf;
    font-style: normal;
}

.product-detail-body .product-detail-label-row a {
    color: #dcd1bf;
}

.product-detail-body .detail-size-row button {
    min-width: 54px;
    height: 38px;
    border: 1px solid rgba(220, 209, 191, 0.22);
    background: transparent;
    color: #f6efe5;
    cursor: pointer;
    letter-spacing: 1px;
}

.product-detail-body .detail-size-row button.active,
.product-detail-body .detail-size-row button:hover {
    border-color: #dcd1bf;
    background: rgba(220, 209, 191, 0.1);
}

.product-detail-body .detail-size-row button.disabled,
.product-detail-body .detail-size-row button:disabled {
    opacity: 0.32;
    cursor: not-allowed;
    text-decoration: line-through;
}

.product-detail-body .detail-qty-preview button {
    height: 100%;
    border: none;
    background: transparent;
    color: #f6efe5;
    cursor: pointer;
    font-size: 18px;
}

.product-detail-body .detail-qty-preview button:disabled {
    opacity: 0.34;
    cursor: not-allowed;
}

.product-detail-body .detail-add-to-cart {
    border-color: #dcd1bf;
    background: #dcd1bf;
    color: #24180f;
}

.product-detail-body .detail-add-to-cart:hover {
    background: #f6efe5;
    color: #24180f;
}

.product-detail-body .detail-add-to-cart:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.product-detail-body .product-detail-accordions {
    border-top-color: rgba(220, 209, 191, 0.18);
}

.product-detail-body .product-detail-accordions details {
    border-bottom-color: rgba(220, 209, 191, 0.18);
}

.product-detail-body .product-detail-accordions summary {
    color: #dcd1bf;
}

.product-detail-body .product-similar-section {
    width: 100%;
    margin: 0;
    padding: 70px 0 86px;
    background: #eaddcf;
    border-top: 1px solid rgba(40, 29, 19, 0.14);
    border-bottom: 1px solid rgba(40, 29, 19, 0.08);
}

.product-detail-body .product-similar-section > span {
    color: #281d13;
}

.product-detail-body .product-similar-head {
    margin-bottom: 24px;
}

.product-detail-body .product-similar-card {
    min-height: 330px;
}

.product-zoom-overlay {
    position: fixed;
    inset: 0;
    z-index: 2200;
    background: rgba(17, 17, 15, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    padding: 34px;
}

.product-zoom-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.product-zoom-overlay img {
    max-width: min(96vw, 1400px);
    max-height: 92vh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.product-zoom-close {
    position: fixed;
    top: 28px;
    right: 30px;
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1;
}

.product-zoom-close span {
    position: absolute;
    left: 7px;
    top: 18px;
    width: 26px;
    height: 2px;
    background: #f6efe5;
}

.product-zoom-close span:first-child {
    transform: rotate(45deg);
}

.product-zoom-close span:last-child {
    transform: rotate(-45deg);
}

/* --- Main Hero Banner --- */
.main-hero-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url(../images/back_banner.jpeg) no-repeat center center / cover;
    display: flex;
    align-items: center;
    padding-top: 250px;
    padding-bottom: 150px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content-box {
    position: relative;
    z-index: 2;
    color: #ffffff;
    display: block;
    text-align: center;
}

/* --- Brand Identity --- */
.brand-identity h1 {
    font-family: none;
    font-size: clamp(55px, 8.5vw, 80px);
    font-weight: 400;
    color: #dcd1bf;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 10px;
}

.diamond-icon {
    width: 9px;
    height: 9px;
    background: #ffffff;
    transform: rotate(45deg);
    position: absolute;
    top: -4px;
    left: 0;
}

/* --- Hero Tagline --- */
.hero-tagline p {
    font-family: serif;
    font-size: clamp(20px, 2.2vw, 25px);
    line-height: 1.45;
    margin-bottom: 50px;
    font-weight: 400;
    color: #dcd1bf;
    letter-spacing: 1px;
}

/* --- CTA Buttons --- */
.btn-explore {
    font-family: 'Lato', sans-serif;
    color: #dcd1bf;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid #dcd1bf;
    padding-bottom: 5px;
    transition: all 0.35s ease;
    display: inline-block;
    word-spacing: 5px;
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.btn-explore:hover {
    color: #ffff;
}

/* --- Luxury Divider --- */
.luxury-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

span.border-flower {
    border: 1px solid #dcd1bf;
    width: 123px;
}

/* --- Secondary Promo Banner --- */
.secondary-promo-banner {
    padding: 60px 0px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background: linear-gradient(90deg, rgb(15 13 11 / 49%) 34%, rgb(30 15 15 / 9%) 56%, rgb(10 10 10 / 33%) 100%), url(../images/essence-back.jpeg) no-repeat center center / cover;
    background-repeat: no-repeat;
    background-size: cover;
}

.essence-head h2 {
    color: #dcd1bf;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    word-spacing: 3px;
    text-transform: uppercase;
}

.essence-head p {
    color: #dcd1bf;
    border: 1px solid;
    width: 31px;
}

.essence-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
}

.essence-headline {
    font-family: serif;
    font-size: 44px;
    line-height: 0;
    margin-bottom: 15px;
    font-weight: 400;
    color: #dcd1bf;
    letter-spacing: 1px;
}

.collection {
    padding: 40px 0px;
    background: #0c0b09;
}

.collection-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.collection-featured h2 {
    color: #dcd1bf;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    word-spacing: 3px;
    text-transform: uppercase;
}

.collection-featured p {
    color: #dcd1bf;
    border: 1px solid;
    width: 31px;
}

.collection-featured {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
}

/* --- QADR CATEGORY CARDMASTER COMPONENT --- */
.qadr-collection-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 470px;
    background-color: #1a1512;
    border-radius: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
    cursor: pointer;
}

.qadr-collection-card .collection-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.qadr-collection-card:hover .collection-bg-image {
    transform: scale(1.04);
}

.qadr-collection-card .card-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 40%,
        rgba(12, 10, 9, 0.4) 65%,
        rgba(8, 7, 6, 0.9) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.collection-meta-wrapper {
    position: relative;
    z-index: 3;
    padding: 35px 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    gap: 20px;
}

.meta-text-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.collection-tag-title {
    font-family: 'Cinzel', 'Didot', 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1.1;
}

.collection-subtext-pitch {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #bfa893;
    margin: 0;
    letter-spacing: 1.5px;
    line-height: 1.5;
    text-transform: uppercase;
}

.collection-action-arrow {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    padding-bottom: 4px;
    flex-shrink: 0;
}

.collection-action-arrow svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.2;
}

.qadr-collection-card:hover .collection-action-arrow {
    transform: translateX(6px);
    color: #bfa893;
}

.qadr-collection-flex {
    display: flex;
    padding-top: 10px;
    gap: 15px;
}

/* --- Craftsmanship Section --- */
.cratsmanship {
    padding: 40px 0px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background: linear-gradient(90deg, rgb(15 13 11 / 49%) 34%, rgb(30 15 15 / 9%) 56%, rgb(10 10 10 / 33%) 100%), url(../images/craft-back.jpeg) no-repeat center center / cover;
    background-repeat: no-repeat;
    background-size: cover;
}

/* --- QADR JOURNAL CARD --- */
.qadr-journal-card {
    width: 100%;
    max-width: 430px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.journal-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #1a1613;
}

.journal-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.qadr-journal-card:hover .journal-image-wrapper img {
    transform: scale(1.03);
}

.journal-content-wrapper {
    padding: 25px 25px 15px 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}

.journal-date-stamp {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #dcd1bf;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: inline-block;
}

.journal-article-title {
    font-family: 'Cinzel', 'Didot', 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0 0 30px 0;
    text-align: left;
}

.journal-article-title a {
    color: #dcd1bf;
    text-decoration: none;
    transition: color 0.25s ease;
}

.journal-action-footer {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.journal-read-more-btn {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #dcd1bf;
    text-decoration: none;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 6px;
    position: relative;
}

.journal-read-more-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 1px;
    background-color: #bcad9f;
    transition: width 0.3s ease;
}

.journal-read-more-btn .action-arrow-icon {
    display: inline-flex;
    align-items: center;
    transition: transform 0.25s ease;
}

.journal-read-more-btn .action-arrow-icon svg {
    stroke-width: 1.3;
}

.qadr-journal-card:hover .journal-read-more-btn::after {
    width: 100%;
    background-color: #281d13cf;
}

.qadr-journal-card:hover .journal-read-more-btn .action-arrow-icon {
    transform: translateX(4px);
}

.journal-flex {
    display: flex;
    gap: 25px;
    padding-top: 10px;
}

/* --- QADR LUXURY FOOTER MASTER ARCHITECTURE --- */
.qadr-luxury-footer {
    background-color: #3b2b1d;
    width: 100%;
    padding: 75px 0 0 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.qadr-footer-container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr 1.3fr;
    gap: 40px;
    box-sizing: border-box;
    padding-bottom: 30px;
}

.qadr-footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-royal-emblem {
    font-family: serif;
    font-size: 50px;
    font-weight: 400;
    color: #dcd1bf;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-brand-credo {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #dcd1bf;
    line-height: 1.7;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.qadr-col-title {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #dcd1bf;
    letter-spacing: 2.2px;
    margin: 0 0 18px 0;
    text-transform: uppercase;
    position: relative;
}

.qadr-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.qadr-footer-links a {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 12px;
    color: #a4917f;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.8px;
    transition: color 0.25s ease, transform 0.2s ease;
    display: inline-block;
}

.qadr-footer-links a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.newsletter-helper-text {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 11px;
    color: #a4917f;
    line-height: 1.6;
    margin: 0 0 22px 0;
    max-width: 250px;
}

.qadr-footer-newsletter-form {
    width: 100%;
    max-width: 280px;
    margin-bottom: 30px;
}

.input-inline-row {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #756251;
    padding-bottom: 8px;
    transition: border-color 0.3s ease;
}

.input-inline-row:focus-within {
    border-bottom-color: #ffffff;
}

.newsletter-line-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 11px;
    color: #ffffff;
    padding: 2px 25px 2px 0;
    box-sizing: border-box;
    letter-spacing: 1px;
}

.newsletter-line-input::placeholder {
    color: #756251;
    opacity: 1;
}

.newsletter-submit-arrow {
    position: absolute;
    right: 0;
    background: transparent;
    border: none;
    color: #dcd1bf;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.25s ease, transform 0.2s ease;
}

.newsletter-submit-arrow:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.newsletter-submit-arrow svg {
    stroke-width: 1.1;
}

.qadr-social-row {
    display: flex;
    align-items: center;
    gap: 40px;
    color: #a4917f;
    font-size: 17px;
}

.social-minimal-anchor {
    color: #dcd1bf;
    transition: color 0.25s ease, transform 0.2s ease;
    display: inline-block;
}

.social-minimal-anchor:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.qadr-base-copyright-stripe {
    width: 100%;
    border-top: 1px solid rgba(19, 177, 151, 0.08);
    padding: 30px 0;
    background-color: #352619;
}

.stripe-container-fluid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.legal-copyright-mark {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #8a7767;
    letter-spacing: 1.5px;
}

.legal-policy-anchors {
    display: flex;
    align-items: center;
    gap: 14px;
}

.legal-policy-anchors a {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #8a7767;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: color 0.25s ease;
}

.legal-policy-anchors a:hover {
    color: #dcd1bf;
}

.legal-bar-separator {
    color: #574637;
    font-size: 10px;
    user-select: none;
}
.collection-hero{
    background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(../images/collection-hero.jpeg) no-repeat center center / cover;
}
.philosophy-hero{
    background: linear-gradient(rgb(0 0 0 / 24%), rgb(0 0 0 / 58%)), url(../images/philosophy-hero.jpeg) no-repeat center center / cover;
}
.journal-hero{
    background: linear-gradient(rgb(0 0 0 / 24%), rgb(0 0 0 / 58%)), url(../images/journal-hero.jpeg) no-repeat center center / cover;
}
.qadr-shop-collection-section {
        background-color: #0c0b09;
    width: 100%;
    padding: 30px 0 90px 0;
    box-sizing: border-box;
}
.shop-master-container {
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.collection-filter-nav-bar {
    width: 100%;
    padding-bottom: 18px;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-left-filter-group {
    display: flex;
    align-items: center;
    gap: 55px;
}

.view-by-label {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #665044;
    letter-spacing: 1.5px;
}

.filter-tab-links {
    display: flex;
    align-items: center;
    gap: 55px;
}
.filter-tab-item {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #dcd1bf;
    text-decoration: none;
    letter-spacing: 1.2px;
    position: relative;
    padding-bottom: 5px;
    top: 1px;
    transition: color 0.25s ease;
}
.filter-tab-item:hover {
    color:#ffff;
}

.filter-tab-item.active-tab {
    color: #dcd1bf;
    font-weight: 600;
}
.filter-tab-item.active-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #dcd1bf;
}

.product-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.qadr-product-card {
    background-color: #0b0c0d;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.qadr-product-card:hover {
    border-color: #383d45;
    cursor: pointer;
}

.product-image-frame {
    position: relative;
    width: 100%;
    height: 310px;
    overflow: hidden;
    background-color: #121315;
}

.product-card-link {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(31, 31, 29, 0.88);
    color: #dcd1bf;
    border: 1px solid rgba(220, 209, 191, 0.42);
    padding: 7px 10px;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.qadr-product-card:hover .product-image-frame img {
    transform: scale(1.025);
}

.product-info-details-block {
    padding: 22px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    box-sizing: border-box;
    background-color: #0b0c0d;
}

.details-left-meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.product-title-heading {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1.5px;
}

.product-title-heading a {
    color: inherit;
    text-decoration: none;
}

.product-fabric-tag {
    font-size: 12px;
    font-weight: 500;
    color: #5d636d;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.product-price-tag {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #665044;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.product-quick-add-btn {
    background: transparent;
    border: none;
    outline: none;
    color: #5d636d;
    cursor: pointer;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.25s ease, transform 0.2s ease;
    margin-bottom: 2px;
}

.product-quick-add-btn:hover {
    color: #ffffff;
    transform: scale(1.15);
}

.product-quick-add-btn svg {
    stroke-width: 1.2;
}

@media (max-width: 1024px) {
    .product-collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .product-image-frame {
        height: 390px;
    }
}

@media (max-width: 768px) {
    .collection-filter-nav-bar {
        overflow-x: auto;
        padding-bottom: 12px;
        scrollbar-width: none;
    }
    .collection-filter-nav-bar::-webkit-scrollbar {
        display: none;
    }
    .filter-tab-links {
        gap: 20px;
    }
    .filter-tab-item {
        padding-bottom: 12px;
        white-space: nowrap;
    }
}

@media (max-width: 560px) {
    .product-collection-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .shop-master-container {
        padding: 0 20px;
    }
    .product-image-frame {
        height: 420px;
    }
}
/* ==========================================================================
   QADR BRAND IDENTITY ARCHITECTURE & CORE SYSTEM
   ========================================================================== */
.qadr-about-split-section,
.qadr-editorial-mosaic-section {
    width: 100%;
    background-color: #eaddcf;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.qadr-about-split-section *, 
.qadr-editorial-mosaic-section * {
    box-sizing: border-box;
}

.split-banner-container-fluid {
    width: 100%;
    display: flex;
    align-items: stretch;
    min-height: 520px;
}

.split-text-panel {
    width: 50%;
    background-color: #eaddcf;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.text-content-bound {
    max-width: 440px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.about-eyebrow-tag {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #665044;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: inline-block;
}

.about-primary-headline {
    font-family: 'Cinzel', 'Didot', 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 500;
    color: #1c1815;
    line-height: 1.3;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

.about-copy-narrative {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 45px;
}

.about-copy-narrative p {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #665044;
    line-height: 1.6;
    margin: 0;
}

.split-media-panel {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.about-mood-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.mosaic-grid-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mosaic-row {
    width: 100%;
    display: flex;
    align-items: stretch;
}

.mosaic-row.alternate-flipped {
    flex-direction: row-reverse;
}

.mosaic-text-pane {
    width: 50%;
    background-color: #eaddcf;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 85px 70px;
}

.pane-content-bound {
    max-width: 440px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mosaic-eyebrow-label {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #665044;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: inline-block;
}

.mosaic-headline-serif {
    font-family: 'Cinzel', 'Didot', 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 500;
    color: #1c1815;
    line-height: 1.35;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

.mosaic-paragraph-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 45px;
}

.mosaic-paragraph-copy p {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #665044;
    line-height: 1.6;
    margin: 0;
}

.mosaic-signature-link {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #1c1815;
    text-decoration: none;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 6px;
    position: relative;
    width: max-content;
    transition: color 0.25s ease;
}

.mosaic-signature-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 110px;
    height: 1px;
    background-color: #bcad9f;
    transition: width 0.35s ease, background-color 0.35s ease;
}

.arrow-vector-span {
    display: inline-flex;
    align-items: center;
    transition: transform 0.25s ease;
}

.arrow-vector-span svg {
    stroke-width: 1.3;
}

.mosaic-signature-link:hover {
    color: #8c735c;
}

.mosaic-signature-link:hover::after {
    width: 100%;
    background-color: #8c735c;
}

.mosaic-signature-link:hover .arrow-vector-span {
    transform: translateX(5px);
}

.mosaic-image-pane {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.mosaic-fluid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

@media (max-width: 991px) {
    .split-banner-container-fluid,
    .mosaic-row, 
    .mosaic-row.alternate-flipped {
        flex-direction: column !important;
    }
    .split-text-panel,
    .mosaic-text-pane {
        width: 100%;
        padding: 65px 40px;
    }
    .text-content-bound,
    .pane-content-bound {
        max-width: 100%;
    }
    .split-media-panel,
    .mosaic-image-pane {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .split-text-panel,
    .mosaic-text-pane {
        padding: 50px 25px;
    }
    .about-primary-headline,
    .mosaic-headline-serif {
        font-size: 26px;
        margin-bottom: 25px;
    }
    .about-copy-narrative,
    .mosaic-paragraph-copy {
        margin-bottom: 35px;
    }
    .split-media-panel,
    .mosaic-image-pane {
        height: 300px;
    }
}

.cta-popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(6px);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      visibility: hidden;
      opacity: 0;
      transition: visibility 0.2s, opacity 0.25s ease;
    }

    .cta-popup-overlay.active {
      visibility: visible;
      opacity: 1;
    }

    .popup-modal-wrapper {
      position: relative;
      max-width: 520px;
      width: 90%;
      animation: popupFadeInUp 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    @keyframes popupFadeInUp {
      from {
        transform: translateY(25px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

.popup-close-cross {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 2px solid #c5a059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

    .popup-close-cross i {
      font-size: 22px;
      color: #ffffff;
      transition: color 0.2s;
    }

    .popup-close-cross:hover {
      background: #281d13cf;
      transform: scale(1.05);
      border-color: #fff;
    }

    .popup-close-cross:hover i {
      color: #fff;
    }

    .popup-modal-wrapper .strategy-call-card {
      margin: 0;
      box-shadow: 0 30px 45px -15px rgba(0,0,0,0.6);
    }
.coaching-idea {
    color: #ff923c !important;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 17px;
    text-align: center;
}

.border-bottom{
    border-top: 1px solid #ff923c;
    width: 50px;
    margin: 10px 0px;
}
.strategy-call-card {
    background-color: #fbf9f6;
    max-width: 380px;
    width: 100%;
    padding: 25px 30px;
    border-radius: 7px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.strategy-card-header h2 {
    font-family: 'Dosis', Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.strategy-card-header .highlight-orange {
    color: #ff923c;
    display: block;
}

.strategy-card-header .intro-subtext {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #333333;
    font-weight: 500;
    margin: 0px 0 15px 0;
}

.strategy-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.strategy-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.strategy-benefits-list li p {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #2b2b2b;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.custom-check-icon {
    width: 18px;
    height: 18px;
    border: 2px solid #ff923c;
    border-radius: 50%;
    color: #ff923c;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.strategy-lead-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.input-field-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.input-field-wrapper input {
    width: 100%;
    padding: 11px 11px 11px 50px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-field-wrapper input:focus {
    border-color: #c95b1d;
    box-shadow: 0 0 6px rgba(201, 91, 29, 0.15);
}

.field-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: #707070;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.field-icon svg {
    width: 100%;
    height: 100%;
}

.btn-submit-strategy {
    width: 100%;
    padding: 9px 20px;
    background-color: #c5a059;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.5px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.btn-submit-strategy:hover {
    background-color:#765f34;
}

.strategy-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #555555;
    font-weight: 600;
}

.footer-badge-icon {
    color: #c95b1d;
    font-size: 14px;
}

.strategy-card-footer .divider {
    color: #aaaaaa;
    font-weight: bold;
    font-size: 16px;
}

.auth-message {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    text-align: center;
    padding: 10px 14px;
    border-radius: 4px;
    margin: 0 0 16px 0;
}

.auth-message-error {
    background: rgba(220, 53, 69, 0.12);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.auth-message-success {
    background: rgba(40, 167, 69, 0.12);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.auth-switch-link {
    color: #c5a059;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 4px;
}

.auth-switch-link:hover {
    opacity: 0.8;
}

.success-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    font-size: 26px;
}

.dashboard-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.dashboard-card {
    max-width: 420px;
    width: 100%;
    text-align: center;
    padding: 40px 32px;
    border-radius: 8px;
    background: #14110f;
    border: 1px solid rgba(220, 209, 191, 0.15);
}

.dashboard-card h1 {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    margin-bottom: 10px;
}

.dashboard-back-btn {
    display: block;
    text-decoration: none;
    margin-top: 24px;
}

.dashboard-logout-link {
    display: inline-block;
    margin-top: 16px;
    color: #dcd1bf;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    text-decoration: underline;
    opacity: 0.7;
}

.dashboard-logout-link:hover {
    opacity: 1;
}

/* --- QADR Admin Dashboard --- */
.admin-body {
    background: #eaddcf;
    color: #24180f;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: linear-gradient(135deg, #24180f 0%, #3b2b1d 50%, #5a4430 100%);
    color: #dcd1bf;
    padding: 34px 24px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
}

.admin-sidebar-brand {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    letter-spacing: 8px;
    margin-bottom: 42px;
}

.admin-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-sidebar-nav a,
.admin-sidebar-footer a {
    color: rgba(220, 209, 191, 0.76);
    text-decoration: none;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 14px;
    border-left: 2px solid transparent;
    transition: all 0.25s ease;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-nav a.active {
    color: #ffffff;
    border-left-color: #c5a059;
    background: rgba(255, 255, 255, 0.06);
}

.admin-sidebar-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-main {
    flex: 1;
    padding: 42px;
}

.admin-page-head {
    margin-bottom: 28px;
}

.admin-page-head h1 {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    font-weight: 500;
    color: #24180f;
}

.admin-page-head p {
    color: #6b5a49;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.admin-stat-card,
.admin-panel {
    background: #fbf9f6;
    border: 1px solid rgba(36, 24, 15, 0.12);
    box-shadow: 0 18px 45px rgba(36, 24, 15, 0.08);
}

.admin-stat-card {
    min-height: 150px;
    padding: 26px;
    text-decoration: none;
    color: #24180f;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.admin-stat-card span {
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #6b5a49;
    font-size: 12px;
}

.admin-stat-card strong {
    font-family: 'Cinzel', serif;
    font-size: 46px;
    font-weight: 500;
}

.admin-panel {
    padding: 26px;
    margin-bottom: 26px;
}

.admin-panel h2 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 18px;
}

.admin-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.admin-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5a4430;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    border: 1px solid rgba(36, 24, 15, 0.18);
    background: #ffffff;
    color: #24180f;
    padding: 12px 13px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    outline: none;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: #c5a059;
}

.admin-full {
    grid-column: 1 / -1;
}

.admin-btn {
    background: #24180f;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    cursor: pointer;
    align-self: end;
}

.admin-alert {
    padding: 14px 16px;
    margin-bottom: 18px;
    background: #ffffff;
    border-left: 4px solid #c5a059;
}

.admin-alert.error {
    border-left-color: #9d2c20;
}

.admin-alert.success {
    border-left-color: #3e7a3b;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.admin-table th,
.admin-table td {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(36, 24, 15, 0.12);
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 12px;
    color: #6b5a49;
}

.admin-thumb,
.admin-preview-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    background: #eaddcf;
}

.admin-preview-img {
    width: 120px;
    height: 120px;
}

.admin-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.admin-actions a,
.admin-actions button {
    color: #24180f;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
}

.admin-muted {
    color: #8b7a68;
    text-decoration: line-through;
    margin-left: 6px;
}

.product-price-row {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.product-price-original.crossed {
    color: #8b7a68;
    text-decoration: line-through;
}

.product-status-badge {
    display: inline-block;
    margin-top: 8px;
    color: #c5a059;
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

/* ==========================================================================
   ICON SAFETY LOCK — prevents oversized fallback glyph
   if Font Awesome CDN fails to load or loads late for some users.
   ========================================================================== */
i[class*="fa-"],
.fa-solid,
.fa-regular,
.fa-brands,
.fas,
.far,
.fab {
    display: inline-block;
    font-size: 16px;
    height: 1em;
    line-height: 1;
    vertical-align: middle;
    overflow: hidden;
}

.icon-link i,
.header-icons i {
    font-size: 17px;
}

.popup-close-cross i {
    font-size: 22px;
}

.footer-badge-icon {
    font-size: 14px;
}

/* Password/lock icon on login form specifically */
.field-icon i,
.input-field-wrapper i {
    font-size: 18px;
    width: 20px;
    height: 20px;
}

/* Product detail page requested polish */
.product-detail-body .product-detail-page {
    font-family: 'Lato', sans-serif;
}

.product-detail-body .product-detail-shop-layout {
    max-width: none;
    margin: 0;
    padding-left: max(25px, calc((100vw - 1320px) / 2 + 25px));
    padding-right: max(25px, calc((100vw - 1320px) / 2 + 25px));
}

.product-detail-body .product-thumb-stack {
    height: auto;
    max-height: none;
    overflow: visible;
}

.product-detail-body .product-thumb-btn {
    border-color: rgba(220, 209, 191, 0.2);
    background: #121315;
}

.product-detail-body .product-detail-info {
    max-height: none;
    overflow: visible;
    background: #0b0c0d;
}

.product-detail-body .product-similar-section {
    background: #eaddcf;
    border-top: 1px solid rgba(40, 29, 19, 0.14);
}

.product-detail-body .product-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-detail-body .product-similar-card {
    min-height: auto;
    background-color: #0b0c0d;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
}

.product-detail-body .product-similar-card::after {
    display: none;
}

.product-detail-body .product-similar-card img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: #121315;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-detail-body .product-similar-card:hover img {
    transform: scale(1.025);
}

.product-detail-body .product-similar-card div {
    position: static;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    background-color: #0b0c0d;
}

.product-detail-body .product-similar-card strong {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.product-detail-body .product-similar-card span {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #5d636d;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.product-detail-body .product-similar-card span:last-child {
    color: #665044;
}

@media (max-width: 980px) {
    .product-detail-body .product-detail-shop-layout {
        padding-left: 18px;
        padding-right: 18px;
    }

    .product-detail-body .product-similar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .product-detail-body .product-similar-grid {
        grid-template-columns: 1fr;
    }
}
