/*--------------------------------------------------------------
# Education Hub & Sub-Pages Styles
--------------------------------------------------------------*/

/* =============================================================
   1. GLOBAL COMPONENTS (Breadcrumbs, Buttons, Navigation)
   ============================================================= */

/* --- Brand Colors --- */
.color-brand-blue {
    color: var(--brand-blue) !important;
}

.color-brand-gold {
    color: var(--brand-gold) !important;
}

.color-brand-yellow {
    color: var(--brand-yellow) !important;
}

.bg-brand-light-blue {
    background-color: var(--brand-light-blue) !important;
}

.edu-hub-info,
.bead-restringing,
.jewelry-repair,
.watch-repair,
.watch-battery-replacement,
.diamond-remounting,
.custom-jewelry-design,
.jewelry-cleaning,
.jewelry-appraisals,
.birthstone-guide,
.buying-a-diamond,
.diamond-comparison,
.jewelry-care,
.diamond-edu,
.custom-design,
.custom-gallery {
    padding-top: 170px !important;
}

/* --- Page Titles & Breadcrumbs --- */

/* --- Shared CTA Cluster --- */
.edu-hub-btns {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.edu-main-btn {
    display: flex;
    align-items: center;
    background: var(--brand-gold);
    color: #fff;
    padding: 10px 36px 12px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px color-mix(in srgb, var(--brand-gold), transparent 60%);
}

.edu-main-btn:hover {
    background: var(--brand-yellow);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px color-mix(in srgb, var(--brand-gold), transparent 50%);
}

/* --- Inline Page Navigation --- */
.edu-page-nav {
    padding-top: 2rem;
    margin-top: 4rem;
}

.edu-page-nav a {
    color: var(--brand-blue);
    font-weight: 600;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    font-size: 0.95rem;
    opacity: 0.6;
}

.edu-page-nav a:hover {
    color: var(--brand-gold);
}

.edu-page-nav i {
    font-size: 1.2rem;
}

p {
    margin-bottom: 0;
    font-size: 14.5px !important;
    line-height: 1.8 !important;
    color: var(--paragraph-color) !important;
}

.mb-5 {
    margin-bottom: 4.5rem !important;
}

/* =============================================================
   2. EDUCATION HUB (Main Page)
   ============================================================= */

.edu-hub-info {
    padding: 200px 0 0 !important;
    position: relative;
    font-family: var(--default-font);
}

.edu-hub-info .edu-hub-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subheading p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--paragraph-color);
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 30px;
}

/* --- Video CTA --- */
.edu-video-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.edu-video-btn .edu-play-symbol {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.edu-video-btn .edu-play-symbol i {
    font-size: 1.25rem;
    color: var(--brand-gold);
    margin-left: 3px;
}

.edu-video-btn:hover {
    color: var(--brand-gold);
}

.edu-video-btn:hover .edu-play-symbol {
    background: var(--brand-gold);
    transform: scale(1.1);
}

.edu-video-btn:hover .edu-play-symbol i {
    color: #fff;
}

/* --- Feature Cards Grid --- */
.edu-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

.edu-feature-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.edu-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.edu-feature-card:hover .edu-card-media img {
    transform: scale(1.1);
}

.edu-feature-card .edu-card-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.edu-feature-card .edu-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    z-index: 1;
}

.edu-feature-card:hover .edu-card-media::after {
    background: rgba(0, 0, 0, 0.4);
}

.edu-feature-card .edu-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.edu-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    transition: all 0.4s ease;
    z-index: 2;
}

.edu-card-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: 0.3s;
}

.edu-card-icon .edu-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    padding: 3px;
}

.edu-feature-card:hover .edu-card-icon {
    background: var(--brand-yellow);
}

.edu-card-content h4 {
    font-family: var(--heading-font);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
}

.edu-card-content p {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    margin: 0;
    line-height: 1.4;
}

/* =============================================================
   3. DIAMOND EDUCATION SUB-PAGE (F-Shape Scan)
   ============================================================= */

.diamond-edu-header {
    background: var(--brand-blue);
    padding: 100px 0 60px;
    text-align: center;
    color: #fff;
    margin-top: 100px;
}

.diamond-edu-header h1 {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
}

.diamond-edu-content {
    padding: 30px 0;
    font-family: var(--default-font);
    color: var(--paragraph-color);
}

.diamond-edu-content p {
    font-size: 16px;
}

.diamond-edu-content .back-link {
    display: inline-flex;
    align-items: center;
    color: var(--brand-blue);
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 60px !important;
}

.diamond-edu-content h2 {
    text-align: center;
    color: var(--brand-blue);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 28px;
}

.diamond-edu-content .intro-text {
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 950px;
}

.diamond-edu-page .diamond-edu-content p {
    max-width: 950px !important;
}

/* --- F-Shape Layout Architecture --- */
.f-shape-row {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
}

.f-shape-content {
    flex: 1.5;
    position: relative;
    z-index: 2;
}

.wisdom-block-container {
    margin: 0 auto;
}

.wisdom-section {
    position: relative;
    max-width: 950px;
    margin: 0 auto 6rem;
}

.wisdom-section .f-shape-anchor-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: var(--brand-gold);
    opacity: 0.08;
    z-index: 1;
    font-weight: 800;
}

.wisdom-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 950px;
}

.wisdom-flex {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.wisdom-flex .wisdom-section {
    flex: 1;
    margin-bottom: 0;
    max-width: none;
    text-align: left;
}

.wisdom-flex .wisdom-image-wrap {
    flex: 1;
    margin: 0;
}

.wisdom-flex .wisdom-content {
    text-align: left;
}

@media (max-width: 991px) {
    .wisdom-flex {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .wisdom-flex .wisdom-section {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .wisdom-flex .wisdom-content {
        text-align: center;
    }
}

.wisdom-content p {
    font-size: 14px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 2rem;
}

.wisdom-content .focus-block {
    text-align: left;
    background: #fdfdfd;
    border-left: 4px solid var(--brand-gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.wisdom-content .focus-block p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--brand-blue);
    font-size: 14px;
}

.wisdom-content .focus-block ul li {
    font-size: 14px;
}

.wisdom-image-wrap {
    margin: 3rem auto;
    max-width: 800px;
}

/* Return to Education Button */
.btn-return-edu {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    border: 1px solid var(--brand-gold);
    color: var(--brand-blue);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 2rem;
}

.btn-return-edu:hover {
    background: var(--brand-gold);
    color: #fff;
}

.btn-return-edu i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-return-edu:hover i {
    transform: translateX(-5px);
}

.f-shape-media {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 4rem;
}

.f-shape-anchor-number {
    position: absolute;
    top: -55px;
    left: -20px;
    font-size: 10rem;
    font-weight: 900;
    color: var(--brand-gold);
    opacity: 0.1;
    line-height: 1;
    z-index: 1;
    font-family: var(--heading-font);
    user-select: none;
    margin-top: 25px;
}

/* --- Boutique Components --- */
.focus-block {
    border-left: 4px solid var(--brand-gold);
    padding: 20px 30px;
    background: #fdfdfd;
}

.focus-block strong {
    color: var(--brand-blue);
}

.c-section h3 {
    color: var(--brand-gold);
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    position: relative;
}

.c-summary-box {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--paragraph-color);
}

.f-arm-bar {
    border-top: 1px solid rgba(197, 161, 95, 0.3);
    padding-top: 16px;
    margin-top: 16px;
}

/*.signature-frame {
    border: 1px solid var(--brand-gold);
    padding: 10px;
    background: #fff;
    display: inline-block;
    width: 100%;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05);
}

.signature-frame img {
    width: 100%;
    height: auto;
}*/

/* --- Grading Data Tables --- */
.grading-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #e3e2e2;
    border: 1px solid #eee;
    margin: 1.5rem 0;
}

.grading-cell {
    background: #fff;
    padding: 20px;
}

.grading-cell strong {
    color: var(--brand-blue);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

.grading-cell p {
    margin: 0;
    line-height: 1.6;
}

.perfect-diamond-conclusion {
    border-top: 2px solid #eee;
    padding-top: 4rem;
    margin-top: 3rem;
}

/* =============================================================
   3.5 JEWELRY CARE PAGE (ZIG-ZAG)
   ============================================================= */
.jewelry-care-page .f-shape-row {
    display: flex;
    justify-content: flex-start;
}

.jewelry-care-page .f-shape-row:nth-child(even) {
    justify-content: flex-end;
}

.jewelry-care-page .f-shape-content {
    max-width: 60%;
    flex: none;
    /* Override flex: 1.5 */
}

.jewelry-care-page .f-shape-row:nth-child(even) .f-shape-content {
    text-align: right;
}

.jewelry-care-page .f-shape-row:nth-child(even) .f-shape-anchor-number {
    left: auto;
    right: -10px;
}

.jewelry-care-page .c-summary-box p {
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .jewelry-care-page .f-shape-row {
        flex-direction: row !important;
    }

    .jewelry-care-page .f-shape-content {
        max-width: 85%;
    }

    .jewelry-care-page .f-shape-row:nth-child(even) .f-shape-content {
        text-align: right;
    }

    .jewelry-care-page .f-shape-row:nth-child(even) .f-shape-anchor-number {
        left: auto;
        right: -10px;
    }
}

/* =============================================================
   4. RESPONSIVE MEDIA QUERIES
   ============================================================= */

@media (max-width: 1400px) {
    .edu-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1400px) {
    .diamond-edu-page .diamond-edu-content p {
        font-size: 16px !important;
    }
}

@media (max-width: 1199px) {
    .f-shape-row {
        gap: 2rem;
    }
}

@media (max-width: 991px) {

    /* Layout Logic */
    .f-shape-row {
        flex-direction: column;
        margin-bottom: 5rem;
    }

    .f-shape-media {
        padding-top: 0;
        order: 2;
    }

    .f-shape-content {
        order: 1;
    }

    .grading-grid {
        grid-template-columns: 1fr;
    }

    /* Spacing & Padding Adjustments */
    .diamond-edu-header {
        padding: 80px 0 40px;
        margin-top: 70px;
    }

    .diamond-edu-content {
        padding: 15px 0 !important;
    }

    .f-shape-anchor-number {
        font-size: 7rem;
        top: -30px;
        padding-left: 10px !important;
    }

    .f-arm-bar {
        padding-top: 0 !important;
    }

    .perfect-diamond-conclusion {
        padding-top: 2rem !important;
        margin-top: 25px !important;
    }

    /* CTA & Nav Adjustments */
    .edu-hub-btns {
        flex-direction: row;
        gap: 15px !important;
        justify-content: center;
    }

    .edu-page-nav {
        padding-top: 0 !important;
        margin-top: 1rem !important;
    }

    /* Mobile Typography Overrides */
    .diamond-edu-header h1 {
        font-size: 2.2rem;
    }


    .diamond-edu-page .diamond-edu-content h2,
    .diamond-edu-page .c-section h3 {
        font-size: 26px !important;
    }

    .diamond-edu-page .diamond-edu-content p {
        font-size: 14px !important;
    }

}

@media (max-width: 576px) {
    .edu-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }


    .diamond-edu-page .diamond-edu-content p {
        font-size: 14px !important;
    }

    /* Stack buttons only on small phones */
    .edu-hub-btns {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center;
    }
}

/* =============================================================
   5. BIRTHSTONE GUIDE PAGE
   ============================================================= */
.birthstone-guide-page .diamond-edu-content {
    background-color: #fcfcfc;
}

.birthstone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
}

.birthstone-month-card {
    background: #fff;
    padding: 0;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.birthstone-month-card::before {
    content: '';
    position: absolute;
    inset: 10px;
    transition: all 0.4s ease;
    z-index: 3;
    pointer-events: none;
}

.birthstone-month-card::after {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--brand-gold);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 4;
}

.birthstone-month-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.birthstone-month-card:hover::before {
    inset: 5px;
}

.birthstone-month-card:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.birthstone-header {
    order: 2;
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
    z-index: 2;
}

.birthstone-header h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--heading-font);
    transition: all 0.3s ease;
}

.birthstone-header .stone-name {
    display: block;
    font-size: 0.85rem;
    color: var(--brand-gold);
    margin-top: 0.5rem;
    letter-spacing: 1px;
    font-weight: 500;
    font-style: italic;
}

.birthstone-month-card:hover .birthstone-header h4 {
    transform: translateY(-5px);
}

.birthstone-body {
    order: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    aspect-ratio: 1;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.birthstone-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.birthstone-month-card:hover .birthstone-body img {
    transform: scale(1.1);
}

@media (min-width: 1400px) {
    .birthstone-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 3rem;
        margin-top: 4rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1200px) {
    .birthstone-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .birthstone-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* =============================================================
   6. SERVICE DETAILS PAGE STYLES
   ============================================================= */

/* --- Services Section --- */
.services-3 {
    position: relative;
    padding-top: 50px;
    background: #fff;
}

.services-3 .service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid color-mix(in srgb, var(--brand-gold), transparent 90%);
    box-shadow: 0 10px 40px rgba(13, 122, 179, 0.05);
    display: flex;
    flex-direction: column;
}

.services-3 .service-card:hover .service-bg {
    opacity: 1;
    transform: scale(1.2) rotate(15deg);
}

.services-3 .service-card.featured {
    background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--brand-gold), transparent 95%));
    border: 2px solid var(--brand-gold);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-3 .service-card.featured .service-icon i {
    font-size: 40px;
}

.services-3 .service-card.featured .service-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.services-3 .service-card.compact {
    padding: 30px 25px;
}

.services-3 .service-card.compact .service-icon {
    width: 60px;
    height: 60px;
}

.services-3 .service-card.compact .service-icon i {
    font-size: 28px;
}

.services-3 .service-card .service-bg {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--brand-gold), transparent 85%), color-mix(in srgb, var(--brand-gold), transparent 95%));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.services-3 .service-card .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    /*box-shadow: 0 8px 25px color-mix(in srgb, var(--brand-gold), transparent 70%);*/
    padding: 0;
}

.services-3 .service-card .service-icon i {
    font-size: 32px;
    color: #fff;
    transition: all 0.3s ease;
}

.services-3 .service-card .service-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.services-3 .service-card .service-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.services-3 .service-card .service-content h3 a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-3 .service-card .service-content h3 a:hover {
    color: var(--brand-gold);
}

.services-3 .service-card .service-content p {
    color: var(--paragraph-color);
    margin-bottom: 25px;
    font-size: 14px !important;
    margin-bottom: 12px !important;
}

.services-3 .service-card .service-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0 25px;
    flex-wrap: wrap;
}

.services-3 .service-card .service-meta .badge {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-yellow));
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-3 .service-card .service-meta .badge.popular {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.services-3 .service-card .service-meta .price {
    color: var(--brand-gold);
    font-weight: 700;
    font-size: 16px;
}

.services-3 .service-card .btn-brand {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .services-3 .service-card {
        margin-bottom: 30px;
        padding: 20px 20px !important;
    }

    .services-3 .service-card.featured {
        transform: none;
        margin-bottom: 30px;
        padding: 20px 20px !important;
    }

    .services-3 .service-card .service-content h3 {
        font-size: 16px !important;
    }

    .services-3 .service-card.featured .service-content h3 {
        font-size: 16px !important;
    }

    .services-3 .service-card .service-icon {
        width: 50px !important;
        height: 50px !important;
    }

    .services-3 .service-card.featured .service-icon {
        width: 50px !important;
        height: 50px !important;
    }

    .services-3 .service-card .service-icon i {
        font-size: 28px;
    }

    .services-3 .service-card .service-content h3 {
        font-size: 20px;
    }
}

/* =============================================================
   6. Custom Jewelry Design
   ============================================================= */
.modern-timeline {
    position: relative;
    padding: 0 !important;
    padding-bottom: 30px !important;
}

.modern-timeline h4 {
    font-size: 28px !important;
}

/* --- The Bespoke Experience Design --- */
.bespoke-process {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.b-step {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.b-step:nth-child(even) {
    flex-direction: row-reverse;
}

.b-step-visual {
    position: relative;
    width: 55%;
}

.b-step-visual img {
    width: 100%;
    border-radius: 20px 0 20px 0;
    box-shadow: 20px 20px 0px rgba(191, 155, 48, 0.1);
    border: 1px solid rgba(191, 155, 48, 0.1);
}

.b-step:nth-child(even) .b-step-visual img {
    border-radius: 0 20px 0 20px;
    box-shadow: -20px 20px 0px rgba(191, 155, 48, 0.1);
}

.b-step-num {
    position: absolute;
    top: -50px;
    right: -30px;
    font-size: 160px;
    font-weight: 200;
    color: transparent;
    -webkit-text-stroke: 1px rgba(191, 155, 48, 0.2);
    z-index: 1;
    font-family: var(--heading-font);
    line-height: 1;
}

.b-step:nth-child(even) .b-step-num {
    right: auto;
    left: -30px;
}

.b-step-info {
    width: 45%;
    padding: 20px 0;
}

.b-step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.b-step-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--brand-gold);
    font-weight: 600;
}

.b-step-line {
    height: 1px;
    flex-grow: 1;
    background: rgba(191, 155, 48, 0.3);
}

.b-step-info h3 {
    font-size: 38px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: var(--heading-font);
    line-height: 1.2;
}

.b-step-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .bespoke-process {
        gap: 50px;
        padding: 40px 15px;
    }

    .b-step,
    .b-step:nth-child(even) {
        flex-direction: column;
        gap: 50px;
    }

    .b-step-visual,
    .b-step-info {
        width: 100%;
    }

    .b-step-visual img,
    .b-step:nth-child(even) .b-step-visual img {
        border-radius: 10px;
        box-shadow: 15px 15px 0px rgba(191, 155, 48, 0.1);
    }

    .b-step-num,
    .b-step:nth-child(even) .b-step-num {
        top: -30px;
        right: 0;
        left: auto;
        font-size: 100px;
        -webkit-text-stroke: 1px rgba(191, 155, 48, 0.3);
    }

    .b-step-info {
        padding: 0;
    }
}

/* --- Custom Jewelry Features --- */
.why-choose-section {
    position: relative;
    z-index: 2;
}

@media (min-width: 1400px) {
    .why-choose-section {
        padding: 0 100px;
    }
}

.b-feature-card {
    background: #fff;
    border: 1px solid rgba(191, 155, 48, 0.15);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.b-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(191, 155, 48, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.b-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(191, 155, 48, 0.08);
    border-color: rgba(191, 155, 48, 0.4);
}

.b-feature-card:hover::before {
    opacity: 1;
}

.b-feature-icon {
    font-size: 32px;
    color: var(--brand-gold);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.b-feature-card:hover .b-feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.b-feature-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}



/* Custom Gallery Styles */
.custom-gallery-section {
    padding-top: 65px;
    padding-bottom: 0 !important;
}

.custom-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    aspect-ratio: 1/1;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.custom-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-gallery-item:hover img {
    transform: scale(1.05);
}

.custom-gallery-swiper {
    padding-bottom: 50px;
    width: 100%;
    overflow: hidden;
}

.custom-gallery-swiper .swiper-slide {
    width: 280px;
    height: auto;
}

@media (min-width: 768px) {
    .custom-gallery-swiper .swiper-slide {
        width: 320px;
    }
}

@media (min-width: 1300px) {
    .custom-gallery-swiper .swiper-slide {
        width: 400px;
    }
}

@media (min-width: 1400px) {
    .custom-gallery-swiper .swiper-slide {
        width: 500px;
    }
}

.custom-gallery-swiper .swiper-button-next,
.custom-gallery-swiper .swiper-button-prev {
    color: var(--brand-gold);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.custom-gallery-swiper .swiper-button-next:after,
.custom-gallery-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.custom-gallery-swiper .swiper-pagination-bullet-active {
    background: var(--brand-gold);
}

/* Custom Gallery Page Grid */
.custom-gallery-page-section {
    padding-top: 0;
    padding-bottom: 80px;
}

.custom-gallery-page-section h4 {
    font-size: 28px;
}

.gallery-page-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-page-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.gallery-page-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Gallery Overlay Actions */
.custom-gallery-item .gallery-overlay,
.gallery-page-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.custom-gallery-item:hover .gallery-overlay,
.gallery-page-item:hover .gallery-overlay {
    opacity: 1;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-get-price {
    background: var(--brand-gold);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 0;
    font-size: 18px;
    border: var(--brand-gold);
}

.btn-get-price:hover {
    background: #fff;
    color: var(--brand-gold);
}

.btn-wishlist {
    background: #fff;
    color: var(--brand-gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 0;
    font-size: 18px;
    border: 2px solid #fff;
}

.btn-wishlist:hover {
    background: var(--brand-gold);
    color: #fff;
    border-color: var(--brand-gold);
}

/* Service Detail Pages Improvements */
.focus-block p {
    line-height: 1.8;
    color: var(--paragraph-color);
    margin-bottom: 0;
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.back-link {
    color: var(--brand-blue);
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-link:hover {
    color: var(--brand-gold);
    transform: translateX(-5px);
}

.align-items-center {
    row-gap: 40px !important;
}

/*--------------------------------------------------------------
# Global Page Titles
--------------------------------------------------------------*/
.page-title {
    --background-color: #EEF9FF;
    --default-color: #fff;
    --heading-color: #fff;
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .hero-text-center {
    text-align: center;
}

.page-title .hero-text-center h1 {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #0D7AB3;
}

@media (max-width: 768px) {
    .page-title .hero-text-center h1 {
        font-size: 2.25rem;
    }
}

.page-title .hero-text-center p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333333;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.page-title .heading {
    padding: 160px 0 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

/*--------------------------------------------------------------
# About us
--------------------------------------------------------------*/
.about-2 .media-wrap {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

.about-2 .hero-figure {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background-color: var(--surface-color);
    box-shadow: 0 18px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-2 .hero-figure img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-2 .hero-figure img {
        height: 300px;
    }
}

.about-2 .thumb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.about-2 .thumb-grid .thumb-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: var(--surface-color);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about-2 .thumb-grid .thumb-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-2 .thumb-grid .thumb-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-2 .thumb-grid .thumb-item img {
        height: 110px;
    }
}

.about-2 .about-card {
    background-color: var(--surface-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 18px 50px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about-2 .about-card .badge-line {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    margin-bottom: 1rem;
}

.about-2 .about-card .badge-line .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.about-2 .about-card .badge-line .text {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.85rem;
}

.about-2 .about-card .title {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .about-2 .about-card .title {
        font-size: 1.7rem;
    }
}

.about-2 .about-card p {
    color: var(--paragraph-color);
    margin-bottom: 1.25rem;
}

.about-2 .trust-logos {
    margin-top: 2rem;
}

.about-2 .trust-logos .logo-item {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 18px;
    height: 100%;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: 0.3s ease;
}

.about-2 .trust-logos .logo-item img {
    opacity: 0.8;
    transition: 0.3s ease;
    max-height: 42px;
    object-fit: contain;
}

.about-2 .trust-logos .logo-item:hover {
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about-2 .trust-logos .logo-item:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Contact Us 
--------------------------------------------------------------*/
.contact-us .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .contact-us {
        overflow-x: hidden;
    }

    .contact-us .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .contact-us .contact-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .contact-us .contact-info-panel {
        padding: 10px !important;
    }

    .contact-us .form-container {
        padding: 25px 15px !important;
    }

    .contact-us .contact-form-panel {
        width: 100%;
        overflow: hidden;
    }

    .contact-us .social-links-panel {
        margin-top: 20px !important;
    }
}

@media (min-width: 992px) {
    .contact-us .contact-wrapper {
        grid-template-columns: 38% 62%;
        gap: 30px;
    }
}


@media (max-width: 991px) {
    .contact-us .social-links-panel {
        margin-top: 20px !important;
    }
}

.contact-us .contact-info-panel .contact-info-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--brand-blue);
}

.contact-us .contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-us .info-card {
    background-color: rgba(209, 156, 64, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.contact-us .info-card:hover {
    background-color: rgba(209, 156, 64, 0.2);
    transform: translateY(-5px);
}

.contact-us .info-card .icon-container {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background-color: #FFC054;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us .info-card .icon-container i {
    font-size: 20px;
    color: var(--contrast-color);
}

.contact-us .info-card .card-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--paragraph-color);
}

.contact-us .info-card .card-content p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.8;
}

.contact-us .social-links-panel {
    margin-top: 20px;
}

.contact-us .social-links-panel .social-icons {
    display: flex;
    gap: 12px;
}

.contact-us .social-links-panel .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #FFC054;
    color: var(--contrast-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-us .contact-form-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-us .map-container {
    width: 100%;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

.contact-us .form-container {
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact-us .form-container h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--brand-blue);
}

.contact-us .form-container p {
    margin-bottom: 10px;
}

.contact-us .form-container .form-control {
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    padding: 12px 15px;
    background-color: var(--surface-color);
    color: var(--default-color);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.contact-us .form-container .form-control:focus {
    border-color: color-mix(in srgb, var(--default-color), transparent 50%);
    box-shadow: none;
    outline: none;
}

.contact-us .form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--paragraph-color);
}

.contact-us .form-container .required {
    color: #dc3545;
    margin-left: 4px;
}

.contact-us .form-container .btn-submit {
    background: var(--brand-blue);
    color: var(--contrast-color);
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
}

.contact-us .form-container .btn-submit:hover {
    background: var(--brand-gold);
    transform: translateY(-3px);
}

/* Labels and placeholders styling for form */
.contact-us .form-container input::placeholder,
.contact-us .form-container textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

/* About Page CTA Section */
.about-cta {
    padding: 80px 0;
    background: var(--brand-light-blue);
    color: var(--default-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(209, 156, 64, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-cta h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--brand-blue);
}

.about-cta p {
    font-size: 18px;
    color: var(--paragraph-color);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.cta-service-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(13, 122, 179, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-service-box:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-gold);
}

.cta-service-box .service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.cta-service-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--brand-blue);
}

.cta-service-box p {
    font-size: 15px;
    color: var(--paragraph-color);
    margin: 0;
    line-height: 1.6;
}

.about-cta .cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--brand-gold);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--brand-gold);
    text-decoration: none;
    display: inline-block;
}

.cta-btn-primary:hover {
    background: transparent;
    color: var(--brand-gold);
    transform: translateY(-3px);
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .about-cta {
        padding: 60px 0;
    }

    .about-cta h2 {
        font-size: 28px;
    }

    .about-cta p {
        font-size: 16px;
    }
}

/* Clients Section Styling */
.clients-2 {
    padding: 80px 0;
    background-color: #ffffff;
}

.clients-2 .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients-2 .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #ebedf0;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 110px;
    width: 100%;
}

.clients-2 .client-logo:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-gold);
}

.clients-2 .client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .event-intro {
    padding: 2rem 0;
}

.events .event-intro .event-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.45rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
}

.events .event-intro h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    position: relative;
    padding-left: 1.5rem;
    border-left: 5px solid var(--accent-color);
}

.events .event-intro p {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 540px;
}

.events .event-intro .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.events .event-intro .event-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.events .event-intro .event-meta .meta-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.events .event-intro .event-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.events .event-intro .event-cta-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 15%);
    color: var(--contrast-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.events .event-intro .event-cta-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.events .event-intro .event-cta-btn:hover i {
    transform: translateX(4px);
}

.events .event-hero-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

.events .event-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

.events .event-hero-img .floating-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--surface-color);
    color: var(--accent-color);
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 80%);
}

.events .event-hero-img .floating-label i {
    font-size: 1.1rem;
}

.events .highlight-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.events .highlight-cards .highlight-card {
    background-color: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

.events .highlight-cards .highlight-card:hover {
    box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 82%);
}

.events .highlight-cards .highlight-card .highlight-img {
    position: relative;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.events .highlight-cards .highlight-card .highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.events .highlight-cards .highlight-card .highlight-img .img-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.events .highlight-cards .highlight-card .highlight-body {
    padding: 2.5rem;
}

.events .highlight-cards .highlight-card .highlight-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.events .highlight-cards .highlight-card .highlight-body p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.events .highlight-cards .highlight-card .highlight-body .perks-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.events .highlight-cards .highlight-card .highlight-body .perks-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 0;
    font-weight: 500;
}

.events .highlight-cards .highlight-card .highlight-body .perks-list li i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.events .highlight-cards .highlight-card .highlight-body .card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.events .highlight-cards .highlight-card .highlight-body .card-action:hover {
    border-bottom-color: var(--accent-color);
    gap: 0.8rem;
}

.events .highlight-cards .highlight-card .highlight-body .card-action i {
    transition: transform 0.3s ease;
}

.events .highlight-cards .highlight-card .highlight-body .card-action:hover i {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .events .event-intro h2 {
        font-size: 2.5rem;
    }

    .events .event-hero-img {
        margin-top: 2rem;
    }

    .events .event-hero-img img {
        min-height: 300px;
    }

    .events .highlight-cards .highlight-card .highlight-img {
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .events .event-intro h2 {
        font-size: 2rem;
        padding-left: 1rem;
        border-left-width: 4px;
    }

    .events .event-intro p {
        font-size: 1rem;
    }

    .events .event-intro .event-meta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .events .highlight-cards .highlight-card .highlight-body {
        padding: 1.8rem;
    }
}

/*--------------------------------------------------------------
# Brands Section
--------------------------------------------------------------*/
.brands-section {
    background-color: #fff;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 20px 0;
}

@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.brand-card {
    position: relative;
    background: #fff;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.brand-card .brand-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.brand-card .brand-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #fbfbfb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card .brand-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1) 0%, transparent 40%);
    opacity: 0.5;
    transition: 0.5s ease;
}

.brand-card:hover .brand-img-wrapper::after {
    opacity: 0;
}

.brand-card .brand-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s ease;
    filter: brightness(0.95);
}

.brand-card:hover .brand-img-wrapper img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.brand-card .brand-info {
    padding: 35px 25px;
    background: #fff;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.brand-card .brand-info::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 1px solid #f0f0f0;
    pointer-events: none;
    transition: 0.4s ease;
}

.brand-card:hover .brand-info::before {
    border-color: var(--brand-gold);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
}

.brand-card .brand-info .btn-brand {
    position: relative;
    z-index: 2;
    background: transparent;
    color: #1a1a1a;
    border: none;
    font-size: 11px;
    letter-spacing: 3px;
    padding: 0;
    box-shadow: none;
    display: inline-block;
    width: auto;
    margin: 0 auto;
}

.brand-card .brand-info .btn-brand::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--brand-gold);
    margin: 10px auto 0;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.brand-card:hover .brand-info .btn-brand::after {
    width: 60px;
}

/* Button handled by global .btn-brand */

.brands-title-wrapper {
    text-align: center;
    margin-bottom: 80px;
}

.brands-title-wrapper h2 {
    display: inline-block;
    font-size: 38px;
    font-weight: 700;
    color: #0D7AB3;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 20px;
}

.brands-title-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 4px;
    background-color: #BF9B30;
}

.brands-title-wrapper h2::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 45%;
    width: 10%;
    height: 3px;
    background-color: #0D7AB3;
}

/*--------------------------------------------------------------
# Brand Detail (Pandora etc.)
--------------------------------------------------------------*/
.brand-detail-section {
    padding: 60px 0;
    background-color: #fff;
}

.brand-detail-title {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

/*--------------------------------------------------------------
# Brand Detail
--------------------------------------------------------------*/
.brand-detail-section {
    padding: 60px 0 120px;
    background: linear-gradient(to bottom, #fcfcfc, #ffffff);
}

.brand-detail-header {
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding: 20px 40px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.brand-detail-header::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(80px);
}

.brand-detail-header h2 {
    font-size: 45px;
    font-weight: 200;
    color: var(--paragraph-color);
    text-transform: uppercase;
    letter-spacing: 15px;
    font-family: var(--default-font);
    display: block;
}

.brand-detail-header .brand-subtitle {
    font-size: 14px !important;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Shop Layout with Sidebar */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    position: relative;
}

@media (max-width: 1200px) {
    .shop-layout {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 40px;
        padding: 30px;
        background: #fbfbfb;
        border-radius: 15px;
    }

    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .shop-sidebar {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

.shop-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    margin-bottom: 50px;
}

.sidebar-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    color: #333;
}

.sidebar-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
    margin-left: 20px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 15px;
}

.filter-list a {
    font-size: 14px;
    color: #777;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    padding: 5px 0;
}

.filter-list a:hover {
    color: var(--brand-gold);
    transform: translateX(5px);
}

.filter-count {
    font-size: 11px;
    color: #ccc;
    font-weight: 400;
    background: #fcfcfc;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

/* Luxury Promo Section */
.luxury-promo {
    background: var(--brand-light-blue);
    color: #fff;
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.luxury-promo .promo-badge {
    background: var(--brand-gold);
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.luxury-promo h3 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.luxury-promo p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 450px;
}

.promo-image-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    height: 300px;
}

.p-img {
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    background-color: #333;
}

.p-img-1 {
    background-image: url('https://prerakinfotech.com/websites/extdata/Brands/Pandora/593493C01_RGB.jpg');
}

.p-img-2 {
    background-image: url('https://prerakinfotech.com/websites/extdata/Brands/Pandora/564367C00_RGB.jpg');
}

@media (max-width: 992px) {
    .luxury-promo {
        padding: 40px;
    }

    .promo-image-grid {
        margin-top: 40px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .brand-detail-section {
        padding: 120px 0 60px;
    }

    .brand-detail-header {
        padding: 60px 20px;
        margin-bottom: 40px;
        border-radius: 20px;
    }

    .brand-detail-header h2 {
        font-size: 32px;
        letter-spacing: 4px;
        margin-bottom: 15px;
    }

    .brand-detail-header .brand-subtitle {
        font-size: 12px !important;
    }

    .luxury-promo {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .luxury-promo h3 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .luxury-promo p {
        font-size: 14px;
        max-width: 100%;
    }

    .promo-image-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 15px;
    }

    .p-img {
        height: 180px;
    }

    .collection-info-bar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .custom-pagination .pagination {
        gap: 8px;
    }

    .custom-pagination .page-link {
        padding: 8px 15px;
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .brand-detail-header h2 {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .luxury-promo h3 {
        font-size: 20px;
    }

    .brand-detail-section {
        padding: 115px 10px 40px;
    }
}

.collection-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 20px;
    margin-bottom: 50px;
    border-bottom: 1px solid #f0f0f0;
}

.collection-count {
    font-family: var(--heading-font);
    font-weight: 400;
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sort-by select {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    padding-right: 30px !important;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (min-width: 1400px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Card Refinement */
.product-card {
    background: #fff;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    border-color: #ddd;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.product-img-box {
    background: #fff;
    padding: 0;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-info-container {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.product-card h4 {
    font-size: 14px;
    color: #1a1a1a;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.5;
    letter-spacing: 1px;
    flex-grow: 1;
}

.product-price-status {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-weight: 400;
}

.product-card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
    margin-top: auto;
}

.footer-icon {
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon:hover {
    color: var(--brand-gold);
    transform: translateY(-2px);
}

.footer-icon::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--brand-gold);
    transition: 0.3s;
}

.footer-icon:hover::after {
    width: 120%;
}

/* Custom Pagination Refinement */
.custom-pagination .pagination {
    gap: 12px;
    border: none;
}

.custom-pagination .page-item {
    border: none;
}

.custom-pagination .page-link {
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-pagination .page-item.active .page-link {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: #fff;
    pointer-events: none;
}

.custom-pagination .page-item.disabled .page-link {
    border-color: #eee;
    color: #ccc;
    background: transparent;
    pointer-events: none;
}

.custom-pagination .page-link:hover:not(.disabled) {
    background: var(--brand-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(209, 156, 64, 0.2);
}

/* Product Modal Styles */
/* --- Optimized Product & Email Modal Design --- */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.product-modal-overlay.active {
    display: flex;
}

.product-modal-container {
    background: #fff;
    width: 95%;
    max-width: 950px;
    position: relative;
    padding: 50px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 2px;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: 0.3s;
    line-height: 1;
    padding: 5px;
}

.modal-close:hover {
    color: var(--brand-gold);
    transform: rotate(90deg);
}

.product-modal-content {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.modal-left {
    flex: 1;
    max-width: 45%;
}

.modal-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.modal-img-box {
    background: #fff;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}

.modal-img-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.modal-right h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-right h3 a {
    color: #0D7AB3;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.modal-right h3 a:hover {
    border-bottom-color: #0D7AB3;
}

.modal-description {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.modal-description strong {
    color: #1a1a1a;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
}

.modal-actions .btn-brand,
.modal-actions .btn-brand-outline {
    font-size: 11px;
    letter-spacing: 1px;
    padding: 10px 15px;
    border-radius: 2px;
}

/* Email Jewelry Modal Refinement */
.email-modal {
    max-width: 1100px;
}

.email-modal-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 40px;
    position: relative;
}

.email-modal-title {
    font-size: 38px;
    font-weight: 200;
    color: #1a1a1a;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.email-back-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.email-back-link:hover {
    color: var(--brand-gold);
}

.brand-label {
    font-size: 24px;
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.email-contact-info {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.email-instr {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.email-label {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.email-input {
    border-radius: 0;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 14px;
    background: #fbfbfb;
}

.email-input:focus {
    background: #fff;
    border-color: #1a1a1a;
    outline: none;
    box-shadow: none;
}

.captcha-box {
    background: #f5f5f5;
    border: 1px solid #eee;
    padding: 8px 20px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
    letter-spacing: 4px;
    color: #444;
    user-select: none;
}


@media (max-width: 992px) {
    .product-modal-container {
        padding: 40px 30px;
    }

    .product-modal-content {
        gap: 30px;
    }

    .email-modal-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .product-modal-content {
        flex-direction: column;
    }

    .modal-left,
    .modal-right {
        max-width: 100%;
    }

    .email-back-link {
        position: static;
        transform: none;
        margin-top: 15px;
        text-align: center;
    }

    .price-label {
        font-size: 18px !important;
    }

    .details-content h1 {
        font-size: 20px !important;
    }

    .section-title-sm h2 {
        font-size: 20px !important;
    }
}

/* --- Product Details Page Full-Width Styles --- */
.product-details-container {
    padding: 180px 0 80px;
    background: #fff;
}

.details-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 1200px) {
    .details-layout {
        gap: 40px;
    }
}

.details-gallery {
    position: sticky;
    top: 120px;
}

@media (max-width: 992px) {
    .details-gallery {
        position: relative;
        top: 0;
    }

    .details-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.main-img-box {
    background: #fbfbfb;
    border-radius: 20px;
    padding: 60px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.main-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-details-page .breadcrumb-nav {
    margin-bottom: 40px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}

.product-details-page .breadcrumb-nav a {
    color: #1a1a1a;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.product-details-page .breadcrumb-nav a:hover {
    color: var(--brand-gold);
}

.product-category {
    font-size: 11px;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.details-content h1 {
    font-size: 28px;
    font-weight: 200;
    color: #1a1a1a;
    letter-spacing: 3px;
    margin-bottom: 30px;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

.details-price-box {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.price-label {
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 200;
    letter-spacing: 1px;
}

.price-label a {
    color: #0D7AB3;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.price-label a:hover {
    border-bottom-color: #0D7AB3;
}

.info-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    padding: 20px 0;
    border-bottom: 1px solid #f9f9f9;
    font-size: 14px;
}

.info-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    font-size: 14px;
}

.info-value {
    color: #666;
    line-height: 1.8;
}

.details-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
}

.action-btns-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.details-actions .btn-brand,
.details-actions .btn-brand-outline {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.details-actions i {
    font-size: 18px;
    line-height: 1;
}

.related-products {
    padding: 60px 0;
    background: #fbfbfb;
    border-top: 1px solid #eee;
}

.section-title-sm {
    text-align: center;
    margin-bottom: 70px;
}

.section-title-sm h2 {
    font-size: 30px;
    font-weight: 200;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.title-accent {
    width: 60px;
    height: 1px;
    background: var(--brand-gold);
}

/*--------------------------------------------------------------
# Bridal Section
--------------------------------------------------------------*/
.header.fixed-top+main {
    margin-top: 100px;
}

.bridal-hero {
    position: relative;
    height: 75vh;
    min-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
    margin-top: 150px;
}

.bridal-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.bridal-hero .container {
    position: relative;
    z-index: 2;
    color: #fff;
}

.bridal-hero h1 {
    font-size: 4.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 15px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.bridal-hero p {
    font-size: 1.3rem;
    letter-spacing: 4px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--brand-light-blue) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bridal-intro {
    padding: 80px 0;
    background: var(--brand-light-blue);
    text-align: center;
}

.bridal-intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--brand-blue);
    margin-bottom: 30px;
}

.category-grid {
    padding: 60px 0;
    background: #fbfbfb;
}

.bridal-cat-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.bridal-cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.bridal-cat-card:hover img {
    transform: scale(1.08);
}

.bridal-cat-card .overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    opacity: 0.9;
    padding: 30px;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.bridal-cat-card:hover .overlay {
    transform: translateY(0);
}

.bridal-cat-card h3 {
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: var(--brand-blue);
}

.bridal-cat-card p {
    font-size: 12px !important;
    color: #777;
    margin-bottom: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bridal-cat-card:hover p {
    opacity: 1;
}

.bespoke-ribbon {
    background: var(--brand-light-blue);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.bespoke-ribbon .accent-text {
    color: var(--brand-gold);
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: block;
}

.guide-section {
    padding: 60px 0;
}

.guide-box {
    display: flex;
    align-items: center;
    gap: 50px;
}

.guide-box .img-w {
    width: 45%;
    flex-shrink: 0;
}

.guide-box img {
    width: 100%;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .guide-box {
        flex-direction: column;
        gap: 30px;
    }

    .guide-box .img-w {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .bridal-hero h1 {
        font-size: 2.8rem;
        letter-spacing: 8px;
    }

    .bespoke-ribbon h2 {
        font-size: 2rem;
    }
}

.bridal-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 15px;
}

.bridal-guide-item {
    background: #fff;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bridal-guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--brand-blue-rgb), 0.1);
}

.bridal-guide-item .edu-card-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 0;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.bridal-guide-item:hover .edu-card-icon img {
    opacity: 1;
}

.bridal-guide-item h4 {
    color: var(--brand-blue);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .bridal-guide-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .bridal-guide-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------------------
# Login Register Section
--------------------------------------------------------------*/
.login-register .login-register-wraper {
    background-color: var(--surface-color);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.login-register .nav-tabs {
    border: none;
    margin-bottom: 2rem;
    gap: 0.75rem;
}

.login-register .nav-tabs .nav-item .nav-link {
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-register .nav-tabs .nav-item .nav-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
}

.login-register .nav-tabs .nav-item .nav-link.active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.login-register .nav-tabs .nav-item .nav-link i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.login-register .form-label {
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.login-register .form-control {
    border-radius: 12px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
    min-height: 3.25rem;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-register .position-relative i.position-absolute {
    z-index: 10;
}

.login-register .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
    background-color: var(--surface-color);
}

.login-register .form-control:hover {
    border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
    background-color: var(--surface-color);
}

.login-register .form-check {
    margin-bottom: 1rem;
}

.login-register .form-check .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
    border-radius: 6px;
    margin-right: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-register .form-check .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.login-register .form-check .form-check-input:focus {
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
    border-color: var(--accent-color);
}

.login-register .form-check .form-check-label {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
    cursor: pointer;
}

.login-register .form-check .form-check-label a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.login-register .form-check .form-check-label a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.login-register .form-check .form-check-label a:hover:after {
    transform: scaleX(1);
}

.login-register .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 25%));
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-register .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.login-register .btn-primary:active {
    transform: translateY(0);
}

.login-register .forgot-password {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    text-decoration: none;
}

.login-register .forgot-password:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.login-register .forgot-password:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.login-register .forgot-password:hover:after {
    transform: scaleX(1);
}

@media (max-width: 576px) {
    .login-register .login-register-wraper {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .login-register .nav-tabs {
        gap: 0.25rem;
    }

    .login-register .nav-tabs .nav-item .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }

    .login-register .form-control {
        font-size: 16px;
    }

    .login-register .brand-detail-header h2 {
        font-size: 2rem;
    }
}

/* =============================================================
   JEWELRY LANDING PAGE DEFINITIVE STYLES
   ============================================================= */

:root {
    --luxury-gold: #D19C40;
    --luxury-dark: #000000;
    --luxury-gray: #f2f2f2;
}

.jewelry-landing-page {
    background: #fff;
    color: var(--luxury-dark);
}

/* Luxury Nav */
.luxury-nav {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.luxury-nav .luxury-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.luxury-menu ul li a {
    color: #fff;
    font-weight: 500;
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.luxury-menu ul li a.active,
.luxury-menu ul li a:hover {
    opacity: 1;
    color: var(--luxury-gold);
}

.btn-cart {
    background: #fff;
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Luxury Hero */
.luxury-hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: visible;
    margin-top: 150px;
}

.luxury-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.luxury-hero .container {
    position: relative;
    z-index: 2;
}

.hero-text-wrap h1 {
    font-size: 4.5rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--brand-gold);
}

.hero-text-wrap p {
    font-size: 1.1rem;
    max-width: 500px;
    opacity: 0.9;
    margin-bottom: 40px;
    color: #ffffff !important;
}

.hero-btns-v2 {
    display: flex;
    gap: 20px;
}

/* Floating Category Cards */
.category-floating-wrap {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    z-index: 999;
}

.floating-cat-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cat-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.floating-cat-card h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.floating-cat-card img {
    height: 100px;
    object-fit: contain;
    width: 100%;
    display: block;
}

.floating-cat-card .btn-brand {
    margin-top: auto;
    align-self: flex-start;
}

/* Carousel Section */
.carousel-section {
    padding: 220px 0 100px;
    position: relative;
    z-index: 10;
    background: var(--brand-light-blue);
}

.business-section {
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.pt-card-offset {
    padding-top: 200px;
}

.carousel-controls .btn-nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background: transparent;
}

.btn-nav-arrow-trans {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Carousel Layout Adjustments */
.carousel-section .overflow-x-auto {
    padding-bottom: 20px;
    /* Space for scrollbar and shadow */
    margin-bottom: -20px;
    scrollbar-width: thin;
    /* Firefox */
}

.carousel-section .overflow-x-auto::-webkit-scrollbar {
    height: 6px;
    /* Webkit */
}

.carousel-section .overflow-x-auto::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Luxury Product Card */
.luxury-product-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #eee;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.luxury-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
}

.luxury-product-card .p-card-header,
.luxury-product-card h4,
.luxury-product-card .p-card-footer {
    position: relative;
    z-index: 2;
}

.luxury-product-card h4 {
    color: #222;
    /* Darker at top where gradient is lighter */
    margin-top: 10px;
    font-weight: 700;
}

.luxury-product-card.dimmed {
    opacity: 0.6;
}

.p-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.luxury-product-card .bi-heart {
    color: #fff;
    /* or dark depending on the top background, wait, let's use dark if top background is bright white */
    mix-blend-mode: difference;
}

.cat-label {
    font-size: 0.75rem;
    color: #444;
    font-weight: 600;
    text-transform: uppercase;
}

.luxury-product-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    z-index: 0;
}

.luxury-product-card .p-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    /* Pushes to the bottom */
}

.luxury-product-card .price {
    font-weight: 700;
    font-size: 1rem;
    color: #fff !important;
    /* Forces white over the dark bottom gradient */
}

.luxury-product-card .btn-brand {
    padding: 10px 18px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Silk Banner */
.silk-banner-section {
    padding: 60px 0 100px;
    background-size: cover;
    background-position: center;
    background-color: var(--brand-light-blue);
    position: relative;
}

.silk-product-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.silk-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
}

.silk-product-card .p-card-header,
.silk-product-card h4,
.silk-product-card .p-card-footer {
    position: relative;
    z-index: 2;
}

.silk-product-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.silk-product-card h4 {
    font-weight: 700;
    margin: 5px 0 15px;
    color: #222;
}

.silk-product-card .bi-heart {
    color: #fff;
    mix-blend-mode: difference;
}

.silk-product-card .price {
    font-weight: 700;
    font-size: 1rem;
    color: #fff !important;
}

.silk-product-card .p-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.silk-product-card .p-card-footer .btn-brand {
    padding: 10px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sale-tag {
    position: absolute;
    top: 60px;
    left: 25px;
    background: var(--brand-gold);
    color: #fff;
    padding: 3px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

.silk-product-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    z-index: 0;
    transition: transform 0.5s ease;
}

.luxury-img-portrait {
    border-radius: 15px;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .luxury-hero {
        height: auto;
        min-height: 80vh;
        padding: 120px 0 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-text-wrap {
        margin-bottom: 50px;
    }

    .hero-text-wrap h1 {
        font-size: 3.5rem;
    }

    .hero-text-wrap p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns-v2 {
        justify-content: center;
    }

    .category-floating-wrap {
        position: static;
        margin-top: 0;
        width: 100%;
    }

    .floating-cat-card {
        margin-bottom: 20px;
        padding: 20px;
        text-align: center;
    }

    .floating-cat-card img {
        height: 60px;
        margin-left: auto;
        margin-right: auto;
    }

    .floating-cat-card .btn-brand {
        align-self: center;
    }

    .carousel-section {
        padding: 60px 0;
        text-align: center;
    }

    .carousel-section h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .carousel-section br {
        display: none;
    }

    .carousel-section p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .pt-card-offset {
        padding-top: 60px;
    }

    .luxury-img-portrait {
        height: auto;
    }

    .carousel-controls {
        text-align: center !important;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .business-section {
        text-align: center;
        padding: 60px 0;
    }

    .business-section h2 br {
        display: none;
    }

    .business-section p {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }

    .business-section .btn-brand {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero-text-wrap h1 {
        font-size: 2.8rem;
    }

    .hero-text-wrap p {
        font-size: 1rem;
    }

    .luxury-product-card {
        min-height: 400px;
        padding: 25px;
    }

    .luxury-hero {
        min-height: 70vh;
    }

    .carousel-section h2 {
        font-size: 1.8rem;
    }

    .business-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-text-wrap h1 {
        font-size: 2.2rem;
    }

    .hero-btns-v2 {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns-v2 .btn-brand,
    .hero-btns-v2 .btn-brand-outline {
        width: 100%;
        text-align: center;
    }

    .luxury-product-card {
        min-height: 380px;
        padding: 20px;
    }

    .luxury-product-card h4 {
        font-size: 1.2rem;
    }

    .luxury-product-card .price {
        font-size: 0.9rem;
    }

    .carousel-controls {
        text-align: center !important;
        margin-bottom: 20px;
    }

    .carousel-section .col-8 {
        width: 85%;
        /* Make cards wider on small mobile */
    }

    .business-section h2 {
        font-size: 1.6rem;
    }
}

/*--------------------------------------------------------------
# Policy Section
--------------------------------------------------------------*/
.policy .tos-header {
    margin-bottom: 50px;
    padding: 40px 30px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, color-mix(in srgb, var(--accent-color), transparent 100%) 100%);
    border-radius: 20px;
    text-align: center;
}

.policy .tos-header .header-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy .tos-header .header-content .badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background-color: var(--surface-color);
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.policy .tos-header .header-content .badge-wrapper i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.policy .tos-header .header-content .badge-wrapper .last-updated {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.9rem;
    font-weight: 500;
}

.policy .tos-header .header-content h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .policy .tos-header .header-content h2 {
        font-size: 2.2rem;
    }
}

.policy .tos-header .header-content p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 1.05rem;
    line-height: 1.6;
}

.policy .tos-sidebar {
    position: sticky;
    top: 100px;
    background-color: var(--surface-color);
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .policy .tos-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

.policy .tos-sidebar h5 {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.policy .tos-sidebar .terms-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy .tos-sidebar .terms-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.policy .tos-sidebar .terms-nav .nav-item .number {
    font-size: 0.85rem;
    font-weight: 700;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    min-width: 25px;
}

.policy .tos-sidebar .terms-nav .nav-item .text {
    font-size: 0.95rem;
    font-weight: 500;
}

.policy .tos-sidebar .terms-nav .nav-item:hover,
.policy .tos-sidebar .terms-nav .nav-item.active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
}

.policy .tos-sidebar .terms-nav .nav-item:hover .number,
.policy .tos-sidebar .terms-nav .nav-item.active .number {
    color: var(--accent-color);
}

.policy .tos-content .content-section {
    position: relative;
    margin-bottom: 45px;
    padding: 35px;
    background-color: var(--surface-color);
    border-radius: 16px;
    scroll-margin-top: 100px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.policy .tos-content .content-section:last-of-type {
    margin-bottom: 0;
}

.policy .tos-content .content-section .section-number {
    position: absolute;
    top: -15px;
    left: 35px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--contrast-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.policy .tos-content .content-section h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    margin-top: 15px;
    color: var(--heading-color);
    font-weight: 700;
}

.policy .tos-content .content-section p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 1rem;
}

.policy .tos-content .content-section p:last-child {
    margin-bottom: 0;
}

.policy .tos-content .content-section .highlight-card {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.policy .tos-content .content-section .highlight-card .card-icon {
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.policy .tos-content .content-section .highlight-card .card-icon i {
    font-size: 1.3rem;
    color: var(--contrast-color);
}

.policy .tos-content .content-section .highlight-card .card-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.policy .tos-content .content-section .highlight-card .card-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.policy .tos-content .content-section .list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .policy .tos-content .content-section .list-grid {
        grid-template-columns: 1fr;
    }
}

.policy .tos-content .content-section .list-grid .list-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
}

.policy .tos-content .content-section .list-grid .list-card i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.policy .tos-content .content-section .list-grid .list-card span {
    font-size: 0.93rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.5;
}

.policy .tos-content .content-section .warning-card {
    padding: 25px;
    background-color: color-mix(in srgb, #ffc107, transparent 94%);
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid color-mix(in srgb, #ffc107, transparent 80%);
}

.policy .tos-content .content-section .warning-card .warning-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.policy .tos-content .content-section .warning-card .warning-header i {
    font-size: 1.5rem;
    color: #ffc107;
}

.policy .tos-content .content-section .warning-card .warning-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.policy .tos-content .content-section .warning-card p {
    margin: 0;
    font-size: 0.95rem;
    padding-left: 38px;
}

.policy .tos-content .content-section .disclaimer-card {
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
    padding: 28px;
    border-radius: 12px;
    margin-top: 20px;
}

.policy .tos-content .content-section .disclaimer-card h6 {
    font-size: 1.05rem;
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--heading-color);
}

.policy .tos-content .content-section .disclaimer-card .disclaimer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy .tos-content .content-section .disclaimer-card .disclaimer-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 0.95rem;
}

.policy .tos-content .content-section .disclaimer-card .disclaimer-list li:last-child {
    margin-bottom: 0;
}

.policy .tos-content .content-section .disclaimer-card .disclaimer-list li i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.policy .tos-content .content-section .disclaimer-card .disclaimer-list li span {
    flex: 1;
    line-height: 1.6;
}

.policy .tos-content .content-section .notice-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid var(--accent-color);
}

.policy .tos-content .content-section .notice-card i {
    font-size: 1.4rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.policy .tos-content .content-section .notice-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.policy .tos-content .tos-contact {
    margin-top: 40px;
}

.policy .tos-content .tos-contact .contact-wrapper {
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 15%) 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .policy .tos-content .tos-contact .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

.policy .tos-content .tos-contact .contact-wrapper .contact-info {
    flex: 1;
}

.policy .tos-content .tos-contact .contact-wrapper .contact-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--contrast-color);
    font-weight: 700;
}

.policy .tos-content .tos-contact .contact-wrapper .contact-info p {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    margin: 0;
    font-size: 1rem;
}

.policy .tos-content .tos-contact .contact-wrapper .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: var(--contrast-color);
    color: var(--accent-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.policy .tos-content .tos-contact .contact-wrapper .contact-btn i {
    font-size: 1.1rem;
}

.policy .tos-content .tos-contact .contact-wrapper .contact-btn span {
    font-size: 1rem;
}

.policy .tos-content .tos-contact .contact-wrapper .contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media print {

    .policy .tos-sidebar,
    .policy .tos-contact {
        display: none;
    }

    .policy .content-section {
        page-break-inside: avoid;
        box-shadow: none;
    }
}

/*--------------------------------------------------------------
# Terms And Conditions Section
--------------------------------------------------------------*/
.terms-and-conditions .tos-header {
    margin-bottom: 50px;
    padding: 40px 30px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, color-mix(in srgb, var(--accent-color), transparent 100%) 100%);
    border-radius: 20px;
    text-align: center;
}

.terms-and-conditions .tos-header .header-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-and-conditions .tos-header .header-content .badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background-color: var(--surface-color);
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.terms-and-conditions .tos-header .header-content .badge-wrapper i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.terms-and-conditions .tos-header .header-content .badge-wrapper .last-updated {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.9rem;
    font-weight: 500;
}

.terms-and-conditions .tos-header .header-content h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .terms-and-conditions .tos-header .header-content h2 {
        font-size: 2.2rem;
    }
}

.terms-and-conditions .tos-header .header-content p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 1.05rem;
    line-height: 1.6;
}

.terms-and-conditions .tos-sidebar {
    position: sticky;
    top: 100px;
    background-color: var(--surface-color);
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .terms-and-conditions .tos-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

.terms-and-conditions .tos-sidebar h5 {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.terms-and-conditions .tos-sidebar .terms-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terms-and-conditions .tos-sidebar .terms-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.terms-and-conditions .tos-sidebar .terms-nav .nav-item .number {
    font-size: 0.85rem;
    font-weight: 700;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    min-width: 25px;
}

.terms-and-conditions .tos-sidebar .terms-nav .nav-item .text {
    font-size: 0.95rem;
    font-weight: 500;
}

.terms-and-conditions .tos-sidebar .terms-nav .nav-item:hover,
.terms-and-conditions .tos-sidebar .terms-nav .nav-item.active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
}

.terms-and-conditions .tos-sidebar .terms-nav .nav-item:hover .number,
.terms-and-conditions .tos-sidebar .terms-nav .nav-item.active .number {
    color: var(--accent-color);
}

.terms-and-conditions .tos-content .content-section {
    position: relative;
    margin-bottom: 45px;
    padding: 35px;
    background-color: var(--surface-color);
    border-radius: 16px;
    scroll-margin-top: 100px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.terms-and-conditions .tos-content .content-section:last-of-type {
    margin-bottom: 0;
}

.terms-and-conditions .tos-content .content-section .section-number {
    position: absolute;
    top: -15px;
    left: 35px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--contrast-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.terms-and-conditions .tos-content .content-section h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    margin-top: 15px;
    color: var(--heading-color);
    font-weight: 700;
}

.terms-and-conditions .tos-content .content-section p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 1rem;
}

.terms-and-conditions .tos-content .content-section p:last-child {
    margin-bottom: 0;
}

.terms-and-conditions .tos-content .content-section .highlight-card {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.terms-and-conditions .tos-content .content-section .highlight-card .card-icon {
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.terms-and-conditions .tos-content .content-section .highlight-card .card-icon i {
    font-size: 1.3rem;
    color: var(--contrast-color);
}

.terms-and-conditions .tos-content .content-section .highlight-card .card-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.terms-and-conditions .tos-content .content-section .highlight-card .card-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.terms-and-conditions .tos-content .content-section .list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .terms-and-conditions .tos-content .content-section .list-grid {
        grid-template-columns: 1fr;
    }
}

.terms-and-conditions .tos-content .content-section .list-grid .list-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
}

.terms-and-conditions .tos-content .content-section .list-grid .list-card i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.terms-and-conditions .tos-content .content-section .list-grid .list-card span {
    font-size: 0.93rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.5;
}

.terms-and-conditions .tos-content .content-section .warning-card {
    padding: 25px;
    background-color: color-mix(in srgb, #ffc107, transparent 94%);
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid color-mix(in srgb, #ffc107, transparent 80%);
}

.terms-and-conditions .tos-content .content-section .warning-card .warning-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.terms-and-conditions .tos-content .content-section .warning-card .warning-header i {
    font-size: 1.5rem;
    color: #ffc107;
}

.terms-and-conditions .tos-content .content-section .warning-card .warning-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.terms-and-conditions .tos-content .content-section .warning-card p {
    margin: 0;
    font-size: 0.95rem;
    padding-left: 38px;
}

.terms-and-conditions .tos-content .content-section .disclaimer-card {
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
    padding: 28px;
    border-radius: 12px;
    margin-top: 20px;
}

.terms-and-conditions .tos-content .content-section .disclaimer-card h6 {
    font-size: 1.05rem;
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--heading-color);
}

.terms-and-conditions .tos-content .content-section .disclaimer-card .disclaimer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-and-conditions .tos-content .content-section .disclaimer-card .disclaimer-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 0.95rem;
}

.terms-and-conditions .tos-content .content-section .disclaimer-card .disclaimer-list li:last-child {
    margin-bottom: 0;
}

.terms-and-conditions .tos-content .content-section .disclaimer-card .disclaimer-list li i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.terms-and-conditions .tos-content .content-section .disclaimer-card .disclaimer-list li span {
    flex: 1;
    line-height: 1.6;
}

.terms-and-conditions .tos-content .content-section .notice-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid var(--accent-color);
}

.terms-and-conditions .tos-content .content-section .notice-card i {
    font-size: 1.4rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.terms-and-conditions .tos-content .content-section .notice-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.terms-and-conditions .tos-content .tos-contact {
    margin-top: 40px;
}

.terms-and-conditions .tos-content .tos-contact .contact-wrapper {
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 15%) 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .terms-and-conditions .tos-content .tos-contact .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

.terms-and-conditions .tos-content .tos-contact .contact-wrapper .contact-info {
    flex: 1;
}

.terms-and-conditions .tos-content .tos-contact .contact-wrapper .contact-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--contrast-color);
    font-weight: 700;
}

.terms-and-conditions .tos-content .tos-contact .contact-wrapper .contact-info p {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    margin: 0;
    font-size: 1rem;
}

.terms-and-conditions .tos-content .tos-contact .contact-wrapper .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: var(--contrast-color);
    color: var(--accent-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.terms-and-conditions .tos-content .tos-contact .contact-wrapper .contact-btn i {
    font-size: 1.1rem;
}

.terms-and-conditions .tos-content .tos-contact .contact-wrapper .contact-btn span {
    font-size: 1rem;
}

.terms-and-conditions .tos-content .tos-contact .contact-wrapper .contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media print {

    .terms-and-conditions .tos-sidebar,
    .terms-and-conditions .tos-contact {
        display: none;
    }

    .terms-and-conditions .content-section {
        page-break-inside: avoid;
        box-shadow: none;
    }
}

/*--------------------------------------------------------------
# Wishlist Section
--------------------------------------------------------------*/
.luxury-hero-mini {
    padding: 120px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.luxury-hero-mini::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.luxury-hero-mini .container {
    position: relative;
    z-index: 2;
}

.luxury-hero-mini h1 {
    font-size: 3.5rem;
    color: var(--brand-gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.wishlist-section {
    padding: 80px 0;
    background: var(--brand-light-blue);
}

.remove-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4d4d;
    cursor: pointer;
    transition: 0.3s;
    z-index: 5;
}

.remove-wishlist:hover {
    background: #ff4d4d;
    color: #fff;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .luxury-hero-mini h1 {
        font-size: 2.5rem;
    }

    .wishlist-section {
        padding: 50px 0;
    }
}

/*--------------------------------------------------------------
# Jewelry Page - Harmonized Styles
--------------------------------------------------------------*/
/* Overlay the global section-title for left-aligned variants */
.section-title.text-start h2:after {
    left: 0;
    right: auto;
    margin: 0;
}

.jewelry-collection-overview {
    background-color: #ffffff;
    padding: 60px 0;
}

.style-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Base card style shared across the page */
.floating-cat-card,
.style-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(13, 122, 179, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.floating-cat-card::before,
.style-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-gold);
    opacity: 0.1;
    transition: opacity 0.3s;
}

.floating-cat-card:hover,
.style-card:hover {
    box-shadow: 0 15px 35px rgba(13, 122, 179, 0.08) !important;
}

.icon-box-tint {
    width: 60px;
    height: 60px;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.style-card:hover .icon-box-tint {
    background: var(--brand-gold);
}

.style-card:hover .icon-box-tint i {
    color: #fff !important;
}

.style-card h5 {
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.style-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--paragraph-color);
    margin-bottom: 0;
}

.collection-summary-wrap {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid rgba(204, 204, 204, 0.884);
}

@media (max-width: 991px) {
    .jewelry-collection-overview {
        padding: 60px 0;
    }

    .style-cards-grid {
        grid-template-columns: 1fr;
    }

    .collection-summary-wrap {
        margin-top: 60px;
        padding-top: 60px;
    }

    .section-title h2 {
        font-size: 28px !important;
        padding-bottom: 12px;
    }

    .section-title h2::after {
        width: 40px;
    }
}

@media (max-width: 575px) {
    .hero-text-wrap h1 {
        font-size: 2.2rem !important;
    }

    .section-title h2 {
        font-size: 24px !important;
        padding-bottom: 10px;
    }

    .section-title h2::after {
        width: 30px;
    }
}

/* ------- SITEMAP ------- */

.sitemap-title {
    color: var(--brand-blue);
    font-size: 42px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-blue);
    display: inline-block;
    min-width: 250px;
    text-align: center;
}

.sitemap-content {
    padding-bottom: 80px;
}

.sitemap-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    color: #333;
}

.sitemap-list>li {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.sitemap-list>li>strong {
    color: #1a1a1a;
    font-weight: 700;
}

.sitemap-list a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s;
}

.sitemap-list a:hover {
    color: var(--brand-blue);
}

.sitemap-sublist {
    list-style-type: circle;
    padding-left: 25px;
    margin-top: 4px;
    margin-bottom: 8px;
}

.sitemap-sublist li {
    font-size: 14px;
    margin-bottom: 4px;
}

.sitemap-list .bi-diamond {
    font-size: 8px;
    margin-right: 8px;
    color: #666;
    vertical-align: middle;
}