/* =========================================================
   SL-28 Coffee — Custom Design Enhancements
   Modern, elegant overrides for the base template
   Supports LTR & RTL
   ========================================================= */

/* Arabic font for RTL consistency */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap');

/* ---------------------------------------------------------
   0. CSS Custom Properties (Design Tokens)
   --------------------------------------------------------- */
:root {
    --sl-primary: #1A4D2E;
    --sl-primary-light: #2D7A4A;
    --sl-primary-dark: #0F3019;
    --sl-accent: #C87533;
    --sl-accent-light: #D4944F;
    --sl-gold: #C8A96E;
    --sl-gold-light: #E0C992;
    --sl-cream: #FAF6F0;
    --sl-cream-dark: #F0E8DA;
    --sl-dark: #485648 ;
    --sl-dark-soft: #2D2D2D;
    --sl-text: #333333;
    --sl-text-light: #6B7280;
    --sl-border: #E5E7EB;
    --sl-white: #FFFFFF;
    --sl-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --sl-shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
    --sl-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --sl-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --sl-radius-sm: 8px;
    --sl-radius-md: 12px;
    --sl-radius-lg: 16px;
    --sl-radius-xl: 24px;
    --sl-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --sl-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --sl-font-heading: 'Outfit', 'Cairo', sans-serif;
    --sl-font-body: 'Plus Jakarta Sans', 'Cairo', sans-serif;
}

/* RTL — prioritize Cairo for Arabic text */
[dir="rtl"] {
    --sl-font-heading: 'Cairo', 'Outfit', sans-serif;
    --sl-font-body: 'Cairo', 'Plus Jakarta Sans', sans-serif;
}

[dir="rtl"] body {
    font-family: var(--sl-font-body);
}

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6 {
    font-family: var(--sl-font-heading);
}

/* Ensure all heading-related classes use the correct font in RTL */
[dir="rtl"] .font-4xl-bold,
[dir="rtl"] .font-3xl-bold,
[dir="rtl"] .font-2xl-bold,
[dir="rtl"] .font-xl-bold,
[dir="rtl"] .font-md-bold,
[dir="rtl"] .heading-banner,
[dir="rtl"] .heading-4,
[dir="rtl"] .heading-6 {
    font-family: var(--sl-font-heading);
}

/* Body text classes in RTL */
[dir="rtl"] .font-lg,
[dir="rtl"] .font-md,
[dir="rtl"] .font-sm,
[dir="rtl"] .font-xs,
[dir="rtl"] p,
[dir="rtl"] a,
[dir="rtl"] li,
[dir="rtl"] span,
[dir="rtl"] label,
[dir="rtl"] input,
[dir="rtl"] select,
[dir="rtl"] textarea,
[dir="rtl"] button {
    font-family: var(--sl-font-body);
}

/* ---------------------------------------------------------
   1. Global Enhancements
   --------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sl-font-body);
    color: var(--sl-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background-color: var(--sl-primary);
    color: var(--sl-white);
}

/* Smooth image rendering */
img {
    image-rendering: -webkit-optimize-contrast;
}

/* Better focus outlines for accessibility */
*:focus-visible {
    outline: 2px solid var(--sl-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Section spacing improvements */
.section {
    position: relative;
}

/* ---------------------------------------------------------
   2. Typography Enhancements
   --------------------------------------------------------- */
h1, h2, h3, h4, h5, h6,
.heading-banner,
.font-4xl-bold,
.font-3xl-bold,
.font-2xl-bold,
.font-xl-bold {
    font-family: var(--sl-font-heading);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.text-uppercase {
    letter-spacing: 0.08em;
}

/* ---------------------------------------------------------
   3. Preloader Enhancement
   --------------------------------------------------------- */
#preloader-active {
    background: var(--sl-cream) !important;
}

#preloader-active .preloader {
    background: var(--sl-cream) !important;
}

/* ---------------------------------------------------------
   4. Header / Navigation Enhancements
   --------------------------------------------------------- */

/* Top header bar */
.header .box-top-header {
    background: var(--sl-dark) !important;
    border-bottom: none;
    padding: 6px 0;
}

.header .box-top-header .menu-top li a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 13px;
    transition: color var(--sl-transition);
    letter-spacing: 0.02em;
}

.header .box-top-header .menu-top li a:hover {
    color: var(--sl-gold-light) !important;
}

.header .box-top-header .lang-currency .btn {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 13px;
}

/* Main header - Glassmorphism effect */
.header.sticky-bar {
    transition: all var(--sl-transition-slow);
}

.header.sticky-bar.stick {
    background: rgba(255, 255, 255, 0.92) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header .main-header {
    padding: 12px 0;
    transition: padding var(--sl-transition);
}

.header.stick .main-header {
    padding: 8px 0;
}

/* Navigation links */
.header .main-menu > li > a {
    font-family: var(--sl-font-heading);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: var(--sl-dark) !important;
    position: relative;
    padding: 8px 16px !important;
    transition: color var(--sl-transition);
}

.header .main-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--sl-primary);
    transition: transform var(--sl-transition);
    border-radius: 2px;
}

.header .main-menu > li:hover > a::after,
.header .main-menu > li.active > a::after {
    transform: translateX(-50%) scaleX(1);
}

.header .main-menu > li:hover > a {
    color: var(--sl-primary) !important;
}

/* Header account icons */
.header-account .account-icon {
    width: 42px;
    height: 42px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--sl-transition);
    position: relative;
}

.header-account .account-icon:hover {
    background: var(--sl-cream);
    transform: translateY(-1px);
}

.header-account .account-icon svg path {
    transition: fill var(--sl-transition);
}

.header-account .account-icon:hover svg path {
    fill: var(--sl-primary);
}

/* Logo */
.header .header-logo img {
    transition: transform var(--sl-transition);
}

.header .header-logo img:hover {
    transform: scale(1.02);
}

/* ---------------------------------------------------------
   5. Hero Banner Section
   --------------------------------------------------------- */
.banner-homepage1 {
    position: relative;
    overflow: hidden;
}

.box-banner-home1 {
    border-radius: var(--sl-radius-lg) !important;
    position: relative;
}

/* Removed: transform on .box-cover-image was conflicting with Swiper slider */

/* Keep original absolute positioning for banner text overlay */
.box-banner-home1 .box-banner-info {
    z-index: 3;
}

.box-banner-home1 .heading-banner {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.box-banner-home1 .heading-banner .text-up {
    font-family: var(--sl-font-heading) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}

.box-banner-home1 .title-line-2 {
    font-family: var(--sl-font-body);
    font-weight: 400;
    opacity: 0.85;
}

/* Banner Button Enhancement — preserve original double-border structure */
.btn-double-border {
    transition: all var(--sl-transition);
}

.btn-double-border span {
    font-family: var(--sl-font-heading);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.btn-double-border:hover {
    transform: translateY(-2px);
    box-shadow: var(--sl-shadow-md);
}

/* Swiper pagination dots */
.swiper-pagination-banner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    opacity: 0.4;
    transition: all var(--sl-transition);
    background: var(--sl-dark);
}

.swiper-pagination-banner .swiper-pagination-bullet-active {
    width: 28px;
    opacity: 1;
    background: var(--sl-primary);
}

/* ---------------------------------------------------------
   6. Category Cards
   --------------------------------------------------------- */
.cardCategory {
    text-align: center;
    transition: all var(--sl-transition);
    padding: 15px;
    border-radius: var(--sl-radius-md);
    position: relative;
}

.cardCategory:hover {
    transform: translateY(-6px);
}

.cardCategory .cardImage {
    position: relative;
    overflow: hidden;
    border-radius: var(--sl-radius-md);
    margin-bottom: 12px;
}

.cardCategory .cardImage img {
    transition: transform var(--sl-transition-slow);
    border-radius: var(--sl-radius-md);
}

.cardCategory:hover .cardImage img {
    transform: scale(1.08);
}

.cardCategory .cardInfo a {
    font-family: var(--sl-font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--sl-dark);
    transition: color var(--sl-transition);
    letter-spacing: 0.02em;
}

.cardCategory:hover .cardInfo a {
    color: var(--sl-primary);
}

/* ---------------------------------------------------------
   7. Product Cards — Major Enhancement
   --------------------------------------------------------- */
.cardProduct {
    background: var(--sl-white);
    border-radius: var(--sl-radius-md) !important;
    overflow: hidden;
    transition: all var(--sl-transition);
    border: 1px solid var(--sl-border);
    margin-bottom: 24px;
}

.cardProduct:hover {
    transform: translateY(-6px);
    box-shadow: var(--sl-shadow-lg);
    border-color: transparent;
}

.cardProduct .cardImage {
    position: relative;
    overflow: hidden;
    border-radius: var(--sl-radius-md) var(--sl-radius-md) 0 0;
}

.cardProduct .cardImage .imageMain,
.cardProduct .cardImage .imageHover {
    transition: all var(--sl-transition-slow);
}

.cardProduct .cardImage:hover .imageMain {
    transform: scale(1.05);
}

.cardProduct .cardImage:hover .imageHover {
    transform: scale(1.05);
}

/* Offer label */
.cardProduct .lbl-hot {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--sl-accent) !important;
    color: var(--sl-white) !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(200, 117, 51, 0.3);
}

[dir="rtl"] .cardProduct .lbl-hot {
    left: auto;
    right: 12px;
}

/* Quick action buttons on product card */
.cardProduct .box-quick-button {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--sl-transition);
}

[dir="rtl"] .cardProduct .box-quick-button {
    right: auto;
    left: 12px;
    transform: translateX(-10px);
}

.cardProduct:hover .box-quick-button {
    opacity: 1;
    transform: translateX(0);
}

.cardProduct .box-quick-button .btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--sl-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sl-shadow-sm);
    transition: all var(--sl-transition);
    padding: 0 !important;
}

.cardProduct .box-quick-button .btn:hover {
    background: var(--sl-primary);
    color: var(--sl-white);
    transform: scale(1.1);
}

.cardProduct .box-quick-button .btn:hover svg {
    stroke: var(--sl-white);
}

/* Add to cart button */
.cardProduct .button-select {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    opacity: 0;
    transform: translateY(100%);
    transition: all var(--sl-transition);
}

.cardProduct:hover .button-select {
    opacity: 1;
    transform: translateY(0);
}

.cardProduct .button-select a {
    display: block;
    text-align: center;
    background: var(--sl-primary) !important;
    color: var(--sl-white) !important;
    padding: 12px 20px;
    font-family: var(--sl-font-heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background var(--sl-transition);
}

.cardProduct .button-select a:hover {
    background: var(--sl-primary-dark) !important;
}

/* Product card info */
.cardProduct .cardInfo {
    padding: 16px;
}

.cardProduct .cardTitle {
    font-family: var(--sl-font-heading);
    font-weight: 600;
    color: var(--sl-dark);
    margin-bottom: 6px;
    transition: color var(--sl-transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.cardProduct:hover .cardTitle {
    color: var(--sl-primary);
}

.cardProduct .cardDesc {
    font-size: 15px;
    font-weight: 600;
}

.cardProduct .cardDesc .text-danger {
    color: var(--sl-accent) !important;
    font-weight: 700;
}

/* ---------------------------------------------------------
   8. Section Headers
   --------------------------------------------------------- */
.top-head {
    margin-bottom: 30px;
}

.top-head h4 {
    font-family: var(--sl-font-heading);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.04em;
}

.top-head h4 .brand-1,
h4.brand-1 {
    color: var(--sl-primary) !important;
}

/* Section title — remove pink brush SVG from ALL headings, replace with clean gold underline */
.brush-bg {
    position: relative;
    display: inline-block;
}

/* Override ALL pink brush SVG backgrounds on section headings */
.top-head h4::after,
h4.brush-bg::after,
.brush-bg::after {
    content: '' !important;
    position: absolute !important;
    bottom: -6px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 3px !important;
    background: var(--sl-gold) !important;
    background-image: none !important;
    border-radius: 2px !important;
}

[dir="rtl"] .top-head h4::after,
[dir="rtl"] h4.brush-bg::after,
[dir="rtl"] .brush-bg::after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}

/* Swiper navigation buttons — use background-color to preserve background-image arrows */
.btn-prev-style-1,
.btn-next-style-1 {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background-color: var(--sl-white) !important;
    background-size: 12px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border: 1px solid var(--sl-border) !important;
    box-shadow: var(--sl-shadow-sm);
    transition: all var(--sl-transition) !important;
}

.btn-prev-style-1:hover,
.btn-next-style-1:hover {
    background-color: var(--sl-primary) !important;
    border-color: var(--sl-primary) !important;
    color: var(--sl-white) !important;
    box-shadow: var(--sl-shadow-md);
}

/* ---------------------------------------------------------
   9. Special Sale / Offers Section
   --------------------------------------------------------- */
.box-collection {
    border-radius: var(--sl-radius-lg) !important;
    overflow: hidden;
    position: relative;
    min-height: 320px;
    background-size: cover !important;
    background-position: center !important;
    transition: all var(--sl-transition-slow);
}

.box-collection::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.85), rgba(26, 77, 46, 0.4));
    z-index: 1;
    transition: all var(--sl-transition-slow);
}

.box-collection:hover::before {
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.9), rgba(26, 77, 46, 0.5));
}

.box-collection:hover {
    transform: translateY(-4px);
    box-shadow: var(--sl-shadow-xl);
}

.box-collection .box-collection-info {
    position: relative;
    z-index: 2;
}

.box-collection .box-collection-info h4 {
    color: var(--sl-white) !important;
    font-family: var(--sl-font-heading);
    font-weight: 700;
}

.box-collection .box-collection-info p {
    color: var(--sl-gold-light) !important;
    font-weight: 700;
    font-size: 28px !important;
}

.box-collection .btn-brand-1 {
    background: var(--sl-white) !important;
    color: var(--sl-primary) !important;
    border-radius: var(--sl-radius-sm);
    font-weight: 600;
    transition: all var(--sl-transition);
    border: none;
}

.box-collection .btn-brand-1:hover {
    background: var(--sl-gold-light) !important;
    color: var(--sl-primary-dark) !important;
    transform: translateY(-2px);
}

/* ---------------------------------------------------------
   10. Shop by Category Section — Modern Redesign
   --------------------------------------------------------- */

/* Category menu — horizontal pill tabs on top instead of vertical sidebar */

/* Target ONLY the outer row (direct child of container), not the inner product grid */
.block-section-3 > .container > .row {
    flex-direction: column;
    align-items: center;
}

.block-section-3 > .container > .row > .col-lg-3 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 24px;
}

.block-section-3 > .container > .row > .col-lg-9 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Ensure inner product grid row stays horizontal and centered */
.block-section-3 .col-lg-9 > .row {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center;
}

.menu-category {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0;
}

.menu-category li {
    margin: 0;
}

.menu-category li a {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--sl-font-heading);
    font-weight: 500;
    font-size: 14px;
    color: var(--sl-text);
    border-radius: 50px;
    transition: all var(--sl-transition);
    border: 1px solid var(--sl-border);
    background: var(--sl-white);
    text-decoration: none;
    white-space: nowrap;
}

.menu-category li a:hover,
.menu-category li a.active {
    background: var(--sl-primary);
    color: var(--sl-white);
    border-color: var(--sl-primary);
    box-shadow: 0 4px 12px rgba(26, 77, 46, 0.2);
}

/* Product grid — 4 columns on full-width layout */
.block-section-3 .col-lg-9 > .row > .col-lg-4 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
}

/* Category box container — remove old sidebar styles */
.block-section-3 .box-category-list {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Mobile: horizontal scrollable category pills */
@media (max-width: 767.98px) {
    .menu-category {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .menu-category::-webkit-scrollbar {
        display: none;
    }

    .menu-category li a {
        padding: 8px 18px;
        font-size: 13px;
    }

    /* 2-column on mobile */
    .block-section-3 .col-lg-9 > .row > .col-lg-4 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* Tablet: 3-column */
@media (min-width: 768px) and (max-width: 991.98px) {
    .block-section-3 .col-lg-9 > .row > .col-lg-4 {
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
    }
}

/* ---------------------------------------------------------
   11. Blog Cards
   --------------------------------------------------------- */
.cardBlog,
.cardBlogStyle2 {
    background: var(--sl-white);
    border-radius: var(--sl-radius-md);
    overflow: hidden;
    border: 1px solid var(--sl-border);
    transition: all var(--sl-transition);
    margin-bottom: 24px;
}

.cardBlog:hover,
.cardBlogStyle2:hover {
    transform: translateY(-5px);
    box-shadow: var(--sl-shadow-lg);
    border-color: transparent;
}

.cardBlog .cardImage,
.cardBlogStyle2 .cardImage {
    overflow: hidden;
    position: relative;
}

.cardBlog .cardImage img,
.cardBlogStyle2 .cardImage img {
    transition: transform var(--sl-transition-slow);
    width: 100%;
}

.cardBlog:hover .cardImage img,
.cardBlogStyle2:hover .cardImage img {
    transform: scale(1.06);
}

.cardBlog .cardImage .tag-up,
.cardBlogStyle2 .cardImage .tag-up {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--sl-primary) !important;
    color: var(--sl-white) !important;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    transition: all var(--sl-transition);
}

[dir="rtl"] .cardBlog .cardImage .tag-up,
[dir="rtl"] .cardBlogStyle2 .cardImage .tag-up {
    left: auto;
    right: 12px;
}

.cardBlog .cardInfo,
.cardBlogStyle2 .cardInfo {
    padding: 20px;
}

.cardBlog .cardTitle,
.cardBlogStyle2 .cardInfo h2 {
    font-family: var(--sl-font-heading);
    transition: color var(--sl-transition);
}

.cardBlog:hover .cardTitle,
.cardBlogStyle2:hover .cardInfo h2 {
    color: var(--sl-primary) !important;
}

/* Blog date badge */
.cardBlog .box-date-info {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

[dir="rtl"] .cardBlog .box-date-info {
    right: auto;
    left: 12px;
}

.cardBlog .box-inner-date {
    background: var(--sl-white);
    border-radius: var(--sl-radius-sm);
    padding: 8px 14px;
    text-align: center;
    box-shadow: var(--sl-shadow-md);
}

.cardBlog .box-inner-date .heading-6 {
    font-family: var(--sl-font-heading);
    font-weight: 700;
    color: var(--sl-primary);
    font-size: 20px;
    line-height: 1;
}

/* Blog read more link */
.btn-arrow-right {
    font-family: var(--sl-font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--sl-primary) !important;
    transition: all var(--sl-transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-arrow-right:hover {
    color: var(--sl-primary-dark) !important;
    gap: 10px;
}

.btn-arrow-right img {
    transition: transform var(--sl-transition);
}

.btn-arrow-right:hover img {
    transform: translateX(4px);
}

[dir="rtl"] .btn-arrow-right:hover img {
    transform: translateX(-4px);
}

/* ---------------------------------------------------------
   12. Newsletter / CTA Section
   --------------------------------------------------------- */
.block-subscriber {
    position: relative;
}

.box-subscriber-2 {
    background: var(--sl-cream) !important;
    border-radius: var(--sl-radius-xl) !important;
    padding: 50px 40px !important;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--sl-cream-dark);
}

.box-subscriber-2::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--sl-primary);
    opacity: 0.05;
}

[dir="rtl"] .box-subscriber-2::before {
    right: auto;
    left: -50px;
}

.box-subscriber-2 .heading-4 {
    font-family: var(--sl-font-heading);
    font-weight: 700;
    color: var(--sl-dark);
}

.box-subscriber-2 .btn-brand-1 {
    background: var(--sl-primary) !important;
    color: var(--sl-white) !important;
    border-radius: var(--sl-radius-sm) !important;
    padding: 14px 32px !important;
    font-family: var(--sl-font-heading);
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all var(--sl-transition);
    border: none;
}

.box-subscriber-2 .btn-brand-1:hover {
    background: var(--sl-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 46, 0.3);
}

/* ---------------------------------------------------------
   13. Buttons — Global Enhancement
   --------------------------------------------------------- */
.btn-brand-1,
.btn-brand-1-medium,
.btn-brand-1-bold,
.btn-brand-1-xl {
    background: var(--sl-primary) !important;
    color: var(--sl-white) !important;
    border: none !important;
    border-radius: var(--sl-radius-sm) !important;
    font-family: var(--sl-font-heading);
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all var(--sl-transition);
    position: relative;
    overflow: hidden;
}

.btn-brand-1:hover,
.btn-brand-1-medium:hover,
.btn-brand-1-bold:hover,
.btn-brand-1-xl:hover {
    background: var(--sl-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.3);
}

.btn-brand-1-border,
.btn-brand-1-border-2 {
    background: transparent !important;
    color: var(--sl-primary) !important;
    border: 2px solid var(--sl-primary) !important;
    border-radius: var(--sl-radius-sm) !important;
    font-family: var(--sl-font-heading);
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all var(--sl-transition);
}

.btn-brand-1-border:hover,
.btn-brand-1-border-2:hover {
    background: var(--sl-primary) !important;
    color: var(--sl-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.3);
}

/* ---------------------------------------------------------
   14. Footer Enhancement
   --------------------------------------------------------- */
.footer {
    background: var(--sl-dark) !important;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sl-gold), transparent);
}

.footer .footer-1 {
    padding-top: 60px;
    padding-bottom: 40px;
}

.footer .footer-1 h5 {
    color: var(--sl-white) !important;
    font-family: var(--sl-font-heading);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.06em;
    margin-bottom: 24px !important;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-1 h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--sl-gold);
    border-radius: 1px;
}

[dir="rtl"] .footer .footer-1 h5::after {
    left: auto;
    right: 0;
}

.footer .footer-1 p,
.footer .footer-1 .desc-company {
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.8;
}

.footer .menu-footer li {
    margin-bottom: 10px;
}

.footer .menu-footer li a {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px;
    transition: all var(--sl-transition);
    position: relative;
    display: inline-block;
}

.footer .menu-footer li a:hover {
    color: var(--sl-gold-light) !important;
    padding-left: 6px;
}

[dir="rtl"] .footer .menu-footer li a:hover {
    padding-left: 0;
    padding-right: 6px;
}

.footer .phone-footer,
.footer .email-footer {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color var(--sl-transition);
}

.footer a:hover .phone-footer,
.footer a:hover .email-footer {
    color: var(--sl-gold-light) !important;
}

/* Footer bottom / copyright */
.footer .footer-2 {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 20px 0;
}

.footer .footer-2 a,
.footer .footer-2 span,
.footer .footer-bottom {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 13px;
}

.footer .footer-2 a:hover {
    color: var(--sl-gold-light) !important;
}

/* Footer logo */
.footer .footer-1 img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity var(--sl-transition);
}

.footer .footer-1 img:hover {
    opacity: 1;
}

/* ---------------------------------------------------------
   15. Contact Page
   --------------------------------------------------------- */
.block-contact .box-form-contact {
    background: var(--sl-white);
    border-radius: var(--sl-radius-lg);
    padding: 40px;
    box-shadow: var(--sl-shadow-md);
    border: 1px solid var(--sl-border);
    margin-bottom: 40px;
}

.block-contact .box-form-contact h3 {
    font-family: var(--sl-font-heading);
    font-weight: 700;
    color: var(--sl-dark);
}

.block-contact .form-control {
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius-sm);
    padding: 14px 18px;
    font-size: 15px;
    transition: all var(--sl-transition);
    background: var(--sl-cream);
}

.block-contact .form-control:focus {
    border-color: var(--sl-primary);
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
    background: var(--sl-white);
}

.cardContact {
    background: var(--sl-white);
    border-radius: var(--sl-radius-md);
    padding: 24px;
    border: 1px solid var(--sl-border);
    transition: all var(--sl-transition);
    height: 100%;
}

.cardContact:hover {
    transform: translateY(-4px);
    box-shadow: var(--sl-shadow-md);
    border-color: var(--sl-primary);
}

.cardContact strong {
    font-family: var(--sl-font-heading);
    color: var(--sl-dark);
}

/* ---------------------------------------------------------
   16. About Page
   --------------------------------------------------------- */
.block-blog-single .feature-image {
    border-radius: var(--sl-radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.block-blog-single .feature-image img {
    border-radius: var(--sl-radius-lg);
    transition: transform var(--sl-transition-slow);
}

.block-blog-single .feature-image:hover img {
    transform: scale(1.02);
}

.box-experiences {
    background: var(--sl-cream);
    border-radius: var(--sl-radius-lg);
    padding: 40px;
    margin-top: 30px;
    border: 1px solid var(--sl-cream-dark);
}

.box-experiences strong {
    font-family: var(--sl-font-heading);
    color: var(--sl-primary);
    display: block;
    margin-bottom: 10px;
}

/* Gallery */
.box-gallery-about .gallery-sub a {
    display: inline-block;
    border-radius: var(--sl-radius-md);
    overflow: hidden;
    transition: all var(--sl-transition);
    margin: 6px;
}

.box-gallery-about .gallery-sub a:hover {
    transform: scale(1.03);
    box-shadow: var(--sl-shadow-lg);
}

.box-gallery-about .gallery-sub img {
    border-radius: var(--sl-radius-md);
    transition: transform var(--sl-transition-slow);
}

.box-gallery-about .gallery-sub a:hover img {
    transform: scale(1.05);
}

/* ---------------------------------------------------------
   17. Page Headers / Breadcrumbs
   --------------------------------------------------------- */
.block-shop-head,
.block-blog-head {
    padding: 40px 0 20px;
}

.block-shop-head h2,
.block-blog-head h2,
.block-shop-head h1 {
    font-family: var(--sl-font-heading);
    font-weight: 800;
    color: var(--sl-dark);
    margin-bottom: 12px;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs ul li a {
    font-size: 14px;
    color: var(--sl-text-light);
    transition: color var(--sl-transition);
}

.breadcrumbs ul li a:hover {
    color: var(--sl-primary);
}

/* ---------------------------------------------------------
   18. Shop Page — Filter & Grid
   --------------------------------------------------------- */
.block-shop-head-3 {
    border-radius: 0;
    min-height: 200px;
    display: flex;
    align-items: center;
    position: relative;
}

.block-shop-head-3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.8), rgba(26, 26, 26, 0.6));
    z-index: 1;
}

.block-shop-head-3 .container {
    position: relative;
    z-index: 2;
}

.block-shop-head-3 h2 {
    color: var(--sl-white) !important;
    font-family: var(--sl-font-heading);
    font-weight: 800;
    text-shadow: none !important;
}

.block-shop-head-3 .breadcrumbs ul li a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: none !important;
}

/* Sort and filter bar */
.box-filter-top {
    background: var(--sl-cream);
    border-radius: var(--sl-radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
    border: 1px solid var(--sl-border);
}

/* Sidebar filter */
.sidebar-border {
    background: var(--sl-white);
    border-radius: var(--sl-radius-md);
    padding: 24px;
    border: 1px solid var(--sl-border);
    margin-bottom: 24px;
}

.sidebar-border .head-sidebar {
    font-family: var(--sl-font-heading);
    font-weight: 700;
    color: var(--sl-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sl-cream-dark);
    margin-bottom: 16px;
}

/* ---------------------------------------------------------
   19. Single Product Page
   --------------------------------------------------------- */
.block-product-content .detail-gallery {
    border-radius: var(--sl-radius-lg);
    overflow: hidden;
}

.block-product-content figure {
    border-radius: var(--sl-radius-md) !important;
    overflow: hidden;
}

.block-product-content .box-product-info {
    padding-left: 20px;
}

[dir="rtl"] .block-product-content .box-product-info {
    padding-left: 0;
    padding-right: 20px;
}

.block-product-content .box-product-info h2 {
    font-family: var(--sl-font-heading);
    font-weight: 800;
    color: var(--sl-dark);
    margin-bottom: 16px;
}

.block-product-content .flash-sale-red {
    background: var(--sl-accent) !important;
    color: var(--sl-white) !important;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.block-product-content .price-main {
    font-family: var(--sl-font-heading);
    font-weight: 800;
    font-size: 28px;
    color: var(--sl-primary) !important;
}

.block-product-content .price-line {
    text-decoration: line-through;
    color: var(--sl-text-light);
    font-size: 18px;
}

/* Size selector */
.list-sizes .item-size {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border: 2px solid var(--sl-border);
    border-radius: var(--sl-radius-sm);
    padding: 4px 12px;
    font-family: var(--sl-font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--sl-transition);
    margin: 0 4px 8px 0;
}

[dir="rtl"] .list-sizes .item-size {
    margin: 0 0 8px 4px;
}

.list-sizes .item-size:hover,
.list-sizes .item-size.active {
    border-color: var(--sl-primary);
    background: var(--sl-primary);
    color: var(--sl-white);
}

.list-sizes .item-size.out-stock {
    color: #999 !important;
    border-color: #ccc !important;
    background-color: #f5f5f5 !important;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 1;
}

/* Quantity input */
.form-cart {
    display: flex;
    align-items: center;
    border: 2px solid var(--sl-border);
    border-radius: var(--sl-radius-sm);
    overflow: hidden;
    background: var(--sl-white);
}

.form-cart .minus,
.form-cart .plus {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--sl-transition);
}

.form-cart .minus:hover,
.form-cart .plus:hover {
    background: var(--sl-cream);
}

.form-cart .form-control {
    border: none;
    text-align: center;
    width: 60px;
    font-weight: 600;
    font-size: 16px;
}

/* Addons section */
.block-addons .form-check-input {
    border-radius: 4px;
    border-color: var(--sl-border);
    transition: all var(--sl-transition);
}

.block-addons .form-check-input:checked {
    background-color: var(--sl-primary);
    border-color: var(--sl-primary);
}

/* ---------------------------------------------------------
   20. Cart Page
   --------------------------------------------------------- */
.table-cart {
    border-radius: var(--sl-radius-md);
    overflow: hidden;
}

.table-cart thead {
    background: var(--sl-cream);
}

.table-cart thead th {
    font-family: var(--sl-font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--sl-text-light);
    border: none;
    padding: 16px !important;
}

.table-cart tbody tr {
    transition: background var(--sl-transition);
    border-bottom: 1px solid var(--sl-border);
}

.table-cart tbody tr:hover {
    background: var(--sl-cream);
}

/* ---------------------------------------------------------
   21. Checkout Page
   --------------------------------------------------------- */
.box-form-checkout .form-control {
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius-sm);
    padding: 14px 18px;
    font-size: 15px;
    transition: all var(--sl-transition);
    background: var(--sl-cream);
}

.box-form-checkout .form-control:focus {
    border-color: var(--sl-primary);
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
    background: var(--sl-white);
}

/* ---------------------------------------------------------
   22. Mobile Header / Navigation
   --------------------------------------------------------- */
.mobile-header-active {
    background: var(--sl-white) !important;
    box-shadow: var(--sl-shadow-xl) !important;
}

.mobile-header-active .mobile-menu-head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--sl-border);
}

.mobile-header-active .mobile-menu .font-heading li a {
    font-family: var(--sl-font-heading);
    font-weight: 500;
    font-size: 16px;
    color: var(--sl-dark);
    padding: 14px 20px;
    border-radius: var(--sl-radius-sm);
    transition: all var(--sl-transition);
    display: block;
}

.mobile-header-active .mobile-menu .font-heading li a:hover {
    background: var(--sl-cream);
    color: var(--sl-primary);
}

/* Burger icon animation */
.burger-icon span {
    transition: all var(--sl-transition);
}

.burger-icon:hover span {
    background: var(--sl-primary) !important;
}

/* ---------------------------------------------------------
   23. Form Elements — Global
   --------------------------------------------------------- */
.form-control {
    transition: all var(--sl-transition);
    border-radius: var(--sl-radius-sm);
}

.form-control:focus {
    border-color: var(--sl-primary);
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}

.form-select {
    border-radius: var(--sl-radius-sm);
    transition: all var(--sl-transition);
}

.form-select:focus {
    border-color: var(--sl-primary);
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}

/* ---------------------------------------------------------
   24. Alert Messages
   --------------------------------------------------------- */
.alert {
    border-radius: var(--sl-radius-md);
    border: none;
    padding: 16px 20px;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

[dir="rtl"] .alert-success {
    border-left: none;
    border-right: 4px solid #10b981;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

[dir="rtl"] .alert-danger {
    border-left: none;
    border-right: 4px solid #ef4444;
}

/* ---------------------------------------------------------
   25. Scroll to Top Button
   --------------------------------------------------------- */
#scrollUp {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: var(--sl-primary) !important;
    color: var(--sl-white) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sl-shadow-lg);
    transition: all var(--sl-transition);
    bottom: 30px !important;
    right: 30px !important;
}

[dir="rtl"] #scrollUp {
    right: auto !important;
    left: 30px !important;
}

#scrollUp:hover {
    background: var(--sl-primary-dark) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(26, 77, 46, 0.4);
}

/* ---------------------------------------------------------
   26. Wishlist Page — Enhancements
   --------------------------------------------------------- */
.block-cart .table-cart .image-product-cart img {
    border-radius: var(--sl-radius-sm);
}

/* ---------------------------------------------------------
   27. Order Confirmation Page
   --------------------------------------------------------- */

/* ---------------------------------------------------------
   28. Custom Animations
   --------------------------------------------------------- */

/* Fade up animation for scroll reveals */
.sl-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sl-fade-up.sl-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in animation */
.sl-fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.sl-fade-in.sl-visible {
    opacity: 1;
}

/* Scale in animation */
.sl-scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.sl-scale-in.sl-visible {
    opacity: 1;
    transform: scale(1);
}

/* Slide from left */
.sl-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[dir="rtl"] .sl-slide-left {
    transform: translateX(40px);
}

.sl-slide-left.sl-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.sl-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[dir="rtl"] .sl-slide-right {
    transform: translateX(-40px);
}

.sl-slide-right.sl-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delay utilities */
.sl-delay-1 { transition-delay: 0.1s; }
.sl-delay-2 { transition-delay: 0.2s; }
.sl-delay-3 { transition-delay: 0.3s; }
.sl-delay-4 { transition-delay: 0.4s; }
.sl-delay-5 { transition-delay: 0.5s; }

/* Floating animation for decorative elements */
@keyframes sl-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.sl-float {
    animation: sl-float 3s ease-in-out infinite;
}

/* Pulse glow for CTAs */
@keyframes sl-pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26, 77, 46, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(26, 77, 46, 0); }
}

.sl-pulse-glow {
    animation: sl-pulse-glow 2s ease-in-out infinite;
}

/* Shimmer effect for loading */
@keyframes sl-shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

/* Smooth counter animation */
@keyframes sl-count-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Subtle bounce */
@keyframes sl-bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ---------------------------------------------------------
   29. Smooth Page Transitions
   --------------------------------------------------------- */
.main {
    animation: sl-page-enter 0.4s ease-out;
}

@keyframes sl-page-enter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------------------------------------------------
   30. Mobile Responsive Enhancements
   --------------------------------------------------------- */

/* Tablet */
@media (max-width: 991.98px) {
    .box-collection {
        min-height: 250px;
        margin-bottom: 20px;
    }

    .box-subscriber-2 {
        padding: 30px 24px !important;
    }

    .block-contact .box-form-contact {
        padding: 24px;
    }

    .box-experiences {
        padding: 24px;
    }

    /* Sidebar filters: full width on tablets */
    .content-products .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sidebar-left {
        display: none;
    }

    .sidebar-left.show {
        display: block;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    /* Header mobile — fix layout and spacing */
    .header .box-top-header {
        padding: 4px 0;
    }

    .header .box-top-header .menu-top li a {
        font-size: 11px;
    }

    .header .main-header {
        padding: 8px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header .main-header .header-logo a img {
        max-height: 45px;
        width: auto;
    }

    .header .main-header .header-account {
        min-width: auto !important;
        display: flex !important;
        align-items: center;
        gap: 2px;
    }

    .header-account .account-icon {
        width: 34px !important;
        height: 34px !important;
    }

    .header-account .account-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    .account-icon .number-item,
    .account-icon .badge {
        min-width: 16px !important;
        height: 16px !important;
        font-size: 9px !important;
        top: -2px !important;
        right: -2px !important;
    }

    [dir="rtl"] .account-icon .number-item,
    [dir="rtl"] .account-icon .badge {
        right: auto !important;
        left: -2px !important;
    }

    .burger-icon {
        width: 28px;
        height: 28px;
    }

    /* Hero banner mobile */
    .banner-homepage1 {
        padding-top: 10px;
    }

    .box-banner-home1 .heading-banner .text-up {
        font-size: 24px !important;
    }

    .box-banner-home1 .title-line-2 {
        font-size: 14px;
    }

    /* Better product grid on mobile */
    .content-products .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 6px;
        padding-right: 6px;
    }

    /* Sidebar filters: full width and hidden by default on mobile */
    .content-products .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sidebar-left {
        display: none;
    }

    .sidebar-left.show {
        display: block;
    }

    .cardProduct {
        margin-bottom: 12px;
    }

    .cardProduct .cardInfo {
        padding: 10px;
    }

    .cardProduct .cardTitle {
        font-size: 13px !important;
    }

    .cardProduct .cardDesc {
        font-size: 13px !important;
    }

    /* Product card — always show add to cart on mobile */
    .cardProduct .button-select {
        opacity: 1;
        transform: translateY(0);
        position: relative;
    }

    .cardProduct .button-select a {
        padding: 10px 12px;
        font-size: 11px;
    }

    /* Quick buttons always visible on mobile */
    .cardProduct .box-quick-button {
        opacity: 1;
        transform: translateX(0);
    }

    .cardProduct .box-quick-button .btn {
        width: 32px;
        height: 32px;
    }

    /* Category cards on mobile */
    .cardCategory {
        padding: 8px;
    }

    /* Section headers */
    .top-head h4 {
        font-size: 18px;
    }

    /* Blog cards */
    .cardBlog .cardInfo,
    .cardBlogStyle2 .cardInfo {
        padding: 14px;
    }

    /* Footer mobile */
    .footer .footer-1 {
        padding-top: 40px;
    }

    .footer .footer-1 h5 {
        margin-bottom: 16px !important;
    }

    /* Contact cards */
    .cardContact {
        padding: 16px;
        margin-bottom: 12px;
    }

    /* Newsletter section */
    .box-subscriber-2 {
        text-align: center;
        padding: 24px 20px !important;
    }

    .box-subscriber-2 .heading-4 {
        font-size: 20px;
    }

    /* Single product mobile */
    .block-product-content .box-product-info {
        padding-left: 0;
        padding-top: 20px;
    }

    [dir="rtl"] .block-product-content .box-product-info {
        padding-right: 0;
    }

    .block-product-content .price-main {
        font-size: 22px;
    }

    .box-form-cart {
        flex-wrap: wrap;
        gap: 10px;
    }

    .box-form-cart .btn {
        flex: 1;
        text-align: center;
        font-size: 13px !important;
        padding: 10px 14px !important;
    }

    /* Cart page mobile */
    .table-cart thead th {
        font-size: 11px;
        padding: 10px 6px !important;
    }

    /* Page headers */
    .block-shop-head h2,
    .block-blog-head h2 {
        font-size: 24px;
    }

    /* Special sale mobile */
    .box-collection {
        min-height: 200px;
    }

    .box-collection .box-collection-info h4 {
        font-size: 18px;
    }

    .box-collection .box-collection-info p {
        font-size: 20px !important;
    }

    /* Improve touch targets */
    .mobile-menu .font-heading li a {
        padding: 16px 20px !important;
        min-height: 48px;
    }

    /* Better spacing */
    .section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    /* Swiper navigation hide on mobile */
    .box-button-swiper {
        display: none;
    }
}

/* Small mobile */
@media (max-width: 479.98px) {
    .box-banner-home1 .heading-banner .text-up {
        font-size: 20px !important;
    }

    .box-banner-home1 .title-line-2 {
        font-size: 12px;
        margin-bottom: 15px !important;
    }

    .btn-double-border span {
        padding: 10px 18px !important;
        font-size: 13px;
        height: auto;
    }

    /* Stack product grid on very small screens */
    .content-products .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .top-head {
        flex-direction: column;
        gap: 10px;
    }
}

/* ---------------------------------------------------------
   31. Dropdown Menus
   --------------------------------------------------------- */
.dropdown-menu {
    border-radius: var(--sl-radius-md);
    border: 1px solid var(--sl-border);
    box-shadow: var(--sl-shadow-lg);
    padding: 8px;
    animation: sl-dropdown-enter 0.2s ease-out;
}

@keyframes sl-dropdown-enter {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    border-radius: var(--sl-radius-sm);
    padding: 8px 14px;
    font-size: 14px;
    transition: all var(--sl-transition);
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--sl-cream);
    color: var(--sl-primary);
}

/* ---------------------------------------------------------
   32. Loading States
   --------------------------------------------------------- */
[wire\:loading] {
    opacity: 0.7;
    pointer-events: none;
}

/* Livewire loading overlay */
.livewire-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------------------------------------------------------
   33. Toast Notification Enhancement
   --------------------------------------------------------- */
.toast-success {
    background-color: var(--sl-primary) !important;
}

.toast-error {
    background-color: #ef4444 !important;
}

/* ---------------------------------------------------------
   34. Wishlist & Cart Counter Badge
   --------------------------------------------------------- */
.account-icon .number-item,
.account-icon .badge {
    background: var(--sl-accent) !important;
    color: var(--sl-white) !important;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    animation: sl-count-up 0.3s ease-out;
}

[dir="rtl"] .account-icon .number-item,
[dir="rtl"] .account-icon .badge {
    right: auto;
    left: 0;
}

/* ---------------------------------------------------------
   35. Search Modal Enhancement
   --------------------------------------------------------- */
.custom-modal .modal-content {
    border-radius: var(--sl-radius-lg);
    border: none;
    box-shadow: var(--sl-shadow-xl);
}

/* ---------------------------------------------------------
   36. Pagination
   --------------------------------------------------------- */
.pagination .page-link {
    border-radius: var(--sl-radius-sm) !important;
    margin: 0 3px;
    font-family: var(--sl-font-heading);
    font-weight: 600;
    color: var(--sl-text);
    border: 1px solid var(--sl-border);
    transition: all var(--sl-transition);
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-link:hover {
    background: var(--sl-cream);
    border-color: var(--sl-primary);
    color: var(--sl-primary);
}

.pagination .active .page-link {
    background: var(--sl-primary) !important;
    border-color: var(--sl-primary) !important;
    color: var(--sl-white) !important;
}

/* ---------------------------------------------------------
   37. Search Popup Enhancement
   --------------------------------------------------------- */
.box-popup-search .box-search-wrapper {
    background: var(--sl-white);
    border-radius: var(--sl-radius-lg);
    padding: 30px;
    box-shadow: var(--sl-shadow-xl);
}

.box-popup-search .box-search-overlay {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.box-popup-search h5 {
    font-family: var(--sl-font-heading);
    font-weight: 700;
}

.box-popup-search .form-control {
    background: var(--sl-cream);
}

/* ---------------------------------------------------------
   38. Mobile Menu Active States
   --------------------------------------------------------- */
.mobile-menu li.active > a {
    color: var(--sl-primary) !important;
    font-weight: 600;
    background: var(--sl-cream);
    border-radius: var(--sl-radius-sm);
}

/* ---------------------------------------------------------
   39. Shop Sidebar on Mobile
   --------------------------------------------------------- */
@media (max-width: 991.98px) {
    .sidebar-left {
        margin-bottom: 30px;
    }

    .box-filters-sidebar {
        background: var(--sl-white);
        border-radius: var(--sl-radius-md);
        padding: 20px;
        border: 1px solid var(--sl-border);
    }

    /* Filter toggle button */
    .btn-filter-toggle {
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
        background: var(--sl-primary);
        color: var(--sl-white);
        border: none;
        border-radius: var(--sl-radius-sm);
        padding: 10px 20px;
        font-family: var(--sl-font-heading);
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all var(--sl-transition);
        margin-bottom: 16px;
    }

    .btn-filter-toggle:hover {
        background: var(--sl-primary-dark);
    }

    .btn-filter-toggle svg {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 992px) {
    .btn-filter-toggle {
        display: none !important;
    }

    .sidebar-left {
        display: block !important;
    }
}

/* ---------------------------------------------------------
   39b. Footer Mobile Fix
   --------------------------------------------------------- */
@media (max-width: 575.98px) {
    .footer .footer-1 .col-lg-6 .row .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ---------------------------------------------------------
   40. Empty State Improvements
   --------------------------------------------------------- */
.text-center.py-5 svg {
    color: var(--sl-text-light);
}

.text-center.py-5 h3,
.text-center.py-5 h4 {
    font-family: var(--sl-font-heading);
    font-weight: 700;
    color: var(--sl-dark);
}

/* ---------------------------------------------------------
   41. Image Aspect Ratios for Consistency
   --------------------------------------------------------- */
.cardProduct .cardImage img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.cardBlog .cardImage img,
.cardBlogStyle2 .cardImage img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}

.cardCategory .cardImage img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

/* ---------------------------------------------------------
   42. Checkbox / Radio Enhancements
   --------------------------------------------------------- */
.cb-container .checkmark {
    border-radius: 4px;
    transition: all var(--sl-transition);
}

.cb-container input:checked ~ .checkmark {
    background-color: var(--sl-primary) !important;
    border-color: var(--sl-primary) !important;
}

/* ---------------------------------------------------------
   43. SweetAlert2 Customization
   --------------------------------------------------------- */
.swal2-popup {
    border-radius: var(--sl-radius-lg) !important;
    font-family: var(--sl-font-body) !important;
}

.swal2-title {
    font-family: var(--sl-font-heading) !important;
}

.swal2-confirm {
    background: var(--sl-primary) !important;
    border-radius: var(--sl-radius-sm) !important;
}

/* ---------------------------------------------------------
   44. Smooth Scrollbar
   --------------------------------------------------------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--sl-cream);
}

::-webkit-scrollbar-thumb {
    background: #C4C4C4;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* ---------------------------------------------------------
   45. Order Confirmation Enhancement
   --------------------------------------------------------- */
.order-confirmation {
    text-align: center;
    padding: 60px 20px;
}

/* ---------------------------------------------------------
   46. Tiktok Icon in Footer (Fix Filter)
   --------------------------------------------------------- */
.footer .menu-footer li a img {
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity var(--sl-transition);
}

.footer .menu-footer li a:hover img {
    opacity: 1;
}

/* ---------------------------------------------------------
   47. Print Styles
   --------------------------------------------------------- */
@media print {
    .header,
    .footer,
    .mobile-header-active,
    #scrollUp,
    #preloader-active {
        display: none !important;
    }
}

/* ---------------------------------------------------------
   48. Login Modal Enhancement
   --------------------------------------------------------- */
.modal .modal-content {
    border-radius: var(--sl-radius-lg);
    border: none;
    box-shadow: var(--sl-shadow-xl);
    overflow: hidden;
}

.modal .modal-header {
    border-bottom: 1px solid var(--sl-border);
    padding: 20px 24px;
}

.modal .modal-header .modal-title {
    font-family: var(--sl-font-heading);
    font-weight: 700;
}

.modal .modal-body {
    padding: 24px;
}

.modal .modal-body .form-control {
    background: var(--sl-cream);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius-sm);
    padding: 12px 16px;
    transition: all var(--sl-transition);
}

.modal .modal-body .form-control:focus {
    border-color: var(--sl-primary);
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
    background: var(--sl-white);
}

.modal .modal-body .form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--sl-text);
    margin-bottom: 6px;
}

.modal .modal-body .form-check-input:checked {
    background-color: var(--sl-primary);
    border-color: var(--sl-primary);
}

/* ---------------------------------------------------------
   49. Cart Popup Enhancement
   --------------------------------------------------------- */
.box-cart-wrapper {
    background: var(--sl-white);
    box-shadow: var(--sl-shadow-xl) !important;
}

.box-cart-wrapper h5 {
    font-family: var(--sl-font-heading);
    font-weight: 700;
}

.box-cart-wrapper .cardProduct4 .cardImage img {
    border-radius: var(--sl-radius-sm);
}

.box-cart-wrapper .cart-total {
    background: var(--sl-cream);
    border-radius: var(--sl-radius-sm);
    padding: 14px 16px;
}

.box-cart-wrapper .btn-brand-1-xl-bold {
    background: var(--sl-primary) !important;
    color: var(--sl-white) !important;
    border-radius: var(--sl-radius-sm) !important;
    font-family: var(--sl-font-heading);
    font-weight: 600;
    padding: 14px 20px;
    transition: all var(--sl-transition);
}

.box-cart-wrapper .btn-brand-1-xl-bold:hover {
    background: var(--sl-primary-dark) !important;
}

.box-cart-wrapper .quantity-controls .btn {
    border-radius: var(--sl-radius-sm);
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.box-cart-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

/* ---------------------------------------------------------
   50. Homepage Sections — Enhanced Layout & Visual Rhythm
   --------------------------------------------------------- */

/* Hero banner — better text contrast & positioning */
.banner-homepage1 {
    background: var(--sl-cream);
}

.banner-homepage1 .box-banner-home1 {
    background-color: #E6D5C3 !important;
}

.banner-homepage1 .block-info-banner {
    text-align: center;
}

.banner-homepage1 .block-info-banner .heading-banner {
    color: var(--sl-dark) !important;
}

.banner-homepage1 .block-info-banner .title-line-2 {
    color: var(--sl-text) !important;
}

/* Section visual separators for homepage */
.block-section-categories-slider {
    background: var(--sl-white);
    padding: 50px 0 30px;
}

.block-section-trending {
    background: var(--sl-cream);
    padding: 50px 0;
    position: relative;
}

.block-section-trending::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--sl-gold);
    border-radius: 2px;
}

.block-section-4 {
    background: var(--sl-white);
    padding: 50px 0;
}

.block-section-3 {
    background: var(--sl-cream);
    padding: 50px 0;
    position: relative;
}

.block-section-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--sl-gold);
    border-radius: 2px;
}

.block-section-8 {
    background: var(--sl-white);
    padding: 50px 0;
}

/* Category slider cards — more visual interest */
.block-section-categories-slider .cardCategory .cardImage {
    background: var(--sl-cream);
    border-radius: var(--sl-radius-md);
    padding: 10px;
    border: 1px solid var(--sl-border);
    transition: all var(--sl-transition);
}

.block-section-categories-slider .cardCategory:hover .cardImage {
    border-color: var(--sl-primary);
    box-shadow: var(--sl-shadow-md);
}

/* Offers section — improved card styling */
.box-collection-2 {
    min-height: 340px !important;
}

.box-collection .box-collection-info .btn-brand-1 {
    font-size: 14px;
    letter-spacing: 0.06em;
}

/* Shop by category section — centered layout with pill tabs */
.block-section-3 .top-head {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* News section — section title styling */
.block-section-8 .text-center h4 {
    position: relative;
    display: inline-block;
}

/* Newsletter CTA — stronger visual */
.block-subscriber {
    background: var(--sl-cream);
    padding: 50px 0;
}

/* ---------------------------------------------------------
   51. Contrast & Visibility Fixes
   --------------------------------------------------------- */

/* Ensure text is always readable on light backgrounds */
.neutral-500 {
    color: #6B7280 !important;
}

.neutral-900 {
    color: var(--sl-dark) !important;
}

/* Brand colors — ensure proper contrast */
.brand-1 {
    color: var(--sl-primary) !important;
}

.brand-2,
.brand-3 {
    color: var(--sl-accent) !important;
}

/* Price text — always readable */
.cardProduct .cardDesc,
.cardProduct .font-lg {
    color: var(--sl-dark);
}

.cardProduct .text-danger {
    color: var(--sl-accent) !important;
}

.cardProduct .text-muted {
    color: #999 !important;
}

/* Ensure slider text is readable over banner images */
.box-banner-home1 .text-up {
    color: var(--sl-dark) !important;
}

/* btn-double-border hover — enhance interaction */
.btn-double-border:hover span {
    color: var(--sl-primary) !important;
}

/* Offer percentage on collection card */
.box-collection .box-collection-info p.neutral-900 {
    color: var(--sl-gold-light) !important;
}

/* Swiper navigation — additional contrast fix */
.btn-prev-style-1,
.btn-next-style-1 {
    opacity: 1 !important;
}

/* Out-of-stock badge on product page */
.stock-status.out-stock {
    color: #dc3545 !important;
    font-weight: 600;
}

.stock-status.in-stock {
    color: var(--sl-primary) !important;
    font-weight: 600;
}

/* Flash sale label — readable on any product image */
.flash-sale-red {
    background: var(--sl-accent) !important;
    color: var(--sl-white) !important;
    font-weight: 700;
}

/* Breadcrumb visibility on shop header */
.block-shop-head-3 .breadcrumbs ul li a {
    color: rgba(255, 255, 255, 0.85) !important;
}

.block-shop-head-3 .breadcrumbs ul li a:hover {
    color: var(--sl-white) !important;
}

/* Ensure addons and extra info text is visible */
.text-muted {
    color: #6B7280 !important;
}

/* Cart page product names */
.table-cart td a {
    color: var(--sl-dark);
    transition: color var(--sl-transition);
}

.table-cart td a:hover {
    color: var(--sl-primary);
}

/* Offer label percentage text */
.lbl-hot {
    color: var(--sl-white) !important;
    font-weight: 700 !important;
}

/* ---------------------------------------------------------
   52. Reduced Motion Preferences
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .sl-fade-up,
    .sl-fade-in,
    .sl-scale-in,
    .sl-slide-left,
    .sl-slide-right {
        opacity: 1 !important;
        transform: none !important;
    }

    .main {
        animation: none !important;
    }
}

/* =========================================================
   ESPRESSO HERO SLIDER
   Split-screen: dark charcoal left | forest green right
   Circular floating image at center dividing line
   ========================================================= */

.hero-espresso-section {
    position: relative;
    overflow: hidden;
}

.hero-espresso-section .box-swiper {
    margin: 0;
}

.hero-espresso-section .swiper-container {
    width: 100%;
}

/* Remove default container constraint */
.hero-espresso-section > .container,
.hero-espresso-section .box-swiper {
    max-width: 100%;
    padding: 0;
}

/* ---- Slide layout ---- */
.hero-espresso-slide {
    display: flex;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ---- Left dark panel ---- */
.hero-left-panel {
    width: 50%;
    background: #1a1a1a;
    position: relative;
    overflow: visible;
    min-height: 100vh;
    z-index: 1;
}

/* Subtle texture overlay */
.hero-left-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(200, 117, 51, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 117, 51, 0.05) 0%, transparent 40%);
    pointer-events: none;
    overflow: hidden;
}

/* ---- Right green panel ---- */
.hero-right-panel {
    width: 50%;
    background: #1A4D2E;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 100px clears the circle (centered at 40%, radius ~190px → ~100px into panel) */
    padding: 80px 80px 80px 110px;
    min-height: 100vh;
    z-index: 1;
}

/* Subtle radial glow */
.hero-right-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(200, 169, 110, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Text content wrapper — sits above all decorative layers */
.hero-text-content {
    position: relative;
    z-index: 8;
}

/* ---- WAVY DIVIDER — the funky boundary between panels ---- */
.hero-divider-wave {
    position: absolute;
    /* Straddle the 50% mark: start 60px left of center */
    left: calc(50% - 60px);
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 6;
    pointer-events: none;
}

.hero-divider-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* RTL: flip the wave */
[dir="rtl"] .hero-divider-wave {
    left: auto;
    right: calc(50% - 60px);
    transform: scaleX(-1);
}

/* ---- Decorative ring — frames the circle image ---- */
.hero-ring-deco {
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 490px;
    height: 490px;
    border-radius: 50%;
    border: 1.5px solid rgba(200, 117, 51, 0.28);
    z-index: 4;
    pointer-events: none;
}

.hero-ring-deco::before {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px solid rgba(200, 117, 51, 0.12);
}

.hero-ring-deco::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 1px dashed rgba(200, 117, 51, 0.14);
}

/* ---- Circular floating image ---- */
.hero-circle-image {
    position: absolute;
    left: 40%;          /* anchor in dark panel — clears text panel */
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 7;
    box-shadow:
        0 0 0 6px rgba(200, 117, 51, 0.22),
        0 0 0 14px rgba(200, 117, 51, 0.08),
        0 30px 80px rgba(0, 0, 0, 0.60);
    flex-shrink: 0;
}

.hero-circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- Brand tag ---- */
.hero-brand-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.hero-brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 6px;
}

.hero-brand-name {
    font-family: var(--sl-font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #E8DDD0;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

/* ---- Main heading ---- */
.hero-main-heading {
    font-family: var(--sl-font-heading);
    font-size: clamp(38px, 4.5vw, 68px);
    font-weight: 900;
    color: #F5EDD8;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

/* ---- Description ---- */
.hero-sub-text {
    font-family: var(--sl-font-body);
    font-size: 14px;
    color: rgba(245, 237, 216, 0.70);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 340px;
}

/* ---- CTA buttons ---- */
.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 38px;
    border-radius: 5px;
    font-family: var(--sl-font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1;
}

.hero-btn-filled {
    background: #E07850;
    color: #fff;
    border: 2px solid #E07850;
}

.hero-btn-filled:hover {
    background: #c96540;
    border-color: #c96540;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 120, 80, 0.35);
}

.hero-btn-outlined {
    background: transparent;
    color: #E07850;
    border: 2px solid #E07850;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-btn-outlined:hover {
    background: rgba(224, 120, 80, 0.12);
    color: #E07850;
    transform: translateY(-2px);
}

/* ---- Social links ---- */
.hero-social-row {
    position: absolute;
    bottom: 36px;
    right: 44px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 8;
}

.hero-social-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(245, 237, 216, 0.35);
    color: rgba(245, 237, 216, 0.60);
    font-size: 13px;
    transition: all 0.3s;
    text-decoration: none;
}

.hero-social-row a:hover {
    border-color: #F5EDD8;
    color: #F5EDD8;
    background: rgba(245, 237, 216, 0.08);
}

.hero-social-handle {
    font-family: var(--sl-font-body);
    font-size: 12px;
    color: rgba(245, 237, 216, 0.50);
    letter-spacing: 0.5px;
}

/* ---- Decorative doodles ---- */
.hero-doodle {
    position: absolute;
    pointer-events: none;
    user-select: none;
}

.hero-doodle-cup-tl {
    top: 60px;
    left: 50px;
    width: 80px;
    opacity: 0.65;
}

.hero-doodle-moka {
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    width: 90px;
    opacity: 0.55;
}

.hero-doodle-cup-bl {
    bottom: 80px;
    left: 60px;
    width: 60px;
    opacity: 0.60;
}

.hero-doodle-beans {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.80;
}

.hero-doodle-swirl-tr {
    top: 30px;
    right: -20px;
    width: 120px;
    opacity: 0.45;
    z-index: 2;
}

.hero-doodle-swirl-br {
    bottom: 50px;
    right: 20px;
    width: 100px;
    opacity: 0.40;
    z-index: 2;
}

/* ---- Pagination override ---- */
.hero-espresso-section .box-pagination-button {
    position: absolute;
    bottom: 28px;
    left: 25%;
    z-index: 20;
}

.hero-espresso-section .swiper-pagination-banner .swiper-pagination-bullet {
    background: rgba(245, 237, 216, 0.4);
    opacity: 1;
}

.hero-espresso-section .swiper-pagination-banner .swiper-pagination-bullet-active {
    background: #E07850;
}

/* ---- RTL adjustments ---- */
[dir="rtl"] .hero-right-panel {
    /* Mirror padding: buffer on the right now (circle is at 60% from left) */
    padding: 80px 110px 80px 80px;
}

[dir="rtl"] .hero-sub-text {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}

[dir="rtl"] .hero-social-row {
    right: auto;
    left: 44px;
}

[dir="rtl"] .hero-espresso-section .box-pagination-button {
    left: auto;
    right: 25%;
}

/* Mirror circle + ring to the right in RTL */
[dir="rtl"] .hero-circle-image {
    left: 60%;
}

[dir="rtl"] .hero-ring-deco {
    left: 60%;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .hero-right-panel {
        padding: 60px 60px 60px 100px;
    }

    .hero-circle-image {
        width: 340px;
        height: 340px;
    }

    .hero-ring-deco {
        width: 420px;
        height: 420px;
    }

    [dir="rtl"] .hero-right-panel {
        padding: 60px 100px 60px 60px;
    }
}

@media (max-width: 991px) {
    .hero-espresso-slide {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left-panel {
        width: 100%;
        min-height: 280px;
        order: 1;
    }

    .hero-right-panel {
        width: 100%;
        padding: 120px 30px 70px;
        min-height: auto;
        order: 2;
    }

    [dir="rtl"] .hero-right-panel {
        padding: 120px 30px 70px;
    }

    .hero-circle-image {
        position: absolute;
        left: 50%;
        top: 280px;
        transform: translate(-50%, -50%);
        width: 240px;
        height: 240px;
        z-index: 20;
    }

    [dir="rtl"] .hero-circle-image {
        left: 50%;
    }

    .hero-ring-deco {
        left: 50%;
        top: 280px;
        width: 300px;
        height: 300px;
    }

    [dir="rtl"] .hero-ring-deco {
        left: 50%;
    }

    .hero-divider-wave {
        display: none;
    }

    .hero-main-heading {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .hero-sub-text {
        max-width: 100%;
    }

    .hero-doodle-moka {
        display: none;
    }

    .hero-espresso-section .box-pagination-button {
        left: 50%;
        transform: translateX(-50%);
        bottom: 14px;
    }

    /* Push social row above pagination bullets */
    .hero-social-row {
        bottom: 52px;
        right: 16px;
    }

    [dir="rtl"] .hero-social-row {
        right: auto;
        left: 16px;
    }
}

@media (max-width: 575px) {
    .hero-left-panel {
        min-height: 200px;
    }

    .hero-circle-image {
        top: 200px;
        width: 190px;
        height: 190px;
    }

    .hero-ring-deco {
        top: 200px;
        width: 240px;
        height: 240px;
    }

    .hero-right-panel {
        padding: 90px 20px 60px;
    }

    .hero-main-heading {
        font-size: 28px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .hero-social-row {
        bottom: 52px;
        right: 14px;
    }

    [dir="rtl"] .hero-social-row {
        right: auto;
        left: 14px;
    }

    .hero-doodle-cup-tl,
    .hero-doodle-cup-bl {
        display: none;
    }
}

/* =========================================================
   About Page — Modern Redesign
   ========================================================= */

/* ---- Hero ---- */
.about-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--sl-primary-dark);
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    transition: transform 10s ease;
}
.about-hero:hover .about-hero-bg { transform: scale(1); }
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 48, 25, 0.88) 0%,
        rgba(26, 77, 46, 0.68) 55%,
        rgba(200, 117, 51, 0.28) 100%
    );
}
.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 110px 0;
}
.about-hero-label {
    display: inline-block;
    background: rgba(200, 117, 51, 0.2);
    border: 1px solid rgba(200, 169, 110, 0.45);
    color: var(--sl-gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
    margin-bottom: 22px;
}
.about-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 10px;
    font-family: var(--sl-font-heading);
}
.about-hero-title span { color: var(--sl-gold-light); }
.about-hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sl-accent), var(--sl-gold));
    border-radius: 2px;
    margin: 18px auto;
}
.about-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    padding: 9px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
}
.about-hero-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.about-hero-breadcrumb a:hover { color: var(--sl-gold-light); }
.about-hero-breadcrumb .sep { color: rgba(255,255,255,0.35); }
.about-hero-breadcrumb .current {
    color: var(--sl-gold-light);
    font-weight: 600;
}

/* Decorative blobs */
.about-hero-blob {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
}
.about-hero-blob-1 { bottom: -40px; right: 4%; width: 320px; }
.about-hero-blob-2 { top: -40px; left: 2%; width: 220px; }

/* ---- Story Section ---- */
.about-story {
    padding: 100px 0;
    background: var(--sl-cream);
}
.about-story-img-wrap {
    position: relative;
    border-radius: var(--sl-radius-xl);
    overflow: hidden;
    box-shadow: var(--sl-shadow-xl);
}
.about-story-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.about-story-img-wrap:hover img { transform: scale(1.04); }
.about-story-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--sl-primary);
    color: #fff;
    padding: 18px 26px;
    border-radius: var(--sl-radius-lg);
    box-shadow: 0 8px 32px rgba(15,48,25,0.4);
    min-width: 130px;
}
[dir="rtl"] .about-story-badge { left: auto; right: 28px; }
.about-story-badge-num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--sl-font-heading);
    color: var(--sl-gold-light);
    letter-spacing: -1px;
}
.about-story-badge-text {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 5px;
    letter-spacing: 0.5px;
}
.about-story-body {
    padding: 10px 0 10px 52px;
}
[dir="rtl"] .about-story-body { padding: 10px 52px 10px 0; }
.story-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sl-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.story-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--sl-accent);
    flex-shrink: 0;
}
[dir="rtl"] .story-eyebrow::before { display: none; }
[dir="rtl"] .story-eyebrow::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--sl-accent);
    flex-shrink: 0;
}
.story-title {
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--sl-primary-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--sl-font-heading);
}
.story-desc {
    color: var(--sl-text-light);
    font-size: 16px;
    line-height: 1.85;
}

/* ---- Stats Strip ---- */
.about-stats {
    background: var(--sl-primary);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.about-stats::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
}
.about-stats::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}
.stat-item {
    text-align: center;
    padding: 24px 16px;
    position: relative;
    z-index: 1;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.12);
}
[dir="rtl"] .stat-item + .stat-item::before { left: auto; right: 0; }
a.stat-item:hover { background: rgba(255,255,255,0.06); }
a.stat-item:hover .stat-number { color: #fff; }
.stat-number {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--sl-gold-light);
    line-height: 1;
    font-family: var(--sl-font-heading);
    display: block;
    letter-spacing: -1px;
}
.stat-suffix {
    color: var(--sl-accent-light);
    font-size: 1.6rem;
    font-weight: 700;
}
.stat-label {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ---- Values Section ---- */
.about-values {
    padding: 100px 0;
    background: #fff;
}
.sl-section-header { text-align: center; margin-bottom: 56px; }
.sl-section-tag {
    display: inline-block;
    background: rgba(200, 169, 110, 0.12);
    color: var(--sl-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.sl-section-title {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--sl-primary-dark);
    font-family: var(--sl-font-heading);
    margin: 0;
}
.value-card {
    background: var(--sl-cream);
    border-radius: var(--sl-radius-xl);
    padding: 40px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform var(--sl-transition), box-shadow var(--sl-transition);
    border: 1px solid rgba(229, 231, 235, 0.7);
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sl-shadow-xl);
}
.value-card-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--sl-radius-xl) var(--sl-radius-xl) 0 0;
    opacity: 0;
    transition: opacity var(--sl-transition);
}
.value-card:hover .value-card-bar { opacity: 1; }
.value-card-bar.mission { background: linear-gradient(90deg, var(--sl-primary), var(--sl-primary-light)); }
.value-card-bar.vision  { background: linear-gradient(90deg, var(--sl-accent), var(--sl-accent-light)); }
.value-card-bar.goal    { background: linear-gradient(90deg, var(--sl-gold), var(--sl-gold-light)); }
.value-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--sl-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.value-card-icon.mission { background: rgba(26, 77, 46, 0.1); color: var(--sl-primary); }
.value-card-icon.vision  { background: rgba(200, 117, 51, 0.1); color: var(--sl-accent); }
.value-card-icon.goal    { background: rgba(200, 169, 110, 0.15); color: #9A7A2E; }
.value-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sl-primary-dark);
    margin-bottom: 12px;
    font-family: var(--sl-font-heading);
}
.value-card-text {
    color: var(--sl-text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* ---- Gallery Section ---- */
.about-gallery {
    padding: 100px 0;
    background: var(--sl-cream);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 240px;
    gap: 14px;
    margin-top: 50px;
}
.gallery-item {
    border-radius: var(--sl-radius-lg);
    overflow: hidden;
    position: relative;
    display: block;
    background: var(--sl-cream-dark);
}
/* Mosaic pattern: first item spans 2 rows, varies widths */
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 7; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(n+5) { grid-column: span 4; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,48,25,0.75) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    transform: scale(0.6) rotate(-15deg);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-item:hover .gallery-zoom {
    transform: scale(1) rotate(0deg);
}

/* ---- About Page Responsive ---- */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
    .about-story-img-wrap img { height: 380px; }
    .about-story-body { padding: 40px 0 0; }
    [dir="rtl"] .about-story-body { padding: 40px 0 0; }
}
@media (max-width: 767px) {
    .stat-item + .stat-item::before { display: none; }
}
@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }
    .about-stats { padding: 48px 0; }
}

/* =========================================================
   Blogs Page — Modern Redesign
   ========================================================= */

/* ---- Hero ---- */
.blogs-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sl-primary-dark) 0%, var(--sl-primary) 60%, #2D5A3D 100%);
}
.blogs-hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.blogs-hero-blob {
    position: absolute;
    opacity: 0.07;
    pointer-events: none;
}
.blogs-hero-blob-1 { bottom: -30px; right: 4%; width: 280px; }
.blogs-hero-blob-2 { top: -30px; left: 3%; width: 200px; }
.blogs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 100px 0;
}
.blogs-hero-label {
    display: inline-block;
    background: rgba(200, 117, 51, 0.2);
    border: 1px solid rgba(200, 169, 110, 0.45);
    color: var(--sl-gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.blogs-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 8px;
    font-family: var(--sl-font-heading);
}
.blogs-hero-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--sl-accent), var(--sl-gold));
    border-radius: 2px;
    margin: 16px auto;
}
.blogs-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    padding: 9px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
}
.blogs-hero-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.blogs-hero-breadcrumb a:hover { color: var(--sl-gold-light); }
.blogs-hero-breadcrumb .sep { color: rgba(255,255,255,0.35); }
.blogs-hero-breadcrumb .current {
    color: var(--sl-gold-light);
    font-weight: 600;
}

/* ---- Body layout ---- */
.blogs-body {
    padding: 80px 0 100px;
    background: var(--sl-cream);
}

/* ---- Featured post ---- */
.blog-featured {
    border-radius: var(--sl-radius-xl);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--sl-shadow-lg);
    margin-bottom: 40px;
    transition: box-shadow var(--sl-transition);
}
.blog-featured:hover { box-shadow: var(--sl-shadow-xl); }
.blog-featured-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    height: 360px;
}
.blog-featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}
.blog-featured:hover .blog-featured-img-wrap img { transform: scale(1.05); }
.blog-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,48,25,0.5) 0%, transparent 60%);
}
.blog-featured-body {
    padding: 32px 36px 36px;
}
.blog-featured-title {
    display: block;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--sl-primary-dark);
    font-family: var(--sl-font-heading);
    line-height: 1.3;
    margin-bottom: 14px;
    text-decoration: none;
    transition: color var(--sl-transition);
}
.blog-featured-title:hover { color: var(--sl-primary); }
.blog-featured-excerpt {
    color: var(--sl-text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ---- Blog cards ---- */
.blog-card {
    border-radius: var(--sl-radius-xl);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--sl-shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--sl-transition), box-shadow var(--sl-transition);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sl-shadow-lg);
}
.blog-card-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    height: 210px;
    flex-shrink: 0;
}
.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.07); }
.blog-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,48,25,0.4) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
}
.blog-card:hover .blog-card-img-overlay { opacity: 1; }
.blog-card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-title {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sl-primary-dark);
    font-family: var(--sl-font-heading);
    line-height: 1.4;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color var(--sl-transition);
}
.blog-card-title:hover { color: var(--sl-primary); }
.blog-card-excerpt {
    color: var(--sl-text-light);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
}
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sl-accent);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: gap var(--sl-transition), color var(--sl-transition);
    margin-top: auto;
}
.blog-card-link:hover { gap: 10px; color: var(--sl-primary); }

/* ---- Shared elements ---- */
.blog-cat-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--sl-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    z-index: 2;
    text-decoration: none;
}
[dir="rtl"] .blog-cat-tag { left: auto; right: 16px; }
.blog-cat-tag--sm { font-size: 10px; padding: 4px 12px; }

.blog-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.blog-meta-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--sl-text-light);
    font-size: 13px;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sl-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: background var(--sl-transition), gap var(--sl-transition);
}
.blog-read-more:hover { background: var(--sl-primary-dark); gap: 12px; color: #fff; }
[dir="rtl"] .blog-read-more svg,
[dir="rtl"] .blog-card-link svg { transform: scaleX(-1); }

/* Empty state */
.blogs-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--sl-text-light);
}
.blogs-empty svg { margin-bottom: 16px; opacity: 0.35; }
.blogs-empty p { font-size: 16px; }

/* ---- Sidebar ---- */
.blogs-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
    background: #fff;
    border-radius: var(--sl-radius-xl);
    padding: 28px 30px;
    margin-bottom: 24px;
    box-shadow: var(--sl-shadow-sm);
    border: 1px solid rgba(229,231,235,0.6);
}
.sidebar-widget-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sl-primary-dark);
    font-family: var(--sl-font-heading);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--sl-cream-dark);
}

/* Category list */
.sidebar-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sidebar-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--sl-radius-md);
    color: var(--sl-text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--sl-transition), color var(--sl-transition);
}
.sidebar-cat-link:hover,
.sidebar-cat-link.active {
    background: var(--sl-primary);
    color: #fff;
    text-decoration: none;
}
.sidebar-cat-link.active .sidebar-cat-count,
.sidebar-cat-link:hover .sidebar-cat-count {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.sidebar-cat-count {
    background: var(--sl-cream-dark);
    color: var(--sl-text-light);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
    transition: background var(--sl-transition), color var(--sl-transition);
    min-width: 28px;
    text-align: center;
}

/* Latest posts list */
.sidebar-latest-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sidebar-latest-item {
    display: flex;
    gap: 14px;
    text-decoration: none;
    align-items: center;
}
.sidebar-latest-img {
    width: 68px;
    height: 60px;
    border-radius: var(--sl-radius-md);
    overflow: hidden;
    flex-shrink: 0;
}
.sidebar-latest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.sidebar-latest-item:hover .sidebar-latest-img img { transform: scale(1.08); }
.sidebar-latest-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sidebar-latest-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--sl-primary-dark);
    line-height: 1.4;
    transition: color var(--sl-transition);
}
.sidebar-latest-item:hover .sidebar-latest-title { color: var(--sl-primary); }
.sidebar-latest-date {
    font-size: 12px;
    color: var(--sl-text-light);
}

/* ---- Blogs Page Responsive ---- */
@media (max-width: 991px) {
    .blogs-sidebar { position: static; }
    .blog-featured-img-wrap { height: 280px; }
    .blog-featured-body { padding: 24px 24px 28px; }
}
@media (max-width: 575px) {
    .blogs-hero-content { padding: 80px 0; }
    .blogs-body { padding: 60px 0 80px; }
}

/* =========================================================
   Contact Page — Modern Redesign
   ========================================================= */

/* ---- Hero ---- */
.contact-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sl-primary-dark) 0%, var(--sl-primary) 60%, #2D5A3D 100%);
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.contact-hero-blob {
    position: absolute;
    opacity: 0.07;
    pointer-events: none;
}
.contact-hero-blob-1 { bottom: -30px; right: 4%; width: 260px; }
.contact-hero-blob-2 { top: -30px; left: 3%; width: 190px; }
.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 90px 0;
}
.contact-hero-label {
    display: inline-block;
    background: rgba(200, 117, 51, 0.2);
    border: 1px solid rgba(200, 169, 110, 0.45);
    color: var(--sl-gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.contact-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 8px;
    font-family: var(--sl-font-heading);
}
.contact-hero-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--sl-accent), var(--sl-gold));
    border-radius: 2px;
    margin: 16px auto;
}
.contact-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    padding: 9px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
}
.contact-hero-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-hero-breadcrumb a:hover { color: var(--sl-gold-light); }
.contact-hero-breadcrumb .sep { color: rgba(255,255,255,0.35); }
.contact-hero-breadcrumb .current { color: var(--sl-gold-light); font-weight: 600; }

/* ---- Info cards strip ---- */
.contact-cards-strip {
    background: var(--sl-cream);
    padding: 64px 0;
}
.contact-info-card {
    background: #fff;
    border-radius: var(--sl-radius-xl);
    padding: 28px 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    height: 100%;
    border: 1px solid rgba(229,231,235,0.6);
    box-shadow: var(--sl-shadow-sm);
    transition: transform var(--sl-transition), box-shadow var(--sl-transition);
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sl-shadow-lg);
}
.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--sl-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon.whatsapp { background: rgba(37,211,102,0.12); color: #25D366; }
.contact-info-icon.phone    { background: rgba(26,77,46,0.1);    color: var(--sl-primary); }
.contact-info-icon.email    { background: rgba(200,117,51,0.1);  color: var(--sl-accent); }
.contact-info-icon.address  { background: rgba(200,169,110,0.15); color: #9A7A2E; }
.contact-info-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.contact-info-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sl-text-light);
    margin-bottom: 4px;
}
.contact-info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--sl-primary-dark);
    text-decoration: none;
    display: block;
    word-break: break-word;
    transition: color var(--sl-transition);
    line-height: 1.5;
}
.contact-info-value:hover { color: var(--sl-accent); }
p.contact-info-value { margin: 0; }

/* ---- Form section ---- */
.contact-form-section {
    background: var(--sl-cream);
    padding: 0 0 100px;
}
.contact-form-card {
    background: #fff;
    border-radius: var(--sl-radius-xl);
    box-shadow: var(--sl-shadow-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 340px 1fr;
}

/* Left decorative panel */
.contact-form-panel {
    background: linear-gradient(160deg, var(--sl-primary) 0%, var(--sl-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}
.contact-panel-blob {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-panel-blob svg { width: 100%; height: 100%; }
.contact-panel-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: stretch;
}
.contact-panel-content {
    padding: 52px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-panel-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sl-gold-light);
    margin-bottom: 14px;
    display: block;
}
.contact-panel-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    font-family: var(--sl-font-heading);
    line-height: 1.2;
    margin-bottom: 12px;
}
.contact-panel-text {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0;
}
.contact-panel-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--sl-accent), var(--sl-gold));
    border-radius: 2px;
    margin: 24px 0;
}
.contact-panel-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-panel-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--sl-transition);
    word-break: break-all;
}
.contact-panel-link:hover { color: var(--sl-gold-light); }
.contact-panel-link svg { flex-shrink: 0; }

/* Right form area */
.contact-form-body {
    padding: 52px 52px 52px 48px;
}
[dir="rtl"] .contact-form-body { padding: 52px 48px 52px 52px; }
.contact-form-header { margin-bottom: 32px; }
.contact-form-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sl-accent);
    display: block;
    margin-bottom: 8px;
}
.contact-form-title {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--sl-primary-dark);
    font-family: var(--sl-font-heading);
    margin: 0;
}

/* Form fields */
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--sl-text-light);
    letter-spacing: 0.5px;
}
.cf-input {
    width: 100%;
    background: var(--sl-cream);
    border: 1.5px solid var(--sl-border);
    border-radius: var(--sl-radius-md);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--sl-text);
    font-family: var(--sl-font-body);
    transition: border-color var(--sl-transition), box-shadow var(--sl-transition), background var(--sl-transition);
    outline: none;
}
.cf-input:focus {
    border-color: var(--sl-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26,77,46,0.08);
}
.cf-input.is-invalid { border-color: #dc3545; }
.cf-textarea { resize: vertical; min-height: 130px; }
.cf-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--sl-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: var(--sl-font-body);
    transition: background var(--sl-transition), gap var(--sl-transition), box-shadow var(--sl-transition);
}
.cf-submit:hover {
    background: var(--sl-primary-dark);
    gap: 14px;
    box-shadow: 0 8px 24px rgba(26,77,46,0.25);
}

/* ---- Contact Page Responsive ---- */
@media (max-width: 1024px) {
    .contact-form-card { grid-template-columns: 280px 1fr; }
}
@media (max-width: 767px) {
    .contact-form-card { grid-template-columns: 1fr; }
    .contact-form-panel { min-height: 0; }
    .contact-panel-content { padding: 36px 28px; }
    .contact-form-body { padding: 36px 28px; }
    [dir="rtl"] .contact-form-body { padding: 36px 28px; }
    .contact-cards-strip { padding: 48px 0; }
}
@media (max-width: 575px) {
    .contact-hero-content { padding: 70px 0; }
}
