/* Aesthetic Enhancements & Premium Feel */

:root {
    --premium-gold: #FFA000;
    --premium-gold-light: #FFB300;
    --premium-dark: #1a1a1a;
    --premium-glass: rgba(255, 255, 255, 0.7);
    --premium-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --premium-glow: 0 0 20px rgba(255, 160, 0, 0.3);
}

/* 1. Custom Scrollbar for a sleek look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--premium-gold);
}

/* 2. Text Selection */
::selection {
    background: var(--premium-gold);
    color: white;
}

/* 3. Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* 4. Glassmorphism Utility */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 5. Gradient Text Utility */
.text-gradient-gold {
    background: linear-gradient(135deg, #FF6F00 0%, #FFA000 50%, #FFD54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 6. Advanced Hover Effects */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--premium-shadow);
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: var(--premium-glow);
}

/* 7. Button Refinements */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 8px;
    /* Slightly softer corners */
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* 8. Hero Section Floating Particles Animation (CSS Only) */
@keyframes float-up {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100px) rotate(20deg);
        opacity: 0;
    }
}

.hero-particle {
    position: absolute;
    bottom: -50px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-up 5s infinite linear;
    z-index: 10;
    pointer-events: none;
}

/* 9. Card Enhancements */
.card {
    border: none;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Special fix for service categories to make them pop properly without double transform */
.service-cat-card:hover {
    transform: translateY(-8px) !important;
}

/* 10. Heading Typography Enhancement */
h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.5px;
}

/* 11. Image Hover Zoom consistency */
.img-zoom-container {
    overflow: hidden;
    border-radius: 12px;
}

.img-zoom-container img {
    transition: transform 0.5s ease;
}

.img-zoom-container:hover img {
    transform: scale(1.08);
}

/* 12. Floating/Pulse Animations - Duplicates removed */

/* 12. Floating Animation Utility */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-animate {
    animation: floating 4s ease-in-out infinite;
}

.floating-animate-slow {
    animation: floating 6s ease-in-out infinite;
}

.floating-animate-reverse {
    animation: floating 5s ease-in-out infinite reverse;
}

@keyframes pulse-slow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 160, 0, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(255, 160, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 160, 0, 0);
    }
}

.pulse-slow {
    animation: pulse-slow 3s infinite;
}

/* 14. Premium Reveal Animation */
@keyframes premiumRevealUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wow.premium-reveal {
    animation-name: premiumRevealUp;
    /* Overrides animate.css default if collision, but usually requires 'animated' class handling */
}

/* Ensure visibility logic for wow.js */
/* .premium-reveal { visibility: hidden; } -  Removed to prevent permanent hiding if JS fails. WOW.js handles hiding itself. */

.animated.premium-reveal {
    visibility: visible;
    animation-name: premiumRevealUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* 16. Parallax Break Section */
.parallax-break {
    /* Placeholder Image - Kullanıcı değiştirmeli */
    background-image: url('https://arttek.farazibilisim.com.tr/uploads/_thumbs/images/istockphoto-1341090817-612x612.jpg');
    background-attachment: fixed;
    /* Parallax Magic */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

/* Steam Animation */
.steam-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.steam {
    position: absolute;
    bottom: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
}

.steam:nth-child(1) {
    left: 20%;
    animation: steam-rise 6s infinite ease-out 0s;
}

/* 17. Cinematic Service Cards (Clean & Impactful) */
.cinematic-card {
    position: relative;
    height: 400px;
    /* Consistent height */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #000;
    isolation: isolate;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cinematic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 160, 0, 0.5);
    /* Gold border hint */
}

/* Image Layer */
.cc-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.85;
}

.cinematic-card:hover .cc-image-wrapper img {
    transform: scale(1.12);
    opacity: 0.6;
    /* Darken on hover for text contrast */
}

/* Gradient Overlay */
.cc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #000000 0%, rgb(0 0 0 / 0%) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* Content Layer */
.cc-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Icon */
.cc-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #FFA000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform-origin: left bottom;
}

.cinematic-card:hover .cc-icon {
    background: #FFA000;
    color: #fff;
    transform: scale(1.1);
    border-color: #FFA000;
}

.cc-icon i {
    font-size: 20px;
}

/* Title */
.cc-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Divider Line */
.cc-divider {
    width: 40px;
    height: 3px;
    background: #FFA000;
    border-radius: 2px;
    margin-bottom: 12px;
    transition: width 0.3s ease;
}

.cinematic-card:hover .cc-divider {
    width: 80px;
}

/* Action Link */
.cc-action {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cinematic-card:hover .cc-action {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
}

.cc-action i {
    font-size: 12px;
}

/*
/* 17. Premium "Floating Glass" Service Cards */
.service-cat-card {
    display: block;
    height: 100%;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-cat-card:hover {
    transform: translateY(-8px) !important;
}

.service-cat-wrapper {
    position: relative;
    height: 420px;
    /* Taller */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #000;
}

.service-cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    opacity: 0.9;
}

.service-cat-card:hover .service-cat-image img {
    transform: scale(1.1);
    opacity: 0.6;
    /* Darken slightly on hover to make text pop */
}

/* Icon - Floating Top Right */
.service-cat-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-cat-icon i {
    font-size: 22px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.service-cat-card:hover .service-cat-icon {
    transform: scale(1.1) rotate(10deg);
    background: #FFA000;
}

.service-cat-card:hover .service-cat-icon i {
    color: #fff;
}

/* Content - Floating Bottom Glass Box */
.service-cat-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    /* Nearly opaque for readability */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    z-index: 5;
    transform: translateY(0);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-cat-card:hover .service-cat-content {
    bottom: 25px;
    /* Slight lift */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-cat-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.2;
}

.service-cat-read-more {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFA000;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.service-cat-read-more i {
    transition: transform 0.3s ease;
}

.service-cat-card:hover .service-cat-read-more i {
    transform: translateX(5px);
}

/* Overlay - Optional Gradient */
.service-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .service-cat-wrapper {
        height: 360px;
    }

    .service-cat-title {
        font-size: 18px;
    }

    .service-cat-icon {
        width: 48px;
        height: 48px;
        top: 15px;
        right: 15px;
    }

    .service-cat-content {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 20px;
    }
}

*/ .steam:nth-child(2) {
       left: 50%;
       animation: steam-rise 8s infinite ease-out 2s;
   }

.steam:nth-child(3) {
    left: 80%;
    animation: steam-rise 7s infinite ease-out 4s;
}

.steam:nth-child(4) {
    left: 35%;
    animation: steam-rise 9s infinite ease-out 1s;
}

.steam:nth-child(5) {
    left: 65%;
    animation: steam-rise 5s infinite ease-out 3s;
}

@keyframes steam-rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-300px) scale(3);
        opacity: 0;
    }
}

/* 15. Custom Scroll Reveal (JS Based) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1.000);
    /* easeOutCubic */
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for better flow if elements are side-by-side */
.reveal-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.reveal-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

/*--------------------------------------------------------------
# Custom Utility Classes for Premium Design
--------------------------------------------------------------*/
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.shadow-xl {
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .2) !important;
}

.bg-primary-soft {
    background-color: rgba(var(--bs-primary-rgb), 0.15) !important;
}

.bg-primary-soft.text-primary {
    color: var(--bs-primary) !important;
}

.object-fit-cover {
    object-fit: cover;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

.ls-1 {
    letter-spacing: 1px;
}

.blur-3xl {
    filter: blur(64px);
}

.blur-2xl {
    filter: blur(40px);
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-5 {
    opacity: 0.05;
}

.opacity-20 {
    opacity: 0.2;
}

.w-300px {
    width: 300px;
}

.h-300px {
    height: 300px;
}

.w-200px {
    width: 200px;
}

.h-200px {
    height: 200px;
}

.w-80px {
    width: 80px;
}

.h-80px {
    height: 80px;
}

.btn-white {
    background-color: #fff;
    color: var(--bs-black);
}

.btn-white:hover {
    background-color: #f8f9fa;
    color: var(--bs-primary);
}

.hover-transform {
    transition: transform 0.3s ease;
}

.hover-transform:hover {
    transform: translateY(-3px);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Fix for oval backgrounds in About Us page */
.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-box-sm {
    width: 60px;
    height: 60px;
    font-size: 24px;
    flex-shrink: 0;
}

.fs-sm {
    font-size: 0.875rem;
}

.fs-xs {
    font-size: 0.75rem;
}

/* Adjust colors to match theme variable names if needed */
/* theme.css uses --bs-primary-rgb and --bs-primary */

/* -------------------------------------------------------------------------- */
/* # ARTTEK BOUTIQUE DESIGN SYSTEM                                            */
/* -------------------------------------------------------------------------- */

.service-item-boutique {
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fff;
    border-radius: 2rem;
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.service-item-boutique:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.service-item-boutique .service-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: #f8f9fa;
    margin-bottom: 2rem;
    height: 300px;
}

.service-item-boutique img {
    transition: transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.service-item-boutique:hover img {
    transform: scale(1.1);
}

/* Numbering Indicator */
.service-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--bs-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    letter-spacing: 0;
}

/* Boutique Layout Details */
.service-stripe {
    width: 30px;
    height: 3px;
    background: var(--bs-primary);
    border-radius: 20px;
    margin-right: 15px;
    transition: width 0.4s ease;
}

.service-item-boutique:hover .service-stripe {
    width: 50px;
}

.service-title-boutique {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.service-item-boutique:hover .service-title-boutique a {
    color: var(--bs-primary) !important;
}

/* Spacing & Utilities Overrides */
.mb-15 {
    margin-bottom: 6rem !important;
}

.mb-7 {
    margin-bottom: 2rem !important;
}

.mt-n10 {
    margin-top: -6rem !important;
}

.ms-n10 {
    margin-left: -6rem !important;
}

.me-n10 {
    margin-right: -6rem !important;
}

.mb-n10 {
    margin-bottom: -6rem !important;
}

.tracking-wider {
    letter-spacing: 0.1em !important;
}

.tracking-tight {
    letter-spacing: -0.03em !important;
}

.w-60px {
    width: 60px !important;
}

.h-60px {
    height: 60px !important;
}

.blur-3xl {
    filter: blur(60px) !important;
}

/* Custom Button Luxe */
.btn-luxe-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: #fff;
    box-shadow: 0 10px 25px rgba(var(--bs-primary-rgb), 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-luxe-arrow:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 15px 30px rgba(var(--bs-primary-rgb), 0.4);
}

/* Line Clamp Fix */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

/* Soft Decorative Blobs */
.bg-blob {
    opacity: 0.05;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* Pagination Styles */
.pagination-luxe .page-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    margin: 0 5px;
    border: 1px solid #eee;
    color: var(--bs-dark);
    font-weight: 700;
    transition: all 0.3s ease;
}

.pagination-luxe .page-item.active .page-link {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(var(--bs-primary-rgb), 0.3);
}

.pagination-luxe .page-link:hover:not(.active) {
    background-color: #f8f9fa;
    color: #666;
}

.filter-tab-btn.active,
.filter-tab-btn:hover {
    background: #fff;
    border-color: var(--bs-primary);
    color: var(--bs-primary);
    box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.1);
}

/* -------------------------------------------------------------------------- */
/* # PREMIUM PRODUCT GALLERY UI                                               */
/* -------------------------------------------------------------------------- */

.premium-product-card {
    position: relative;
    background: #fff;
    border-radius: 2rem;
    padding: 1rem;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.premium-product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--bs-primary-rgb), 0.1);
}

.premium-img-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #fdfdfd;
}

.premium-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(1.165, 0.84, 0.44, 1);
}

.premium-product-card:hover .premium-img-container img {
    transform: scale(1.1);
}

.premium-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 5;
}

.premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2.5rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 4;
}

.premium-product-card:hover .premium-overlay {
    opacity: 1;
}

.quick-view-btn {
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
    color: #000 !important;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.premium-product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.premium-product-info {
    padding: 1.5rem 0.5rem 0.5rem;
}

.premium-category {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bs-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.premium-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: #1a1a1a;
}

.premium-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.premium-product-card:hover .premium-title a {
    color: var(--bs-primary);
}

.premium-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px dashed #eee;
}

.rating-stars {
    display: flex;
    gap: 3px;
    color: #ffc107;
    font-size: 0.75rem;
}

/* Custom Scrollbar for Horizontal Filter */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hero Enhancements */
.hero-glow-sphere {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    top: -200px;
    right: -100px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(var(--bs-primary-rgb), 0.05);
    border-radius: 50rem;
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
}

/* Category Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 10px;
}

.filter-tab-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 50rem;
    background: #f8f9fa;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    color: #666;
    cursor: pointer;
}

.filter-tab-btn.active,
.filter-tab-btn:hover {
    background: #fff;
    border-color: var(--bs-primary);
    color: var(--bs-primary);
    box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.1);
}

/* Mobile Design Refinements */
@media (max-width: 767px) {
    .cinematic-card {
        height: 320px;
    }

    .cc-title {
        font-size: 18px;
    }

    .service-item-boutique {
        padding: 1rem;
        border-radius: 1.5rem;
    }

    .service-item-boutique .service-img-wrapper {
        height: 220px;
        margin-bottom: 1.5rem;
    }

    .premium-product-card {
        padding: 0.75rem;
        border-radius: 1.5rem;
    }

    .premium-title {
        font-size: 1rem;
    }

    .mb-15 {
        margin-bottom: 3.5rem !important;
    }

    .mt-n10,
    .ms-n10,
    .me-n10,
    .mb-n10 {
        margin-top: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
    }

    .section-title-boutique h2 {
        font-size: 28px !important;
    }

    .py-14 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .py-15 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .py-18 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .py-20 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important;
    }

    .appointment-wrapper {
        border-radius: 16px !important;
    }

    .calendar-area {
        padding: 1.5rem !important;
    }

    .calendar-day-header {
        padding-bottom: 15px;
        font-size: 0.65rem;
    }

    .calendar-day {
        font-size: 0.9rem;
        height: 40px;
    }

    .sliding-panel.is-open {
        min-height: 450px;
    }

    .panel-view {
        padding: 1.25rem !important;
    }

    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    .display-1 {
        font-size: 3.5rem !important;
    }

    .display-2 {
        font-size: 3rem !important;
    }

    .display-3 {
        font-size: 2.5rem !important;
    }

    .display-4 {
        font-size: 2.25rem !important;
    }

    .display-5 {
        font-size: 2rem !important;
    }

    .container,
    .container-fluid,
    .container-xxl {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Banner Fixes */
    .banner-01 {
        min-height: 220px !important;
        border-radius: 1.5rem !important;
        overflow: hidden !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
    }

    .banner-01 .card-img {
        height: 220px !important;
        object-fit: cover !important;
        object-position: right center !important;
    }

    .banner-01 .card-img-overlay {
        padding: 1.5rem !important;
        justify-content: center !important;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 45%, transparent 100%) !important;
        width: 100% !important;
    }

    .banner-01 .card-title {
        font-size: 22px !important;
        font-weight: 800 !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
        color: #1a1a1a !important;
    }

    .banner-01 .card-subtitle {
        font-size: 11px !important;
        margin-bottom: 0.5rem !important;
        letter-spacing: 2px !important;
    }

    .banner-01 .card-text {
        font-size: 13px !important;
        max-width: 160px !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }

    .banner-01 .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        border-radius: 50rem !important;
    }
}

/* 18. Sticky Sidebar for Blog Detail */
@media (min-width: 992px) {
    .sidebar-boutique {
        position: sticky;
        top: 120px;
        z-index: 10;
        transition: top 0.3s ease;
        align-self: flex-start;
    }
}

/* 19. Premium Social Share Buttons */
.premium-share-buttons {
    --transition-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-share-buttons .share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #444;
    font-size: 18px;
    transition: all 0.4s var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-share-buttons .share-btn-sm {
    width: 38px;
    height: 38px;
    font-size: 14px;
}

.premium-share-buttons .share-btn:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.premium-share-buttons .share-btn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--share-bg, #000);
    transition: top 0.4s var(--transition-bounce);
    z-index: -1;
}

.premium-share-buttons .share-btn:hover::before {
    top: 0;
}

.share-btn-facebook {
    --share-bg: #1877f2;
}

.share-btn-twitter {
    --share-bg: #000000;
}

.share-btn-whatsapp {
    --share-bg: #25d366;
}

.share-btn-instagram {
    --share-bg: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.premium-share-buttons .share-btn i {
    transition: transform 0.4s var(--transition-bounce);
}

.premium-share-buttons .share-btn:hover i {
    transform: rotate(360deg) scale(1.2);
}

/* Purifier Benefits Section */
.benefit-box {
    padding: 10px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
}

.benefit-box .icon-wrapper {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-gold, #FFA000);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-box:hover .icon-wrapper {
    background: var(--premium-gold, #FFA000);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 160, 0, 0.3) !important;
}

.image-glow-wrapper {
    padding: 20px;
}

.image-glow-wrapper .glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(255, 160, 0, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(40px);
}

/* =========================================
   HIGH-END PREMIUM BENEFITS SECTION (REFINED)
   ========================================= */

.benefits-section-wrapper {
    position: relative;
    background: radial-gradient(circle at center, #ffffff 0%, #f9f6f0 100%);
    overflow: hidden;
}

.benefits-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    background-image: radial-gradient(#FFA000 0.8px, transparent 0.8px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, transparent 20%, black 100%);
    -webkit-mask-image: radial-gradient(circle at center, transparent 20%, black 100%);
}

.benefit-card-premium {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow:
            0 10px 30px -5px rgba(0, 0, 0, 0.03),
            0 0 0 1px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-card-premium:hover {
    transform: translateY(-8px);
    box-shadow:
            0 25px 50px -12px rgba(255, 160, 0, 0.12),
            0 0 0 1px rgba(255, 160, 0, 0.15);
    background: #fff;
    z-index: 20;
}

/* Watermark Icon */
.card-watermark {
    position: absolute;
    bottom: -15px;
    right: -15px;
    font-size: 100px;
    color: rgba(255, 160, 0, 0.03);
    z-index: 0;
    transition: all 0.5s ease;
    transform: rotate(-10deg);
    pointer-events: none;
}

.benefit-card-premium:hover .card-watermark {
    transform: rotate(0deg) scale(1.1);
    color: rgba(255, 160, 0, 0.08);
}

/* Step Number */
.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: 5px;
    line-height: 1;
    z-index: 0;
    font-family: 'Open Sans', sans-serif;
    transition: color 0.3s ease;
    pointer-events: none;
}

.step-left {
    right: 20px;
}

.step-right {
    left: 20px;
}

.benefit-card-premium:hover .step-number {
    color: rgba(255, 160, 0, 0.08);
}

/* Decoration Bar */
.card-bg-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #FFA000, #ffecb3);
    transition: height 0.4s ease;
    z-index: 5;
    border-radius: 4px;
}

.card-left .card-bg-decoration {
    right: -2px;
}

.card-right .card-bg-decoration {
    left: -2px;
}

.benefit-card-premium:hover .card-bg-decoration {
    height: 70%;
}

/* Icons */
.b-icon-premium {
    width: 65px;
    height: 65px;
    background: #fffbf0;
    color: #FFA000;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 160, 0, 0.1);
    position: relative;
    z-index: 5;
}

.benefit-card-premium:hover .b-icon-premium {
    background: linear-gradient(135deg, #FFA000 0%, #ff9100 100%);
    color: #fff;
    transform: scale(1.1) rotate(0deg);
    box-shadow: 0 12px 25px -8px rgba(255, 160, 0, 0.5);
    border-radius: 50%;
}

/* Text */
.b-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    z-index: 5;
}

.b-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    z-index: 5;
}

/* --- CENTER PIECE & CONNECTORS --- */
.product-center-stage {
    position: relative;
    z-index: 5;
    padding: 0;
    /* Remove padding to keep connectors tight */
    /* width: 400px;  Restricted width to control line start points */
}

/* Halo */
.center-halo-advanced {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding-bottom: 100%;
    /* Aspect Ratio */
    z-index: -1;
    pointer-events: none;
}

.halo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 160, 0, 0.08);
}

.ring-1 {
    width: 60%;
    height: 60%;
    animation: pulse-halo 3s infinite ease-in-out;
}

.ring-2 {
    width: 80%;
    height: 80%;
    border-style: dashed;
    animation: spin-slow 20s linear infinite;
}

.ring-3 {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 160, 0, 0.04);
}

@keyframes pulse-halo {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}



/* Connector Path Animation */
.connector-path-anim {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2.5s ease-out forwards, pulseLine 3s infinite 2.5s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulseLine {

    0%,
    100% {
        stroke-opacity: 0.6;
        stroke-width: 3;
    }

    50% {
        stroke-opacity: 1;
        stroke-width: 4;
    }
}


/* Responsive */
@media (max-width: 991px) {
    .benefit-card-premium {
        text-align: center !important;
        margin-bottom: 20px;
    }

    .card-watermark {
        font-size: 80px;
        bottom: 10px;
        right: 10px;
        opacity: 0.5;
    }

    .step-number {
        position: relative;
        top: 0;
        right: auto;
        left: auto;
        font-size: 3rem;
        margin-bottom: 15px;
        display: block;
        width: 100%;
    }

    .product-center-stage {
        margin: 40px 0;
    }

    .product-center-stage {
        margin: 50px 0;
        transform: scale(1.3);
    }
}