:root {
    --orange: #1a3a8a !important;       /* Base Brand Blue */
    --orange-hover: #244eb8 !important; /* Slightly brighter vibrant blue for hover feedback */
    --orange-dark: #11275e !important;  /* Deeper navy-blue shade for dark borders/accents */
    --orange-soft: #f0f4fa !important;
}

/* --- Hero Slider Layout Upgrades --- */

/* 1. Container Wrapper & Rounded Corners */
.rcg-main-hero {
    padding: 15px; /* Creates the outer breathing room if needed, or remove if you want full bleed */
    background: transparent;
}

.rcg-main-hero .hero-slider {
    border-radius: 12px !important; /* Matches the smooth curved border edges in the screenshot */
    overflow: hidden !important;
}

/* 2. Background Color & Sizing */
.rcg-main-hero .hero-slide {
    background-color: #000232 !important; /* Deep luxury sapphire navy background */
    height: clamp(320px, 45vh, 400px) !important; /* Compact, elegant banner ratio */
    display: flex !important;
    align-items: center !important;
}


 .rcg-main-hero .wrap{
    max-width: 100%; 
    padding-top: 0 !important;
 }


 .hero-dots{
    bottom: 40px;
 }


/* Remove default heavy dark overlays to keep the deep blue rich and clean */
.rcg-main-hero .hero-overlay {
    background: transparent !important; 
}

/* 3. Text & Layout Positioning */
.rcg-main-hero .hero-content {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    
    /* Use width + margin-left auto to shift content safely to the right */
    width: 45% !important; /* Allocates 45% of the slide space to the text container */
    max-width: 550px !important; 
    margin-left: auto !important; /* Pushes the container cleanly to the right side */
    margin-right: 8% !important;  /* Elegant breathing gap from the right edge */
    
    padding: 0 !important; /* Strip out the breaking 55% padding values */
    text-align: left !important;
    box-sizing: border-box !important;
}

/* Typography Adjustments */
.rcg-main-hero .hero-content h1 {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 500 !important;
    font-size: clamp(1.8rem, 3vw, 2.6rem) !important; /* Fluid modern sizing scaling scale */
    color: #ffffff !important;
    line-height: 1.25 !important;
    margin: 0 0 20px 0 !important;
    letter-spacing: -0.01em !important;
    word-break: keep-all !important; /* Prevents awkward word splitting mid-sentence */
}

/* Hide any unnecessary subtitle labels or eyebrows present in default layouts */
.rcg-main-hero .hero-content .eyebrow,
.rcg-main-hero .hero-content p:not(h1) {
    /*display: none !important;*/
}
.hero-content .eyebrow {
    color: #ffffff;
}
/* 4. Rounded Pill Button Style */
.rcg-main-hero .hero-content .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #1a3a8a !important; /* Lighter slate-blue shade matching the button */
    color: #ffffff !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    text-transform: none !important; /* Standard case text capitalization */
    letter-spacing: 0 !important;
    padding: 10px 28px !important;
    border: none !important;
    border-radius: 50px !important; /* Complete pill-shape outline */
    box-shadow: none !important;
    transition: background-color 0.2s ease !important;
}

.rcg-main-hero .hero-content .btn:hover {
    background-color: #254eb3 !important;
}

/* 5. Mobile & Tablet Optimization */
@media (max-width: 768px) {
    .rcg-main-hero .hero-content {
        padding: 0 24px !important; /* Centers content nicely over background image on small devices */
        text-align: center !important;
    }
    
    .rcg-main-hero .hero-slide {
        background-position: 25% center !important; /* Keeps the model visible when scaled down */
        height: 280px !important;
        border-radius: 12px !important; /* Keeps corners rounded since we are changing overflow */
    }

    .rcg-main-hero .hero-slider {
        overflow: visible !important; /* Allows the dots to show outside the container */
        margin-bottom: 25px !important; /* Creates space below the image for the dots */
    }

    .hero-dots{
        bottom: -22px !important;  
    }

    /* Inactive dots (now on white background) */
    .hero-dot {
        background: #d1d5db !important; /* light grey so they are visible on white */
    }

    /* Active dot */
    .hero-dot.on{
        background: #000000 !important;
    }
    
    .logo .site-logo-img, .h2-logo .site-logo-img{
        max-width: 104px !important;
    }
}

/* 5. Mobile & Tablet Optimization */
@media (max-width: 768px) {
    .rcg-main-hero .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 24px !important; 
        text-align: center !important;
    }
    
    .rcg-main-hero .hero-slide {
        background-position: 25% center !important;
        height: 350px !important;
    }
}

/* --- Centered Circle Categories Module --- */
.rcg-circle-categories {
    display: flex !important;
    justify-content: center !important; /* Horizontally centers the items */
    align-items: center !important;     /* Vertically centers if there is a height constraint */
    flex-wrap: wrap !important;        /* Allows wrapping on smaller screens */
    gap: 30px !important;              /* Spacing between each circle */
    padding: 40px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Target the individual badge wrapper */
.rcg-circle-categories .cat-badge {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
    transition: transform 0.3s ease !important;
}

/* Hover effect for a premium feel */
.rcg-circle-categories .cat-badge:hover {
    transform: translateY(-5px);
}

/* Ensure the image container is a perfect circle */
.rcg-circle-categories .cb-img {
    width: 120px !important;    /* Adjust size as needed */
    height: 120px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #f5f5f5 !important;
    border: 1px solid #e0e0e0 !important;
}

/* Ensure the image fills the circle properly */
.rcg-circle-categories .cb-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Style the label text underneath */
.rcg-circle-categories .cb-label {
    margin-top: 12px !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: #88888b !important;
    text-transform: capitalize !important;
}

@media (max-width: 600px) {
    .rcg-circle-categories .cb-img {
        width: 70px !important;
        height: 70px !important;
    }
    .rcg-circle-categories {
        gap: 15px !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        padding: 20px 15px !important;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .rcg-circle-categories::-webkit-scrollbar {
        display: none;
    }
}

/* --- About Block Styles  --- */

.rcg-about-block {
    padding: 80px 0;
    background: #ffffff;
}

/* Two-column layout distribution */
.rcg-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

/* Left Content Area */
.rcg-about-text {
    text-align: left;
}

.rcg-about-title {
    font-family: 'Manrope', sans-serif !important; /* Clean modern styling */
    font-size: clamp(1.8rem, 3.5vw, 2.4rem) !important;
    font-weight: 500 !important;
    color: #222222 !important;
    margin-bottom: 32px !important;
    letter-spacing: -0.01em !important;
}

.rcg-about-p {
    font-family: 'Manrope', sans-serif !important;
    font-size: clamp(0.85rem, 1.5vw, 0.92rem) !important;
    line-height: 1.7 !important;
    color: #333333 !important;
    margin-bottom: 28px !important; /* Spacious paragraph splits */
}

/* Pill Shaped Accent Button */
.rcg-about-text .rcg-luxury-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #1a3a8a !important; /* Matches your core brand accent */
    color: #ffffff !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    text-transform: none !important; /* Normal sentence case capitalization */
    letter-spacing: 0 !important;
    padding: 12px 32px !important;
    border: none !important;
    border-radius: 50px !important; /* Complete pill-shape outline */
    text-decoration: none !important;
    transition: 0.2s ease !important;
    margin-top: 12px;
}

.rcg-about-text .rcg-luxury-btn:hover {
    background-color: var(--orange-hover) !important;
}

/* Right Side Side-by-Side Gallery (No Stagger) */
.rcg-about-gallery {
    display: flex;
    gap: 20px;
    height: 420px;
    align-items: stretch;
}

.rcg-img-card {
    flex: 1;
    overflow: hidden;
    border-radius: 16px; /* Smooth rounded corners matching the screenshot */
}

.rcg-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overriding and removing the old staggered structural layout alignment */
.rcg-stacked-left, 
.rcg-stacked-right { 
    transform: none !important; 
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .rcg-about-grid {
        grid-template-columns: 1fr; /* Switch to stack structure on mobile */
        gap: 40px;
    }
    
    .rcg-about-gallery {
        height: 340px;
    }
}

@media (max-width: 575px) {
    .rcg-about-block {
        padding: 48px 0;
    }
    
    .rcg-about-title {
        margin-bottom: 20px !important;
    }
    
    /* Keep it clean on smaller mobile screen views */
    .rcg-about-gallery {
        height: 240px;
        gap: 12px;
    }
    
    .rcg-img-card {
        border-radius: 12px;
    }
}

/* --- Promo Trio Grid Custom Styling  --- */

/* Parent Grid/Flex Alignment Rules */
.rcg-promo-trio .promo-grid, 
.rcg-promo-trio .grid-3 {
    display: flex !important;
    gap: 24px !important;
    justify-content: center !important;
    align-items: stretch !important;
    flex-wrap: wrap;
    margin: 40px auto !important;
}

/* Individual Promo Card Modifiers */
.rcg-promo-trio .promo {
    flex: 1 1 300px !important;
    min-height: 220px !important;
    padding: 32px 24px !important;
    border-radius: 24px !important; /* Elegant rounded card profiles */
    border: none !important;
    box-shadow: none !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    position: relative !important;
    box-sizing: border-box !important;
}

/* Force text block to occupy the left side of the card, protecting the product photo layout on the right */
.rcg-promo-trio .promo div,
.rcg-promo-trio .promo .promo-content {
    max-width: 60% !important;
    text-align: left !important;
    z-index: 2 !important;
    position: relative !important;
}

/* Eyebrow Label Styling */
.rcg-promo-trio .promo .eyebrow {
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #666666 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Bold Main Headers */
.rcg-promo-trio .promo h2 {
    font-family: 'Manrope', sans-serif !important; /* Set to clean sans-serif matching image */
    font-size: clamp(1.2rem, 2vw, 1.5rem) !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    color: #222222 !important;
    margin: 0 0 8px 0 !important;
    letter-spacing: -0.01em !important;
}

/* Sub-text Description Paragraphs */
.rcg-promo-trio .promo p:not(.eyebrow):not(h2) {
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    color: #666666 !important;
    margin: 0 0 20px 0 !important;
}

/* Pill-Shaped Action Button Overrides */
.rcg-promo-trio .promo .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #1a3a8a !important; /* Luxury deep blue signature fill color */
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important; /* Perfect pill rounded boundary shapes */
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    text-transform: none !important; /* Keeps sentence-case formatting active */
    letter-spacing: 0 !important;
    padding: 10px 24px !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: background-color 0.2s ease !important;
}

.rcg-promo-trio .promo .btn:hover {
    background-color: var(--orange-hover) !important;
}

/* --- Mobile Responsiveness Adjustments --- */
@media (max-width: 991px) {
    .rcg-promo-trio .promo-grid, 
    .rcg-promo-trio .grid-3 {
        gap: 16px !important;
    }
    
    .rcg-promo-trio .promo {
        padding: 24px 20px !important;
        min-height: 190px !important;
    }
}

@media (max-width: 767px) {
    .rcg-promo-trio .promo {
        flex: 1 1 100% !important; /* Full width cards stacked vertically on mobile viewports */
    }
    
    .rcg-promo-trio .promo div,
    .rcg-promo-trio .promo .promo-content {
        max-width: 65% !important; /* Restricts text width slightly to allow room for background images */
    }
}

/* --- Featured Grid Styling Overrides --- */

/* 1. Modify the layout container to display exactly 5 columns per row */
.rcg-featured-grid .grid-4 {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important; /* Forces 5 items per row */
    gap: 28px 20px !important; /* Balance spacing between columns */
}

/* Update the title rule to apply your signature brand blue */
.rcg-featured-grid .eyebrow {
    color: #1a3a8a !important; /* Changes the title text to the blue tone */
}

.rcg-featured-grid .prod .badge.sale{
    background-color: #1a3a8a !important;  
}

/* 2. Symmetrically center-align all card data text nodes */
.rcg-featured-grid .prod {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    text-decoration: none !important;
}

/* 3. Handle image wrapper constraints, aspect ratios, and card curves */
.rcg-featured-grid .prod .ph {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important; /* Clean, slightly shorter uniform square layout */
    border-radius: 16px !important; /* Adds the card border radius shown in the screenshot */
    overflow: hidden !important;
    position: relative !important;
    background-color: #f7f7f7 !important; /* Soft grey backdrop canvas */
    margin-bottom: 14px !important;
}

/* 4. Ensure elements inside the image container render correctly */
.rcg-featured-grid .prod .ph img.main,
.rcg-featured-grid .prod .ph img.alt {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; /* Keeps luxury jewelry detailing perfectly sized */
    /*padding: 15px !important;*/ /* Gentle safe padding buffer inside the curved boundaries */
    box-sizing: border-box !important;
}

/* 5. Clean up category, title, and price alignments */
.rcg-featured-grid .prod .info {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.rcg-featured-grid .prod .cat-row {
    justify-content: center !important;
    margin-bottom: 4px !important;
}

.rcg-featured-grid .prod .info h3 {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin: 0 0 6px 0 !important;
    color: #111111 !important;
}

.rcg-featured-grid .prod .prc {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    font-weight: 600 !important;
}

.prod .prc .now {
    color: #111111;
}

.prod .info {
    padding: 1px 4px 6px;
}

/* --- Responsive Viewport Fallbacks --- */
@media (max-width: 1200px) {
    .rcg-featured-grid .grid-4,
    .grid-4 {
        grid-template-columns: repeat(3, 1fr) !important; /* Transition to 3 items on standard tablets */
    }
}

@media (max-width: 767px) {
    .rcg-featured-grid .grid-4,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important; /* Smooth 2-item split grid structure for mobile devices */
        gap: 20px 12px !important;
    }
    .rcg-featured-grid .prod .ph,
    .prod .ph {
        border-radius: 12px !important; /* Marginally downscales radius curves on tiny screens */
    }
    /* Break stars and review count into new lines */
    .rcg-featured-grid .prod .rate-row,
    .prod .rate-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 4px !important;
        margin-bottom: 8px !important;
    }
    /* Break old and new price into new lines */
    .rcg-featured-grid .prod .prc,
    .prod .prc {
        flex-direction: column !important;
        gap: 2px !important;
    }
}

/* --- News & Blog Section Styles --- */

.rcg-blog-section {
    padding: 60px 0 80px 0;
    background-color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.rcg-blog-section .rcg-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* 1. Header Layout Positioning */
.rcg-blog-section .rcg-blog-header {
    text-align: left !important;
    margin-bottom: 40px !important;
}

.rcg-blog-section .rcg-blog-eyebrow {
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    color: #1a3a8a !important; /* Corporate brand blue accent */
    display: block;
    margin-bottom: 6px !important;
}

.rcg-blog-section .rcg-blog-main-title {
    font-family: 'Manrope', sans-serif !important;
    font-size: clamp(1.5rem, 2.8vw, 2rem) !important;
    font-weight: 400 !important;
    color: #111111 !important;
    letter-spacing: 0.1em !important;
    margin: 0 !important;
}

/* 2. Structured 4-Column Grid system */
.rcg-blog-section .rcg-blog-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* Exactly 4 side-by-side nodes */
    gap: 24px !important;
}

/* 3. Card Elements & Universal Alignment */
.rcg-blog-section .rcg-blog-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* Center handles child data fields */
    text-align: center !important;  /* Center text blocks explicitly */
    background: transparent !important;
}

/* 4. Rounded Image Container */
.rcg-blog-section .rcg-blog-img-wrap {
    width: 100% !important;
    aspect-ratio: 16 / 10 !important; /* Elegant widescreen photo aspect ratio */
    border-radius: 20px !important; /* Pronounced curved card mask border radius */
    overflow: hidden !important;
    margin-bottom: 16px !important;
    background-color: #f8f8f8;
}

.rcg-blog-section .rcg-blog-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.rcg-blog-section .rcg-blog-card:hover .rcg-blog-img-wrap img {
    transform: scale(1.05) !important;
}

/* 5. Typography & Meta Layouts */
.rcg-blog-section .rcg-blog-meta {
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #999999 !important;
    margin-bottom: 10px !important;
}

.rcg-blog-section .rcg-blog-title {
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    margin: 0 0 10px 0 !important;
    min-height: 44px; /* Keeps card titles visually uniform */
}

.rcg-blog-section .rcg-blog-title a {
    color: #111111 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.rcg-blog-section .rcg-blog-title a:hover {
    color: #1a3a8a !important;
}

.rcg-blog-section .rcg-blog-excerpt {
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    color: #666666 !important;
    margin: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Automatically handles neat 3-line clipping rules */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Mobile Viewport Breakpoint Adjustments --- */
@media (max-width: 1199px) {
    .rcg-blog-section .rcg-blog-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Shift down to 2-columns on tablets */
        gap: 32px 20px !important;
    }
    .rcg-blog-section .rcg-blog-title {
        min-height: auto;
    }
}

@media (max-width: 650px) {
    .rcg-blog-section .rcg-blog-grid {
        grid-template-columns: 1fr !important; /* Stack columns completely on standard mobile phone layouts */
        gap: 36px !important;
    }
    .rcg-blog-section .rcg-container {
        padding: 0 16px;
    }
}

/* shop1 — tenant custom CSS overrides (loaded after app.css on the storefront) */



/* --- Mid Callout Banner Overrides --- */

/* 1. Base Banner Wrapper & Background Alignment */
.rcg-mid-callout-banner {
    position: relative !important;
    background-position: right center !important; /* Pushes the model image cleanly to the right */
    background-size: contain !important; /* Prevents awkward cropping of the focal jewelry piece */
    background-repeat: no-repeat !important;
    min-height: 430px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    border: none !important;
}

/* 2. Deep Blue Left-Side Solid Gradient Mask */
.rcg-mid-callout-banner .rcg-banner-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to right, #010326 0%, #010326 45%, rgba(1, 3, 38, 0.8) 55%, rgba(1, 3, 38, 0) 100%) !important;
    z-index: 1 !important;
}

/* 3. Structural Layout & Sizing */
.rcg-mid-callout-banner .wrap {
    width: 100% !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    position: relative !important;
    z-index: 2 !important;
    box-sizing: border-box !important;
}

.rcg-mid-callout-banner .rcg-banner-content-box {
    max-width: 50% !important; /* Safely confines the text panel to the dark left half */
    text-align: left !important;
}

/* 4. Luxury Typography Tweaks */
.rcg-mid-callout-banner .rcg-banner-title {
    font-family: 'Manrope', sans-serif !important; /* Clean sans-serif override */
    font-size: clamp(1.6rem, 3.2vw, 2.2rem) !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    margin: 0 0 20px 0 !important;
    letter-spacing: -0.01em !important;
}

.rcg-mid-callout-banner .rcg-banner-p {
    font-family: 'Manrope', sans-serif !important;
    font-size: clamp(0.82rem, 1.5vw, 0.88rem) !important;
    line-height: 1.65 !important;
    color: #a4b3d6 !important; /* Soft muted blue-grey text color for optimal readability */
    margin: 0 0 32px 0 !important;
}

/* 5. Solid Pill Action Button Conversion */
.rcg-mid-callout-banner .rcg-outline-white-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #1a3a8a !important; /* Solid corporate accent brand blue */
    color: #ffffff !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    text-transform: none !important; /* Sentence-case format */
    letter-spacing: 0 !important;
    padding: 12px 32px !important;
    border: none !important;
    border-radius: 50px !important; /* Continuous fluid pill profile curve */
    text-decoration: none !important;
    box-shadow: none !important;
    transition: background-color 0.2s ease !important;
}

.rcg-mid-callout-banner .rcg-outline-white-btn:hover {
    background-color: #244eb8 !important;
    color: #ffffff !important;
}

.cat-badges{
    padding: 4px 2px 10px;
}

/* --- Mobile and Tablet Optimization Viewports --- */
@media (max-width: 991px) {
    .rcg-mid-callout-banner .rcg-banner-content-box {
        max-width: 65% !important;
    }
    .rcg-mid-callout-banner {
        background-size: cover !important; /* Shifts image mode presentation gracefully on medium screens */
    }
}

@media (max-width: 767px) {
    .rcg-mid-callout-banner {
        background-position: center !important;
        min-height: 380px !important;
    }
    
    /* Strong solid backdrop overlay for full readability directly over the background image fields */
    .rcg-mid-callout-banner .rcg-banner-overlay {
        background: rgba(1, 3, 38, 0.85) !important; 
    }
    
    .rcg-mid-callout-banner .rcg-banner-content-box {
        max-width: 100% !important;
        text-align: center !important; /* Symmetric mobile layout alignment */
    }
    
    .rcg-mid-callout-banner .rcg-outline-white-btn {
        margin: 0 auto !important;
    }
}

/* --- Lower Hanging QR Callout Banner Styles --- */

.rcg-lower-callout-banner {
    position: relative !important;
    background-color: #01021b !important; /* Deep luxury navy background */
    background-position: left center !important; /* Positions the hand/gem image on the left */
    background-size: cover !important;
    background-repeat: no-repeat !important;
    min-height: 380px !important;
    display: flex !important;
    align-items: center !important;
    /* overflow: visible is required to allow the QR container to hang outside the section boundary */
    overflow: visible !important; 
    margin-bottom: 80px !important; /* Leaves room below for the hanging card layout */
}

/* Dark layout mask blend */
.rcg-lower-callout-banner .rcg-banner-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    /*background: linear-gradient(to right, rgba(1, 2, 27, 0.2) 0%, rgba(1, 2, 27, 0.8) 40%, #01021b 70%) !important;*/
    z-index: 1 !important;
}

/* Grid Wrapper Constraints */
.rcg-lower-callout-banner .wrap {
    width: 100% !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    position: relative !important;
    z-index: 2 !important;
    box-sizing: border-box !important;
}

/* Shifts text content block to the right center half */
.rcg-lower-callout-banner .rcg-banner-content-box {
    max-width: 55% !important;
    margin-left: auto !important;
    text-align: left !important;
    position: relative !important;
}

/* Typography styles matching the reference image */
.rcg-lower-callout-banner .rcg-banner-title {
    font-family: 'Manrope', sans-serif !important;
    font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    margin: 0 0 6px 0 !important;
}

.rcg-lower-callout-banner .rcg-banner-subtitle {
    font-family: 'Manrope', sans-serif !important;
    font-size: clamp(1.1rem, 2vw, 1.35rem) !important;
    font-weight: 400 !important;
    color: #cccccc !important;
    margin: 0 0 20px 0 !important;
}

.rcg-lower-callout-banner .rcg-banner-p {
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    color: #a5b1c9 !important;
    margin: 0 0 28px 0 !important;
}

/* Actions Row layout */
.rcg-lower-callout-banner .rcg-banner-actions {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

/* Pill Shaped Accent Button */
.rcg-lower-callout-banner .rcg-pill-blue-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #1a3a8a !important; /* Royal blue fill */
    color: #ffffff !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    padding: 10px 28px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease !important;
}

.rcg-lower-callout-banner .rcg-pill-blue-btn:hover {
    background-color: #244eb8 !important;
}

.rcg-lower-callout-banner .rcg-scan-text {
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.95rem !important;
    color: #ffffff !important;
    font-weight: 400 !important;
}

/* 3. Hanging QR Container Box with Dark Blue Background */
.rcg-lower-callout-banner .rcg-qr-container-card {
    position: absolute !important;
    right: -40px; /* Positions it nicely on the right flank */
    bottom: -140px; /* Moves it down and partially out of the section layout */
    width: 170px;
    height: 170px;
    background-color: #03062d !important; /* Solid dark blue matching background highlight */
    padding: 16px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    z-index: 5 !important;
}

.rcg-lower-callout-banner .rcg-qr-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* --- Responsive Layout for Smaller Devices --- */
@media (max-width: 991px) {
    .rcg-lower-callout-banner .rcg-banner-content-box {
        max-width: 65% !important;
    }
    .rcg-lower-callout-banner .rcg-qr-container-card {
        right: 0px;
        width: 140px;
        height: 140px;
        bottom: -60px;
    }
}

@media (max-width: 767px) {
    .rcg-lower-callout-banner {
        padding: 40px 0;
        overflow: visible !important;
        margin-bottom: 180px !important; /* Gives extra space on mobile for stacked elements */
    }
    .rcg-lower-callout-banner .rcg-banner-overlay {
        background: rgba(1, 2, 27, 0.85) !important;
    }
    .rcg-lower-callout-banner .rcg-banner-content-box {
        max-width: 100% !important;
        text-align: center !important;
    }
    .rcg-lower-callout-banner .rcg-banner-actions {
        justify-content: center !important;
    }
    /* Re-aligns QR card directly centered underneath content blocks on mobile viewports */
    .rcg-lower-callout-banner .rcg-qr-container-card {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 32px auto -140px auto !important; 
    }
}

/* --- Contact Banner Section --- */

.rcg-contact-banner {
    background-color: #0c051d; /* Deep dark navy tone */
    padding: 20px 0; /* Tight vertical padding for reduced height */
    min-height: 120px; /* Force a compact height distinct from other sections */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Add optional decorative watermark background if needed */
.rcg-contact-banner::before {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;
    width: 200px;
    height: 140px;
    background-size: contain;
    opacity: 0.1;
}

.rcg-contact-grid {
    display: flex;
    justify-content: space-between; /* Pushes text left, button right */
    align-items: center;
    gap: 40px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.rcg-contact-text {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.rcg-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1a3a8a; /* Signature brand blue */
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 36px;
    border-radius: 50px; /* Consistent pill shape */
    text-decoration: none;
    white-space: nowrap; /* Prevents button wrap */
    transition: background-color 0.2s ease;
}

.rcg-contact-btn:hover {
    background-color: #244eb8;
}

.quick .btn:hover {
    background: #1a3a8a !important;
    color: #fff !important;
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px -8px #244eb8;
}


.ostatus.pending, .ostatus.unpaid {
    background: #e5e8ff;
    color: #0810b5;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 767px) {
    .rcg-contact-banner {
        min-height: auto;
        padding: 30px 0;
    }
    .rcg-contact-grid {
        flex-direction: column; /* Stacked layout on small screens */
        text-align: center;
        gap: 20px;
    }
}


.foot-news input{
    background: #dddddd;
}

/* --- New Arrivals Grid & Feature Sidebar Layout Styles --- */

/* 1. Transform grid settings ONLY when the left sidebar block is active */
.rcg-has-feature-sidebar .grid-4 {
    display: grid !important;
    /* First track allocates exactly 325px width space for your card layout. 
       The remaining 4 columns share available landscape screen real-estate equally */
    grid-template-columns: 325px repeat(4, 1fr) !important;
    gap: 32px 20px !important;
    align-items: stretch !important;
}

/* 2. Style the Left Deal Feature Card Frame */
.rcg-has-feature-sidebar .rcg-deal-sidebar-card {
    grid-column: 1 !important; /* Force layout position to stay first */
    grid-row: span 2 !important; /* Stretch container framework past two rows of items smoothly */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    border-radius: 16px !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 520px !important;
    box-sizing: border-box !important;
}

/* Luxury card surface dimming overlay effect for text legibility protection */
.rcg-has-feature-sidebar .rcg-deal-sidebar-card::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

/* 3. Layout Alignments Inside the Card Body Container */
.rcg-has-feature-sidebar .rcg-deal-card-body {
    position: relative !important;
    z-index: 2 !important;
    height: 50% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 50px 24px 40px 24px !important;
    box-sizing: border-box !important;
}

/* 4. Typography Elements Structure Rules */
.rcg-deal-card-body .rcg-deal-eyebrow {
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #111111 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 12px !important;
    opacity: 0.9 !important;
}

.rcg-deal-card-body .rcg-deal-title {
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.65rem !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    color: #111111 !important;
    margin: 0 0 14px 0 !important;
}

.rcg-deal-card-body .rcg-deal-desc {
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    color: #111111 !important;
    margin: 0 0 30px 0 !important;
    max-width: 90% !important;
}

/* 5. Complete Pill Shaped Call to Action Button Alignment Settings */
.rcg-deal-card-body .rcg-deal-action-btn {
    margin-top: auto !important; /* Force locks button block placement to bottom space layout cleanly */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: var(--orange) !important; /* Hooks universally into your new blue variable mapping token */
    color: #ffffff !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    padding: 12px 36px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    transition: background-color 0.25s ease, transform 0.2s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.rcg-deal-card-body .rcg-deal-action-btn:hover {
    background-color: var(--orange-hover) !important;
    transform: translateY(-2px) !important;
}

/* --- Responsive Viewport Breakpoints --- */
@media (max-width: 1400px) {
    .rcg-has-feature-sidebar .grid-4 {
        /* Drop column numbers gracefully down on smaller viewport view spaces */
        grid-template-columns: 280px repeat(3, 1fr) !important;
        gap: 20px 16px !important;
    }
    .rcg-deal-card-body .rcg-deal-title {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 1199px) {
    /* When page container fields get tightly compressed, strip layout tracks down back to single flow lines */
    .rcg-has-feature-sidebar .grid-4 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    /* Turn card structure elements completely off contextually to retain native catalog viewing features */
    .rcg-has-feature-sidebar .rcg-deal-sidebar-card {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .rcg-has-feature-sidebar .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important; /* Pure grid split framework matrix for mobile screens */
    }
}


/* --- Center-Aligned Star Rating Component --- */
 .prod .info .rate-row {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    margin: 4px 0 8px 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.82rem !important;
    color: #666666 !important;
}

 .prod .info .rate-row .ic svg {
    width: 14px !important;
    height: 14px !important;
    fill: #f59e0b !important; /* Beautiful gold star color */
    stroke: azure;
}

.cat-scroll-btn{
    right: -97px;
}


/* --- Premium Footer Component Overrides Layout --- */

/* Footer base layout structure resets */
footer {
    background-color: #ffffff !important;
    padding: 60px 0 30px 0 !important;
    border-top: 1px solid #eaeaea !important;
    font-family: 'Montserrat', sans-serif !important;
}

footer .foot-grid {
    display: grid !important;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr !important; /* Perfect screenshot proportional layout splits */
    gap: 40px !important;
    align-items: flex-start !important;
}

/* Left Brand Column Typography Settings */
footer .foot-about .logo-text {
    font-family: 'Times New Roman', Times, serif !important; /* Elegant serif look from screenshot */
    font-size: 1.65rem !important;
    font-weight: 400 !important;
    color: #1a3a8a !important; /* Your signature blue theme */
    text-decoration: none !important;
    letter-spacing: 0.03em !important;
    display: block !important;
    margin-bottom: 16px !important;
}

footer .foot-about p {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    color: #555555 !important;
    margin-bottom: 24px !important;
    max-width: 90% !important;
}

/* --- Social Icons Container Alignment --- */
footer .foot-social-icons {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    margin-top: 16px !important;
}

/* --- Circular Button Base Styles --- */
footer .social-circle-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background-color: #f2f2f5 !important;
    color: #333333 !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
}

/* --- Font Awesome Centering Fixes --- */
footer .social-circle-btn .ic {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

footer .social-circle-btn .ic i {
    font-size: 14px !important; 
    line-height: 1 !important;
    display: block !important;
}

/* --- Hover State Interaction --- */
footer .social-circle-btn:hover {
    background-color: var(--orange) !important; /* Maps to your custom #1a3a8a variable */
    color: #ffffff !important;
}
/* Headings and Link Lists Alignment Style */
footer h4 {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #111111 !important;
    margin: 0 0 20px 0 !important;
    text-transform: none !important;
}

footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}


footer ul li a {
    font-size: 0.9rem !important;
    color: #555555 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

footer ul li a:hover {
    color: var(--orange) !important;
}

/* Right Section Layout Elements (Help Info + Form Matrix) */
footer .help-contact-info p {
    font-size: 0.9rem !important;
    color: #333333 !important;
    margin: 0 0 10px 0 !important;
}

footer .join-list-title {
    margin-top: 24px !important;
}

/* Form Pill Container Design Layout Style from screenshot */
footer .foot-news {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 12px !important;
}

footer .foot-news input[type="email"] {
    flex: 1 !important;
    background-color: #f0f0f2 !important; /* Soft grey matching input container */
    border: none !important;
    padding: 12px 20px !important;
    font-size: 0.88rem !important;
    border-radius: 50px !important; /* Rounded pill style input box */
    color: #333333 !important;
    outline: none !important;
    box-sizing: border-box !important;
}

footer .foot-news .btn-join {
    background-color: #2e2e2e !important; /* Dark slate finish button */
    color: #ffffff !important;
    border: none !important;
    padding: 12px 28px !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    border-radius: 50px !important; /* Rounded button frame block */
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
}

footer .foot-news .btn-join:hover {
    background-color: #000000 !important;
}

/* Centered Copyright Bottom Ribbon Bar */
footer .foot-bottom-centered {
    border-top: 1px solid #eaeaea !important;
    margin-top: 50px !important;
    padding-top: 24px !important;
    text-align: center !important;
    font-size: 0.85rem !important;
    color: #666666 !important;
}

footer .foot-bottom-centered a {
    color: var(--orange) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

/* --- Mobile Breakpoint Optimization --- */
@media (max-width: 991px) {
    footer .foot-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Two balanced columns on tablet view screen sizes */
        gap: 30px !important;
    }
}

@media (max-width: 600px) {
    footer .foot-grid {
        grid-template-columns: 1fr !important; /* Single drop file list column arrangement pattern inside mobile screens */
        gap: 24px !important;
    }
    footer .foot-about p {
        max-width: 100% !important;
    }
}

section.band {
    padding: 50px 0px;
}
