/*
Theme Name: Owi Fashon
Theme URI: http://owi-fashon.local/
Author: Antigravity
Description: A completely blank starter theme built for WooCommerce custom development from scratch.
Version: 1.0.0
Text Domain: owi-fashon
*/

/* ==========================================
   1. VARIABLES & DESIGN TOKENS
   ========================================== */
:root {
    --color-primary: #C8A15A;      /* Luxury Gold/Beige */
    --color-primary-dark: #ac833c; /* Darker Gold */
    --color-dark: #0d0d0d;         /* Premium Deep Black */
    --color-light-bg: #FAF7F2;     /* Warm Creamy Off-White */
    --color-text: #1a1a1a;         /* Dark Charcoal Body Text */
    --color-text-muted: #777777;   /* Muted Grey */
    --font-arabic: 'Tajawal', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================
   2. RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Global Font Enforcement: Tajawal on all text, links, forms, and WooCommerce pages */
body, 
h1, h2, h3, h4, h5, h6, 
p, a, li, label, span,
input, button, select, textarea, 
.woocommerce *, 
.woocommerce-page * {
    font-family: 'Tajawal', sans-serif !important;
}

/* Explicitly preserve FontAwesome icons from being overwritten by Tajawal */
[class^="fa-"], [class*=" fa-"], i.fa, i.fas, i.far, i.fab, i.fa-solid, i.fa-regular {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands' !important;
}

html, body {
    margin: 0;
    padding: 0;
    direction: rtl;
    text-align: right;
    color: var(--color-text);
    background-color: #FAF7F2 !important;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

#page, .site-main {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ==========================================
   3. TOP HEADER
   ========================================== */
.top-header {
    background-color: var(--color-dark);
    color: var(--color-primary);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

.top-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-header-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.top-header-item:hover {
    color: #ffffff;
}

.top-header-item i {
    font-size: 14px;
    color: var(--color-primary);
}

/* ==========================================
   4. MAIN HEADER
   ========================================== */
.site-header {
    background-color: var(--color-light-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 240px;
}

/* LEFT SIDE: Action Icons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.action-btn {
    font-size: 20px;
    color: var(--color-text);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.action-btn:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.cart-btn {
    position: relative;
}

.cart-count-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--color-primary);
    color: var(--color-dark);
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    font-family: sans-serif;
    border: 1px solid var(--color-light-bg);
}

/* CENTER: Logo Branding */
.site-branding {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-logo-link-text {
    display: block;
    text-decoration: none;
}

.site-logo-img {
    width: 299px;
    height: 200px;
    max-width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.custom-logo-link-text:hover .site-logo-img {
    transform: scale(1.03);
}

/* RIGHT SIDE: Navigation & Hamburger */
.header-navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    color: var(--color-text);
    padding: 5px;
}

.menu-toggle:hover {
    color: var(--color-primary);
}

.main-nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav-list a {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    position: relative;
    padding: 8px 0;
}

.main-nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.main-nav-list a:hover::after,
.main-nav-list .active a::after,
.main-nav-list .current-menu-item a::after,
.main-nav-list .current-menu-ancestor a::after,
.main-nav-list .current-category-ancestor a::after {
    width: 100%;
}

.main-nav-list a:hover,
.main-nav-list .active a,
.main-nav-list .current-menu-item a,
.main-nav-list .current-menu-ancestor a,
.main-nav-list .current-category-ancestor a {
    color: var(--color-primary);
}


/* Hamburger icon inside the menu list on desktop is not shown, but in image it precedes menu items */
.header-navigation-wrapper .menu-toggle {
    display: flex; /* Always display hamburger as per reference photo style */
}

/* ==========================================
   5. RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 991px) {
    .main-nav-list {
        gap: 20px;
    }
    .site-title {
        font-size: 20px;
    }
    .owl-logo-svg {
        width: 45px;
    }
}

@media (max-width: 768px) {
    .top-header-container {
        justify-content: center;
        gap: 10px;
        font-size: 11px;
    }
    
    .header-container {
        padding: 10px 15px;
        min-height: 120px;
    }

    .site-logo-img {
        width: 150px;
        height: auto;
    }
    
    .header-navigation-wrapper {
        position: relative;
    }
    
    /* Toggle-able mobile menu overlay */
    .site-navigation {
        display: none;
        position: absolute;
        top: 45px;
        right: -15px;
        background-color: var(--color-light-bg);
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        width: 200px;
        padding: 10px 0;
        z-index: 100;
    }
    
    .site-navigation.toggled {
        display: block;
    }
    
    .main-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }
    
    .main-nav-list li {
        width: 100%;
    }
    
    .main-nav-list a {
        display: block;
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    }
    
    .main-nav-list a::after {
        display: none;
    }
    
    .main-nav-list a:hover,
    .main-nav-list .active a,
    .main-nav-list .current-menu-item a,
    .main-nav-list .current-menu-ancestor a,
    .main-nav-list .current-category-ancestor a {
        background-color: rgba(197, 168, 128, 0.08);
    }

}

@media (max-width: 576px) {
    .top-header {
        display: none; /* Hide top bar on very small mobile for clean view */
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        min-height: 100px;
    }
    
    .site-logo-img {
        width: 110px;
        height: auto;
    }
    
    .site-branding {
        order: 2;
    }
    
    .header-navigation-wrapper {
        order: 1;
    }
    
    .header-actions {
        order: 3;
        gap: 15px;
    }
    
    .action-btn {
        font-size: 18px;
    }
}

/* ==========================================
   6. CUSTOM SITE FOOTER
   ========================================== */
.site-footer-custom {
    background-color: var(--color-dark);
    color: #ffffff;
    padding-top: 80px;
    font-family: var(--font-arabic);
}

.footer-container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 60px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

/* RIGHT COLUMN: Brand Info */
.footer-column-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.footer-logo-wrapper {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-height: 100px;
    width: auto;
    display: block;
    /* Convert entire image to solid black first, then color it gold uniformly */
    filter: brightness(0) invert(76%) sepia(31%) saturate(415%) hue-rotate(352deg) brightness(87%) contrast(84%);
    transition: var(--transition-smooth);
}

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

.footer-brand-desc {
    font-size: 14px;
    color: #a6a6a6;
    line-height: 1.8;
    max-width: 420px;
    margin: 0 0 25px 0;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-icon-btn {
    font-size: 20px;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* MIDDLE COLUMN: Quick Links */
.footer-column-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    justify-self: center;
}

.footer-column-title {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    margin: 0 0 25px 0;
    letter-spacing: 1px;
}

.footer-links-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-links-menu a {
    font-size: 15px;
    color: #a6a6a6;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-links-menu a:hover {
    color: var(--color-primary);
}

/* LEFT COLUMN: Contact Us */
.footer-column-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    justify-self: center;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-icon-btn {
    font-size: 22px;
    color: #ffffff;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-btn:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* FOOTER BOTTOM */
.footer-bottom-custom {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    font-size: 13px;
    color: #666666;
}

/* RESPONSIVE FOOTER */
@media (max-width: 991px) {
    .footer-container-custom {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-column-brand {
        grid-column: span 2;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container-custom {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 20px 40px 20px;
    }
    
    .footer-column-brand {
        grid-column: span 1;
        align-items: center; /* Center items vertically/horizontally in flex */
        text-align: center;
    }

    .footer-brand-desc {
        margin: 0 auto 25px auto; /* Center block and text */
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center; /* Center social icons */
    }

    .footer-column-links {
        align-items: center; /* Center links block */
        text-align: center;
    }

    .footer-links-menu {
        align-items: center; /* Center links list items */
    }

    .footer-column-contact {
        align-items: center; /* Center contact block */
        text-align: center;
    }

    .footer-contact-info {
        align-items: center; /* Center info icons list */
    }
    
    .site-footer-custom {
        padding-top: 50px;
    }
}

/* ==========================================
   7. HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #faf7f2;
}

/* Mirror the background image to match the design reference layout (Model on left) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center right;
    transform: scaleX(-1);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
    display: flex;
    justify-content: flex-start; /* Right side in RTL */
}

.hero-content {
    max-width: 580px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: var(--font-arabic);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.3;
    margin: 0 0 18px 0;
}

.hero-subtitle {
    font-family: var(--font-arabic);
    font-size: 18px;
    font-weight: 500;
    color: #3d3d3d;
    margin: 0 0 38px 0;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.btn-hero {
    display: inline-block;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    text-align: center;
    min-width: 180px;
    transition: var(--transition-smooth);
}

.btn-hero.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-dark);
}

.btn-hero.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.3);
}

.btn-hero.btn-secondary {
    background-color: #ffffff;
    color: var(--color-dark);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-hero.btn-secondary:hover {
    background-color: #f7f7f7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* RESPONSIVE HERO */
@media (max-width: 1199px) {
    .hero-container {
        padding: 0 40px;
    }
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 600px;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .btn-hero {
        padding: 13px 30px;
        font-size: 15px;
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 520px;
    }
    /* Mirror the background to normal or keep it centered */
    .hero-section::before {
        transform: none; /* Reset mirroring on small screens to keep crop centered */
        background-position: center;
    }
    .hero-container {
        justify-content: center; /* Center content on mobile */
        padding: 0 20px;
    }
    .hero-content {
        max-width: 480px;
        background-color: rgba(250, 247, 242, 0.85); /* Semi-transparent warm bg for readability on mobile */
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    .hero-title {
        font-size: 30px;
        margin-bottom: 12px;
    }
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    .hero-buttons {
        flex-direction: column-reverse; /* Stack buttons logically (Primary on top) */
        gap: 12px;
    }
    .btn-hero {
        width: 100%;
        min-width: unset;
    }
}

/* ==========================================
   8. FEATURES BAR SECTION
   ========================================== */
.features-section {
    background-color: #F6EEE4;
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    font-family: var(--font-arabic);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
}

.feature-item:not(:last-child) {
    border-left: 1px solid rgba(197, 168, 128, 0.25); /* Elegant gold-ish vertical separator in RTL */
}

.feature-icon {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon {
    transform: translateY(-4px);
    color: var(--color-primary-dark);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 8px 0;
}

.feature-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* RESPONSIVE FEATURES */
@media (max-width: 991px) {
    .features-container {
        padding: 0 20px;
    }
    .feature-title {
        font-size: 16px;
    }
    .feature-desc {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .features-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }
    
    .feature-item {
        border-left: none !important;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================
   9. CATEGORIES SECTION
   ========================================== */
.categories-section {
    background-color: #FAF7F2;
    padding: 30px 0 80px 0;
    font-family: var(--font-arabic);
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.categories-main-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0 0 50px 0;
    position: relative;
    letter-spacing: 0.5px;
}

.categories-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    flex: 0 0 auto;
    min-width: 160px;
}

.category-image-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    transition: var(--transition-smooth);
    border: 3px solid transparent;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    text-align: center;
    line-height: 1.4;
    transition: var(--transition-smooth);
}

/* HOVER EFFECTS */
.category-card:hover .category-image-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

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

.category-card:hover .category-title {
    color: var(--color-primary);
}

/* RESPONSIVE CATEGORIES */
@media (max-width: 1199px) {
    .categories-grid {
        gap: 30px;
    }
    .category-image-wrapper {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 991px) {
    .categories-main-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .categories-grid {
        gap: 25px;
    }
    .category-image-wrapper {
        width: 140px;
        height: 140px;
    }
    .category-title {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 20px 0 60px 0;
    }
    .categories-grid {
        justify-content: center;
    }
    .category-card {
        flex: 0 0 calc(33.33% - 20px); /* 3 in a row */
        min-width: 130px;
    }
}

@media (max-width: 576px) {
    .category-card {
        flex: 0 0 calc(50% - 15px); /* 2 in a row */
    }
    .category-image-wrapper {
        width: 130px;
        height: 130px;
    }
}

/* ==========================================
   10. PROMOTIONAL BANNER SECTION
   ========================================== */
.banner-section {
    background-color: #FAF7F2; /* Cream background, matches categories and features */
    padding: 40px 0 80px 0;
    font-family: var(--font-arabic);
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.promo-banner {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Warm subtle tint to tie it together */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Figma Linear Gradient: #1A1A1A 30%, #1A1A1A 40%, #000000 28% */
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.4) 50%, rgba(0, 0, 0, 0.28) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 500px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: #555555;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-family: var(--font-arabic);
}

.banner-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.3;
    margin: 0 0 14px 0;
}

.banner-desc {
    font-size: 15px;
    color: #4a4a4a;
    font-weight: 500;
    margin: 0 0 28px 0;
    line-height: 1.6;
}

.btn-banner {
    min-width: 160px;
    padding: 12px 30px;
    font-size: 15px;
}

/* RESPONSIVE BANNER */
@media (max-width: 991px) {
    .promo-banner {
        height: 340px;
    }
    .banner-title {
        font-size: 32px;
    }
    .banner-desc {
        font-size: 14px;
        margin-bottom: 22px;
    }
}

@media (max-width: 768px) {
    .banner-section {
        padding: 20px 0 60px 0;
    }
    .banner-container {
        padding: 0 20px;
    }
    .promo-banner {
        height: 300px;
        background-position: center left; /* Adjust position to focus on models */
    }
    .banner-content {
        max-width: 400px;
        background: transparent;
        padding: 20px;
    }
    .banner-title {
        font-size: 26px;
    }
    .banner-desc {
        font-size: 13px;
        margin-bottom: 18px;
    }
    .btn-banner {
        width: 100%;
        min-width: unset;
    }
}

/* ==========================================
   11. OWL STORY SECTION
   ========================================== */
.story-section {
    background-color: #FAF7F2; /* Cream background */
    padding: 80px 0;
    font-family: var(--font-arabic);
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Image is slightly wider */
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Image Column & Gold Logo Overlay */
.story-image-column {
    width: 100%;
}

.story-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    background-color: #ffffff;
}

.story-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.story-image-wrapper:hover .story-img {
    transform: scale(1.02);
}

.story-logo-overlay {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 100px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.story-logo-img {
    width: 100%;
    height: auto;
    display: block;
    /* Uniform gold filter to turn black logo elements into #C8A15A */
    filter: brightness(0) invert(76%) sepia(31%) saturate(415%) hue-rotate(352deg) brightness(87%) contrast(84%);
}

/* Text Column */
.story-text-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.story-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary); /* Gold */
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

.story-desc {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.8;
    margin: 0 0 35px 0;
    text-align: justify;
}

.btn-story {
    min-width: 160px;
    padding: 12px 30px;
    font-size: 15px;
}

/* RESPONSIVE STORY */
@media (max-width: 1199px) {
    .story-container {
        gap: 40px;
    }
    .story-desc {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .story-section {
        padding: 60px 0;
    }
    .story-container {
        grid-template-columns: 1fr; /* Stack layout */
        gap: 40px;
    }
    .story-text-column {
        align-items: center;
        text-align: center;
    }
    .story-desc {
        text-align: center;
    }
    .story-logo-overlay {
        top: 20px;
        right: 20px;
        width: 80px;
    }
}

@media (max-width: 576px) {
    .story-section {
        padding: 40px 0;
    }
    .story-container {
        padding: 0 20px;
    }
    .story-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .story-desc {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    .btn-story {
        width: 100%;
        min-width: unset;
    }
    .story-logo-overlay {
        top: 15px;
        right: 15px;
        width: 70px;
    }
}

/* ==========================================
   12. PRODUCTS CAROUSEL SECTION
   ========================================== */
.products-carousel-section {
    background-color: #FAF7F2; /* Cream background, matches story and features */
    padding: 60px 0 80px 0;
    font-family: var(--font-arabic);
    overflow: hidden; /* To prevent horizontal scrollbar from swiper wrapper */
}

.products-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    position: relative;
}

/* Carousel Header */
.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
}

.carousel-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0;
}

/* Navigation Arrows (Figma style: black rounded boxes with white/gold icons) */
.carousel-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    direction: ltr; /* Ensure nav layout is ltr for arrows */
}

.nav-btn {
    width: 44px;
    height: 44px;
    background-color: var(--color-dark);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.nav-btn:active {
    transform: translateY(0);
}

/* Swiper Container */
.products-swiper {
    width: 100%;
    padding: 10px 0 30px 0;
}

/* Product Card */
.product-slide {
    height: auto; /* Swiper makes slide same height */
}

.product-card-wrapper {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.product-card-wrapper:hover {
    transform: translateY(-6px);
}

.product-img-link {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background-color: #f7f7f7;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.product-card-wrapper:hover .product-img-link {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card-wrapper:hover .product-card-img {
    transform: scale(1.05);
}

.product-card-details {
    padding: 15px 0 0 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 8px 0;
    line-height: 1.4;
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.product-card-title a:hover {
    color: var(--color-primary);
}

.product-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    width: 100%;
}

.product-card-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-dark);
}

/* Actions: Cart & Wishlist */
.product-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-action-btn {
    font-size: 16px;
    color: #888888;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.product-action-btn:hover {
    color: var(--color-primary);
    transform: scale(1.15);
}

/* Footer view-all button */
.carousel-footer-btn {
    text-align: center;
    margin-top: 30px;
    width: 100%;
}

.view-all-btn {
    padding: 12px 35px;
    font-size: 15px;
    background-color: transparent !important;
    color: var(--color-dark) !important;
    border: 1px solid var(--color-dark) !important;
}

.view-all-btn:hover {
    background-color: var(--color-dark) !important;
    color: #ffffff !important;
}

/* RESPONSIVE CAROUSEL */
@media (max-width: 991px) {
    .carousel-title {
        font-size: 24px;
    }
    .carousel-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .products-carousel-section {
        padding: 40px 0 60px 0;
    }
    .products-carousel-container {
        padding: 0 20px;
    }
    .carousel-title {
        font-size: 20px;
    }
    .carousel-header {
        margin-bottom: 20px;
    }
    .nav-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .carousel-header {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 15px;
        text-align: right;
    }
    .carousel-nav {
        justify-content: flex-end;
    }
}

/* ==========================================
   13. OWL COLLECTIONS SECTION
   ========================================== */
.collections-section {
    background-color: #FAF7F2; /* Cream background */
    padding: 80px 0;
    font-family: var(--font-arabic);
}

.collections-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.collections-section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    text-align: center;
    margin: 0 0 50px 0;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

/* Collection Card */
.collection-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4; /* Portrait rectangle */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #e5dec9;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.collection-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.collection-card:hover .collection-bg-img {
    transform: scale(1.05);
}

/* Linear Gradient Overlay for text contrast (darkening bottom of card) */
.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.4) 40%, 
        rgba(0, 0, 0, 0) 100%
    );
    transition: opacity 0.4s ease;
}

.collection-card:hover .collection-overlay {
    opacity: 0.95;
}

/* Content over image */
.collection-content {
    position: relative;
    z-index: 3;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.collection-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-collection {
    display: inline-block;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-smooth);
    text-shadow: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-collection:hover {
    background-color: #ffffff;
    color: var(--color-dark);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-collection:active {
    transform: translateY(0);
}

/* RESPONSIVE COLLECTIONS */
@media (max-width: 1199px) {
    .collections-grid {
        gap: 20px;
    }
    .collection-card-title {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .collections-section {
        padding: 60px 0;
    }
    .collections-section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    .collections-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .collections-section {
        padding: 40px 0;
    }
    .collections-container {
        padding: 0 20px;
    }
    .collections-section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .collections-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 20px;
    }
    .collection-card {
        aspect-ratio: 4 / 5; /* Slightly shorter on mobile to conserve scroll space */
    }
    .btn-collection {
        width: 100%;
        max-width: 200px;
    }
}

/* ==========================================
   14. OWL PHILOSOPHY SECTION
   ========================================== */
.philosophy-section {
    background-color: #FAF7F2; /* Cream background */
    padding: 80px 0;
    font-family: var(--font-arabic);
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.philosophy-section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    text-align: center;
    margin: 0 0 50px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

/* Philosophy Card */
.philosophy-card {
    background-color: #F6EEE4; /* User specified card background color */
    border-radius: 8px; /* Figma: 8px */
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 402px; /* Figma: 402px */
    height: 206px; /* Figma: 206px */
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.01);
    box-sizing: border-box;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

/* Icon Container */
.philosophy-icon-wrapper {
    width: 54px; /* Slightly smaller to fit landscape card nicely */
    height: 54px;
    background-color: #ffffff; /* White circle background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-primary); /* Gold icon color (#C8A15A) */
    margin-bottom: 15px; /* Reduced spacing */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
}

.philosophy-card-title {
    font-size: 16px; /* Slightly adjusted font-size */
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 8px 0; /* Reduced spacing */
}

.philosophy-desc {
    font-size: 13px;
    font-weight: 500;
    color: #777777;
    line-height: 1.6;
    margin: 0;
    max-width: 220px;
}

/* RESPONSIVE PHILOSOPHY */
@media (max-width: 1199px) {
    .philosophy-card {
        padding: 30px 20px;
    }
    .philosophy-card-title {
        font-size: 16px;
    }
    .philosophy-desc {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .philosophy-section {
        padding: 60px 0;
    }
    .philosophy-section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .philosophy-section {
        padding: 40px 0;
    }
    .philosophy-container {
        padding: 0 20px;
    }
    .philosophy-section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .philosophy-grid {
        grid-template-columns: 1fr; /* 1 column grid */
        gap: 20px;
    }
    .philosophy-card {
        padding: 35px 25px;
    }
}

/* ==========================================
   15. "WHY OWL" SECTION
   ========================================== */
.why-section {
    background-color: #FAF7F2; /* Cream background */
    padding: 80px 0;
    font-family: var(--font-arabic);
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.why-section-subtitle {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary); /* Gold */
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.why-section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    text-align: center;
    margin: 0 0 50px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

/* Why Card */
.why-card {
    background-color: #F6EEE4; /* Beige background matches philosophy cards */
    border-radius: 8px; /* Figma: 8px */
    padding: 24px 20px;
    display: flex;
    flex-direction: row; /* Horizontal layout */
    align-items: center;
    justify-content: flex-start;
    gap: 20px; /* Space between number circle and text */
    width: 100%;
    max-width: 402px; /* Figma: Fill (402px) */
    height: 160px; /* Figma: Fixed (160px) */
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.01);
    box-sizing: border-box;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

/* Number Circle */
.why-number-wrapper {
    width: 48px;
    height: 48px;
    background-color: #ffffff; /* White circle background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary); /* Gold icon color (#C8A15A) */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    flex-shrink: 0; /* Keep it perfect circle */
}

/* Text block */
.why-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns contents to right in RTL */
    text-align: right;
    width: 100%;
}

.why-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 6px 0;
}

.why-desc {
    font-size: 13px;
    font-weight: 500;
    color: #777777;
    line-height: 1.5;
    margin: 0;
}

/* RESPONSIVE WHY */
@media (max-width: 1199px) {
    .why-card {
        padding: 20px 16px;
        gap: 15px;
    }
    .why-card-title {
        font-size: 15px;
    }
    .why-desc {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .why-section {
        padding: 60px 0;
    }
    .why-section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .why-section {
        padding: 40px 0;
    }
    .why-container {
        padding: 0 20px;
    }
    .why-section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .why-grid {
        grid-template-columns: 1fr; /* 1 column grid */
        gap: 20px;
    }
    .why-card {
        height: auto; /* Allow auto height on mobile to prevent overflow with long translations */
        padding: 24px 20px;
    }
}

/* ==========================================
   16. OWL INSPIRATION SECTION
   ========================================== */
.inspiration-section {
    background-color: #FAF7F2; /* Cream background */
    padding: 80px 0;
    font-family: var(--font-arabic);
}

.inspiration-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.inspiration-section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    text-align: center;
    margin: 0 0 50px 0;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns */
    gap: 20px;
    width: 100%;
}

/* Inspiration Card */
.inspiration-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1.15; /* Portrait rectangle matches reference design */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    background-color: #e5dec9;
}

.inspiration-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Show top part of the images to prevent head cropping */
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.inspiration-card:hover .inspiration-img {
    transform: scale(1.05);
}

/* Soft overlay on hover */
.inspiration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.03);
    z-index: 2;
    transition: background-color 0.3s ease;
    pointer-events: none;
}

.inspiration-card:hover .inspiration-overlay {
    background-color: rgba(0, 0, 0, 0);
}

/* RESPONSIVE INSPIRATION */
@media (max-width: 1199px) {
    .inspiration-grid {
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .inspiration-section {
        padding: 60px 0;
    }
    .inspiration-section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    .inspiration-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet */
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .inspiration-section {
        padding: 40px 0;
    }
    .inspiration-container {
        padding: 0 20px;
    }
    .inspiration-section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .inspiration-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 12px;
    }
    .inspiration-card {
        border-radius: 8px; /* Slightly smaller radius on small mobile cards */
    }
}

/* ==========================================
   17. OWL NEWSLETTER SECTION
   ========================================== */
.newsletter-section {
    background-color: #FAF7F2; /* Cream background */
    padding: 60px 0 100px 0;
    font-family: var(--font-arabic);
}

.newsletter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Newsletter Card with linear gradient (FIGMA colors) */
.newsletter-card {
    background: linear-gradient(135deg, #F7F1E6 0%, #EEE2CC 50%, #F6EEE4 100%);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    width: 100%;
    box-sizing: border-box;
}

.newsletter-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.newsletter-desc {
    font-size: 15px;
    font-weight: 500;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

/* Unified input bar container */
.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.newsletter-form-wrapper {
    background-color: #ffffff; /* White input bar background */
    border-radius: 8px; /* Input bar roundness */
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    width: 100%;
    box-sizing: border-box;
}

.newsletter-input {
    border: none;
    background: transparent;
    padding: 10px 15px;
    width: 100%;
    text-align: right; /* RTL placeholder alignment */
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    outline: none;
    font-family: var(--font-arabic) !important;
}

/* Placeholder color styling */
.newsletter-input::placeholder {
    color: #a0a0a0;
}

/* Solid Black Button */
.newsletter-btn {
    background-color: #000000;
    color: #ffffff !important;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    font-family: var(--font-arabic) !important;
}

.newsletter-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-dark) !important;
    transform: translateY(-1px);
}

.newsletter-btn:active {
    transform: translateY(0);
}

/* RESPONSIVE NEWSLETTER */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 0 60px 0;
    }
    .newsletter-card {
        padding: 45px 25px;
    }
    .newsletter-title {
        font-size: 22px;
    }
    .newsletter-desc {
        font-size: 13px;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .newsletter-container {
        padding: 0 20px;
    }
    /* Stack input and button on very small screens to avoid horizontal squishing */
    .newsletter-form-wrapper {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
        gap: 12px;
    }
    .newsletter-input {
        background-color: #ffffff;
        border-radius: 8px;
        padding: 14px 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }
    .newsletter-btn {
        width: 100%;
        padding: 14px 20px;
        border-radius: 8px;
    }
}

/* ==========================================
   18. OWL STORE FEATURES SECTION
   ========================================== */
.features-section {
    background-color: #FAF7F2; /* Cream background */
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    font-family: var(--font-arabic);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    width: 100%;
    align-items: center;
}

/* Feature Item */
.feature-item {
    display: flex;
    flex-direction: row; /* Horizontal flex layout */
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 10px 24px;
    text-align: right;
    width: 100%;
    max-width: 420px; /* Figma: Fill (420px) */
    height: 182px; /* Figma: Fill (182px) */
    margin: 0 auto;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .feature-item:not(:last-child) {
        border-left: 1px solid rgba(0, 0, 0, 0.12); /* More visible vertical divider */
    }
}

/* Circular gold icon wrapper */
.feature-icon-wrapper {
    width: 54px;
    height: 54px;
    border: 1.5px solid var(--color-primary); /* Thin gold border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-primary); /* Gold icon color (#C8A15A) */
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrapper {
    background-color: var(--color-primary);
    color: #ffffff !important;
    transform: rotate(15deg) scale(1.05);
}

.feature-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Right alignment in RTL */
    text-align: right;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.feature-desc {
    font-size: 12px;
    font-weight: 500;
    color: #777777;
    line-height: 1.5;
    margin: 0;
}

/* RESPONSIVE FEATURES */
@media (max-width: 1199px) {
    .feature-item {
        padding: 10px 15px;
        gap: 12px;
    }
    .feature-title {
        font-size: 14px;
    }
    .feature-desc {
        font-size: 11px;
    }
}

@media (max-width: 991px) {
    .features-section {
        padding: 50px 0;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
        gap: 30px;
    }
    .feature-item {
        padding: 0;
        justify-content: center; /* Center cards on tablet */
    }
}

@media (max-width: 576px) {
    .features-container {
        padding: 0 20px;
    }
    .features-grid {
        grid-template-columns: 1fr; /* Stack 1 column on mobile */
        gap: 24px;
    }
    .feature-item {
        justify-content: flex-start; /* Left-aligned flex-start under RTL (starts on right) */
        padding: 10px 0;
    }
    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* ==========================================
   HEADER ICONS & SEARCH OVERLAY
   ========================================== */

/* Reset button element so search-btn matches anchor action-btns */
button.action-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    line-height: 1;
}

/* Hide cart badge when count is 0 */
.cart-count-badge.hidden {
    display: none;
}

/* ---- Search Overlay ---- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                opacity   0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

.search-overlay.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.search-overlay-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 28px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-overlay-form {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 6px;
}

.search-overlay-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1.2rem;
    color: var(--color-text);
    direction: rtl;
    font-family: var(--font-arabic);
}

.search-overlay-input::placeholder {
    color: var(--color-text-muted);
}

.search-overlay-submit {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.search-overlay-submit:hover {
    color: var(--color-primary-dark);
    transform: scale(1.1);
}

.search-overlay-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.search-overlay-close:hover {
    background: rgba(200, 161, 90, 0.12);
    color: var(--color-primary-dark);
    transform: rotate(90deg);
}

/* Active state for search toggle button */
#search-toggle-btn[aria-expanded="true"] svg {
    stroke: var(--color-primary);
}

/* ==========================================
   PAGE TEMPLATE (page.php)
   ========================================== */

.page-main {
    min-height: 60vh;
    background: var(--color-light-bg);
}

.page-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.page-header-title {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(200, 161, 90, 0.2);
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    font-family: var(--font-arabic);
}

.page-entry-content {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.9;
    font-family: var(--font-arabic);
}

.page-entry-content p {
    margin-bottom: 1.2em;
}

/* WooCommerce pages inside page.php wrapper */
.page-main .woocommerce,
.page-main .woocommerce-page {
    padding: 0;
}

/* ==========================================
   WOOCOMMERCE CUSTOM ARCHIVE & FILTERS
   ========================================== */

.archive-container-custom {
    background-color: #FAF7F2;
    padding: 80px 24px 80px;
    direction: rtl;
    text-align: right;
}



/* ---- Archive Header & Toolbar ---- */
.archive-header-custom {
    margin-bottom: 20px;
}


.archive-title-custom {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 20px 0;
    font-family: var(--font-arabic);
}


.archive-toolbar-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 8px;
}



.toolbar-right-side {
    display: flex;
    align-items: center;
    gap: 20px;
}

.view-toggle {
    display: flex;
    gap: 6px;
    border: none;
    padding: 0;
    background: transparent;
}


.view-btn {
    background: none;
    border: none;
    padding: 8px 10px;
    font-size: 1rem;
    color: var(--color-text-muted);
    cursor: pointer;
    border-radius: 3px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.view-btn.active, .view-btn:hover {
    color: var(--color-dark);
    background: transparent;
}


.product-count-custom {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-family: var(--font-arabic);
}

.sorting-wrapper select.orderby-custom {
    width: 164.14px;
    height: 57px;
    max-width: 200px;
    border-radius: 8px;
    padding: 8px 36px 8px 16px;
    font-size: 0.95rem;
    border: 1px solid #dcd0b4;
    background-color: #EEE2CC;

    color: var(--color-text);
    cursor: pointer;
    outline: none;
    font-family: var(--font-arabic);
    transition: var(--transition-smooth);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C8A15A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
}


.sorting-wrapper select.orderby-custom:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(200, 161, 90, 0.1);
}

/* ---- Archive Main Layout ---- */
.archive-main-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}






/* ---- Filters Sidebar ---- */
.filters-sidebar {
    background: #FCFAF7;

    border: 1px solid rgba(200, 161, 90, 0.15);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.filters-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
}

.filters-sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    font-family: var(--font-arabic);
}

.clear-all-btn {
    background: none;
    border: none;
    color: #cc3333;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: var(--font-arabic);
    padding: 4px 8px;
    transition: var(--transition-smooth);
    border-radius: 3px;
}

.clear-all-btn:hover {
    background: rgba(204, 51, 51, 0.08);
}

/* Accordion Filter Items */
.filter-accordion {
    border-bottom: 1px solid rgba(13, 13, 13, 0.08);
    margin-bottom: 16px;
    padding-bottom: 16px;
}

.filter-accordion:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.accordion-toggle {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    text-align: right;
    font-family: var(--font-arabic);
    transition: var(--transition-smooth);
}

.accordion-toggle:hover {
    color: var(--color-primary);
}

.accordion-toggle i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    color: var(--color-primary);
}

/* Accordion Collapse Logic classes */
.filter-accordion .accordion-content {
    display: none;
    padding-top: 10px;
}

.filter-accordion.open .accordion-content {
    display: block;
}

/* Inner filter search box */
.filter-search-box {
    position: relative;
    margin-bottom: 14px;
}

.filter-search-input {
    width: 100%;
    padding: 8px 12px 8px 36px;
    font-size: 0.88rem;
    border: 1px solid rgba(13, 13, 13, 0.12);
    border-radius: 4px;
    outline: none;
    direction: rtl;
    text-align: right;
    font-family: var(--font-arabic);
    transition: var(--transition-smooth);
    background: #fafafa;
}

.filter-search-input:focus {
    border-color: var(--color-primary);
    background: #fff;
}

.filter-search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    pointer-events: none;
}

/* Filter Checkbox list styling */
.filter-checkbox-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 220px;
    overflow-y: auto;
    padding-left: 5px; /* space for custom scrollbar */
}

/* Customize scrollbar inside filter lists */
.filter-checkbox-list::-webkit-scrollbar {
    width: 5px;
}
.filter-checkbox-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.filter-checkbox-list::-webkit-scrollbar-thumb {
    background: rgba(200, 161, 90, 0.3);
    border-radius: 10px;
}
.filter-checkbox-list::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

.filter-checkbox-list li {
    margin-bottom: 2px;
    transition: opacity 0.25s ease;
}

.filter-checkbox-list li.hidden {
    display: none;
}

.filter-checkbox-list li.search-hidden {
    display: none !important;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.92rem;
    color: var(--color-text);
    user-select: none;
    font-family: var(--font-arabic);
    transition: var(--transition-smooth);
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: -8px;
}

.filter-checkbox-label:hover {
    background-color: #EEE2CC;
    color: var(--color-dark);
}


.filter-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Custom Styled Checkboxes */
.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(13, 13, 13, 0.2);
    border-radius: 3px;
    display: inline-block;
    position: relative;
    background-color: #fff;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.filter-checkbox-label input[type="checkbox"]:checked ~ .custom-checkbox {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.custom-checkbox::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox-label input[type="checkbox"]:checked ~ .custom-checkbox::after {
    display: block;
}

/* Size Selection button grid */
.filter-size-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.size-box-btn {
    border: 1px solid rgba(13, 13, 13, 0.15);
    background: #fff;
    border-radius: 4px;
    padding: 8px 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-arabic);
    text-align: center;
}

.size-box-btn:hover {
    border-color: #dcd0b4;
    background-color: #EEE2CC;
    color: var(--color-dark);
}

.size-box-btn.active {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
}


/* "Show More" text toggles */
.show-more-toggle-btn {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    padding: 4px 0;
    display: block;
    font-family: var(--font-arabic);
    border-bottom: 1px dashed transparent;
    transition: var(--transition-smooth);
}

.show-more-toggle-btn:hover {
    color: var(--color-primary-dark);
    border-bottom-color: var(--color-primary-dark);
}

/* Price Slider layout */
.price-slider-wrapper {
    padding: 10px 5px;
}

.price-slider-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.price-slider-values span {
    font-family: var(--font-arabic);
}

.range-slider-container {
    position: relative;
    height: 6px;
}

.price-range-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: rgba(200, 161, 90, 0.2);
    outline: none;
    margin: 0;
}

.price-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.price-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--color-primary-dark);
}

.products-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.products-grid-custom {
    display: grid;
    gap: 30px;
    position: relative;
    min-height: 300px;
}

/* 4-columns grid layout for products */
.products-grid-custom.grid-view {
    grid-template-columns: repeat(4, 1fr);
}

/* List view layout for products */
.products-grid-custom.list-view {
    grid-template-columns: 1fr;
}

.products-grid-custom.list-view .product-card-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid rgba(200, 161, 90, 0.15);
    padding: 16px;
    border-radius: 8px;
    gap: 24px;
    max-width: 100%;
}

.products-grid-custom.list-view .product-img-link {
    width: 160px;
    height: 200px;
    flex-shrink: 0;
}

.products-grid-custom.list-view .product-card-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    text-align: right;
}

.products-grid-custom.list-view .product-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.products-grid-custom.list-view .product-card-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    border-top: 1px solid rgba(13, 13, 13, 0.05);
    padding-top: 15px;
}

/* Spinner Loader placeholder inside filter */
.filter-loader {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 250px;
    font-size: 1.1rem;
    color: var(--color-primary);
    font-family: var(--font-arabic);
}

.filter-loader i {
    font-size: 2.2rem;
}

.no-products-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-family: var(--font-arabic);
    border: 2px dashed rgba(200, 161, 90, 0.2);
    border-radius: 8px;
    background: rgba(250, 247, 242, 0.3);
}

/* Pagination container styling */
.pagination-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagination-custom .page-numbers {
    display: inline-flex;
    gap: 6px;
}

.pagination-custom .page-numbers a,
.pagination-custom .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid rgba(13, 13, 13, 0.12);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition-smooth);
    background: #fff;
}

.pagination-custom .page-numbers span.current {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.pagination-custom .page-numbers a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.pagination-custom .page-numbers a i {
    font-size: 0.75rem;
}

/* ==========================================
   5. RESPONSIVE MEDIA QUERIES
   ========================================== */

@media (max-width: 1200px) {
    .products-grid-custom.grid-view {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .archive-main-layout {
        grid-template-columns: 1fr; /* Stack filter sidebar above or below products */
        gap: 30px;
    }
    
    .filters-sidebar {
        order: -1; /* Place filters at the top on mobile/tablet views */
    }
    
    .products-grid-custom.grid-view {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid-custom.grid-view {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .archive-container-custom {
        padding: 24px 16px 60px;
    }
    .archive-title-custom {
        font-size: 1.8rem;
    }
    .products-grid-custom.list-view .product-card-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .products-grid-custom.list-view .product-img-link {
        width: 100%;
        height: 260px;
    }
}

@media (max-width: 480px) {
    .products-grid-custom.grid-view {
        grid-template-columns: 1fr;
    }
    .archive-toolbar-custom {
        flex-direction: column;
        align-items: stretch;
    }
    .toolbar-right-side {
        justify-content: space-between;
    }
    .sorting-wrapper select.orderby-custom {
        width: 100%;
    }
    .filter-size-boxes {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ==========================================
   14. WOOCOMMERCE SINGLE PRODUCT STYLES
   ========================================== */

/* Reset WooCommerce default floats, widths, and clears to prevent overlaps */
.single-product .site-main::after,
.single-product .site-main::before,
.single-product div.product::after,
.single-product div.product::before {
    display: none !important;
    content: none !important;
    clear: none !important;
}

.single-product div.product div.images,
.single-product div.product div.summary {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}

/* Breadcrumbs (Hooked inside the entry-summary column) */
.single-product .entry-summary .woocommerce-breadcrumb {
    font-size: 13px !important;
    color: var(--color-text-muted) !important;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
    font-weight: 500 !important;
    direction: rtl !important;
    text-align: right !important;
}
.single-product .entry-summary .woocommerce-breadcrumb a {
    color: var(--color-text) !important;
    transition: var(--transition-smooth) !important;
}
.single-product .entry-summary .woocommerce-breadcrumb a:hover {
    color: var(--color-primary) !important;
}

/* Page Layout: Two Columns (Gallery Right, Summary Left) */
@media (min-width: 768px) {
    .single-product div.product {
        display: grid !important;
        grid-template-columns: 1.2fr 1fr !important;
        gap: 60px !important;
        max-width: 1400px !important;
        margin: 0 auto !important;
        padding: 40px !important;
    }
}

/* Product Gallery: Main image on the left, vertical thumbnails on the right */
.woocommerce-product-gallery {
    display: flex !important;
    flex-direction: row !important;
    direction: ltr !important; /* Force LTR so thumbnails list is strictly on the right of the image */
    gap: 20px !important;
    margin-bottom: 0 !important;
    position: relative !important;
    float: none !important;
    width: 100% !important;
    align-items: stretch !important; /* Stretch viewport and thumbs container to match heights */
}

/* Gallery main viewport (image) - Left side */
.woocommerce-product-gallery .flex-viewport {
    order: 1 !important; /* Main viewport image on the left */
    flex: 1 !important;
    border-radius: 8px !important; /* EXACTLY 8px border radius as requested */
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
    margin: 0 !important;
}
.woocommerce-product-gallery .flex-viewport img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* Thumbnails list - Right side */
.woocommerce-product-gallery .flex-control-nav.flex-control-thumbs {
    order: 2 !important; /* Thumbnails stack on the right of the main image */
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    width: 186px !important; /* EXACTLY 186px width as requested */
    min-width: 186px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    height: auto !important; /* Stretched to 100% height by flex parent */
}
.woocommerce-product-gallery .flex-control-nav.flex-control-thumbs li {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    flex: 1 !important; /* Divide height equally among all thumbnails */
    min-height: 0 !important;
    display: flex !important;
}
.woocommerce-product-gallery .flex-control-nav.flex-control-thumbs img {
    border-radius: 8px !important;
    border: 1.5px solid transparent !important;
    cursor: pointer !important;
    opacity: 0.85 !important;
    transition: var(--transition-smooth) !important;
    width: 100% !important;
    height: 100% !important; /* Match li height */
    object-fit: cover !important;
}
.woocommerce-product-gallery .flex-control-nav.flex-control-thumbs img.flex-active,
.woocommerce-product-gallery .flex-control-nav.flex-control-thumbs img:hover {
    border-color: var(--color-primary) !important;
    opacity: 1 !important;
}

/* Product Summary Styling */
.single-product .entry-summary {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.single-product .entry-summary .product_title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--color-dark) !important;
    line-height: 1.4 !important;
    margin: 0 0 12px 0 !important;
}

/* Review Stars styling */
.single-product .woocommerce-product-rating {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
}
.single-product .woocommerce-product-rating .star-rating {
    float: none !important;
    margin: 0 !important;
    color: var(--color-primary) !important;
    font-size: 15px !important;
}
.single-product .woocommerce-product-rating .woocommerce-review-link {
    font-size: 13px !important;
    color: var(--color-text-muted) !important;
    font-weight: 500 !important;
}

/* Price */
.single-product .entry-summary .price {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: var(--color-dark) !important;
    margin-bottom: 25px !important;
    display: block !important;
}
.single-product .entry-summary .price ins {
    text-decoration: none !important;
}

/* Variation select menus */
.single-product .variations {
    width: 100% !important;
    margin-bottom: 20px !important;
    border: none !important;
}
.single-product .variations td {
    padding: 8px 0 !important;
    display: block !important;
    border: none !important;
}
.single-product .variations td.label {
    font-weight: 700 !important;
    font-size: 14px !important;
    color: var(--color-dark) !important;
    margin-bottom: 8px !important;
}
.single-product .variations select {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 6px !important;
    background-color: var(--color-light-bg) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    outline: none !important;
    transition: var(--transition-smooth) !important;
}
.single-product .variations select:focus {
    border-color: var(--color-primary) !important;
}

/* Quantity Box - Custom Styled */
.owi-quantity-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 0 25px 0 !important;
    direction: rtl !important;
}
.owi-quantity-label {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--color-dark) !important;
    font-family: var(--font-arabic) !important;
}
.single-product .quantity.owi-qty-container {
    float: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border: 1px solid #eee2cc !important; /* Premium light gold border */
    border-radius: 12px !important; /* High rounded corners */
    background-color: #eee2cc !important; /* Gold background matching requested #EEE2CC */
    padding: 0 !important;
    margin: 0 !important;
    width: 130px !important;
    height: 45px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}
.single-product .quantity.owi-qty-container::before {
    display: none !important;
    content: none !important;
}
.owi-qty-btn {
    width: 40px !important;
    height: 100% !important;
    background: transparent !important;
    border: none !important;
    font-size: 20px !important;
    font-weight: 300 !important;
    color: var(--color-dark) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: background-color 0.2s ease, opacity 0.2s ease !important;
    outline: none !important;
    user-select: none !important;
}
.owi-qty-btn:hover {
    background-color: rgba(0, 0, 0, 0.04) !important;
}
.owi-qty-btn:active {
    opacity: 0.6 !important;
}
.single-product .quantity.owi-qty-container input.qty {
    flex: 1 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    outline: none !important;
    color: var(--color-dark) !important;
    padding: 0 !important;
    margin: 0 !important;
    -moz-appearance: textfield !important; /* Firefox hide spinners */
}
/* Chrome/Safari hide spinners */
.single-product .quantity.owi-qty-container input.qty::-webkit-outer-spin-button,
.single-product .quantity.owi-qty-container input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* Add to cart Button (Full Width, Gold) */
.single-product .single_add_to_cart_button {
    display: block !important;
    width: 100% !important;
    background-color: var(--color-primary) !important;
    color: #ffffff !important; /* White text matching design */
    padding: 14px !important;
    border-radius: 8px !important; /* 8px rounded corners */
    font-size: 0 !important; /* Hide original English text */
    font-weight: 700 !important;
    transition: var(--transition-smooth) !important;
    margin-bottom: 0px !important; /* Changed from 12px to 0px */
    border: none !important;
    text-align: center !important;
    box-shadow: none !important; /* Flat clean look matching image */
}
.single-product .single_add_to_cart_button::after {
    content: "أضف إلى السلة" !important;
    font-size: 16px !important; /* Display text in Arabic with correct font-size */
}
.single-product .single_add_to_cart_button:hover {
    background-color: var(--color-primary-dark) !important;
    transform: translateY(-1px) !important;
}

/* Reduce Cart Form Bottom Margin to bring Wishlist closer */
.single-product form.cart {
    margin-bottom: 10px !important;
}

/* Wishlist Button Custom layout - Main Product Summary ONLY */
.single-product .summary .yith-wcwl-add-to-wishlist,
.woocommerce div.product .summary .yith-wcwl-add-to-wishlist,
.single-product .summary .yith-add-to-wishlist-button-block,
.single-product .summary .yith-wcwl-add-button,
.single-product .summary .yith-wcwl-wishlistexists,
.single-product .summary .yith-wcwl-wishlistaddedmail {
    margin: 5px 0 25px 0 !important; /* Set margin-top to 5px for perfect proximity */
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    float: none !important;
}
.single-product .summary .yith-wcwl-add-to-wishlist a,
.single-product .summary .yith-wcwl-add-to-wishlist button,
.woocommerce div.product .summary .yith-wcwl-add-to-wishlist a,
.woocommerce div.product .summary .yith-wcwl-add-to-wishlist button,
.single-product .summary .yith-wcwl-add-to-wishlist-button,
.single-product .summary .yith-wcwl-add-to-wishlist-button-anchor-wrapper,
.single-product .summary .add_to_wishlist {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    background-color: transparent !important; /* Transparent/Clean look */
    background: transparent !important;
    color: #111111 !important; /* Dark text */
    border: 1px solid #111111 !important; /* Thin solid dark border */
    padding: 14px !important;
    border-radius: 8px !important; /* Matching 8px rounded corners */
    font-size: 16px !important;
    font-weight: 700 !important;
    transition: var(--transition-smooth) !important;
    box-shadow: none !important;
    text-decoration: none !important; /* Hide default underline */
    box-sizing: border-box !important;
    cursor: pointer !important;
    margin: 0 !important;
}
.single-product .summary .yith-wcwl-add-to-wishlist a:hover,
.single-product .summary .yith-wcwl-add-to-wishlist button:hover,
.woocommerce div.product .summary .yith-wcwl-add-to-wishlist a:hover,
.woocommerce div.product .summary .yith-wcwl-add-to-wishlist button:hover,
.single-product .summary .yith-wcwl-add-to-wishlist-button:hover,
.single-product .summary .yith-wcwl-add-to-wishlist-button-anchor-wrapper:hover,
.single-product .summary .add_to_wishlist:hover {
    background-color: rgba(0, 0, 0, 0.02) !important;
    border-color: #000000 !important;
    color: #000000 !important;
    transform: translateY(-1px) !important;
}

/* Force Arabic translations for Wishlist button states in main product summary only */
.single-product .summary .yith-wcwl-add-to-wishlist a span,
.single-product .summary .yith-wcwl-add-to-wishlist button span,
.single-product .summary .yith-wcwl-add-to-wishlist-button span,
.single-product .summary .yith-wcwl-add-to-wishlist-button-anchor-wrapper span,
.single-product .summary .add_to_wishlist span {
    display: none !important;
}

/* Default state: Add to wishlist */
.single-product .summary .yith-wcwl-add-to-wishlist a::after,
.single-product .summary .yith-wcwl-add-to-wishlist button::after,
.single-product .summary .yith-wcwl-add-to-wishlist-button::after,
.single-product .summary .yith-wcwl-add-to-wishlist-button-anchor-wrapper::after,
.single-product .summary .add_to_wishlist::after {
    content: "أضف إلى قائمة الأمنيات" !important;
}

/* Already added state: Browse wishlist */
.single-product .summary .yith-wcwl-wishlistexists a::after,
.single-product .summary .yith-wcwl-wishlistexists button::after,
.single-product .summary .yith-wcwl-wishlistaddedmail a::after,
.single-product .summary .yith-wcwl-wishlistaddedmail button::after {
    content: "تصفح قائمة الأمنيات" !important;
}

/* Hide wishlist icons to match image in main summary only */
.single-product .summary .yith-wcwl-add-to-wishlist a i,
.single-product .summary .yith-wcwl-add-to-wishlist a svg,
.single-product .summary .yith-wcwl-add-to-wishlist button i,
.single-product .summary .yith-wcwl-add-to-wishlist button svg,
.single-product .summary .yith-wcwl-add-to-wishlist .yith-wcwl-icon,
.single-product .summary .yith-wcwl-add-to-wishlist .yith-wcwl-icon-svg,
.single-product .summary .yith-wcwl-add-to-wishlist-button i,
.single-product .summary .yith-wcwl-add-to-wishlist-button svg,
.single-product .summary .yith-wcwl-add-to-wishlist-button .yith-wcwl-icon,
.single-product .summary .yith-wcwl-add-to-wishlist-button .yith-wcwl-icon-svg,
.single-product .summary .yith-wcwl-add-to-wishlist-button-anchor-wrapper i,
.single-product .summary .yith-wcwl-add-to-wishlist-button-anchor-wrapper svg,
.single-product .summary .add_to_wishlist i,
.single-product .summary .add_to_wishlist svg,
.single-product .summary .add_to_wishlist .yith-wcwl-icon,
.single-product .summary .add_to_wishlist .yith-wcwl-icon-svg,
.single-product .summary .yith-wcwl-add-to-wishlist .feedback-icon {
    display: none !important;
}

/* Product Trust Badges */
.product-trust-badges {
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 15px !important;
    padding-top: 25px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}
.product-trust-badges .badge-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    color: var(--color-text-muted) !important;
    font-weight: 600 !important;
}
.product-trust-badges .badge-item i {
    color: var(--color-primary) !important;
    font-size: 16px !important;
}

/* Related Products ("مختارات OWL لكي") Section styling */
.single-product section.related.products {
    max-width: 1400px !important;
    margin: 60px auto 0 !important;
    padding: 40px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.single-product section.related.products h2 {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: var(--color-dark) !important;
    margin-bottom: 30px !important;
    text-align: right !important;
    font-family: var(--font-arabic) !important;
}
/* Related Products Grid Styling - Overriding WooCommerce Defaults */
.woocommerce .related.products ul,
.woocommerce-page .related.products ul,
.woocommerce .related ul,
.woocommerce-page .related ul,
.single-product section.related.products ul,
.single-product section.related.products .products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    align-items: stretch !important; /* Force all cards in the row to stretch to equal height */
}

.woocommerce .related.products ul li,
.woocommerce-page .related.products ul li,
.woocommerce .related ul li,
.woocommerce-page .related ul li,
.single-product section.related.products ul li,
.single-product section.related.products .products .product,
.woocommerce .related .products .product,
.woocommerce-page .related .products .product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important; /* Remove float clearing */
    display: flex !important;
    flex-direction: column !important;
}

/* Hide any theme or WooCommerce clear elements inside the grid */
.woocommerce .related .products .clear,
.woocommerce-page .related .products .clear,
.woocommerce .related .products .product.clear,
.woocommerce-page .related .products .product.clear,
.woocommerce .related.products ul .clear,
.woocommerce-page .related.products ul .clear,
.woocommerce .related.products ul::before,
.woocommerce .related.products ul::after,
.woocommerce-page .related.products ul::before,
.woocommerce-page .related.products ul::after,
.single-product section.related.products ul::before,
.single-product section.related.products ul::after {
    display: none !important;
    content: none !important;
}

/* Loop Card Wishlist Button (Heart Icon) styling to match the shop actions globally */
.product-card-actions .yith-wcwl-add-to-wishlist {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}
.product-card-actions .yith-wcwl-add-to-wishlist .yith-wcwl-add-button,
.product-card-actions .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexists,
.product-card-actions .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
    background: transparent !important;
}
.product-card-actions .yith-wcwl-add-to-wishlist a {
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}
.product-card-actions .yith-wcwl-add-to-wishlist a span,
.product-card-actions .yith-wcwl-add-to-wishlist a::after,
.product-card-actions .yith-wcwl-add-to-wishlist .feedback {
    display: none !important; /* Hide spans, translations, and feedback text wrapper */
}
.product-card-actions .yith-wcwl-add-to-wishlist a i,
.product-card-actions .yith-wcwl-add-to-wishlist a svg,
.product-card-actions .yith-wcwl-add-to-wishlist i,
.product-card-actions .yith-wcwl-add-to-wishlist svg {
    display: block !important;
    font-size: 16px !important; /* Restore icon size */
    line-height: 16px !important;
    color: #888888 !important;
}
.product-card-actions .yith-wcwl-add-to-wishlist a:hover i,
.product-card-actions .yith-wcwl-add-to-wishlist a:hover svg {
    color: var(--color-primary) !important;
}
.product-card-actions .yith-wcwl-add-to-wishlist a:hover {
    transform: scale(1.15) !important;
}

/* Mobile responsive single product */
@media (max-width: 768px) {
    .woocommerce-breadcrumb {
        margin: 15px 15px 5px !important;
    }
    .single-product div.product {
        display: flex !important;
        flex-direction: column !important; /* Stack vertically on mobile */
        gap: 30px !important;
        padding: 15px !important;
    }
    .woocommerce-product-gallery {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .woocommerce-product-gallery .flex-viewport {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        aspect-ratio: 704 / 938 !important; /* Maintain exact proportion */
    }
    .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs {
        flex-direction: row !important;
        width: 100% !important;
        height: auto !important;
        overflow-x: auto !important;
        padding-bottom: 5px !important;
    }
    .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs li {
        width: 70px !important;
        flex-shrink: 0 !important;
    }
    .single-product .entry-summary .product_title {
        font-size: 24px !important;
    }
    .product-trust-badges {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
    .single-product section.related.products {
        padding: 30px 15px !important;
    }
    .single-product section.related.products .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    .single-product section.related.products .products .product img {
        height: 220px !important;
    }
}
@media (max-width: 480px) {
    .single-product section.related.products ul.products {
        grid-template-columns: 1fr !important;
    }
    .single-product section.related.products ul.products li.product img {
        height: 280px !important;
    }
}

/* Custom Swatches Styling (Color Circles, Image Swatches, and Size Buttons) */
.owi-swatches-label-wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 12px !important;
    width: 100% !important;
    font-family: var(--font-arabic) !important;
}
.owi-swatches-label-wrapper .owi-label-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--color-dark) !important;
}
.owi-swatches-label-wrapper .owi-selected-value {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--color-primary-dark) !important;
}
.owi-swatches-label-wrapper .owi-size-guide-link {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--color-primary) !important;
    text-decoration: underline !important;
    transition: var(--transition-smooth) !important;
}
.owi-swatches-label-wrapper .owi-size-guide-link:hover {
    color: var(--color-primary-dark) !important;
}

/* Swatches Container */
.owi-swatches-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-bottom: 25px !important;
    width: 100% !important;
}

/* Swatch Item Common */
.owi-swatch-item {
    border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
    outline: none !important;
    background-color: #ffffff;
}

/* Color Circle Swatches */
.owi-swatch-item.owi-color-circle {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 50% !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.04) !important;
}
.owi-swatch-item.owi-color-circle.has-image {
    border-radius: 6px !important; /* Square with rounded corners for product thumbnail */
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
}
.owi-swatch-item.owi-color-circle.is-transparent {
    background-image: linear-gradient(45deg, #ccc 25%, transparent 25%), 
                      linear-gradient(-45deg, #ccc 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #ccc 75%), 
                      linear-gradient(-45deg, transparent 75%, #ccc 75%) !important;
    background-size: 10px 10px !important;
    background-position: 0 0, 0 5px, 5px -5px, -5px 0 !important;
}
.owi-swatch-item.owi-color-circle:hover,
.owi-swatch-item.owi-color-circle.selected {
    border-color: var(--color-primary) !important;
    transform: scale(1.08) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}
.owi-swatch-item.owi-color-circle.selected::after {
    content: '' !important;
    position: absolute !important;
    top: -3px !important;
    left: -3px !important;
    right: -3px !important;
    bottom: -3px !important;
    border-radius: 50% !important;
    border: 1.5px solid var(--color-primary) !important;
}
.owi-swatch-item.owi-color-circle.has-image.selected::after {
    border-radius: 8px !important; /* Match square border radius */
}

/* Size Buttons */
.owi-swatch-item.owi-size-button {
    padding: 8px 18px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--color-dark) !important;
    border-radius: 6px !important;
    min-width: 55px !important;
    text-align: center !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02) !important;
}
.owi-swatch-item.owi-size-button:hover {
    border-color: var(--color-primary) !important;
    background-color: var(--color-light-bg) !important;
}
.owi-swatch-item.owi-size-button.selected {
    background-color: #EEE2CC !important; /* Lighter gold/cream color exactly like mockup */
    border-color: var(--color-primary) !important;
    color: var(--color-dark) !important;
}

/* ==========================================
   15. PRODUCT CARD COLOR SWATCHES
   ========================================== */
.product-card-colors {
    display: flex;
    gap: 8px;
    margin: 8px 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    direction: rtl;
    padding: 0;
}

.card-color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Add a gold border offset ring for active and hovered colors */
.card-color-dot:hover,
.card-color-dot.active {
    transform: scale(1.15);
    border-color: var(--color-primary, #C8A15A);
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 3.5px var(--color-primary, #C8A15A);
    z-index: 2;
}

.card-color-dot.is-transparent {
    background: linear-gradient(45deg, transparent 45%, #ff3b30 45%, #ff3b30 55%, transparent 55%),
                linear-gradient(-45deg, transparent 45%, #ff3b30 45%, #ff3b30 55%, transparent 55%);
    background-color: #fff;
}

.card-color-dot.has-image {
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* ==========================================
   16. WOOCOMMERCE PRODUCT TABS & RELATED LAYOUT FIX
   ========================================== */

/* Make tabs, related products, upsells, and reviews span the full grid width on desktop */
@media (min-width: 768px) {
    .single-product .woocommerce-tabs,
    .single-product section.related.products,
    .single-product section.upsells.products,
    .single-product .owl-customer-reviews-section {
        grid-column: span 2 !important; /* Full width spanning all columns */
        width: 100% !important;
    }
}

/* Product Tabs Container Styling */
.single-product .woocommerce-tabs {
    display: none !important;
}

/* Custom Centered Nav Tabs */
.single-product .woocommerce-tabs ul.tabs {
    display: flex !important;
    justify-content: center !important;
    list-style: none !important;
    margin: 0 auto 30px auto !important;
    padding: 0 0 10px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    gap: 40px !important;
    max-width: 600px !important;
}

.single-product .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 0 12px 0 !important;
    position: relative !important;
    background: transparent !important;
    border: none !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
    color: var(--color-text-muted, #777) !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: var(--transition-smooth) !important;
    font-family: var(--font-arabic, 'Tajawal', sans-serif) !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--color-primary, #C8A15A) !important;
}

/* Underline for the active tab */
.single-product .woocommerce-tabs ul.tabs li.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -1px !important;
    left: 0 !important;
    right: 0 !important;
    height: 2.5px !important;
    background-color: var(--color-primary, #C8A15A) !important;
    border-radius: 2px !important;
}

/* Tab Panels Styling */
.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 20px 0 !important;
    direction: rtl !important;
    text-align: right !important;
}

.single-product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
    display: none !important; /* Hide duplicate headers */
}

/* Additional Information Table Styling */
.single-product .woocommerce-tabs table.shop_attributes {
    width: 100% !important;
    max-width: 800px !important;
    margin: 20px auto !important;
    border-collapse: collapse !important;
    border: none !important;
}

.single-product .woocommerce-tabs table.shop_attributes tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    background-color: transparent !important;
}

.single-product .woocommerce-tabs table.shop_attributes tr:last-child {
    border-bottom: none !important;
}

.single-product .woocommerce-tabs table.shop_attributes th {
    padding: 15px 20px !important;
    font-weight: 700 !important;
    color: var(--color-dark, #000) !important;
    text-align: right !important;
    width: 150px !important;
    background-color: transparent !important;
    font-size: 14px !important;
    font-family: var(--font-arabic, 'Tajawal', sans-serif) !important;
}

.single-product .woocommerce-tabs table.shop_attributes td {
    padding: 15px 20px !important;
    color: var(--color-text, #555) !important;
    text-align: right !important;
    font-style: normal !important;
    background-color: transparent !important;
    font-size: 14px !important;
    font-family: var(--font-arabic, 'Tajawal', sans-serif) !important;
}

.single-product .woocommerce-tabs table.shop_attributes td p {
    margin: 0 !important;
    padding: 0 !important;
    font-style: normal !important;
}

/* ==========================================================================
   CUSTOM SPLIT-SCREEN LOGIN PAGE LAYOUT
   ========================================================================== */

/* 1. Global Page Overrides (Only when customer is logged out on My Account or on Add Customer Page) */
body.woocommerce-account:not(.logged-in),
body.owl-split-page:not(.logged-in),
body.page-template-page-add-customer-php:not(.logged-in),
body.page-template-page-add-customer:not(.logged-in) {
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-account:not(.logged-in) .top-header,
body.woocommerce-account:not(.logged-in) .site-header,
body.woocommerce-account:not(.logged-in) .site-footer-custom,
body.woocommerce-account:not(.logged-in) .breadcrumb-custom,
body.woocommerce-account:not(.logged-in) .woocommerce-breadcrumb,
body.woocommerce-account:not(.logged-in) .entry-header,
body.owl-split-page:not(.logged-in) .top-header,
body.owl-split-page:not(.logged-in) .site-header,
body.owl-split-page:not(.logged-in) .site-footer-custom,
body.owl-split-page:not(.logged-in) .breadcrumb-custom,
body.owl-split-page:not(.logged-in) .woocommerce-breadcrumb,
body.owl-split-page:not(.logged-in) .entry-header,
body.page-template-page-add-customer-php:not(.logged-in) .top-header,
body.page-template-page-add-customer-php:not(.logged-in) .site-header,
body.page-template-page-add-customer-php:not(.logged-in) .site-footer-custom,
body.page-template-page-add-customer-php:not(.logged-in) .breadcrumb-custom,
body.page-template-page-add-customer-php:not(.logged-in) .woocommerce-breadcrumb,
body.page-template-page-add-customer-php:not(.logged-in) .entry-header,
body.page-template-page-add-customer:not(.logged-in) .top-header,
body.page-template-page-add-customer:not(.logged-in) .site-header,
body.page-template-page-add-customer:not(.logged-in) .site-footer-custom,
body.page-template-page-add-customer:not(.logged-in) .breadcrumb-custom,
body.page-template-page-add-customer:not(.logged-in) .woocommerce-breadcrumb,
body.page-template-page-add-customer:not(.logged-in) .entry-header {
    display: none !important;
}

body.woocommerce-account:not(.logged-in) #page,
body.woocommerce-account:not(.logged-in) #primary,
body.woocommerce-account:not(.logged-in) .site-main,
body.woocommerce-account:not(.logged-in) .page-main,
body.woocommerce-account:not(.logged-in) .woocommerce-main,
body.woocommerce-account:not(.logged-in) main,
body.woocommerce-account:not(.logged-in) article,
body.woocommerce-account:not(.logged-in) .page-article,
body.woocommerce-account:not(.logged-in) .entry-content,
body.woocommerce-account:not(.logged-in) .page-entry-content,
body.woocommerce-account:not(.logged-in) .page-content-wrapper,
body.woocommerce-account:not(.logged-in) .woocommerce,
body.woocommerce-account:not(.logged-in) .woocommerce-MyAccount-content,
body.woocommerce-account:not(.logged-in) .page-content,
body.owl-split-page:not(.logged-in) #page,
body.owl-split-page:not(.logged-in) #primary,
body.owl-split-page:not(.logged-in) .site-main,
body.owl-split-page:not(.logged-in) .page-main,
body.owl-split-page:not(.logged-in) .woocommerce-main,
body.owl-split-page:not(.logged-in) main,
body.owl-split-page:not(.logged-in) article,
body.owl-split-page:not(.logged-in) .page-article,
body.owl-split-page:not(.logged-in) .entry-content,
body.owl-split-page:not(.logged-in) .page-entry-content,
body.owl-split-page:not(.logged-in) .page-content-wrapper,
body.owl-split-page:not(.logged-in) .woocommerce,
body.owl-split-page:not(.logged-in) .page-content,
body.page-template-page-add-customer-php:not(.logged-in) #page,
body.page-template-page-add-customer-php:not(.logged-in) #primary,
body.page-template-page-add-customer-php:not(.logged-in) .site-main,
body.page-template-page-add-customer-php:not(.logged-in) .page-main,
body.page-template-page-add-customer-php:not(.logged-in) .woocommerce-main,
body.page-template-page-add-customer-php:not(.logged-in) main,
body.page-template-page-add-customer-php:not(.logged-in) article,
body.page-template-page-add-customer-php:not(.logged-in) .page-article,
body.page-template-page-add-customer-php:not(.logged-in) .entry-content,
body.page-template-page-add-customer-php:not(.logged-in) .page-entry-content,
body.page-template-page-add-customer-php:not(.logged-in) .page-content-wrapper,
body.page-template-page-add-customer-php:not(.logged-in) .woocommerce,
body.page-template-page-add-customer-php:not(.logged-in) .page-content,
body.page-template-page-add-customer:not(.logged-in) #page,
body.page-template-page-add-customer:not(.logged-in) #primary,
body.page-template-page-add-customer:not(.logged-in) .site-main,
body.page-template-page-add-customer:not(.logged-in) .page-main,
body.page-template-page-add-customer:not(.logged-in) .woocommerce-main,
body.page-template-page-add-customer:not(.logged-in) main,
body.page-template-page-add-customer:not(.logged-in) article,
body.page-template-page-add-customer:not(.logged-in) .page-article,
body.page-template-page-add-customer:not(.logged-in) .entry-content,
body.page-template-page-add-customer:not(.logged-in) .page-entry-content,
body.page-template-page-add-customer:not(.logged-in) .page-content-wrapper,
body.page-template-page-add-customer:not(.logged-in) .woocommerce,
body.page-template-page-add-customer:not(.logged-in) .page-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-sizing: border-box !important;
}

body.woocommerce-account:not(.logged-in) .page-header-title,
body.owl-split-page:not(.logged-in) .page-header-title,
body.page-template-page-add-customer-php:not(.logged-in) .page-header-title,
body.page-template-page-add-customer:not(.logged-in) .page-header-title {
    display: none !important;
}

/* 2. Layout Grid */
.owl-login-split-container {
    display: flex !important;
    flex-direction: row !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 16px 24px !important;
    direction: ltr !important;
    background: linear-gradient(to right, #FAF7F2 0%, #F7F1E6 25%, #F7F1E6 100%) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    gap: 0 !important;
}

/* Left Pane: Cover Image Column */
.owl-login-cover-column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
    height: 100% !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    box-sizing: border-box !important;
    border-radius: 16px !important;
    overflow: hidden !important;
}

/* Right Pane: Form Column */
.owl-login-form-column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 30px !important;
    box-sizing: border-box !important;
    direction: rtl !important;
    overflow: hidden !important;
    background: linear-gradient(to right, #FAF7F2 0%, #F7F1E6 25%, #F7F1E6 100%) !important;
}

/* Inner form wrapper */
.owl-login-form-inner-wrapper {
    width: 100% !important;
    max-width: 788px !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Brand Header */
.owl-login-brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4px;
    text-align: center;
}

.owl-login-logo {
    width: 299px !important;
    max-width: 100% !important;
    height: 180px !important;
    max-height: 180px !important;
    object-fit: contain !important;
    margin-bottom: 2px !important;
    filter: brightness(0.9) contrast(1.1);
}

.owl-login-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #c29b53;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.owl-login-logo-sub {
    font-size: 9px;
    font-weight: 500;
    color: #888888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Main Title */
.owl-login-main-title {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Form Boxes */
.owl-login-box {
    display: none;
    width: 100%;
}

/* Remove any WooCommerce default borders/shadows from forms */
body.woocommerce-account:not(.logged-in) .woocommerce-form,
body.woocommerce-account:not(.logged-in) .woocommerce-form-login,
body.woocommerce-account:not(.logged-in) .woocommerce-form-register,
body.woocommerce-account:not(.logged-in) form.login,
body.woocommerce-account:not(.logged-in) form.register,
body.woocommerce-account:not(.logged-in) #customer_login,
body.woocommerce-account:not(.logged-in) .u-columns,
body.woocommerce-account:not(.logged-in) .u-column1,
body.woocommerce-account:not(.logged-in) .u-column2,
body.woocommerce-account:not(.logged-in) .owl-login-form-inner-wrapper,
body.woocommerce-account:not(.logged-in) .owl-login-box {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.owl-login-box.active {
    display: block;
}

.owl-login-box-header {
    margin-bottom: 8px;
    text-align: right;
}

.owl-login-box-title {
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 2px;
}

.owl-login-box-subtitle {
    font-size: 13px;
    color: #666666;
}

.owl-login-box-subtitle a {
    color: #000000 !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
    transition: all 0.3s ease;
}

.owl-login-box-subtitle a:hover {
    color: #333333 !important;
}

/* Form Fields */
.owl-form-group {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
}

.owl-form-label {
    font-size: 12px;
    font-weight: 600;
    color: #444444;
    margin-bottom: 2px;
    text-align: right;
}

.owl-form-control {
    width: 100% !important;
    height: 34px !important;
    padding: 4px 0 !important;
    box-sizing: border-box !important;
    border: none !important;
    border-bottom: 1.5px solid #c8b89a !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    font-size: 13px !important;
    color: #111111 !important;
    transition: border-color 0.3s ease !important;
    text-align: right !important;
    outline: none !important;
}

.owl-form-control:focus {
    outline: none !important;
    border-bottom-color: #c29b53 !important;
    box-shadow: none !important;
}

/* Password wrapper */
.owl-password-wrapper {
    position: relative;
    width: 100%;
}

.owl-password-toggle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    color: #888888 !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2;
    transition: color 0.3s ease !important;
    box-shadow: none !important;
}

.owl-password-toggle:hover {
    color: #c29b53 !important;
}

.owl-password-wrapper .owl-form-control {
    padding-left: 28px !important;
}

/* Form Meta */
.owl-form-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 12px;
}

.owl-rememberme-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.owl-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.owl-checkbox-custom {
    height: 16px;
    width: 16px;
    background-color: #ffffff;
    border: 1px solid #e0dcd5;
    border-radius: 4px;
    margin-left: 6px; /* Gap to text in RTL */
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.owl-checkbox:checked ~ .owl-checkbox-custom {
    background-color: #c29b53;
    border-color: #c29b53;
}

.owl-checkbox-custom::after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.owl-checkbox:checked ~ .owl-checkbox-custom::after {
    display: block;
}

.owl-checkbox-text {
    color: #555555;
    font-size: 12px;
}

.owl-lost-password {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.owl-lost-password:hover {
    color: #c29b53;
}

/* Submit Button */
.owl-submit-btn {
    width: 100%;
    height: 36px !important;
    background-color: #c29b53 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(194, 155, 83, 0.15) !important;
}

.owl-submit-btn:hover {
    background-color: #b08945 !important;
    box-shadow: 0 6px 12px rgba(194, 155, 83, 0.25) !important;
    transform: translateY(-1px) !important;
}

.owl-register-note {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: right;
}

.owl-login-notices-container .woocommerce-error,
.owl-login-notices-container .woocommerce-message,
.owl-login-notices-container .woocommerce-info {
    border-radius: 6px !important;
    font-size: 13px !important;
    margin-bottom: 16px !important;
    padding: 8px 15px !important;
    text-align: right !important;
    list-style: none !important;
}

.owl-login-notices-container .woocommerce-error li {
    margin: 0 !important;
    padding: 0 !important;
}

/* ======================
   RESPONSIVE - TABLET (max 991px)
   الصورة تتخفى والفورم يملأ كل الشاشة
   ====================== */
@media (max-width: 991px) {
    .owl-login-split-container {
        padding: 24px !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: 100vh !important;
        max-height: none !important;
    }

    .owl-login-cover-column {
        display: none !important;
    }

    .owl-login-form-column {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        height: auto !important;
        min-height: calc(100vh - 48px) !important;
        padding: 30px 32px !important;
        overflow: visible !important;
    }

    .owl-login-form-inner-wrapper {
        max-width: 480px !important;
    }
}

/* ======================
   RESPONSIVE - LARGE MOBILE (max 768px)
   ====================== */
@media (max-width: 768px) {
    .owl-login-split-container {
        padding: 16px !important;
    }

    .owl-login-form-column {
        padding: 24px 20px !important;
        min-height: calc(100vh - 32px) !important;
    }

    .owl-login-form-inner-wrapper {
        max-width: 100% !important;
    }

    .owl-login-logo,
    .owl-account-logo {
        width: 220px !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 140px !important;
    }

    .owl-login-main-title {
        font-size: 16px !important;
        margin-bottom: 16px !important;
    }

    .owl-login-box-title {
        font-size: 18px !important;
    }

    .owl-submit-btn {
        height: 44px !important;
        font-size: 15px !important;
    }
}

/* ======================
   RESPONSIVE - SMALL MOBILE (max 480px)
   ====================== */
@media (max-width: 480px) {
    .owl-login-split-container {
        padding: 12px !important;
    }

    .owl-login-form-column {
        padding: 20px 16px !important;
        min-height: calc(100vh - 24px) !important;
    }

    .owl-login-brand-header {
        margin-bottom: 10px !important;
    }

    .owl-login-logo,
    .owl-account-logo {
        width: 180px !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 120px !important;
    }

    .owl-login-logo-sub {
        letter-spacing: 1px !important;
        font-size: 9px !important;
    }

    .owl-login-main-title {
        font-size: 15px !important;
        margin-bottom: 14px !important;
    }

    .owl-login-box-title {
        font-size: 17px !important;
    }

    .owl-form-group {
        margin-bottom: 12px !important;
    }

    .owl-form-meta {
        flex-direction: column !important;
        align-items: flex-end !important;
        gap: 8px !important;
        margin-bottom: 14px !important;
    }

    .owl-submit-btn {
        height: 42px !important;
        font-size: 14px !important;
    }
}

/* ==========================================================================
   LOGGED IN MY ACCOUNT WELCOME CARD
   ========================================================================== */
.owl-account-card-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 60vh !important;
    width: 100% !important;
    padding: 60px 20px !important;
    background-color: #faf8f5 !important;
    box-sizing: border-box !important;
    direction: rtl !important;
}

.owl-account-card {
    background: #ffffff !important;
    border: 1px solid #e8e2d9 !important;
    border-radius: 12px !important;
    padding: 40px 48px !important;
    max-width: 480px !important;
    width: 100% !important;
    text-align: center !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

/* Logo */
.owl-account-logo-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 24px !important;
}

.owl-account-logo {
    width: 299px !important;
    max-width: 100% !important;
    height: 200px !important;
    max-height: 200px !important;
    object-fit: contain !important;
}

.owl-account-brand-sub {
    font-size: 10px !important;
    letter-spacing: 3px !important;
    color: #999999 !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
}

/* Divider */
.owl-account-divider {
    width: 60px !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, #c8a96e, transparent) !important;
    margin: 0 auto 24px !important;
    border-radius: 2px !important;
}

/* Welcome text */
.owl-account-welcome {
    width: 100% !important;
    margin-bottom: 32px !important;
}

.owl-account-welcome-label {
    font-size: 13px !important;
    color: #c8a96e !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
}

.owl-account-username {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin-bottom: 8px !important;
    font-family: var(--font-arabic), sans-serif !important;
}

.owl-account-welcome-sub {
    font-size: 14px !important;
    color: #888888 !important;
    margin: 0 !important;
}

/* Logout button */
.owl-account-logout-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    height: 48px !important;
    background-color: #111111 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-family: var(--font-arabic), sans-serif !important;
}

.owl-account-logout-btn:hover {
    background-color: #c8a96e !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(200, 169, 110, 0.3) !important;
}

.owl-account-logout-btn svg {
    flex-shrink: 0 !important;
}

/* ==========================================================================
   CART PAGE – OWL CUSTOM DESIGN
   ========================================================================== */

/* ---- Page background ---- */
body.woocommerce-cart {
    background-color: #faf7f2 !important;
}

body.woocommerce-cart #page,
body.woocommerce-cart #primary,
body.woocommerce-cart .site-main,
body.woocommerce-cart .woocommerce-main,
body.woocommerce-cart .page-main,
body.woocommerce-cart .page-article,
body.woocommerce-cart .entry-content,
body.woocommerce-cart .page-entry-content,
body.woocommerce-cart .page-content-wrapper {
    background-color: #faf7f2 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.woocommerce-cart .entry-header,
body.woocommerce-cart .entry-title,
body.woocommerce-cart .page-header-title,
body.woocommerce-cart h1.page-title,
body.woocommerce-cart .wp-block-heading.alignwide {
    display: none !important;
}

body.woocommerce-cart .woocommerce {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 40px 80px !important;
    background-color: transparent !important;
    box-sizing: border-box !important;
}

/* ---- Two-column wrapper ---- */
.owl-cart-page {
    display: flex !important;
    flex-direction: row !important;
    gap: 32px !important;
    align-items: flex-start !important;
    direction: rtl !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.owl-cart-items-col {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
}

.owl-cart-summary-col {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
    flex-shrink: 0 !important;
    position: sticky !important;
    top: 24px !important;
}

/* ---- Neutralise default WooCommerce table layout ---- */
.owl-cart-page .woocommerce-cart-form table,
.owl-cart-page .woocommerce-cart-form thead,
.owl-cart-page .woocommerce-cart-form tbody,
.owl-cart-page .woocommerce-cart-form tr,
.owl-cart-page .woocommerce-cart-form td {
    display: block !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* ========================================
   ITEM CARDS
   ======================================== */
/* ========================================
   ITEM CARDS – MATCHING DESIGN MOCKUP
   ======================================== */
.owl-cart-item-card {
    background: linear-gradient(135deg, #f7f1e6 0%, #f7f1e6 65%, #fcfaf7 100%) !important;
    border-radius: 16px !important;
    padding: 16px 20px !important;
    margin-bottom: 16px !important;
    border: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
    direction: rtl !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 16px !important;
}

/* 1. FAR LEFT: Price & Icon Buttons */
.owl-ci-left {
    display: flex !important;
    flex-direction: row-reverse !important;
    align-items: flex-start !important;
    gap: 12px !important;
    order: 3 !important; /* Leftmost in RTL */
    flex-shrink: 0 !important;
}

.owl-ci-price {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    white-space: nowrap !important;
    padding-top: 4px !important;
}

.owl-ci-price .woocommerce-Price-amount,
.owl-ci-price bdi {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111111 !important;
}

.owl-ci-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.owl-ci-icon-box,
.owl-ci-actions .yith-wcwl-add-to-wishlist a,
.owl-ci-actions .yith-wcwl-add-to-wishlist button {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.owl-ci-icon-box:hover,
.owl-ci-actions .yith-wcwl-add-to-wishlist a:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12) !important;
}

.owl-ci-actions .yith-wcwl-add-to-wishlist {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
}

.owl-ci-icon-box svg,
.owl-ci-icon-box i,
.owl-ci-actions .yith-wcwl-add-to-wishlist a svg,
.owl-ci-actions .yith-wcwl-add-to-wishlist a i,
.owl-ci-actions .yith-wcwl-add-to-wishlist i {
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
    line-height: 1 !important;
    float: none !important;
}

/* 2. CENTER: Badge, Title, Delivery Pill, Order Deadline, Trust Badges */
.owl-ci-center {
    flex: 1 !important;
    min-width: 0 !important;
    order: 2 !important;
    text-align: right !important;
    direction: rtl !important;
}

.owl-ci-top-badge {
    margin-bottom: 6px !important;
}

.owl-ci-official-badge {
    background-color: #d7b474 !important;
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 3px 9px !important;
    border-radius: 6px !important;
    letter-spacing: 0.3px !important;
    display: inline-block !important;
}

.owl-ci-name {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #222222 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.5 !important;
}

.owl-ci-name a {
    color: #222222 !important;
    text-decoration: none !important;
}

.owl-ci-name a:hover {
    color: #c8a96e !important;
}

.owl-ci-delivery-pill {
    display: inline-block !important;
    background-color: #f2eadf !important;
    color: #555555 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    margin-bottom: 6px !important;
}

.owl-ci-order-deadline {
    font-size: 11px !important;
    color: #777777 !important;
    margin: 0 0 12px 0 !important;
}

.owl-ci-trust-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px 14px !important;
    justify-content: flex-start !important;
}

.owl-ci-badge {
    font-size: 10px !important;
    color: #666666 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

/* 3. FAR RIGHT: Product Image & Quantity Box */
.owl-ci-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    order: 1 !important; /* Rightmost in RTL */
    flex-shrink: 0 !important;
}

.owl-ci-image {
    width: 100px !important;
}

.owl-ci-image img {
    width: 100px !important;
    height: 120px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    display: block !important;
}

.owl-ci-qty-wrapper {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

.owl-cart-item-card .quantity.owi-qty-container {
    float: none !important;
    display: inline-flex !important;
    align-items: center !important;
    border: none !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08) !important;
    height: 30px !important;
    padding: 0 4px !important;
    width: 100px !important;
    box-sizing: border-box !important;
}

.owl-cart-item-card .quantity.owi-qty-container .owi-qty-btn {
    width: 24px !important;
    height: 28px !important;
    background: transparent !important;
    border: none !important;
    font-size: 14px !important;
    cursor: pointer !important;
    color: #333333 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: color 0.2s !important;
}

.owl-cart-item-card .quantity.owi-qty-container .owi-qty-btn:hover {
    color: #c8a96e !important;
}

.owl-cart-item-card .quantity.owi-qty-container input.qty {
    flex: 1 !important;
    width: 24px !important;
    height: 28px !important;
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    padding: 0 !important;
    -webkit-appearance: none !important;
    -moz-appearance: textfield !important;
    box-shadow: none !important;
}

.owl-cart-item-card .quantity.owi-qty-container input.qty::-webkit-outer-spin-button,
.owl-cart-item-card .quantity.owi-qty-container input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.owl-ci-remove:hover {
    opacity: 0.7 !important;
}

/* Hidden update cart button */
.owl-update-cart-btn {
    display: none !important;
}

/* ========================================
   CART TOTALS (Summary Card)
   ======================================== */
.owl-cart-totals {
    background: linear-gradient(135deg, #f7f1e6 0%, #f7f1e6 65%, #fcfaf7 100%) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 14px !important;
    border: 1px solid #ede9e1 !important;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04) !important;
    direction: rtl !important;
    text-align: right !important;
}

.owl-ct-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px !important;
}

.owl-ct-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin: 0 !important;
}

.owl-ct-count {
    background-color: #c8a96e !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 3px 10px !important;
    border-radius: 4px !important;
    white-space: nowrap !important;
}

.owl-ct-rows {
    display: flex !important;
    flex-direction: column !important;
    gap: 9px !important;
    margin-bottom: 12px !important;
}

.owl-ct-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.owl-ct-label {
    font-size: 13px !important;
    color: #666666 !important;
}

.owl-ct-value {
    font-size: 13px !important;
    color: #111111 !important;
    font-weight: 600 !important;
}

.owl-ct-value .woocommerce-Price-amount,
.owl-ct-value bdi {
    font-size: 13px !important;
    color: #111111 !important;
    font-weight: 600 !important;
}

.owl-ct-discount {
    color: #27ae60 !important;
}

.owl-ct-discount .woocommerce-Price-amount,
.owl-ct-discount bdi {
    color: #27ae60 !important;
}

.owl-ct-divider {
    height: 1px !important;
    background: #ede9e1 !important;
    margin: 12px 0 !important;
}

.owl-ct-total-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px !important;
}

.owl-ct-total-label {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111111 !important;
}

.owl-ct-total-value {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111111 !important;
}

.owl-ct-total-value .woocommerce-Price-amount,
.owl-ct-total-value bdi {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111111 !important;
}

/* Checkout button */
body.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
body.woocommerce-cart .wc-proceed-to-checkout a.button {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    background-color: #c8a96e !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 13px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    box-sizing: border-box !important;
    letter-spacing: 0.5px !important;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
body.woocommerce-cart .wc-proceed-to-checkout a.button:hover {
    background-color: #b8955e !important;
    color: #ffffff !important;
}

/* ========================================
   COUPON CARD
   ======================================== */
.owl-cart-coupon-card {
    background: linear-gradient(135deg, #f7f1e6 0%, #f7f1e6 65%, #fcfaf7 100%) !important;
    border-radius: 12px !important;
    padding: 16px 18px !important;
    border: 1px solid #ede9e1 !important;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04) !important;
    direction: rtl !important;
}

.owl-coupon-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin: 0 0 12px 0 !important;
    text-align: right !important;
}

.owl-coupon-row {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
}

.owl-coupon-input {
    flex: 1 !important;
    height: 36px !important;
    border: 1px solid #ddd9d1 !important;
    border-radius: 6px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    text-align: right !important;
    direction: rtl !important;
    color: #111111 !important;
    background: #faf8f5 !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s !important;
}

.owl-coupon-input:focus {
    border-color: #c8a96e !important;
}

.owl-coupon-btn {
    height: 36px !important;
    padding: 0 14px !important;
    background-color: #f5f0e8 !important;
    color: #111111 !important;
    border: 1px solid #ddd9d1 !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: all 0.25s ease !important;
    flex-shrink: 0 !important;
}

.owl-coupon-btn:hover {
    background-color: #c8a96e !important;
    color: #ffffff !important;
    border-color: #c8a96e !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    body.woocommerce-cart .woocommerce {
        padding: 20px 16px !important;
    }

    .owl-cart-page {
        flex-direction: column !important;
    }

    .owl-cart-summary-col {
        width: 100% !important;
        position: static !important;
    }

    .owl-ci-trust-badges {
        gap: 6px 10px !important;
    }
}

@media (max-width: 480px) {
    body.woocommerce-cart .woocommerce {
        padding: 16px 12px !important;
    }

    .owl-cart-item-card {
        padding: 12px !important;
    }

    .owl-ci-image {
        width: 80px !important;
    }

    .owl-ci-image img {
        width: 80px !important;
        height: 100px !important;
    }

    .owl-ci-official-badge {
        font-size: 9px !important;
        padding: 2px 7px !important;
    }
}

/* ==========================================================================
   GLOBAL CHECKOUT PAGE STYLES – FORCE MOCKUP DESIGN ON ALL CHECKOUT FORMS
   ========================================================================== */

body.woocommerce-checkout {
    background-color: #faf7f2 !important;
}

body.woocommerce-checkout #page,
body.woocommerce-checkout #primary,
body.woocommerce-checkout main,
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .woocommerce-main,
body.woocommerce-checkout .page-main,
body.woocommerce-checkout .page-article,
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .page-entry-content,
body.woocommerce-checkout .page-content-wrapper {
    background-color: #faf7f2 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-checkout .entry-header,
body.woocommerce-checkout .entry-title,
body.woocommerce-checkout .page-header-title,
body.woocommerce-checkout h1.page-title,
body.woocommerce-checkout .wp-block-heading {
    display: none !important;
}

body.woocommerce-checkout .woocommerce {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
    background-color: transparent !important;
    box-sizing: border-box !important;
}

/* Force 2 Columns Layout for Checkout with wrap for notice banners */
body.woocommerce-checkout form.checkout,
body.woocommerce-checkout .owl-checkout-form,
.owl-checkout-form {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 24px !important;
    align-items: flex-start !important;
    direction: rtl !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* WOOCOMMERCE ERROR & NOTICE BANNERS – FULL WIDTH AT TOP */
.woocommerce-NoticeGroup,
.woocommerce-NoticeGroup-checkout,
.woocommerce-notices-wrapper,
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    order: -1 !important;
    box-sizing: border-box !important;
    float: none !important;
    clear: both !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

ul.woocommerce-error,
div.woocommerce-error,
.woocommerce-error {
    background-color: #fdf2f2 !important;
    border: 1px solid #f8b4b4 !important;
    border-radius: 12px !important;
    padding: 16px 24px !important;
    margin-bottom: 20px !important;
    color: #9b1c1c !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    direction: rtl !important;
    text-align: right !important;
    box-shadow: 0 2px 8px rgba(155, 28, 28, 0.04) !important;
}

ul.woocommerce-error li,
.woocommerce-error li {
    margin-bottom: 6px !important;
    list-style: none !important;
    position: relative !important;
    padding-right: 20px !important;
}

ul.woocommerce-error li:last-child,
.woocommerce-error li:last-child {
    margin-bottom: 0 !important;
}

ul.woocommerce-error li::before,
.woocommerce-error li::before {
    content: "•" !important;
    color: #e02424 !important;
    font-weight: bold !important;
    font-size: 16px !important;
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
}

/* Right Column: Address Form Card (64% Width) */
.owl-checkout-form-col {
    width: 64% !important;
    max-width: 64% !important;
    flex: 0 0 64% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

/* Left Column: Order Summary Card (33% Width) */
.owl-checkout-summary-col {
    width: 33% !important;
    max-width: 33% !important;
    flex: 0 0 33% !important;
    min-width: 0 !important;
    position: sticky !important;
    top: 24px !important;
    box-sizing: border-box !important;
}

/* OVERRIDE WOOCOMMERCE DEFAULT #PAYMENT BOX STYLES */
#payment,
.woocommerce-checkout-payment,
.owl-cs-payment-wrap {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

#payment ul.payment_methods,
.woocommerce-checkout-payment ul.payment_methods {
    border: none !important;
    padding: 0 !important;
    margin: 0 0 16px 0 !important;
    background: transparent !important;
    list-style: none !important;
}

#payment div.payment_box,
.woocommerce-checkout-payment div.payment_box {
    background: #f0eae1 !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 12px !important;
    color: #444444 !important;
    margin-top: 8px !important;
}

.woocommerce-NoticeGroup-checkout,
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 8px !important;
    margin-bottom: 16px !important;
    font-size: 12px !important;
}

/* RESET PLACE ORDER BUTTON */
#payment #place_order,
.woocommerce-checkout-payment #place_order,
button#place_order,
.owl-cs-pay-btn {
    width: 100% !important;
    height: 48px !important;
    background-color: #c8a96e !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    float: none !important;
    margin-top: 16px !important;
    transition: background-color 0.2s !important;
}

#payment #place_order:hover,
.woocommerce-checkout-payment #place_order:hover,
button#place_order:hover,
.owl-cs-pay-btn:hover {
    background-color: #b8955e !important;
}

/* Card Container */
.owl-checkout-card {
    background: linear-gradient(135deg, #f6eee4 0%, #f7f1e6 50%, #eee2cc 100%) !important;
    border-radius: 16px !important;
    padding: 32px !important;
    box-sizing: border-box !important;
    direction: rtl !important;
    text-align: right !important;
}

.owl-checkout-card-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 24px !important;
}

.owl-checkout-header-title {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.owl-checkout-header-title h2 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin: 0 !important;
}

.owl-checkout-fields-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}

.owl-form-row-2col {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    width: 100% !important;
}

.owl-form-row-2col .owl-form-field {
    flex: 1 1 0% !important;
    min-width: 0 !important;
}

.owl-form-field label {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #222222 !important;
    margin-bottom: 6px !important;
    display: block !important;
    text-align: right !important;
}

/* ALL INPUTS & SELECTS STYLING */
.owl-input,
.owl-select,
.owl-checkout-page input[type="text"],
.owl-checkout-page input[type="email"],
.owl-checkout-page input[type="tel"],
.owl-checkout-page input[type="number"],
.owl-checkout-page select,
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout select {
    width: 100% !important;
    height: 48px !important;
    background: #ffffff !important;
    border: 1px solid #ffffff !important;
    border-radius: 8px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    color: #111111 !important;
    box-sizing: border-box !important;
    direction: rtl !important;
    text-align: right !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) !important;
    outline: none !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    display: block !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.owl-input:focus,
.owl-select:focus,
body.woocommerce-checkout input:focus,
body.woocommerce-checkout select:focus {
    border-color: #c8a96e !important;
    box-shadow: 0 0 0 2px rgba(200, 169, 110, 0.2) !important;
}

.owl-select,
.owl-checkout-page select,
body.woocommerce-checkout select {
    padding-left: 40px !important;
    padding-right: 16px !important;
    cursor: pointer !important;
}

/* Phone Field Container */
.owl-phone-input-wrap {
    position: relative !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.owl-phone-input-wrap .owl-input,
.owl-phone-input {
    width: 100% !important;
    padding-left: 85px !important;
    padding-right: 16px !important;
    direction: ltr !important;
    text-align: left !important;
}

.owl-phone-prefix {
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 13px !important;
    color: #555555 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    direction: ltr !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

/* Select Dropdown Arrow */
.owl-select-wrap {
    position: relative !important;
    width: 100% !important;
    display: block !important;
}

.owl-select-arrow {
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    pointer-events: none !important;
    color: #333333 !important;
    z-index: 2 !important;
}

/* Checkbox Row (Right Aligned in RTL) */
.owl-form-checkbox-row {
    margin-top: 8px !important;
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
}

.owl-checkbox-label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    font-size: 13px !important;
    color: #222222 !important;
    font-weight: 600 !important;
    direction: rtl !important;
}

.owl-checkbox-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    border-radius: 4px !important;
    accent-color: #c8a96e !important;
    cursor: pointer !important;
    order: unset !important;
    margin: 0 !important;
}

.owl-checkbox-label span {
    order: unset !important;
}

/* Save Address Button Row (Left Aligned in RTL) */
.owl-form-save-row {
    display: flex !important;
    justify-content: flex-end !important;
    width: 100% !important;
    margin-top: 10px !important;
}

.owl-save-addr-btn {
    background-color: #c8a96e !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px 36px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background-color 0.2s !important;
    margin: 0 !important;
}

.owl-save-addr-btn:hover {
    background-color: #b8955e !important;
}

/* ==========================================================================
   ORDER SUMMARY CARD – MATCHING MOCKUP EXACTLY
   ========================================================================== */
.owl-checkout-summary-card {
    background: linear-gradient(135deg, #f7f1e6 0%, #ffffff 100%) !important;
    border-radius: 16px !important;
    padding: 24px 28px !important;
    border: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02) !important;
    direction: rtl !important;
    text-align: right !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Header Row: Title & Badge */
.owl-cs-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 22px !important;
    width: 100% !important;
}

.owl-cs-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin: 0 !important;
}

.owl-cs-badge {
    background-color: #ffffff !important;
    color: #555555 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 4px 12px !important;
    border-radius: 6px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

/* Data Rows: Subtotal & Shipping */
.owl-cs-rows {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 18px !important;
    width: 100% !important;
}

.owl-cs-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 13px !important;
    width: 100% !important;
}

.owl-cs-label {
    color: #777777 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.owl-cs-value {
    font-weight: 700 !important;
    color: #111111 !important;
    font-size: 14px !important;
}

.owl-cs-discount {
    color: #27ae60 !important;
    font-weight: 600 !important;
    font-size: 13px !important;
}

/* Divider Line */
.owl-cs-divider {
    height: 1px !important;
    background-color: #ede6dd !important;
    margin: 18px 0 !important;
    width: 100% !important;
}

/* Grand Total Row */
.owl-cs-total-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 22px !important;
    width: 100% !important;
}

.owl-cs-total-label {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #111111 !important;
}

.owl-cs-total-value {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #111111 !important;
}

/* Gold Submit / Pay Button */
#payment #place_order,
.woocommerce-checkout-payment #place_order,
button#place_order,
.owl-cs-pay-btn {
    width: 100% !important;
    height: 48px !important;
    background-color: #c8a96e !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    float: none !important;
    margin-top: 10px !important;
    box-shadow: 0 2px 6px rgba(200, 169, 110, 0.25) !important;
    transition: background-color 0.2s, transform 0.1s !important;
}

#payment #place_order:hover,
.woocommerce-checkout-payment #place_order:hover,
button#place_order:hover,
.owl-cs-pay-btn:hover {
    background-color: #b8955e !important;
}

/* Hide WooCommerce Privacy Policy Text & Checkout Coupon Notice */
.woocommerce-privacy-policy-text,
.woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text,
.woocommerce-checkout-privacy-policy-text,
.woocommerce-form-coupon-toggle,
.woocommerce-form-coupon,
div.woocommerce-form-coupon-toggle {
    display: none !important;
}

/* ==========================================================================
   SEPARATE PRODUCTS CARD BELOW ADDRESS FORM CARD
   ========================================================================== */
.owl-checkout-products-card {
    margin-top: 24px !important;
    background: linear-gradient(135deg, #f7f1e6 0%, #f7f1e6 65%, #fcfaf7 100%) !important;
    border-radius: 16px !important;
    padding: 24px 28px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02) !important;
}

.owl-co-item-card {
    background: transparent !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid #ede6dd !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
}

.owl-co-item-card:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.owl-co-item-header {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    direction: rtl !important;
}

.owl-co-item-shipment {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #111111 !important;
}

.owl-co-item-qty-badge {
    background-color: #ffffff !important;
    color: #555555 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 2px 10px !important;
    border-radius: 4px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

.owl-co-item-body {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    direction: rtl !important;
}

.owl-co-item-thumb {
    width: 64px !important;
    height: 64px !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.owl-co-item-thumb img,
.owl-co-item-img {
    width: 64px !important;
    height: 64px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
}

.owl-co-item-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    text-align: right !important;
}

.owl-co-item-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.owl-co-item-price {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #111111 !important;
}

/* ==========================================================================
   CHECKOUT PAGE MOBILE & TABLET RESPONSIVENESS
   ========================================================================== */
@media (max-width: 991px) {
    body.woocommerce-checkout .woocommerce {
        padding: 24px 16px !important;
    }

    body.woocommerce-checkout form.checkout,
    body.woocommerce-checkout .owl-checkout-form,
    .owl-checkout-form {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .owl-checkout-form-col,
    .owl-checkout-summary-col {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        position: static !important;
    }

    .owl-checkout-summary-col {
        order: 2 !important;
    }

    .owl-checkout-card {
        padding: 20px 16px !important;
    }

    .owl-checkout-summary-card,
    .owl-checkout-products-card {
        padding: 20px 16px !important;
    }

    .owl-form-row-2col {
        flex-direction: column !important;
        gap: 14px !important;
    }
}

@media (max-width: 480px) {
    body.woocommerce-checkout .woocommerce {
        padding: 16px 10px !important;
    }

    .owl-checkout-card,
    .owl-checkout-summary-card,
    .owl-checkout-products-card {
        padding: 16px 14px !important;
        border-radius: 12px !important;
    }

    .owl-cs-title,
    .owl-checkout-header-title h2 {
        font-size: 15px !important;
    }

    .owl-cs-row {
        font-size: 12px !important;
    }

    .owl-save-addr-btn {
        width: 100% !important;
        text-align: center !important;
    }
}

/* ==========================================================================
   WISHLIST PAGE – OWL THEME LUXURY DESIGN SYSTEM
   ========================================================================== */
/* Hide default page header & default YITH wishlist titles */
body.page-template-default:has(.owl-wishlist-page-wrapper) .entry-header,
body.page-template-default:has(.owl-wishlist-page-wrapper) .entry-title,
body.page-template-default:has(.owl-wishlist-page-wrapper) h1.entry-title,
body.page-template-default:has(.owl-wishlist-page-wrapper) .page-header-title,
body.page-template-default:has(.owl-wishlist-page-wrapper) h1.page-title,
body.page-template-default:has(.owl-wishlist-page-wrapper) .wp-block-post-title,
body.page-template-default:has(.owl-wishlist-page-wrapper) .wp-block-heading,
body[class*="wishlist"] .entry-header,
body[class*="wishlist"] .entry-title,
body[class*="wishlist"] h1.entry-title,
body[class*="wishlist"] h1.page-title,
body[class*="wishlist"] .page-header-title,
body[class*="wishlist"] .wp-block-post-title,
body[class*="wishlist"] .wp-block-heading,
.wishlist-title,
.yith-wcwl-wishlist-title,
.wishlist-title h2,
.yith-wcwl-form-main-title,
.yith-wcwl-wishlist-header h2,
.yith-wcwl-share,
.yith-wcwl-share-title,
.yith-wcwl-wishlist-share,
div.yith-wcwl-share,
ul.yith-wcwl-share-title,
.woocommerce-notice,
.woocommerce-message,
.woocommerce-error,
.woocommerce-info,
.woocommerce-NoticeGroup,
#yith-wcwl-popup-message,
.yith-wcwl-popup-message,
.yith-wcwl-notice {
    display: none !important;
}

/* Break out of page container constraints for Wishlist page */
body:has(.owl-wishlist-page-wrapper) #page,
body:has(.owl-wishlist-page-wrapper) #content,
body:has(.owl-wishlist-page-wrapper) #primary,
body:has(.owl-wishlist-page-wrapper) main,
body:has(.owl-wishlist-page-wrapper) .site-main,
body:has(.owl-wishlist-page-wrapper) .page-main,
body:has(.owl-wishlist-page-wrapper) .page-content-wrapper,
body:has(.owl-wishlist-page-wrapper) .page-article,
body:has(.owl-wishlist-page-wrapper) .page-entry-content,
body[class*="wishlist"] #page,
body[class*="wishlist"] #content,
body[class*="wishlist"] #primary,
body[class*="wishlist"] main,
body[class*="wishlist"] .site-main,
body[class*="wishlist"] .page-main,
body[class*="wishlist"] .page-content-wrapper,
body[class*="wishlist"] .page-article,
body[class*="wishlist"] .page-entry-content {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Page Outer Container - Full 100% Width with exact 40px screen padding */
.owl-wishlist-page-wrapper {
    background-color: #faf7f2 !important;
    padding: 40px 40px 100px 40px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    direction: rtl !important;
    box-sizing: border-box !important;
}

/* Header Banner: Title Right, Gold Button Left */
.owl-wishlist-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 36px !important;
    width: 100% !important;
    direction: rtl !important;
}

.owl-wishlist-title {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #111111 !important;
    margin: 0 !important;
    display: block !important;
}

.owl-wishlist-header-btn {
    background-color: #c8a96e !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background-color 0.2s, transform 0.1s !important;
}

.owl-wishlist-header-btn:hover {
    background-color: #b8955e !important;
    color: #ffffff !important;
}

/* 5-Column Grid (Full Width 5 Cards per Row) */
.owl-wishlist-grid-container {
    width: 100% !important;
}

.owl-wishlist-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 32px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Product Card - Height 482px */
.owl-wishlist-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 482px !important;
    background: transparent !important;
    box-sizing: border-box !important;
}

/* 1. Image Wrapper - Fill height (~395px) */
.owl-wishlist-card-img-wrap {
    width: 100% !important;
    height: 395px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    margin-bottom: 10px !important;
    background-color: #f2ede4 !important;
    flex-shrink: 0 !important;
}

.owl-wishlist-card-img-wrap a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.owl-wishlist-card-img {
    width: 100% !important;
    height: 395px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.owl-wishlist-card:hover .owl-wishlist-card-img {
    transform: scale(1.03) !important;
}

/* 2. Product Title */
.owl-wishlist-card-title {
    font-size: 13px !important;
    font-weight: 600 !important;
    margin: 0 0 6px 0 !important;
    line-height: 1.4 !important;
    text-align: right !important;
    height: 36px !important;
    overflow: hidden !important;
}

.owl-wishlist-card-title a {
    color: #333333 !important;
    text-decoration: none !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    transition: color 0.2s !important;
}

.owl-wishlist-card-title a:hover {
    color: #c8a96e !important;
}

/* 3. Footer Row: Actions Left, Price Right */
.owl-wishlist-card-footer {
    display: flex !important;
    flex-direction: row-reverse !important; /* Price Right, Actions Left */
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: auto !important;
    width: 100% !important;
    height: 30px !important;
}

.owl-wishlist-card-price {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #111111 !important;
    text-align: right !important;
}

.owl-wishlist-card-price .woocommerce-Price-amount,
.owl-wishlist-card-price bdi {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #111111 !important;
}

/* Action Icons Container */
.owl-wishlist-card-actions {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.owl-wl-action-btn {
    color: #444444 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: color 0.2s, transform 0.1s !important;
}

.owl-wl-action-btn.add-to-cart-btn:hover {
    color: #c8a96e !important;
    transform: scale(1.1) !important;
}

.owl-wl-action-btn.remove-btn {
    color: #c8a96e !important;
}

.owl-wl-action-btn.remove-btn:hover {
    color: #e74c3c !important;
    transform: scale(1.1) !important;
}

/* Empty Wishlist Card */
.owl-wishlist-empty-card {
    width: 100% !important;
    text-align: center !important;
    padding: 60px 24px !important;
    background: linear-gradient(135deg, #f7f1e6 0%, #f7f1e6 65%, #fcfaf7 100%) !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
    .owl-wishlist-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 991px) {
    .owl-wishlist-page-wrapper {
        padding: 30px 20px 60px 20px !important;
    }

    .owl-wishlist-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px 16px !important;
    }

    .owl-wishlist-card-img-wrap,
    .owl-wishlist-card-img {
        height: 260px !important;
    }
}

@media (max-width: 640px) {
    .owl-wishlist-page-wrapper {
        padding: 24px 14px 50px 14px !important;
    }

    .owl-wishlist-title {
        font-size: 18px !important;
    }

    .owl-wishlist-header-btn {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }

    .owl-wishlist-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 12px !important;
    }

    .owl-wishlist-card-img-wrap,
    .owl-wishlist-card-img {
        height: 210px !important;
    }
}

/* ==========================================================================
   OWL EMPTY STATE MODAL POPUP
   ========================================================================== */
.owl-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(5px) !important;
    z-index: 999999 !important;
    display: none;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    opacity: 0;
    pointer-events: none !important;
    transition: opacity 0.25s ease !important;
}

.owl-modal-overlay.active {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.owl-modal-card {
    background-color: #faf7f2 !important;
    border-radius: 12px !important;
    padding: 20px 24px 36px 24px !important;
    max-width: 380px !important;
    width: 100% !important;
    text-align: center !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    position: relative !important;
    transform: scale(0.92) translateY(8px);
    transition: transform 0.25s ease !important;
    direction: rtl !important;
    box-sizing: border-box !important;
}

.owl-modal-overlay.active .owl-modal-card {
    transform: scale(1) translateY(0) !important;
}

.owl-modal-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    margin-bottom: 40px !important;
    direction: rtl !important;
}

.owl-modal-header-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #111111 !important;
    margin: 0 !important;
}

.owl-modal-close-icon {
    background: transparent !important;
    border: none !important;
    padding: 4px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #111111 !important;
    transition: opacity 0.2s !important;
}

.owl-modal-close-icon:hover {
    opacity: 0.6 !important;
}

.owl-modal-body {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 10px 0 20px 0 !important;
}

.owl-modal-gold-icon {
    margin-bottom: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.owl-modal-gold-icon svg {
    width: 72px !important;
    height: 72px !important;
    stroke: #c8a96e !important;
}

.owl-modal-subtitle {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #777777 !important;
    margin: 0 !important;
}

/* ==========================================================================
   MINI CART POPUP HAS ITEMS (MATCHING USER SCREENSHOT EXACTLY)
   ========================================================================== */
.owl-mini-cart-popup-inner {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.owl-mini-cart-items-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    max-height: 380px !important;
    overflow-y: auto !important;
    margin-bottom: 24px !important;
    padding-right: 4px !important;
    direction: rtl !important;
}

.owl-mini-cart-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    width: 100% !important;
    direction: rtl !important;
    box-sizing: border-box !important;
}

/* Action Column (Far Left in RTL) */
.owl-mini-cart-actions-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    align-items: center !important;
}

.owl-mini-cart-action-btn {
    background: transparent !important;
    border: none !important;
    font-size: 15px !important;
    color: #aaaaaa !important;
    cursor: pointer !important;
    padding: 0 !important;
    line-height: 1 !important;
    transition: color 0.2s !important;
}

.owl-mini-cart-action-btn:hover {
    color: #111111 !important;
}

.owl-mini-cart-action-btn .fa-trash-can,
.owl-qty-btn .fa-trash-can,
.text-danger {
    color: #e74c3c !important;
}

/* Info Column (Middle in RTL) */
.owl-mini-cart-info-col {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    text-align: right !important;
    direction: rtl !important;
}

.owl-mini-cart-price {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #111111 !important;
}

.owl-mini-cart-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #333333 !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Image & Qty Pill Column (Far Right in RTL) */
.owl-mini-cart-img-col {
    position: relative !important;
    width: 84px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 8px !important;
}

.owl-mini-cart-img-link img {
    width: 84px !important;
    height: 84px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    display: block !important;
}

/* Qty Pill overlay on image bottom */
.owl-mini-cart-qty-pill {
    position: absolute !important;
    bottom: -10px !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 3px 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    width: 68px !important;
    box-sizing: border-box !important;
}

.owl-qty-btn {
    background: transparent !important;
    border: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #333333 !important;
    cursor: pointer !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.owl-qty-num {
    font-size: 12px !important;
    font-weight: 800 !important;
    color: #111111 !important;
}

/* Footer Buttons */
.owl-mini-cart-footer {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: auto !important;
}

.owl-mini-cart-btn {
    width: 100% !important;
    padding: 13px 20px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    display: block !important;
    transition: all 0.2s ease !important;
}

.owl-mini-cart-btn.btn-view-cart {
    background-color: #faf7f2 !important;
    color: #111111 !important;
    border: 1px solid #333333 !important;
}

.owl-mini-cart-btn.btn-view-cart:hover {
    background-color: #eee9e0 !important;
}

.owl-mini-cart-btn.btn-checkout {
    background-color: #c8a96e !important;
    color: #ffffff !important;
    border: none !important;
}

.owl-mini-cart-btn.btn-checkout:hover {
    background-color: #b8955e !important;
    color: #ffffff !important;
}

/* ==========================================================================
   SINGLE PRODUCT WISHLIST BUTTON CLEANUP
   ========================================================================== */

/* Main Product Summary Page Wishlist Button ONLY */
.single-product .summary .yith-wcwl-add-to-wishlist,
.single-product .entry-summary .yith-wcwl-add-to-wishlist,
.single-product-summary .yith-wcwl-add-to-wishlist {
    margin-top: 14px !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.single-product .summary .yith-wcwl-add-button,
.single-product .summary .yith-wcwl-wishlistaddedbrowse,
.single-product .summary .yith-wcwl-wishlistexistsbrowse,
.single-product .entry-summary .yith-wcwl-add-button,
.single-product .entry-summary .yith-wcwl-wishlistaddedbrowse,
.single-product .entry-summary .yith-wcwl-wishlistexistsbrowse {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.single-product .summary .yith-wcwl-add-button a,
.single-product .summary .yith-wcwl-wishlistaddedbrowse a,
.single-product .summary .yith-wcwl-wishlistexistsbrowse a,
.single-product .entry-summary .yith-wcwl-add-button a,
.single-product .entry-summary .yith-wcwl-wishlistaddedbrowse a,
.single-product .entry-summary .yith-wcwl-wishlistexistsbrowse a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 48px !important;
    background: #ffffff !important;
    color: #111111 !important;
    border: 1px solid #111111 !important;
    border-radius: 10px !important;
    padding: 12px 24px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
}

/* RESET Wishlist Icon inside Product Cards (Loops, OWL selections, Related Products) */
.product-card-actions .yith-wcwl-add-to-wishlist,
.product-card-wrapper .yith-wcwl-add-to-wishlist,
.product-card-meta .yith-wcwl-add-to-wishlist,
.related.products .product-card-actions .yith-wcwl-add-to-wishlist,
.up-sells.products .product-card-actions .yith-wcwl-add-to-wishlist {
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.product-card-actions .yith-wcwl-add-to-wishlist div,
.product-card-wrapper .yith-wcwl-add-to-wishlist div {
    display: inline-flex !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.product-card-actions .yith-wcwl-add-to-wishlist a,
.product-card-wrapper .yith-wcwl-add-to-wishlist a,
.product-card-meta .yith-wcwl-add-to-wishlist a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-height: auto !important;
    height: auto !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 16px !important;
    color: #444444 !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.product-card-actions .yith-wcwl-add-to-wishlist a:hover,
.product-card-actions .yith-wcwl-add-to-wishlist a:hover i {
    color: #c8a96e !important;
}

/* Hide YITH feedback text messages and extra English labels */
.yith-wcwl-wishlistaddedbrowse .feedback,
.yith-wcwl-wishlistexistsbrowse .feedback,
.yith-wcwl-add-to-wishlist .feedback,
.yith-wcwl-wishlistaddedbrowse .separator,
.yith-wcwl-wishlistexistsbrowse .separator,
.yith-wcwl-add-to-wishlist span.feedback {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    opacity: 0 !important;
}

/* Prevent duplicate button display */
.yith-wcwl-add-to-wishlist:has(.yith-wcwl-wishlistaddedbrowse[style*="block"]) .yith-wcwl-add-button,
.yith-wcwl-add-to-wishlist:has(.yith-wcwl-wishlistexistsbrowse[style*="block"]) .yith-wcwl-add-button,
.yith-wcwl-add-to-wishlist.exists .yith-wcwl-add-button,
.yith-wcwl-add-to-wishlist.added .yith-wcwl-add-button {
    display: none !important;
}

/* ==========================================
   CUSTOMER REVIEWS SECTION (SINGLE PRODUCT PAGE)
   ========================================== */
.single-product .owl-customer-reviews-section,
.owl-customer-reviews-section {
    grid-column: span 2 !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 50px auto 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    direction: rtl !important;
    clear: both !important;
    float: none !important;
}

.owl-reviews-container {
    background-color: #FAF6F0;
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    box-sizing: border-box;
}

.owl-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.owl-reviews-title {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin: 0;
    font-family: var(--font-arabic, 'Cairo', 'Tajawal', sans-serif);
}

.owl-reviews-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.owl-reviews-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: #C7A158;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
    outline: none;
}

.owl-reviews-nav-btn:hover {
    background-color: #b38c44;
}

.owl-reviews-nav-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Swiper Container & Slide */
.owl-reviews-swiper {
    width: 100%;
    overflow: hidden;
    padding: 4px 0 10px;
}

.owl-review-slide {
    height: auto;
    display: flex;
}

/* Card layout */
.owl-review-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.owl-review-card:hover {
    transform: translateY(-2px);
}

/* Card Top Bar */
.owl-review-card-top {
    background-color: #F2EAE1;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    direction: rtl;
    border-radius: 14px 14px 0 0;
}

.owl-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.owl-review-name {
    font-size: 15px;
    font-weight: 700;
    color: #222222;
    font-family: var(--font-arabic, 'Cairo', 'Tajawal', sans-serif);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Rating Pill */
.owl-review-rating-pill {
    background-color: #FFFFFF;
    border-radius: 50px;
    padding: 4px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: -13px auto 0;
    position: relative;
    z-index: 2;
    color: #F3B938;
    font-size: 12px;
    width: fit-content;
}

/* Card Bottom Quote */
.owl-review-card-bottom {
    background-color: #FFFFFF;
    padding: 22px 16px 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 0 0 14px 14px;
}

.owl-review-quote {
    font-size: 13.5px;
    line-height: 1.6;
    color: #333333;
    font-weight: 500;
    margin: 0;
    font-family: var(--font-arabic, 'Cairo', 'Tajawal', sans-serif);
}

@media (max-width: 768px) {
    .owl-customer-reviews-section {
        padding: 0 15px;
        margin: 35px auto 0;
    }

    .owl-reviews-container {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .owl-reviews-title {
        font-size: 20px;
    }

    .owl-reviews-nav-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .owl-review-card-top {
        padding: 12px 14px;
    }

    .owl-review-avatar {
        width: 40px;
        height: 40px;
    }

    .owl-review-name {
        font-size: 14px;
    }

    .owl-review-quote {
        font-size: 13px;
    }
}




















