/* ==========================================================================
   ROOVY GARMENTS - ULTRA ANIMATION & LIGHTBOX SYSTEM (CSS)
   Includes: Scroll Reveal, 3D Tilt, Ultra-Attractive Lightbox Modal, Hover FX
   ========================================================================== */

/* --------------------------------------------------
   1. HIDE ALL CAROUSEL PAGINATION DOTS (Direct Arrows Only)
   -------------------------------------------------- */
.owl-dots,
.owl-theme .owl-dots {
    display: none !important;
}

/* --------------------------------------------------
   2. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------- */
.reveal-on-scroll {
    opacity: 0;
    will-change: transform, opacity;
    transition-duration: 0.85s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    transition-property: transform, opacity, filter;
}

/* Fade Up */
.reveal-up {
    transform: translateY(45px);
}

/* Fade Left */
.reveal-left {
    transform: translateX(-50px);
}

/* Fade Right */
.reveal-right {
    transform: translateX(50px);
}

/* Scale Up */
.reveal-scale {
    transform: scale(0.88);
}

/* Active State when scrolled into view */
.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
    filter: blur(0);
}

/* Stagger Delays for Grid items */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.18s; }
.stagger-3 { transition-delay: 0.28s; }
.stagger-4 { transition-delay: 0.38s; }
.stagger-5 { transition-delay: 0.48s; }
.stagger-6 { transition-delay: 0.58s; }


/* --------------------------------------------------
   3. 3D CARD TILT & REFLECTION GLARE
   -------------------------------------------------- */
.tilt-card {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
    will-change: transform;
}

.tilt-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(231, 171, 60, 0.25);
    z-index: 10;
}

.tilt-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.tilt-card:hover .tilt-glare {
    opacity: 1;
}

/* --------------------------------------------------
   4. PRODUCT HOVER OVERLAYS & QUICK VIEW BADGE
   -------------------------------------------------- */
.pi-pic {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pi-pic img {
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease !important;
    width: 100%;
    object-fit: cover;
}

/* Images stay STILL on hover — no scale or movement */
.product-item:hover .pi-pic img,
.single-banner:hover .pi-pic img,
.single-latest-blog:hover .pi-pic img {
    transform: none !important;
    filter: brightness(1.06);
}

/* Banner hover: dark gradient overlay slides up */
.single-banner .pi-pic::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,20,0.72) 0%, rgba(10,10,20,0.1) 55%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    border-radius: 12px;
}
.single-banner:hover .pi-pic::after {
    opacity: 1;
}



.pi-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 18, 0.85) 0%, rgba(13, 13, 18, 0.2) 60%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: opacity 0.35s ease;
    z-index: 4;
}

/* Show overlay ONLY when hovering the .pi-pic image area */
.pi-pic:hover .pi-hover-overlay {
    opacity: 1;
}

.pi-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transform: translateY(25px) scale(0.7);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: none;
}

.pi-action-btn:hover {
    background: #e7ab3c;
    color: #ffffff;
    transform: translateY(0) scale(1.2) !important;
    box-shadow: 0 12px 30px rgba(231, 171, 60, 0.5);
}

/* Action buttons animate in when .pi-pic is hove#E3010F */
.pi-pic:hover .pi-action-btn:nth-child(1) {
    transform: translateY(0) scale(1);
    opacity: 1;
    transition-delay: 0.05s;
}

.pi-pic:hover .pi-action-btn:nth-child(2) {
    transform: translateY(0) scale(1);
    opacity: 1;
    transition-delay: 0.12s;
}

/* Quick View Badge — no longer used on banners, kept for backwards compat */
.quick-view-badge {
    display: none;
}

/* Hide ALL heart/wishlist buttons sitewide */
.pi-action-btn:not(.quick-view) {
    display: none !important;
}

/* When only eye button remains, center it perfectly */
.pi-hover-overlay {
    justify-content: center;
}

/* --------------------------------------------------
   5. ULTRA-ATTRACTIVE LUXURY LIGHTBOX POPUP MODAL
   -------------------------------------------------- */
#roovy-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 99990;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#roovy-lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.roovy-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 40, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.roovy-lightbox-container {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 980px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: none;
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: row;
    transform: scale(0.86) translateY(35px);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    color: #E3010F;
}

#roovy-lightbox-modal.active .roovy-lightbox-container {
    transform: scale(1) translateY(0);
}

.roovy-lightbox-media {
    flex: 1.25;
    background: linear-gradient(145deg, #f8f6f2 0%, #f0ece4 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 30px;
    min-height: 440px;
}

.roovy-lb-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #e7ab3c, #f3be58);
    border: none;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(231, 171, 60, 0.35);
}

.roovy-lightbox-media img {
    max-width: 100%;
    max-height: 480px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.roovy-lightbox-media:hover img {
    transform: scale(1.06);
}

.roovy-lightbox-details {
    flex: 1.1;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    border-left: 1px solid #f0ece4;
}

.roovy-lb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.roovy-lightbox-category {
    color: #e7ab3c;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.roovy-lb-rating {
    color: #f3be58;
    font-size: 12px;
    font-weight: 700;
}

.roovy-lightbox-title {
    font-size: 26px;
    font-weight: 800;
    color: #E3010F;
    margin-bottom: 15px;
    line-height: 1.3;
}

.roovy-lightbox-desc {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.roovy-lb-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    background: #faf8f5;
    padding: 15px 18px;
    border-radius: 12px;
    border: 1px solid #f0ece4;
}

.lb-feat-item {
    font-size: 13px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lb-feat-item i {
    color: #e7ab3c;
    font-size: 14px;
}

.roovy-lightbox-actions {
    display: flex;
    gap: 14px;
}

.roovy-lb-btn {
    padding: 13px 24px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

.roovy-lb-btn-primary {
    background: linear-gradient(135deg, #e7ab3c 0%, #f3be58 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(231, 171, 60, 0.35);
}

.roovy-lb-btn-primary:hover {
    background: linear-gradient(135deg, #d49a30 0%, #e7ab3c 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(231, 171, 60, 0.5);
}

.roovy-lb-btn-secondary {
    background: #f8f6f2;
    color: #E3010F;
    border: 1px solid #e5e1d8;
}

.roovy-lb-btn-secondary:hover {
    background: #E3010F;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.25);
}

.roovy-lightbox-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    border: 1px solid #e5e1d8;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.roovy-lightbox-close:hover {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
    transform: rotate(90deg) scale(1.1);
}

.roovy-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: #E3010F;
    border: 1px solid #e5e1d8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.roovy-lightbox-nav.lb-prev { left: 18px; }
.roovy-lightbox-nav.lb-next { right: 18px; }

.roovy-lightbox-nav:hover {
    background: #e7ab3c;
    color: #ffffff;
    border-color: #e7ab3c;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 25px rgba(231, 171, 60, 0.4);
}

@media (max-width: 820px) {
    .roovy-lightbox-container {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }
    .roovy-lightbox-media {
        min-height: 280px;
        padding: 20px;
    }
    .roovy-lightbox-details {
        padding: 25px 20px;
    }
    .roovy-lightbox-nav {
        width: 38px;
        height: 38px;
    }
}

/* --------------------------------------------------
   6. BACK-TO-TOP BUTTON WITH SCROLL PROGRESS
   -------------------------------------------------- */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#back-to-top:hover {
    background: #e7ab3c;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 30px rgba(231, 171, 60, 0.4);
}

#back-to-top:hover i {
    color: #ffffff;
}

#back-to-top i {
    font-size: 18px;
    color: #111111;
    transition: color 0.25s ease;
}

#back-to-top svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

#back-to-top circle {
    fill: none;
    stroke: #e7ab3c;
    stroke-width: 3;
    stroke-dasharray: 140;
    stroke-dashoffset: 140;
    transition: stroke-dashoffset 0.1s linear;
}

/* --------------------------------------------------
   7. EXTRA MICRO-ANIMATIONS & HOVER HIGHLIGHTS
   -------------------------------------------------- */

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.off-card {
    animation: floatBadge 3.5s ease-in-out infinite;
}

.nav-menu ul li a {
    position: relative;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #e7ab3c;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu ul li:hover a::after,
.nav-menu ul li.active a::after {
    width: 100%;
}

.primary-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.35s ease !important;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 171, 60, 0.4);
}

.single-benefit {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    padding: 20px;
    border-radius: 12px;
}

.single-benefit:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.single-benefit .sb-icon img {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.single-benefit:hover .sb-icon img {
    transform: scale(1.2) rotate(8deg);
}

.top-social a, .footer-social a {
    transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease !important;
    display: inline-block;
}

.top-social a:hover, .footer-social a:hover {
    transform: translateY(-4px) scale(1.15);
    color: #e7ab3c !important;
}

/* --------------------------------------------------
   8. PROFESSIONAL POLISH — ENHANCED VISUALS
   -------------------------------------------------- */

/* Section Title Enhancements */
.section-title h2 {
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #E3010F;
}

.section-title span {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    color: #e7ab3c;
}

.section-title p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #777;
    line-height: 1.8;
}

/* Gradient accent line under section titles */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e7ab3c, #f3be58);
    margin: 18px auto 0;
    border-radius: 3px;
}

/* Product text area refinement */
.product-item .pi-text {
    padding: 18px 16px 22px;
}

.product-item .pi-text .catagory-name {
    font-size: 11px;
    color: #999;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.product-item .pi-text h5 {
    font-size: 16px;
    font-weight: 700;
    color: #E3010F;
}

/* Blog card text refinement */
.single-latest-blog .latest-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #E3010F;
    line-height: 1.45;
    margin-bottom: 10px;
}

.single-latest-blog .latest-text p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 0;
}

.single-latest-blog .latest-text .tag-list .tag-item {
    font-size: 13px;
    color: #aaa;
}

/* Banner section improved spacing */
.banner-section {
    padding: 60px 50px 70px;
}

.banner-section .section-title {
    margin-bottom: 40px;
}

/* Featu#E3010F Products section polish */
.featu#E3010F-products .section-title {
    margin-bottom: 40px;
}

/* Smooth image loading */
.pi-pic img {
    background: #f5f5f5;
}

/* Better section backgrounds for rhythm */
.latest-blog {
    background: #fafafa;
}

.benefit-items {
    border-radius: 16px;
    overflow: hidden;
    border-color: #eee !important;
}

/* Footer polish */
.footer-section {
    border-top: 3px solid #e7ab3c;
}

/* Hero section subtle bottom fade */
.hero-slider {
    position: relative;
}

/* --------------------------------------------------
   10. NAVIGATION HOVER — GOLD UNDERLINE SLIDE
   -------------------------------------------------- */
.nav-menu ul li a {
    position: relative;
    display: inline-block;
}
.nav-menu ul li a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: #e7ab3c;
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-menu ul li a:hover::after,
.nav-menu ul li.active a::after {
    width: 100%;
}

/* --------------------------------------------------
   11. HERO CTA BUTTON SHIMMER
   -------------------------------------------------- */
@keyframes shimmer-slide {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.primary-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
}
.primary-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.primary-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 35px rgba(231, 171, 60, 0.45) !important;
}
.primary-btn:hover::before {
    opacity: 1;
    animation: shimmer-slide 0.7s ease forwards;
}

/* --------------------------------------------------
   12. STICKY HEADER WITH BACKDROP
   -------------------------------------------------- */
.header-section {
    position: sticky;
    top: 0;
    z-index: 9000;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}
.header-section.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.14);
}

/* --------------------------------------------------
   13. BANNER INNER-TEXT STYLING (cleaner label)
   -------------------------------------------------- */
.single-banner .inner-text {
    padding: 14px 0 4px;
}
.single-banner .inner-text h4 {
    font-size: 17px;
    font-weight: 700;
    color: #E3010F;
    letter-spacing: 0.2px;
}

/* --------------------------------------------------
   14. SECTION-TITLE UNDERLINE STYLE (refined)
   -------------------------------------------------- */
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e7ab3c, #f7c96e);
    margin: 16px auto 0;
    border-radius: 99px;
    transition: width 0.5s ease;
}

/* --------------------------------------------------
   15. FOOTER NEWSLETTER FORM (pill style)
   -------------------------------------------------- */
.subscribe-form {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 16px;
}
.subscribe-form input {
    flex: 1;
    border: none;
    padding: 14px 22px;
    font-size: 14px;
    background: #fff;
    outline: none;
    border-radius: 50px 0 0 50px;
}
.subscribe-form button {
    background: #e7ab3c;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}
.subscribe-form button:hover {
    background: #c9922e;
    transform: scale(1.03);
}

/* ==========================================================================
   16. COMPREHENSIVE VISUAL UPGRADE — PREMIUM WEBSITE POLISH
   ========================================================================== */

/* --- SMOOTH BODY BACKGROUND --- */
body {
    background: #fdfcfa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- HERO SECTION — GRADIENT OVERLAY + TYPOGRAPHY GLOW --- */
.single-hero-items::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.35) 0%, rgba(0,0,0,0.05) 50%, rgba(231,171,60,0.12) 100%);
    z-index: 1;
    pointer-events: none;
}
.single-hero-items .container {
    position: relative;
    z-index: 2;
}
.hero-items .single-hero-items h1 {
    font-family: "Outfit", "Muli", sans-serif;
    font-size: 58px;
    font-weight: 900;
    color: #E3010F;
    line-height: 1.1;
    text-shadow: 0 2px 30px rgba(255,255,255,0.3);
}
.hero-items .single-hero-items span {
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #e7ab3c, #d4881a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-items .single-hero-items p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    max-width: 480px;
}
/* Hero CTA button rounded + premium */
.hero-items .primary-btn,
.deal-of-week .primary-btn {
    border-radius: 50px;
    padding: 15px 38px;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Hero owl arrows — premium circular */
.hero-items .owl-nav button[type=button] {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.85) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.hero-items .owl-nav button[type=button]:hover {
    background: #e7ab3c !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(231,171,60,0.35);
}

/* --- BANNER CARDS — SOFT GRADIENT BG + SHADOW LIFT --- */
.single-banner {
    border-radius: 20px !important;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease !important;
}
.single-banner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12) !important;
}
.single-banner .inner-text {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 16px 20px !important;
    text-align: center;
    border-radius: 0 0 20px 20px;
}
.single-banner .inner-text h4 {
    font-family: "Outfit", "Muli", sans-serif;
    font-size: 16px !important;
    font-weight: 700;
    color: #E3010F;
    letter-spacing: 0.6px;
}
.single-banner .pi-pic {
    overflow: hidden;
}
.single-banner .pi-pic img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.single-banner:hover .pi-pic img {
    transform: scale(1.06);
}

/* --- PRODUCT CARDS — IMAGE ZOOM + PREMIUM SHADOW --- */
.product-item {
    border-radius: 18px !important;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease !important;
}
.product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.1) !important;
}
.product-item .pi-pic {
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}
.product-item .pi-pic img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.product-item:hover .pi-pic img {
    transform: scale(1.06);
}
.product-item .pi-text {
    padding: 20px 18px 24px;
    background: linear-gradient(180deg, #fff 0%, #fdfcfa 100%);
}
.product-item .pi-text h5 {
    font-family: "Outfit", "Muli", sans-serif;
}
.product-item .pi-text .catagory-name {
    color: #b8a07a;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
}

/* Product slider arrows — premium circular */
.product-slider .owl-nav button[type=button] {
    width: 44px !important;
    height: 44px !important;
    background: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 1 !important;
    border: 1px solid #eee !important;
}
.product-slider .owl-nav button[type=button]:hover {
    background: #e7ab3c !important;
    color: #fff !important;
    border-color: #e7ab3c !important;
    box-shadow: 0 6px 20px rgba(231,171,60,0.3);
}

/* --- STATS SECTION (Deal of Week) — GLASS COUNTERS --- */
.deal-of-week {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.deal-of-week::before {
    content: '';
    position: absolute;
    inset: 0;
background: linear-gradient(
    135deg,
    rgba(122, 13, 37, 0.85) 0%,
    rgba(122, 13, 37, 0.60) 55%,
    rgba(194, 138, 46, 0.25) 100%
);
    z-index: 1;
}
.deal-of-week .container {
    position: relative;
    z-index: 2;
}
.deal-of-week .section-title span {
    color: #f7c96e;
}
.deal-of-week .section-title h2 {
    color: #ffffff;
    font-family: "Outfit", "Muli", sans-serif;
    font-weight: 800;
}
.deal-of-week .section-title h2::before {
    background: #f7c96e;
}
.deal-of-week .section-title p {
    color: rgba(255,255,255,0.8);
}
.deal-of-week .section-title::after {
    background: linear-gradient(90deg, #f7c96e, #e7ab3c);
}
.countdown-timer .cd-item {
    background: rgba(255,255,255,0.12) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px !important;
    padding: 20px 28px !important;
    margin-right: 20px;
    min-width: 110px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.countdown-timer .cd-item:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.2) !important;
}
.countdown-timer .cd-item span {
    font-family: "Outfit", "Muli", sans-serif;
    font-weight: 900;
    font-size: 40px;
    color: #f7c96e !important;
    display: block;
    line-height: 1.1;
}
.countdown-timer .cd-item p {
    color: rgba(255,255,255,0.7) !important;
    font-size: 13px;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* --- PRODUCT LARGE BANNERS (Women's / Men's Collection) --- */
.product-large {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.product-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.8) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
    z-index: 1;
}
.product-large h2,
.product-large p,
.product-large a {
    position: relative;
    z-index: 2;
}
.product-large h2 {
    font-family: "Outfit", "Muli", sans-serif;
    font-weight: 800;
    font-size: 42px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.product-large a {
    font-weight: 700;
    letter-spacing: 1px;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}
.product-large a:hover {
    color: #f7c96e;
}
.product-large a::before {
    background: #f7c96e;
    transition: background 0.3s ease;
}

/* --- BLOG CARDS — GOLD ACCENT + SHADOW LIFT --- */
.single-latest-blog {
    border-radius: 20px !important;
    border: 1px solid rgba(0,0,0,0.04);
    border-top: 3px solid #e7ab3c;
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease !important;
}
.single-latest-blog:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12) !important;
}
.single-latest-blog .pi-pic {
    overflow: hidden;
}
.single-latest-blog .pi-pic img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.single-latest-blog:hover .pi-pic img {
    transform: scale(1.06);
}
.single-latest-blog .latest-text {
    padding: 24px 24px 28px;
    background: linear-gradient(180deg, #fff 0%, #fdfcfa 100%);
}
.single-latest-blog .latest-text h4 {
    font-family: "Outfit", "Muli", sans-serif;
}
.single-latest-blog .latest-text .tag-item i {
    color: #e7ab3c;
    font-size: 12px;
}

/* --- BENEFIT SECTION — GOLD ICON CIRCLES --- */
.benefit-items {
    border: none !important;
    border-radius: 20px !important;
    background: #ffffff;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    padding: 10px 0;
}
.single-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 30px !important;
}
.single-benefit .sb-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(231,171,60,0.12), rgba(231,171,60,0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0 !important;
    float: none !important;
}
.single-benefit .sb-icon img {
    width: 28px;
    height: 28px;
    filter: none;
}
.single-benefit .sb-text h6 {
    font-family: "Outfit", "Muli", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #E3010F;
    margin-bottom: 2px;
}
.single-benefit .sb-text p {
    font-size: 13px;
    color: #888;
}

/* --- LATEST BLOG SECTION BACKGROUND --- */
.latest-blog {
    background: linear-gradient(180deg, #f8f6f2 0%, #fdfcfa 100%) !important;
    padding-top: 80px;
    padding-bottom: 90px;
}

/* --- SECTION TITLES — PREMIUM UPGRADE --- */
.section-title span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #e7ab3c, #d4881a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 8px;
}
.section-title h2 {
    font-family: "Outfit", "Muli", sans-serif !important;
    font-weight: 800 !important;
    font-size: 34px !important;
    color: #E3010F;
    line-height: 1.25;
}
.section-title p {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 1.7;
    color: #777;
}

/* --- FOOTER UPGRADE — DARKER + GOLDEN ACCENTS --- */
.footer-section {
    background: #E3010F !important;
    border-top: none !important;
    position: relative;
}
.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e7ab3c, transparent);
    color: white!important;
}
.footer-widget h5 {
    font-family: "Outfit", "Muli", sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.footer-left .footer-social a {
    background: rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}
.footer-left .footer-social a:hover {
    background: #e7ab3c;
    color: #fafafa!important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231,171,60,0.3);
}

/* --- NAV BAR — SMOOTHER HOVER TRANSITIONS --- */
.nav-item {
    background: #E3010F!important;
}
.nav-item .nav-depart .depart-btn {
    background: #252540 !important;
}
.nav-item .nav-menu li a {
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s ease, color 0.3s ease;
}
.nav-item .nav-menu li a:hover,
.nav-item .nav-menu li.active a {
    background: #e7ab3c;
}

/* --- SMOOTH SCROLLBAR --- */
html {
    scroll-behavior: smooth;
}

/* --- OFF-CARD BADGE IN HERO — PREMIUM --- */
.hero-items .off-card {
    background: linear-gradient(135deg, #e7ab3c, #d4881a) !important;
    box-shadow: 0 10px 30px rgba(231,171,60,0.35);
}

/* --- PRELOADER — GOLD THEME --- */
#preloder {
    background: #E3010F!important;
}
.loader {
    border-color: #e7ab3c !important;
    border-left-color: transparent !important;
}

/* --- BREADCRUMB SECTION — SUBTLE --- */
.breacrumb-section {
    background: linear-gradient(180deg, #f8f6f2 0%, #fdfcfa 100%);
    padding: 18px 0;
}
.breadcrumb-text a {
    color: #999;
    transition: color 0.2s ease;
}
.breadcrumb-text a:hover {
    color: #e7ab3c;
}
.breadcrumb-text span {
    color: #E3010F;
    font-weight: 600;
}

/* --- GLOBAL ANCHOR SMOOTHING --- */
a {
    transition: color 0.25s ease;
}

/* --- SELECTION HIGHLIGHT --- */
::selection {
    background: rgba(231,171,60,0.25);
    color: #E3010F;
}
