/* --- 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: #ffffff;
    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;
}

/* --- 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: #eaddcf;
}

.collection-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.collection-featured h2 {
    color: #281d13cf;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    word-spacing: 3px;
    text-transform: uppercase;
}

.collection-featured p {
    color: #281d13cf;
    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: #281d13cf;
    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: #281d13cf;
    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: #281d13cf;
    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: #eaddcf;
    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: #281d13cf;
    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: #0b0c0d;
    font-weight: 600;
}
.filter-tab-item.active-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #0b0c0d;
}

.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-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);
}

.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-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: #0f172a;
      border: 2px solid #ef6314;
      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: #ef6314;
      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: 20px 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: #ff923c;
    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: #ae4a14;
}

.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: #dcd1bf;
    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;
}

/* ==========================================================================
   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;
    width: 1em;
    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;
}