:root {
    --primary-nude: #D4A08D;
    --secondary-nude: #BC8C7D;
    --dark-nude: #8B6B5E;
    --light-nude: #E8D1C5;
    --cream-nude: #F5E6DD;
    --white: #FFFFFF;
    --text-dark: #000000;
    --text-light: #333333;
}

/* Header */
.page-header {
    position: relative;
    width: 100%;
    background: var(--white);
    z-index: 1030;
}

/* Header Top */
.header-top {
    background: var(--dark-nude);
    padding: 8px 0;
    font-size: 13px;
    position: relative;
    z-index: 1031;
}

.contact-info {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.contact-info a,
.contact-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--cream-nude);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 10px;
    font-size: 12px;
}

.separator {
    color: rgba(255, 255, 255, 0.2);
    margin: 0;
    font-size: 16px;
}

.top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    white-space: nowrap;
}

.top-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--cream-nude);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 12px;
}

.header-top i {
    color: var(--light-nude);
    font-size: 12px;
}

.header-top a:hover {
    color: var(--light-nude);
}

/* Header Bottom */
.header-bottom {
    background: var(--white);
    padding: 20px 0;
    position: relative;
    z-index: 1030;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, padding, background;
}

.header-bottom.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0.5;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 70px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: height, gap;
}

.sticky .header-wrapper {
    height: 50px;
    gap: 30px;
}

/* Logo */
.logo-wrapper {
    flex-shrink: 0;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    box-shadow: none;
    will-change: padding;
}

.sticky .logo-wrapper {
    padding: 8px 12px;
    border-radius: 8px;
    background: transparent;
}

.multishop-logo img {
    max-width: 100%;
    height: auto;
    width: 140px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: width;
}

.sticky .multishop-logo img {
    width: 120px;
}

@media (max-width: 991px) {
    .header-bottom {
        padding: 15px 0;
    }
    
    .sticky .header-bottom {
        padding: 8px 0;
    }
    
    .header-wrapper {
        height: 60px;
        gap: 20px;
    }
    
    .sticky .header-wrapper {
        height: 45px;
        gap: 15px;
    }
    
    .multishop-logo img {
        width: 120px;
    }
    
    .sticky .multishop-logo img {
        width: 100px;
    }
}

@media (max-width: 576px) {
    .header-bottom {
        padding: 12px 0;
    }
    
    .sticky .header-bottom {
        padding: 6px 0;
    }
    
    .header-wrapper {
        height: 50px;
        gap: 15px;
    }
    
    .sticky .header-wrapper {
        height: 40px;
        gap: 10px;
    }
    
    .multishop-logo img {
        width: 100px;
    }
    
    .sticky .multishop-logo img {
        width: 90px;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--cream-nude);
}

.logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.sticky .logo-img {
    max-height: 40px;
}

.logo-icon i {
    font-size: 28px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sticky .logo-icon i {
    font-size: 20px;
}

.logo:hover .logo-icon i {
    transform: rotate(-15deg) scale(1.1);
    color: var(--white);
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.sticky .logo-text {
    font-size: 16px;
}

.logo:hover {
    color: var(--primary-nude);
}

/* Main Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid rgba(230, 190, 174, 0.15);
    background: rgba(230, 190, 174, 0.05);
}

.nav-link i {
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-link .dropdown-icon {
    font-size: 12px;
    margin-left: 2px;
    opacity: 0.6;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-nude);
    border-color: var(--primary-nude);
    color: var(--white);
    box-shadow: 0 3px 15px rgba(230, 190, 174, 0.2);
}

.nav-link:hover i,
.nav-link.active i {
    color: var(--white);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    padding: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none;
    transition: all 0.3s ease;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 25px;
    width: 10px;
    height: 10px;
    background: var(--white);
    transform: rotate(45deg);
    border-radius: 2px;
    z-index: -1;
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.04);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.dropdown-item:hover {
    background: var(--cream-nude);
    color: var(--text-dark);
    transform: translateX(5px);
}

.dropdown-divider {
    margin: 8px 0;
    border-color: var(--cream-nude);
    opacity: 0.5;
}

/* Account Dropdown Specific */
.account-wrapper .dropdown-menu {
    min-width: 240px;
    padding: 12px;
}

.account-wrapper .dropdown-item i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-nude);
}

/* RTL Support */
[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
}

[dir="rtl"] .dropdown-menu::before {
    left: auto;
    right: 25px;
}

[dir="rtl"] .dropdown-item {
    text-align: right;
}

[dir="rtl"] .dropdown-item:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .account-wrapper .dropdown-item i {
    margin-right: 0;
    margin-left: 10px;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .mobile-dropdown-menu {
        background: var(--cream-nude);
        border-radius: 8px;
        margin: 5px 15px;
        padding: 8px;
    }

    .mobile-dropdown-menu .dropdown-item {
        padding: 10px 15px;
        font-size: 14px;
        border-radius: 6px;
        color: var(--text-dark);
    }

    .mobile-dropdown-menu .dropdown-item:hover {
        background: var(--white);
        transform: translateX(5px);
    }

    [dir="rtl"] .mobile-dropdown-menu .dropdown-item:hover {
        transform: translateX(-5px);
    }
}

/* RTL Support */
[dir="rtl"] .nav-link .dropdown-icon {
    margin-left: 0;
    margin-right: 2px;
}

[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
}

[dir="rtl"] .dropdown-item:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .cart-count {
    right: auto;
    left: -8px;
}

/* Sticky Menu Adjustments */
.sticky .nav-link {
    padding: 6px 14px;
    font-size: 14px;
}

.sticky .nav-link i {
    font-size: 14px;
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .nav-list {
        gap: 15px;
    }

    .nav-link {
        padding: 6px 12px;
        font-size: 14px;
    }

    .nav-link i {
        font-size: 14px;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-trigger,
.cart-trigger {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-nude);
    border: none;
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sticky .search-trigger,
.sticky .cart-trigger {
    width: 35px;
    height: 35px;
    font-size: 15px;
    border-radius: 8px;
}

.search-trigger:hover,
.cart-trigger:hover {
    background: var(--primary-nude);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 190, 174, 0.3);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-nude);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 2px solid var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .header-bottom {
        padding: 10px 0;
    }

    .header-wrapper {
        height: 50px;
        gap: 15px;
    }

    .logo-wrapper {
        padding: 6px 12px;
        border-radius: 8px;
    }

    .logo-icon i {
        font-size: 20px;
    }

    .logo-text {
        font-size: 16px;
    }

    .header-actions {
        gap: 12px;
    }

    .search-trigger,
    .cart-trigger,
    .account-trigger {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .header-bottom {
        padding: 8px 0;
    }

    .header-wrapper {
        height: 45px;
        gap: 10px;
    }

    .logo-wrapper {
        padding: 4px 8px;
    }

    .logo-icon i {
        font-size: 18px;
    }

    .logo-text {
        font-size: 14px;
    }

    .header-actions {
        gap: 8px;
    }

    .search-trigger,
    .cart-trigger,
    .account-trigger {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .cart-count {
        min-width: 16px;
        height: 16px;
        font-size: 9px;
        top: -5px;
        right: -5px;
    }
}

/* RTL Support */
[dir="rtl"] .logo.logo-rtl {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-link .dropdown-icon {
    margin-left: 0;
    margin-right: 4px;
}

[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
}

[dir="rtl"] .dropdown-item:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .cart-count {
    right: auto;
    left: -8px;
}

/* Body Padding for Sticky Header */
body.has-sticky-header {
    padding-top: 90px;
}

@media (max-width: 991px) {
    body.has-sticky-header {
        padding-top: 75px;
    }
}

/* Cart Trigger and Count */
.cart {
    position: relative;
}

.cart-trigger {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-nude);
    border: none;
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-nude);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 2px solid var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.sticky .cart-trigger {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 10px;
}

.cart-trigger:hover {
    background: var(--secondary-nude);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 107, 67, 0.3);
    text-decoration: none;
}

.cart-trigger:focus {
    outline: none;
    text-decoration: none;
    color: inherit;
}

/* RTL Support for Cart Count */
[dir="rtl"] .cart-count {
    right: auto;
    left: -8px;
}

/* Mobile Styles for Cart */
@media (max-width: 991px) {
    .cart-trigger {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .cart-count {
        top: -6px;
        right: -6px;
        min-width: 16px;
        height: 16px;
        font-size: 9px;
    }
    
    [dir="rtl"] .cart-count {
        right: auto;
        left: -6px;
    }
}

/* Search Styles */
.search-wrapper {
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
}

.search-input {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    padding: 0;
    border: none;
    background: var(--cream-nude);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.search-input.active {
    width: 300px;
    padding: 12px 48px 12px 20px;
    opacity: 1;
    visibility: visible;
    margin-right: 10px;
}

.search-trigger {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-nude);
    border: none;
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.search-trigger:hover,
.search-trigger.active {
    background: var(--secondary-nude);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 107, 67, 0.3);
}

.search-input:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* RTL Support for Search */
[dir="rtl"] .search-input {
    right: auto;
    left: 100%;
}

[dir="rtl"] .search-input.active {
    margin-right: 0;
    margin-left: 10px;
}

/* Mobile Styles for Search */
@media (max-width: 991px) {
    .search-input.active {
        width: 200px;
        padding: 10px 40px 10px 15px;
    }

    .search-trigger {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* Sticky Header Search Adjustments */
.sticky .search-trigger {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 10px;
}

.sticky .search-input.active {
    padding: 10px 40px 10px 15px;
}

/* Language Switcher */
.language-switch {
    margin-left: 10px;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border: 1px solid var(--primary-nude);
    border-radius: 20px;
    color: var(--cream-nude);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--primary-nude);
    color: var(--white);
    border-color: var(--primary-nude);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(212, 160, 141, 0.3);
    text-decoration: none;
}

/* RTL Support for Language Switcher */
[dir="rtl"] .language-switch {
    margin-left: 0;
    margin-right: 10px;
}

/* Mobile Styles for Language Switcher */
@media (max-width: 991px) {
    .lang-btn {
        padding: 3px 10px;
        font-size: 11px;
    }
}

/* Mobile and Responsive Styles */
@media (max-width: 1200px) {
    .header-wrapper {
        gap: 30px;
    }

    .nav-list {
        gap: 25px;
    }

    .search-input.active {
        width: 250px;
    }
}

@media (max-width: 991px) {
    /* Header Top Responsive */
    .header-top {
        padding: 5px 0;
        font-size: 11px;
    }

    .contact-info a,
    .contact-info span,
    .top-right a {
        font-size: 11px;
        padding: 0 5px;
    }

    .separator {
        font-size: 14px;
        margin: 0 2px;
    }

    /* Header Bottom Responsive */
    .header-bottom {
        padding: 12px 0;
    }

    .header-wrapper {
        height: 60px;
        gap: 15px;
    }

    /* Logo Responsive */
    .logo-wrapper {
        padding: 8px 12px;
        border-radius: 8px;
    }

    .logo-icon i {
        font-size: 22px;
    }

    .logo-text {
        font-size: 18px;
    }

    /* Navigation Responsive */
    .nav-list {
        gap: 15px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }

    .nav-link i {
        font-size: 14px;
    }

    /* Search and Cart Responsive */
    .header-actions {
        gap: 15px;
    }

    .search-trigger,
    .cart-trigger {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .search-input.active {
        width: 200px;
        padding: 10px 40px 10px 15px;
    }
}

@media (max-width: 768px) {
    /* Header Top Responsive */
    .header-top .row {
        flex-direction: column;
        gap: 5px;
    }

    .contact-info,
    .top-right {
        justify-content: center;
    }

    /* Header Bottom Responsive */
    .header-wrapper {
        height: auto;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 10px 0;
    }

    .logo-wrapper {
        order: 1;
        flex: 0 0 auto;
    }

    .header-actions {
        order: 2;
        flex: 0 0 auto;
    }

    .main-nav {
        order: 3;
        flex: 0 0 100%;
        margin-top: 10px;
    }

    .nav-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-link {
        padding: 6px 10px;
        font-size: 13px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 5px;
        box-shadow: none;
        background: var(--cream-nude);
    }
}

@media (max-width: 576px) {
    /* Header Top Responsive */
    .contact-info,
    .top-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .separator {
        display: none;
    }

    .contact-info a,
    .contact-info span,
    .top-right a {
        padding: 2px 8px;
        font-size: 10px;
    }

    /* Header Bottom Responsive */
    .logo-text {
        font-size: 16px;
    }

    .logo-icon i {
        font-size: 20px;
    }

    .search-input.active {
        width: 160px;
        padding: 8px 35px 8px 12px;
        font-size: 12px;
    }

    .nav-link {
        font-size: 12px;
        padding: 5px 8px;
    }

    .nav-link i {
        font-size: 12px;
    }

    .dropdown-item {
        font-size: 12px;
        padding: 8px 12px;
    }

    .search-trigger,
    .cart-trigger {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .cart-count {
        min-width: 16px;
        height: 16px;
        font-size: 9px;
        top: -5px;
        right: -5px;
    }
}

/* RTL Responsive Adjustments */
@media (max-width: 768px) {
    [dir="rtl"] .header-wrapper {
        flex-direction: row-reverse;
    }

    [dir="rtl"] .nav-list {
        padding-right: 0;
    }

    [dir="rtl"] .search-input.active {
        padding: 10px 15px 10px 40px;
    }
}

/* Sticky Header Responsive */
@media (max-width: 991px) {
    body.has-sticky-header {
        padding-top: 60px;
    }

    .sticky .header-wrapper {
        height: auto;
        padding: 8px 0;
    }

    .sticky .logo-wrapper {
        padding: 6px 10px;
    }

    .sticky .search-trigger,
    .sticky .cart-trigger {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-modal.active {
    visibility: visible;
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

/* LTR Layout */
[dir="ltr"] .cart-modal-content {
    position: fixed;
    top: 0;
    right: -380px;
    width: 380px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2002;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

[dir="ltr"] .cart-modal.active .cart-modal-content {
    transform: translateX(-380px);
}

/* RTL Layout */
[dir="rtl"] .cart-modal-content {
    position: fixed;
    top: 0;
    left: -380px;
    width: 380px;
    height: 100vh;
    background: var(--white);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2002;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

[dir="rtl"] .cart-modal.active .cart-modal-content {
    transform: translateX(380px);
}

.cart-modal-header {
    padding: 20px;
    border-bottom: 2px solid var(--cream-nude);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
}

.cart-modal-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-count-badge {
    background: var(--primary-nude);
    color: var(--white);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.cart-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-nude);
    border: none;
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: var(--dark-nude);
    color: var(--white);
    transform: rotate(90deg);
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(var(--dark-nude-rgb), 0.03);
}

.cart-item-image {
    width: 85px;
    height: 85px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--white);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item:hover .cart-item-image img {
    transform: scale(1.1);
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h5 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgb(255, 252, 242);
    padding: 5px;
    border-radius: 8px;
    width: fit-content;
}

.qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--cream-nude);
    color: var(--text-dark);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.qty-btn:hover:not(:disabled) {
    background: var(--dark-nude);
    color: var(--white);
    transform: translateY(-1px);
}

.cart-item-quantity input {
    width: 40px;
    height: 28px;
    text-align: center;
    border: 1px solid var(--cream-nude);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.remove-item {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: none;
    border-radius: 8px;
    color: var(--secondary-nude);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.remove-item:hover {
    background: var(--dark-nude);
    color: var(--white);
    transform: rotate(90deg);
}

/* Cart Summary */
.cart-summary {
    background: var(--white);
    border-top: 2px solid var(--cream-nude);
    padding: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-dark);
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    padding-top: 15px;
    margin-top: 5px;
    border-top: 2px solid var(--cream-nude);
}

/* Cart Actions */
.cart-actions {
    padding: 0 20px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: var(--white);
}

.cart-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-cart {
    background: var(--cream-nude);
    color: var(--text-dark);
    border: 2px solid var(--cream-nude);
}

.view-cart:hover {
    background: var(--white);
    border-color: var(--text-dark);
}

.checkout {
    background: var(--text-dark);
    color: var(--white);
    border: 2px solid var(--text-dark);
}

.checkout:hover {
    background: var(--secondary-nude);
    border-color: var(--secondary-nude);
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 40px 20px;
}

.empty-cart i {
    font-size: 48px;
    color: var(--light-nude);
    margin-bottom: 15px;
}

.empty-cart p {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.continue-shopping {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: var(--text-dark);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--text-dark);
}

.continue-shopping:hover {
    background: var(--dark-nude);
    color: var(--white);
    transform: translateX(-5px);
    border-color: var(--dark-nude);
}

/* Mobile Styles */
@media (max-width: 576px) {
    [dir="ltr"] .cart-modal-content,
    [dir="rtl"] .cart-modal-content {
        width: 100%;
        max-width: 100%;
    }

    [dir="ltr"] .cart-modal.active .cart-modal-content {
        transform: translateX(-100%);
    }

    [dir="rtl"] .cart-modal.active .cart-modal-content {
        transform: translateX(100%);
    }

    .cart-modal-header {
        padding: 15px;
    }

    .cart-modal-body {
        padding: 15px;
    }

    .cart-summary {
        padding: 15px;
    }

    .cart-actions {
        padding: 0 15px 15px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: rgba(212, 175, 55, 0.05);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.1));
}

.hero-background .pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235d3a1d' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.min-vh-80 {
    min-height: 80vh;
}

/* Hero Content */
.hero-content {
    padding-right: 50px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-nude);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 30px;
    animation-delay: 0.2s;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-nude);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation-delay: 0.4s;
}

.hero-title .highlight {
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--text-dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s ease;
}

.hero-title.animated .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-description {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 2rem;
    animation-delay: 0.6s;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation-delay: 0.8s;
}

.primary-btn, .outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn {
    background: var(--primary-nude);
    color: var(--white);
    border: 2px solid var(--primary-nude);
}

.primary-btn:hover {
    background: var(--secondary-nude);
    border-color: var(--secondary-nude);
    transform: translateY(-3px);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(230, 190, 174, 0.3);
}

.outline-btn {
    background: transparent;
    color: var(--primary-nude);
    border: 2px solid var(--primary-nude);
}

.outline-btn:hover {
    background: var(--primary-nude);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 190, 174, 0.2);
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 2rem;
    animation-delay: 1s;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--primary-nude);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    animation-delay: 0.4s;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.card-1 {
    top: 20%;
    left: -50px;
    animation-delay: 0.8s;
}

.card-2 {
    bottom: 20%;
    right: -50px;
    animation-delay: 1s;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-nude);
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-content .label {
    font-size: 0.8rem;
    color: #333333;
}

.card-content .value {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
}

/* RTL Support */
[dir="rtl"] .hero-content {
    padding-right: 0;
    padding-left: 50px;
}

[dir="rtl"] .primary-btn i,
[dir="rtl"] .outline-btn i {
    transform: scaleX(-1);
}

[dir="rtl"] .hero-title .highlight::after {
    transform-origin: left;
}

[dir="rtl"] .hero-title.animated .highlight::after {
    transform-origin: right;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .floating-card {
        transform: scale(0.9);
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    [dir="rtl"] .hero-content {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-btn, .outline-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }
}

/* Featured Categories */
.featured-categories {
    padding: 80px 0;
    background: var(--white);
}

.category-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    background: var(--cream-nude);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(93, 58, 29, 0.1);
}

.category-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.category-content {
    position: relative;
    height: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
}

.category-info {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 60%;
}

.category-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
    background: rgba(230, 190, 174, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
}

.category-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 15px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.category-description {
    font-size: 15px;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.9;
}

.category-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image {
    transform: scale(1.05) translateX(-10px);
}

.category-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Large Card */
.category-card.large {
    background: var(--cream-nude);
    min-height: 450px;
}

.category-card.large .category-title {
    font-size: 42px;
}

.category-card.large .shop-now {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--text-dark);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card.large .shop-now:hover {
    background: var(--primary-nude);
    transform: translateX(5px);
}

/* Medium Cards */
.category-card.medium {
    min-height: 210px;
    margin-bottom: 20px;
}

.category-card.medium .category-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.category-card.medium .category-description {
    font-size: 14px;
    margin-bottom: 0;
}

.category-card.medium .category-image {
    width: 40%;
}

/* RTL Support */
[dir="rtl"] .category-image {
    right: auto;
    left: 0;
}

[dir="rtl"] .category-card:hover .category-image {
    transform: scale(1.05) translateX(10px);
}

[dir="rtl"] .shop-now i {
    transform: scaleX(-1);
}

[dir="rtl"] .category-card.large .shop-now:hover {
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .category-card.large {
        min-height: 400px;
    }

    .category-title {
        font-size: 32px;
    }

    .category-card.large .category-title {
        font-size: 36px;
    }

    .category-card.medium .category-title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .featured-categories {
        padding: 60px 0;
    }

    .category-card.large {
        min-height: 350px;
    }

    .category-card.medium {
        min-height: 180px;
    }

    .category-content {
        padding: 30px;
    }

    .category-info {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .category-card.large {
        min-height: 300px;
    }

    .category-card.large .category-title {
        font-size: 32px;
    }

    .category-card.medium .category-title {
        font-size: 24px;
    }

    .category-description {
        font-size: 14px;
    }

    .category-image {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .featured-categories {
        padding: 40px 0;
    }

    .category-content {
        padding: 20px;
    }

    .category-info {
        max-width: 100%;
    }

    .category-card.large {
        min-height: 250px;
    }

    .category-card.medium {
        min-height: 160px;
    }

    .category-title {
        font-size: 24px;
    }

    .category-card.large .category-title {
        font-size: 28px;
    }

    .category-card.medium .category-title {
        font-size: 20px;
    }

    .category-label {
        font-size: 12px;
        padding: 6px 12px;
    }

    .category-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .category-card.large .shop-now {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Featured Categories Section */
.featured-categories {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--cream-nude);
}

.category-slider {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    position: relative;
}

.slider-container {
    display: flex;
    align-items: center;
}

.slider-content {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 1rem;
    padding: 0.5rem 0;
}

.slider-content::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex-shrink: 0;
    width: 160px;
}

.category-image {
    width: 160px;
    height: 160px;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
    background: var(--cream-nude);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.05);
}

.category-button {
    width: 100%;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    background-color: var(--cream-nude);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-button:hover {
    background-color: var(--primary-nude);
    color: var(--white);
}

.category-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(178, 145, 35, 0.3);
}

.nav-button {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--cream-nude);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.nav-button:hover {
    background: var(--cream-nude);
    border-color: var(--primary-nude);
    color: var(--primary-nude);
}

.nav-button.prev {
    left: 0;
}

.nav-button.next {
    right: 0;
}

.nav-button i {
    font-size: 14px;
}

/* RTL Support */
[dir="rtl"] .nav-button.prev {
    left: auto;
    right: 0;
}

[dir="rtl"] .nav-button.next {
    right: auto;
    left: 0;
}

[dir="rtl"] .nav-button i {
    transform: scaleX(-1);
}

@media (min-width: 768px) {
    .nav-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .category-item {
        width: 140px;
    }

    .category-image {
        width: 140px;
        height: 140px;
    }

    .category-button {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .category-item {
        width: 120px;
    }

    .category-image {
        width: 120px;
        height: 120px;
    }

    .category-button {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    background: var(--cream-nude);
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    display: none;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

.carousel-item.active {
    display: block;
}

.carousel-content {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.content-col {
    padding-right: 3rem;
}

[dir="rtl"] .content-col {
    padding-right: 0;
    padding-left: 3rem;
}

/* Carousel Text Elements */
.slide-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--primary-nude);
    background: rgba(212, 160, 141, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.slide-subtitle i {
    color: var(--primary-nude);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-title .highlight {
    display: block;
    color: var(--primary-nude);
}

.slide-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
}

/* Slide Features */
.slide-features {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--primary-nude);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.feature:hover i {
    transform: scale(1.2);
}

.feature span {
    color: var(--text-dark);
    font-size: 1rem;
}

/* Slide Actions */
.slide-action {
    margin-top: 2rem;
}

.btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--primary-nude);
    color: var(--white);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-shop:hover {
    background: var(--dark-nude);
    color: var(--white);
    transform: translateX(10px);
}

[dir="rtl"] .btn-shop:hover {
    transform: translateX(-10px);
}

.btn-shop i {
    transition: transform 0.3s ease;
}

[dir="rtl"] .btn-shop i {
    transform: scaleX(-1);
}

/* Tags */
.price-tag,
.trending-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-left: 1rem;
    animation: pulse 2s infinite;
}

.price-tag {
    background: var(--primary-nude);
    color: var(--white);
}

.trending-tag {
    background: var(--dark-nude);
    color: var(--white);
}

/* Image Styles */
.image-col {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(212, 160, 141, 0.15);
    transition: transform 0.6s ease;
}

.carousel-item:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 160, 141, 0.2) 0%, rgba(245, 230, 221, 0.2) 100%);
    z-index: 2;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: var(--primary-nude);
    opacity: 0.1;
    animation: float 15s infinite;
}

.shape.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape.square {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
    transform: rotate(45deg);
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid var(--primary-nude);
    top: 30%;
    right: 30%;
    animation-delay: -10s;
}

.shape.cross {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 30%;
    animation-delay: -7s;
}

.shape.cross:before,
.shape.cross:after {
    content: '';
    position: absolute;
    background: var(--primary-nude);
}

.shape.cross:before {
    width: 100%;
    height: 20%;
    top: 40%;
}

.shape.cross:after {
    width: 20%;
    height: 100%;
    left: 40%;
}

/* Carousel Controls */
.carousel-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(212, 160, 141, 0.2);
    z-index: 4;
}

.progress-bar {
    height: 100%;
    background: var(--primary-nude);
    width: 0;
    transition: width 0.6s linear;
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    z-index: 3;
}

.carousel-indicators button {
    width: auto;
    height: auto;
    text-indent: 0;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: transparent;
    border: 1px solid var(--primary-nude);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: var(--primary-nude);
    opacity: 1;
    transform: scale(1.1);
}

.indicator-label {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.carousel-indicators button.active .indicator-label {
    color: var(--white);
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 3;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 2rem;
}

.carousel-control-next {
    right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-nude);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100%;
    filter: none;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(20px) rotate(-5deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .carousel-content {
        padding: 4rem 0;
        text-align: center;
    }

    .content-col {
        padding-right: 1rem;
        padding-left: 1rem;
        margin-bottom: 2rem;
    }

    [dir="rtl"] .content-col {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .slide-description {
        margin: 0 auto 2rem;
    }

    .slide-features {
        justify-content: center;
    }

    .floating-shapes {
        display: none;
    }

    .carousel-control-prev {
        left: 1rem;
    }

    .carousel-control-next {
        right: 1rem;
    }
}

@media (max-width: 767px) {
    .carousel-content {
        padding: 3rem 0;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .btn-shop {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .carousel-indicators button {
        padding: 0.3rem 0.8rem;
    }

    .indicator-label {
        font-size: 0.8rem;
    }

    .slide-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .carousel-content {
        padding: 2rem 0;
    }

    .slide-title {
        font-size: 2rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
} 





















/* Account Wrapper & Trigger Styles */
.account-wrapper {
    position: relative;
}

/* Account Trigger Button */
.account-trigger {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-nude);
    border: none;
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.account-trigger:hover {
    background: var(--primary-nude);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 190, 174, 0.3);
}

/* Account Dropdown */
.account-wrapper .dropdown-menu {
    min-width: 280px;
    padding: 0.75rem;
    margin-top: 0.75rem;
    border: none;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Dropdown Header */
.account-wrapper .dropdown-header {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--light-nude);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.account-wrapper .dropdown-header h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.account-wrapper .dropdown-header small {
    color: var(--text-dark);
    opacity: 0.7;
}

/* Dropdown Items */
.account-wrapper .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.account-wrapper .dropdown-item i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-nude);
}

.account-wrapper .dropdown-item:hover {
    background: var(--light-nude);
    color: var(--text-dark);
    transform: translateX(5px);
}

.account-wrapper .dropdown-item:hover i {
    transform: scale(1.1);
}

/* Dropdown Divider */
.account-wrapper .dropdown-divider {
    margin: 0.5rem 0;
    border-color: var(--light-nude);
    opacity: 0.5;
}

/* Logout Button */
.account-wrapper .dropdown-item.text-danger {
    color: #dc3545;
}

.account-wrapper .dropdown-item.text-danger i {
    color: #dc3545;
}

.account-wrapper .dropdown-item.text-danger:hover {
    background: rgba(220, 53, 69, 0.1);
}

/* RTL Support */
[dir="rtl"] .account-wrapper .dropdown-item {
    text-align: right;
}

[dir="rtl"] .account-wrapper .dropdown-item:hover {
    transform: translateX(-5px);
}

/* Sticky Header Adjustments */
.sticky .account-trigger {
    width: 35px;
    height: 35px;
    font-size: 15px;
    border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .account-wrapper .dropdown-menu {
        min-width: 260px;
        margin-top: 0.5rem;
    }
    
    .account-wrapper .dropdown-header {
        padding: 0.75rem;
    }
    
    .account-wrapper .dropdown-item {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .account-wrapper .dropdown-item i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .account-wrapper .dropdown-menu {
        min-width: 240px;
    }
    
    .account-wrapper .dropdown-header h6 {
        font-size: 0.9rem;
    }
    
    .account-wrapper .dropdown-header small {
        font-size: 0.75rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .account-wrapper .dropdown-item:hover {
        transform: none;
    }
    
    .account-wrapper .dropdown-item:active {
        background: var(--light-nude);
    }
}

/* Sticky Header Responsive */
@media (max-width: 991px) {
    body.has-sticky-header {
        padding-top: 60px;
    }

    .sticky .header-wrapper {
        height: 45px;
        padding: 5px 0;
    }

    .sticky .logo-wrapper {
        padding: 4px 8px;
    }

    .sticky .logo-icon i {
        font-size: 18px;
    }

    .sticky .logo-text {
        font-size: 14px;
    }

    .sticky .search-trigger,
    .sticky .cart-trigger,
    .sticky .account-trigger {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .sticky .header-actions {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    body.has-sticky-header {
        padding-top: 50px;
    }

    .sticky .header-wrapper {
        height: 40px;
        padding: 3px 0;
    }

    .sticky .logo-wrapper {
        padding: 3px 6px;
    }

    .sticky .logo-icon i {
        font-size: 16px;
    }

    .sticky .logo-text {
        font-size: 13px;
    }

    .sticky .search-trigger,
    .sticky .cart-trigger,
    .sticky .account-trigger {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .sticky .header-actions {
        gap: 8px;
    }
}

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
    background: var(--white);
}

.product-gallery {
    position: relative;
    margin-bottom: 2rem;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.gallery-main {
    position: relative;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-main .gallery-item {
    position: relative;
    padding-top: 100%;
    background: var(--white);
}

.gallery-main .gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.gallery-main .badge {
    position: absolute;
    top: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.gallery-main .badge.new {
    left: 15px;
    background: var(--primary-nude);
    color: var(--white);
}

.gallery-main .badge.sale {
    right: 15px;
    background: var(--secondary-nude);
    color: var(--white);
}

.gallery-thumbs {
    margin: 0 -5px;
}

.gallery-thumbs .thumb-item {
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumbs .thumb-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--cream-nude);
    transition: all 0.3s ease;
}

.gallery-thumbs .slick-current .thumb-item img {
    border-color: var(--primary-nude);
    transform: scale(1.05);
}

.product-info {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    padding-bottom: 0.2rem;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    margin-bottom: 0.15rem;
}

.amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: #E31E24;
    line-height: 1;
}

.currency {
    font-size: 0.8rem;
    font-weight: 500;
    color: #E31E24;
    line-height: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.product-rating svg {
    width: 0.9rem;
    height: 0.9rem;
    fill: #FFB800;
}

.product-rating .rating-value {
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1;
}

.price-old {
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.6;
    font-weight: 500;
}

/* RTL Price Styles */
[dir="rtl"] .price-old {
    margin-right: 0.5rem;
    margin-left: 0;
}

/* Responsive Price Styles */
@media (max-width: 768px) {
    .amount {
        font-size: 1rem;
    }
    
    .currency {
        font-size: 0.65rem;
    }
    
    .price-old {
        font-size: 0.75rem;
    }
}

.product-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.size-select {
    margin-bottom: 25px;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.size-option {
    position: relative;
    margin: 0;
    cursor: pointer;
}

.size-option input {
    position: absolute;
    opacity: 0;
}

.size-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid var(--cream-nude);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.size-option input:checked + .size-label {
    background: var(--primary-nude);
    border-color: var(--primary-nude);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 160, 141, 0.3);
}

.quantity-select {
    margin-bottom: 25px;
}

.quantity-wrapper {
    display: inline-flex;
    align-items: center;
    background: var(--cream-nude);
    border-radius: 8px;
    padding: 5px;
    margin-top: 10px;
}

.qty-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover:not(:disabled) {
    background: var(--dark-nude);
    color: var(--white);
    transform: translateY(-1px);
}

.quantity-wrapper input {
    width: 60px;
    height: 35px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--text-dark);
    -moz-appearance: textfield;
}

.quantity-wrapper input::-webkit-outer-spin-button,
.quantity-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart {
    flex: 1;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-nude);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: var(--secondary-nude);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 160, 141, 0.3);
}

.btn-wishlist {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-nude);
    border: none;
    border-radius: 8px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    background: var(--primary-nude);
    color: var(--white);
    transform: translateY(-2px);
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--cream-nude);
    border-radius: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-nude);
    border-radius: 8px;
    font-size: 18px;
}

.feature span {
    font-weight: 500;
    color: var(--text-dark);
}

.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-nude);
    color: var(--text-dark);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-nude);
    color: var(--white);
    transform: translateY(-2px);
}

/* Product Tabs */
.product-tabs {
    margin-top: 50px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.nav-tabs {
    padding: 0;
    border: none;
    background: var(--cream-nude);
}

.nav-tabs .nav-link {
    border: none;
    padding: 20px 30px;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-nude);
}

.nav-tabs .nav-link.active {
    background: var(--white);
    color: var(--primary-nude);
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    color: var(--text-light);
    line-height: 1.8;
}

/* Reviews */
.review-item {
    background: var(--cream-nude);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
}

.review-date {
    font-size: 13px;
    color: var(--text-light);
}

.review-content {
    color: var(--text-dark);
    line-height: 1.6;
}

.no-reviews {
    text-align: center;
    padding: 50px 0;
    color: var(--text-light);
}

.no-reviews i {
    font-size: 48px;
    color: var(--cream-nude);
    margin-bottom: 15px;
}

/* Review Form */
.review-form {
    background: var(--cream-nude);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.review-form h3 {
    margin-bottom: 25px;
    font-weight: 600;
}

.rating-select {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    margin-top: 10px;
}

.rating-select input {
    display: none;
}

.rating-select label {
    cursor: pointer;
    font-size: 24px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.rating-select label:hover,
.rating-select label:hover ~ label,
.rating-select input:checked ~ label {
    color: var(--primary-nude);
}

.review-form textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
    resize: vertical;
}

.review-form button {
    margin-top: 20px;
    height: 45px;
    padding: 0 30px;
    background: var(--primary-nude);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.review-form button:hover {
    background: var(--secondary-nude);
    transform: translateY(-2px);
}

/* Related Products */
.related-products {
    margin-top: 50px;
}

.related-products h2 {
    margin-bottom: 30px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .product-detail {
        padding: 40px 0;
    }

    .product-info {
        margin-top: 30px;
    }

    .product-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .product-title {
        font-size: 24px;
    }

    .price {
        font-size: 28px;
    }

    .price-old {
        font-size: 18px;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-wishlist {
        width: 100%;
    }

    .nav-tabs .nav-link {
        padding: 15px 20px;
    }

    .tab-content {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .gallery-thumbs .thumb-item img {
        height: 60px;
    }

    .size-label {
        width: 40px;
        height: 40px;
    }
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--cream-nude);
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 160, 141, 0.1);
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-item a:hover {
    color: var(--primary-nude);
    transform: translateX(3px);
}

.breadcrumb-item.active {
    color: var(--primary-nude);
    font-weight: 600;
}

.breadcrumb-item i {
    font-size: 12px;
    color: var(--primary-nude);
    opacity: 0.7;
}

/* Override Bootstrap's default breadcrumb styles */
.breadcrumb-item + .breadcrumb-item::before {
    display: none;
}

.breadcrumb-item.active a {
    color: var(--primary-nude);
    pointer-events: none;
}

.breadcrumb-item a:focus {
    color: var(--primary-nude);
    text-decoration: none;
}

.breadcrumb-item a:active {
    color: var(--secondary-nude);
}

/* RTL Support for Breadcrumb */
[dir="rtl"] .breadcrumb-item a:hover {
    transform: translateX(-3px);
}

/* Remove arrow flip since we're using different icons for RTL */
[dir="rtl"] .breadcrumb-item i {
    /* transform: scaleX(-1); */ /* Removing this line */
}

/* Responsive Breadcrumb */
@media (max-width: 576px) {
    .breadcrumb-section {
        padding: 15px 0;
    }

    .breadcrumb-item {
        font-size: 12px;
    }

    .breadcrumb-item i {
        font-size: 10px;
    }
}

/* Product Description */
.product-description {
    margin: 1.5rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.product-description p {
    margin-bottom: 1rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* Product Tabs */
.product-tabs {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 160, 141, 0.1);
}

.nav-tabs {
    border-bottom: 2px solid rgba(212, 160, 141, 0.1);
    margin-bottom: 1.5rem;
}

.nav-tabs .nav-item {
    margin-bottom: -2px;
}

.nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    background: none;
    color: var(--text-light);
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-nude);
    border-bottom-color: rgba(212, 160, 141, 0.3);
}

.nav-tabs .nav-link.active {
    color: var(--primary-nude);
    border-bottom-color: var(--primary-nude);
    background: none;
}

.tab-content {
    padding: 2rem 0;
}

.tab-pane .product-description {
    max-width: 800px;
    margin: 0 auto;
    white-space: pre-line;
}

/* Quantity Selector */
.quantity-select {
    margin: 1.5rem 0;
}

.quantity-select label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.quantity-wrapper {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    border: 2px solid rgba(212, 160, 141, 0.2);
    border-radius: 50px;
    padding: 0.3rem;
    gap: 0.5rem;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: rgba(212, 160, 141, 0.1);
    color: var(--primary-nude);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover:not(:disabled) {
    background: var(--dark-nude);
    color: var(--white);
    transform: translateY(-1px);
}

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

.qty-btn.minus {
    padding-bottom: 2px;
}

.qty-btn.plus {
    padding-top: 2px;
}

.qty-btn i {
    font-size: 0.9rem;
}

.quantity-wrapper input {
    width: 50px;
    border: none;
    background: none;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0;
    -moz-appearance: textfield;
}

.quantity-wrapper input::-webkit-outer-spin-button,
.quantity-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-select small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* RTL Support for Quantity Selector */
[dir="rtl"] .quantity-wrapper {
    flex-direction: row-reverse;
}

/* Responsive Styles for Quantity Selector */
@media (max-width: 576px) {
    .quantity-wrapper {
        padding: 0.2rem;
    }

    .qty-btn {
        width: 32px;
        height: 32px;
    }

    .qty-btn i {
        font-size: 0.8rem;
    }

    .quantity-wrapper input {
        width: 45px;
        font-size: 0.95rem;
    }
}

/* Product Gallery Badges */
.badge {
    position: absolute;
    top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.badge.new {
    left: 1rem;
    background-color: var(--primary-nude);
    color: white;
}

.badge.sale {
    right: 1rem;
    background-color: var(--bs-danger);
    color: white;
}

/* Product Gallery Thumbnails */
.thumbnail-wrapper {
    cursor: pointer;
    transition: transform 0.2s;
}

.thumbnail-wrapper:hover {
    transform: scale(1.05);
}

.thumbnail-image {
    border: 2px solid transparent;
    transition: border-color 0.2s;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.thumbnail-wrapper:hover .thumbnail-image {
    border-color: var(--primary-nude);
}

.cursor-pointer {
    cursor: pointer;
}

/* Product Description Styles */
.description-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.description-content h1,
.description-content h2,
.description-content h3,
.description-content h4,
.description-content h5,
.description-content h6 {
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.description-content h1 { font-size: 2.25rem; }
.description-content h2 { font-size: 2rem; }
.description-content h3 { font-size: 1.75rem; }
.description-content h4 { font-size: 1.5rem; }
.description-content h5 { font-size: 1.25rem; }
.description-content h6 { font-size: 1.1rem; }

.description-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.description-content ul,
.description-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.description-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.description-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.description-content a {
    color: var(--primary-nude);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.description-content a:hover {
    color: var(--dark-nude);
    border-bottom-color: var(--dark-nude);
}

.description-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--cream-nude);
    border-left: 4px solid var(--primary-nude);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-dark);
}

.description-content blockquote p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.description-content table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.description-content th,
.description-content td {
    padding: 1rem 1.5rem;
    border: 1px solid var(--cream-nude);
    text-align: left;
}

.description-content th {
    background: var(--cream-nude);
    color: var(--text-dark);
    font-weight: 600;
    white-space: nowrap;
}

.description-content tr:nth-child(even) {
    background: rgba(var(--cream-nude-rgb), 0.05);
}

.description-content code {
    background: var(--cream-nude);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
    color: var(--text-dark);
}

.description-content pre {
    background: var(--cream-nude);
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.description-content pre code {
    background: none;
    padding: 0;
    border-radius: 0;
}

.description-content hr {
    margin: 2rem 0;
    border: none;
    border-top: 2px solid var(--cream-nude);
}

/* Short Description */
.product-info .product-description {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(var(--primary-nude-rgb), 0.1);
}

.product-info .product-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-nude);
    border-radius: 15px 0 0 15px;
}

.product-info .product-description p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.9;
}

/* RTL Short Description */
[dir="rtl"] .product-info .product-description {
    text-align: right;
}

[dir="rtl"] .product-info .product-description::before {
    left: auto;
    right: 0;
    border-radius: 0 15px 15px 0;
}

/* Responsive Short Description */
@media (max-width: 991px) {
    .product-info .product-description {
        padding: 1.5rem;
    }
    
    .product-info .product-description p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .product-info .product-description {
        padding: 1.25rem;
        margin: 1rem 0;
    }
    
    .product-info .product-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Product Price Styles */
.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--cream-nude);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    width: fit-content;
}

.product-price .price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.product-price .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-nude);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.product-price .currency {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.product-price .price-old {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.7;
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.product-price .discount {
    background: var(--primary-nude);
    color: var(--white);
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

/* RTL Price Styles */
[dir="rtl"] .product-price {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

[dir="rtl"] .product-price .price-wrapper {
    flex-direction: row;
}

[dir="rtl"] .product-price .price {
    flex-direction: row;
}

[dir="rtl"] .product-price .price-old {
    flex-direction: row;
}

[dir="rtl"] .product-price .price-old::after {
    left: auto;
    right: -5%;
    transform: rotate(8deg);
}

[dir="rtl"] .product-price .discount {
    order: -1;
}

/* Responsive Price Styles */
@media (max-width: 991px) {
    .product-price {
        padding: 1.25rem;
        gap: 1rem;
        margin: 1.25rem 0;
    }

    .product-price .price {
        font-size: 1.75rem;
    }
    
    .product-price .price-old {
        font-size: 1.15rem;
    }
    
    .product-price .currency {
        font-size: 0.95rem;
    }

    .product-price .discount {
        padding: 0.4rem 0.875rem;
        font-size: 0.95rem;
        min-width: 70px;
    }
}

@media (max-width: 576px) {
    .product-price {
        padding: 1rem;
        gap: 0.875rem;
        margin: 1rem 0;
        flex-wrap: wrap;
    }

    .product-price .price-wrapper {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    [dir="rtl"] .product-price {
        flex-direction: row-reverse;
        justify-content: center;
    }

    [dir="rtl"] .product-price .price-wrapper {
        justify-content: center;
    }

    .product-price .price {
        font-size: 1.5rem;
    }
    
    .product-price .price-old {
        font-size: 1rem;
    }
    
    .product-price .currency {
        font-size: 0.9rem;
    }
    
    .product-price .discount {
        padding: 0.35rem 0.75rem;
        font-size: 0.9rem;
        min-width: 60px;
    }

    [dir="rtl"] .product-price .price-wrapper,
    [dir="ltr"] .product-price .price-wrapper {
        justify-content: center;
    }
}

/* Product Tabs Styles */
.product-tabs {
    margin-top: 3rem;
}

.product-tabs .nav-tabs {
    border: none;
    background: var(--cream-nude);
    padding: 0.5rem;
    border-radius: 12px;
    display: inline-flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-tabs .nav-item {
    margin: 0;
}

.product-tabs .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.product-tabs .nav-link i {
    font-size: 1.1rem;
    opacity: 0.8;
}

.product-tabs .nav-link:hover {
    background: rgba(var(--primary-nude-rgb), 0.1);
}

.product-tabs .nav-link.active {
    background: var(--white);
    color: var(--primary-nude);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-tabs .nav-link .badge {
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--primary-nude);
}

.product-tabs .tab-content {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-top: -1rem;
}

.product-tabs .tab-pane {
    padding: 1.5rem;
}

.product-tabs .description-content {
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.product-tabs .description-content p:last-child {
    margin-bottom: 0;
}

.product-tabs .description-content img {
    margin: 1rem 0;
}

.product-tabs .description-content blockquote {
    margin: 1rem 0;
    padding: 1rem 1.5rem;
}

.product-tabs .description-content ul,
.product-tabs .description-content ol {
    margin: 1rem 0;
}

.product-tabs .description-content table {
    margin: 1rem 0;
}

/* Reviews Section */
.rating-summary {
    background: var(--cream-nude);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.rating-summary .stars {
    margin: 0.5rem 0;
}

.rating-bar {
    margin-bottom: 0.75rem;
}

.rating-bar .progress {
    height: 6px;
    background: rgba(var(--primary-nude-rgb), 0.1);
    border-radius: 3px;
    margin: 0 0.75rem;
}

.rating-bar .progress-bar {
    background: var(--primary-nude);
    border-radius: 3px;
}

/* Review Items */
.review-item {
    background: var(--white);
    border: 1px solid rgba(var(--primary-nude-rgb), 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.review-item:last-child {
    margin-bottom: 0;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.review-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

.review-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* RTL Review Styles */
[dir="rtl"] .reviewer {
    flex-direction: row-reverse;
}

[dir="rtl"] .rating-bar .progress {
    margin: 0 0.75rem;
}

/* Responsive Review Styles */
@media (max-width: 768px) {
    .product-tabs .tab-pane {
        padding: 1.25rem;
    }

    .rating-summary {
        padding: 1rem;
    }

    .review-item {
        padding: 1rem;
    }

    .reviewer-avatar img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .product-tabs .tab-pane {
        padding: 1rem;
    }

    .rating-summary {
        padding: 0.875rem;
    }

    .review-item {
        padding: 0.875rem;
    }

    .reviewer {
        gap: 0.75rem;
    }

    .reviewer-avatar img {
        width: 35px;
        height: 35px;
    }

    .reviewer-info h5 {
        font-size: 0.95rem;
    }

    .review-date {
        font-size: 0.85rem;
    }

    .review-content p {
        font-size: 0.9rem;
    }
}

/* RTL Tabs */
[dir="rtl"] .product-tabs .nav-link {
    flex-direction: row-reverse;
}

/* Responsive Tabs */
@media (max-width: 768px) {
    .product-tabs .nav-tabs {
        width: 100%;
        justify-content: center;
        padding: 0.4rem;
    }

    .product-tabs .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }

    .product-tabs .nav-link i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .product-tabs {
        margin-top: 2rem;
    }

    .product-tabs .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }

    .product-tabs .nav-link .badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
}

/* Product Sections */
.product-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.product-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-section-title i {
    color: var(--primary-nude);
    font-size: 1.1em;
}

/* Reviews Section */
.rating-summary {
    background: var(--cream-nude);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.rating-summary .stars {
    margin: 0.5rem 0;
}

.rating-bar {
    margin-bottom: 0.75rem;
}

.rating-bar .progress {
    height: 6px;
    background: rgba(var(--primary-nude-rgb), 0.1);
    border-radius: 3px;
    margin: 0 0.75rem;
}

.rating-bar .progress-bar {
    background: var(--primary-nude);
    border-radius: 3px;
}

/* Review Items */
.review-item {
    background: var(--white);
    border: 1px solid rgba(var(--primary-nude-rgb), 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.review-item:last-child {
    margin-bottom: 0;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.review-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

.review-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* RTL Review Styles */
[dir="rtl"] .reviewer {
    flex-direction: row-reverse;
}

[dir="rtl"] .rating-bar .progress {
    margin: 0 0.75rem;
}

[dir="rtl"] .product-section-title {
    flex-direction: row-reverse;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-section {
        padding: 1.25rem;
    }

    .rating-summary {
        padding: 1rem;
    }

    .review-item {
        padding: 1rem;
    }

    .reviewer-avatar img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .product-section {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .product-section-title {
        font-size: 1.1rem;
    }

    .rating-summary {
        padding: 0.875rem;
    }

    .review-item {
        padding: 0.875rem;
    }

    .reviewer {
        gap: 0.75rem;
    }

    .reviewer-avatar img {
        width: 35px;
        height: 35px;
    }

    .reviewer-info h5 {
        font-size: 0.95rem;
    }

    .review-date {
        font-size: 0.85rem;
    }

    .review-content p {
        font-size: 0.9rem;
    }
}

/* Remove product tabs styles */
.product-tabs,
.product-tabs .nav-tabs,
.product-tabs .nav-item,
.product-tabs .nav-link,
.product-tabs .tab-content,
.product-tabs .tab-pane,
.product-tabs .description-content,
[dir="rtl"] .product-tabs .nav-link {
    display: none !important;
}

/* Product Tabs Styles */
.border-tab.nav-tabs {
    border: none;
    margin-bottom: 30px;
}

.border-tab.nav-tabs .nav-item .nav-link {
    border-bottom: 2px solid transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    padding: 15px 30px;
    transition: all 0.3s ease;
    position: relative;
}

.border-tab.nav-tabs .nav-item .nav-link.active {
    color: var(--primary-nude);
    border-bottom-color: var(--primary-nude);
}

.border-tab.nav-tabs .nav-item .nav-link:hover {
    color: var(--primary-nude);
}

.material-border {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-nude);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link.active + .material-border {
    transform: scaleX(1);
}

.tab-content {
    padding: 20px;
    background-color: var(--white);
    border-radius: 0 0 10px 10px;
}

/* RTL Support */
[dir="rtl"] .border-tab.nav-tabs .nav-item .nav-link {
    margin-right: 0;
    margin-left: 30px;
}

/* Review Styles */
.review-item {
    border: 1px solid var(--cream-nude);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    background: var(--white);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h5 {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
}

.rating {
    margin: 5px 0;
}

.rating i {
    color: #ffc107;
    margin-right: 2px;
}

.review-date {
    font-size: 14px;
    color: var(--text-light);
}

.review-content {
    margin-top: 15px;
}

.review-content p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Review Form */
.review-form {
    background: var(--cream-nude);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.review-form h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 20px;
}

.rating-select {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-select input {
    display: none;
}

.rating-select label {
    cursor: pointer;
    font-size: 25px;
    color: #ddd;
    transition: all 0.2s ease;
}

.rating-select label:hover,
.rating-select label:hover ~ label,
.rating-select input:checked ~ label {
    color: #ffc107;
}

.form-control {
    border: 1px solid var(--cream-nude);
    padding: 12px;
    border-radius: 8px;
}

.form-control:focus {
    border-color: var(--primary-nude);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-nude-rgb), 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .border-tab.nav-tabs .nav-item .nav-link {
        padding: 12px 20px;
        font-size: 14px;
    }

    .review-form {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .border-tab.nav-tabs .nav-item .nav-link {
        padding: 10px 15px;
        font-size: 13px;
    }

    .review-form {
        padding: 15px;
    }

    .rating-select label {
        font-size: 22px;
    }
}

/* Shop Page Styles */
.shop-section {
    padding: 60px 0;
    background: var(--white);
}

/* Sidebar Styles */
.shop-sidebar {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.sidebar-widget {
    padding: 1.5rem;
    border-bottom: 1px solid var(--cream-nude);
}

.sidebar-widget:last-child {
    border-bottom: none;
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-nude);
}

[dir="rtl"] .sidebar-widget h4::after {
    left: auto;
    right: 0;
}

/* Category Links */
.category-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-link:hover,
.category-link.active {
    background: var(--cream-nude);
    color: var(--primary-nude);
    transform: translateX(5px);
}

[dir="rtl"] .category-link:hover,
[dir="rtl"] .category-link.active {
    transform: translateX(-5px);
}

.category-link small {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Price Filter */
.price-filter {
    margin-top: 1rem;
}

.range-slider {
    position: relative;
    margin: 1rem 0;
}

.form-range {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: var(--cream-nude);
    outline: none;
    padding: 0;
    margin: 0;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-nude);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 1px var(--primary-nude);
}

.form-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-nude);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 1px var(--primary-nude);
}

/* Size Filter */
.size-filter .form-check {
    margin-bottom: 0.5rem;
}

.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.2rem;
    border: 2px solid var(--cream-nude);
}

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

.form-check-label {
    color: var(--text-dark);
    font-size: 0.95rem;
    padding-left: 0.5rem;
}

/* Product Grid */
.product-grid {
    margin-bottom: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--cream-nude);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 1;
}

[dir="rtl"] .product-badges {
    left: auto;
    right: 1rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge.new {
    background: var(--primary-nude);
    color: var(--white);
}

.badge.sale {
    background: var(--secondary-nude);
    color: var(--white);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-title a {
    color: inherit;
    text-decoration: none;
}

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

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-nude);
}

.price-old {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

[dir="rtl"] .price-old {
    margin-left: 0;
    margin-right: 0.5rem;
}

.product-rating {
    display: flex;
    gap: 2px;
}

.product-rating i {
    color: var(--primary-nude);
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-view {
    flex: 1;
    padding: 0.6rem 1rem;
    background: var(--cream-nude);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: var(--primary-nude);
    color: var(--white);
}

.btn-cart {
    padding: 0.6rem 1rem;
    background: var(--primary-nude);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cart:hover {
    background: var(--secondary-nude);
    transform: translateY(-2px);
}

/* Toolbar */
.shop-toolbar {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.results-count {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.sort-select {
    min-width: 200px;
}

.form-select {
    padding: 0.5rem 2.25rem 0.5rem 0.75rem;
    font-size: 0.95rem;
    border: 1px solid var(--cream-nude);
    border-radius: 8px;
    color: var(--text-dark);
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--primary-nude);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-nude-rgb), 0.25);
}

/* Empty State */
.empty-products {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.empty-products i {
    font-size: 3rem;
    color: var(--cream-nude);
    margin-bottom: 1rem;
}

.empty-products h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-products p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 500px;
}

/* Responsive */
@media (max-width: 991px) {
    .shop-section {
        padding: 40px 0;
    }

    .shop-sidebar {
        margin-bottom: 2rem;
    }

    .product-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .shop-toolbar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .sort-select {
        width: 100%;
    }

    .product-info {
        padding: 1.25rem;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .product-actions {
        flex-direction: column;
    }

    .btn-view,
    .btn-cart {
        width: 100%;
        text-align: center;
    }
}

/* Product Card Enhanced Styles */
.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--cream-nude);
}

.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

[dir="rtl"] .product-badges {
    left: auto;
    right: 1rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge.new {
    background: var(--primary-nude);
    color: var(--white);
}

.badge.sale {
    background: var(--secondary-nude);
    color: var(--white);
}

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

[dir="rtl"] .product-actions {
    right: auto;
    left: 1rem;
    transform: translateX(-10px);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.btn-view,
.btn-cart,
.btn-wishlist {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-dark);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-view:hover,
.btn-cart:hover,
.btn-wishlist:hover {
    background: var(--primary-nude);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 160, 141, 0.3);
}

.product-info {
    padding: 1.5rem;
    position: relative;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-rating i {
    color: #FFB800;
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.price-wrapper .currency {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.price-wrapper .amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-nude);
}

.price-old {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-nude);
}

/* Enhanced Sidebar Styles */
.category-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-link i {
    font-size: 0.9rem;
    margin-right: 0.75rem;
    color: var(--primary-nude);
    transition: all 0.3s ease;
}

[dir="rtl"] .category-link i {
    margin-right: 0;
    margin-left: 0.75rem;
    transform: scaleX(-1);
}

.category-link span {
    flex: 1;
}

.category-link small {
    background: var(--cream-nude);
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.category-link:hover,
.category-link.active {
    background: var(--primary-nude);
    color: var(--white);
    transform: translateX(5px);
}

[dir="rtl"] .category-link:hover,
[dir="rtl"] .category-link.active {
    transform: translateX(-5px);
}

.category-link:hover i,
.category-link.active i {
    color: var(--white);
}

.category-link:hover small,
.category-link.active small {
    background: var(--white);
    color: var(--primary-nude);
}

/* Price Filter Styles */
.price-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-range {
    height: 6px;
    border-radius: 3px;
    background: var(--cream-nude);
}

.form-range::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    border: 3px solid var(--white);
}

.form-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 3px solid var(--white);
}

/* Size Filter Styles */
.size-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-check {
    margin: 0;
    padding: 0;
}

.form-check-input {
    display: none;
}

.form-check-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    background: var(--white);
    border: 2px solid var(--cream-nude);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-check-input:checked + .form-check-label {
    background: var(--primary-nude);
    border-color: var(--primary-nude);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 160, 141, 0.2);
}

/* Empty State Styles */
.empty-products {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.empty-products i {
    font-size: 4rem;
    color: var(--cream-nude);
    margin-bottom: 1.5rem;
}

.empty-products h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.empty-products p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-title {
        font-size: 1rem;
    }

    .price-wrapper .amount {
        font-size: 1.1rem;
    }
}

@media (max-width: 991px) {
    .shop-sidebar {
        margin-bottom: 2rem;
    }

    .product-card {
        margin-bottom: 1rem;
    }

    .product-actions {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 768px) {
    .product-info {
        padding: 1.25rem;
    }

    .product-actions {
        flex-direction: row;
        top: auto;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        justify-content: center;
        background: rgba(255, 255, 255, 0.9);
        padding: 0.5rem;
        border-radius: 25px;
        backdrop-filter: blur(4px);
    }

    .btn-view,
    .btn-cart,
    .btn-wishlist {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .size-options {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }
}

@media (max-width: 576px) {
    .product-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 0.95rem;
    }

    .price-wrapper .amount {
        font-size: 1rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    .badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    padding-top: 100%;
    background: #f8f8f8;
    overflow: hidden;
}

.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.amount {
    font-size: 1.25rem;
    font-weight: 600;
    color: #E31E24;
}

.currency {
    font-size: 0.85rem;
    font-weight: 500;
    color: #E31E24;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #ffc107;
}

.product-rating .rating-value {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-actions {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.btn-wishlist,
.btn-cart {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.btn-wishlist svg,
.btn-cart svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke-width: 1.5;
}

.btn-cart {
    background: var(--dark-nude);
    color: white;
}

.btn-cart:hover {
    background: var(--primary-nude);
}

.btn-wishlist:hover {
    background: white;
    color: var(--primary-nude);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-rating svg {
    width: 1rem;
    height: 1rem;
    fill: #FFB800;
}

.product-rating .rating-value {
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .btn-wishlist,
    .btn-cart {
        width: 2rem;
        height: 2rem;
    }
    
    .btn-wishlist svg,
    .btn-cart svg {
        width: 1rem;
        height: 1rem;
    }
}

/* Cart Page Styles */
.cart-section {
    padding: 40px 0;
    background: var(--white);
}

/* Cart Card */
.cart-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.cart-card .card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(var(--primary-nude-rgb), 0.1);
}

.cart-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.cart-count-badge {
    background: var(--primary-nude);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(var(--primary-nude-rgb), 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item:hover {
    background: rgba(var(--dark-nude-rgb), 0.03);
}

/* Cart Item Image */
.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.cart-item:hover .cart-item-image {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.cart-item:hover .cart-item-image img {
    transform: scale(1.05);
}

/* Cart Item Info */
.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-info h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.cart-item-price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    color: var(--text-dark);
}

.cart-item-price .amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-nude);
}

.cart-item-price .currency {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-nude);
}

.cart-item-price .text-muted {
    font-size: 0.9rem;
    color: var(--text-light) !important;
}

/* Stock Status */
.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(var(--dark-nude-rgb), 0.1);
    border-radius: 8px;
    color: var(--dark-nude);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Quantity Controls */
.cart-item-quantity {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 2px solid var(--cream-nude);
    border-radius: 8px;
    padding: 0.25rem;
    position: relative;
}

.cart-item-quantity:hover {
    border-color: var(--primary-nude);
}

.qty-btn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--cream-nude);
    color: var(--text-dark);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.qty-btn:hover:not(:disabled) {
    background: var(--dark-nude);
    color: var(--white);
    transform: translateY(-1px);
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--cream-nude);
    color: var(--text-light);
}

.qty-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.qty-btn:active:not(:disabled)::before {
    width: 200%;
    height: 200%;
}

.cart-item-quantity input {
    width: 40px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0;
    font-size: 0.95rem;
}

.cart-item-quantity input:focus {
    outline: none;
}

/* Remove Button */
.cart-close {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--cream-nude);
    color: var(--text-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: var(--dark-nude);
    color: var(--white);
    transform: rotate(90deg);
}

/* Cart Summary */
.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.summary-value {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.summary-total {
    border-top: 2px solid var(--cream-nude);
    margin-top: 1rem;
    padding-top: 1rem;
}

.summary-total .summary-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.summary-total .summary-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-nude);
}

/* Continue Shopping Button */
.btn-continue {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--cream-nude);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    background: var(--dark-nude);
    color: var(--white);
    transform: translateX(-5px);
    border-color: var(--dark-nude);
}

[dir="rtl"] .btn-continue:hover {
    transform: translateX(5px);
}

/* Checkout Button */
.btn-checkout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--primary-nude);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    background: var(--dark-nude);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--dark-nude-rgb), 0.2);
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.empty-cart-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(var(--primary-nude-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-cart-icon i {
    font-size: 2.5rem;
    color: var(--primary-nude);
}

.empty-cart-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.empty-cart-text {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto 2rem;
}

/* Loading States */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 10;
}

.loading-overlay i {
    color: var(--primary-nude);
    font-size: 1.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .cart-section {
        padding: 30px 0;
    }
}

@media (max-width: 768px) {
    .cart-item {
        padding: 1rem;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }

    .cart-item-info h5 {
        font-size: 1rem;
    }

    .cart-item-price .amount {
        font-size: 1rem;
    }

    .cart-item-quantity {
        gap: 0.35rem;
    }

    .qty-btn {
        width: 28px;
        height: 28px;
    }

    .cart-item-quantity input {
        width: 35px;
        font-size: 0.9rem;
    }

    .cart-close {
        width: 28px;
        height: 28px;
    }

    .empty-cart {
        padding: 3rem 1.5rem;
    }

    .empty-cart-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .empty-cart-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .cart-item-image {
        width: 70px;
        height: 70px;
    }

    .cart-item-info h5 {
        font-size: 0.95rem;
    }

    .cart-item-price .amount {
        font-size: 0.95rem;
    }

    .cart-item-price .currency {
        font-size: 0.85rem;
    }

    .stock-status {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }

    .qty-btn {
        width: 26px;
        height: 26px;
    }

    .cart-item-quantity input {
        width: 32px;
        font-size: 0.85rem;
    }

    .cart-close {
        width: 26px;
        height: 26px;
    }

    .summary-label,
    .summary-value {
        font-size: 0.95rem;
    }

    .summary-total .summary-label {
        font-size: 1rem;
    }

    .summary-total .summary-value {
        font-size: 1.15rem;
    }
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
    background: var(--white);
}

/* Section Header */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-subtitle {
    color: var(--primary-nude);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: var(--cream-nude);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.img-primary {
    opacity: 1;
    z-index: 1;
}

.img-secondary {
    opacity: 0;
    z-index: 0;
}

.product-card:hover .img-primary {
    opacity: 0;
}

.product-card:hover .img-secondary {
    opacity: 1;
    transform: scale(1.1);
}

/* View Product Button */
.product-image .view-product {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    z-index: 2;
    background: var(--white);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image .view-product i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-card:hover .view-product {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.view-product:hover {
    background: var(--primary-nude);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.05) !important;
}

.view-product:hover i {
    transform: scale(1.1);
}

/* Product Content */
.product-content {
    padding: 0.75rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.product-description {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Product Footer */
.product-footer {
    padding: 0;
    background: transparent;
}

.product-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    padding-bottom: 0.35rem;
}

/* Price */
.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    margin-bottom: 0.15rem;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.price-original {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    opacity: 0.8;
}

.price-separator {
    color: #999;
    font-size: 1rem;
    opacity: 0.5;
    margin: 0 0.15rem;
}

.price-discount {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-nude);
}

.price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-nude);
}

/* Add to Cart Button */
.featured-cart-btn {
    padding: 0.4rem 1rem 0.35rem;
    background: var(--primary-nude);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(212, 160, 141, 0.2);
    width: 100%;
    max-width: 180px;
    font-weight: 500;
    height: 30px;
    min-height: 30px;
}

.featured-cart-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.featured-cart-btn:hover {
    background: var(--secondary-nude);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 160, 141, 0.3);
}

.featured-cart-btn:hover i {
    transform: scale(1.1);
}

.featured-cart-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.featured-cart-btn.loading i {
    animation: spin 1s linear infinite;
}

[dir="rtl"] .featured-cart-btn {
    flex-direction: row-reverse;
}

/* Sale Badge */
.product-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FF4E4E;
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 78, 78, 0.3);
}

[dir="rtl"] .product-tag {
    right: auto;
    left: 1rem;
}

/* Responsive */
@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .product-meta {
        gap: 0.35rem;
    }
    
    .price-original {
        font-size: 0.85rem;
    }
    
    .price-discount,
    .price {
        font-size: 0.95rem;
    }
    
    .featured-cart-btn {
        font-size: 0.85rem;
        height: 28px;
        min-height: 28px;
    }
}