/**
 * Arumora - Premium Perfume Store CSS
 */

/* ==================== General Styles ==================== */
:root {
    --primary-color: #7D2F38;
    --secondary-color: #D4AF37;
    --light-color: #f7f4ef;
    --dark-color: #3A2921;
    --text-color: #333333;
    --white-color: #FFFFFF;
    --cream-color: #FFF4D9;
    --border-color: #E8D7B0;
    --accent-color: #B25C62;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Cairo', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 14px;
    overflow-x: hidden;
    background-color: var(--light-color);
}

.rtl {
    font-family: 'Cairo', sans-serif;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

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

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

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

.btn-secondary:hover {
    background-color: #C09F2A;
    color: var(--dark-color);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

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

/* ==================== Header Styles ==================== */
/* ==================== Arumora Header (Matches Second Screenshot) ==================== */
/* Top Bar is kept as is */
.top-bar {
    background-color: #f7f4ef;
    color: var(--dark-color);
    padding: 8px 0;
    font-size: 12px;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--border-color);
}

/* Arumora Header (Main Header) */
.arumora-header {
    background-color: #f7f4ef;
    padding: 15px 0;
    position: relative;
    z-index: 100;
    box-shadow: none;
}

.arumora-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* Left Navigation */
.header-left-nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.header-left-nav .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-left-nav .nav-item {
    margin-right: 20px;
}

.rtl .header-left-nav .nav-item {
    margin-right: 0;
    margin-left: 20px;
}

/* Center Logo */
.arumora-header .logo-container {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    margin: auto;
}

.arumora-header .logo {
    display: flex;
    align-items: center;
}

.arumora-header .logo img {
    max-height: 250px;
}

/* Right Navigation */
.header-right-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-right-nav .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Left Actions/Icons */
.header-left-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

.header-action-btn {
    color: var(--dark-color);
    font-size: 20px;
    position: relative;
    text-decoration: none;
}

.header-action-btn:hover {
    color: var(--primary-color);
}

/* Cart Count Badge */
.header-action-btn .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.rtl .header-action-btn .cart-count {
    right: auto;
    left: -8px;
}

/* Right Links */
.header-right-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.custom-links {
    display: flex;
    gap: 20px;
}

.custom-link {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-link:hover,
.custom-link.active {
    color: var(--primary-color);
}

/* Navigation Links */
.arumora-header .nav-link {
    color: var(--dark-color);
    padding: 8px 15px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.arumora-header .nav-link:hover,
.arumora-header .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
}

/* Hide the after element for active links */
.arumora-header .nav-link.active::after {
    display: none;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.sticky-header.visible {
    transform: translateY(0);
}

.sticky-header .arumora-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Left actions */
.header-left-actions {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Center logo */
.logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Right links */
.header-right-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

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

.sticky-header .header-action-btn {
    font-size: 18px;
}

.sticky-header .custom-link {
    font-size: 14px;
}

/* Top Bar is now visible */
.top-bar {
    background-color: #f7f4ef;
    color: var(--dark-color);
    padding: 8px 0;
    font-size: 12px;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--border-color);
}

.top-bar-item {
    margin-right: 20px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.rtl .top-bar-item {
    margin-right: 0;
    margin-left: 20px;
}

.top-bar-item i {
    margin-right: 6px;
    color: var(--primary-color);
}

.rtl .top-bar-item i {
    margin-right: 0;
    margin-left: 6px;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 13px;
}

.lang-btn i {
    margin-left: 5px;
    font-size: 10px;
}

.rtl .lang-btn i {
    margin-left: 0;
    margin-right: 5px;
}

/* Main Header (Hidden but preserved for functionality) */
.site-header {
    display: none;
    background-color: var(--white-color);
    padding: 15px 0;
    position: relative;
    z-index: 9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    max-height: 60px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Search Form */
.search-form {
    width: 100%;
}

.search-form .form-control {
    height: 40px;
    border-radius: 4px 0 0 4px;
    border: 1px solid var(--border-color);
    padding: 0 15px;
    font-size: 14px;
    background-color: var(--light-color);
}

.search-form .form-select {
    height: 40px;
    border-radius: 0;
    border: 1px solid var(--border-color);
    border-left: none;
    padding: 0 15px;
    font-size: 14px;
    background-color: var(--cream-color);
    min-width: 120px;
}

.search-form .btn {
    height: 40px;
    border-radius: 0 4px 4px 0;
    padding: 0 15px;
    background-color: var(--primary-color);
}

.search-form .btn:hover {
    background-color: var(--accent-color);
}

.rtl .search-form .form-control {
    border-radius: 0 4px 4px 0;
}

.rtl .search-form .form-select {
    border-left: 1px solid var(--border-color);
    border-right: none;
}

.rtl .search-form .btn {
    border-radius: 4px 0 0 4px;
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
}

.user-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    color: var(--dark-color);
    position: relative;
    text-decoration: none;
    font-size: 12px;
}

.rtl .user-action-btn {
    margin-left: 0;
    margin-right: 15px;
}

.user-action-btn i {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.rtl .cart-count {
    right: auto;
    left: -5px;
}

/* Main Navigation (Original - Hidden but preserved for functionality) */
nav.main-nav:not(.header-left-nav):not(.header-right-nav) {
    display: none;
    background-color: var(--primary-color);
    padding: 0;
    position: relative;
    z-index: 8;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
}

.header-mobile-wrapper {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.rtl .header-mobile-wrapper {
    left: auto;
    right: 15px;
}

.mobile-menu-toggle i {
    font-size: 24px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
    position: relative;
}

.nav-link {
    color: var(--white-color);
    font-weight: 500;
    padding: 12px 20px;
    display: block;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.nav-link.active {
    background-color: var(--accent-color);
    color: var(--white-color);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    display: block;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    list-style: none;
    display: none;
    z-index: 10;
    border-radius: 0 0 4px 4px;
    border-top: 3px solid var(--secondary-color);
}

.dropdown-item {
    padding: 0;
}

.dropdown-link {
    display: block;
    padding: 8px 20px;
    color: var(--text-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.dropdown-link:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.has-dropdown .nav-link i {
    margin-left: 5px;
    font-size: 10px;
}

.rtl .has-dropdown .nav-link i {
    margin-left: 0;
    margin-right: 5px;
}

/* Footer Styling */
.site-footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 30px;
    position: relative;
}

.footer-logo img {
    max-height: 60px;
}

.footer-heading {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.rtl .footer-heading::after {
    left: auto;
    right: 0;
}

.footer-contact li,
.footer-links li {
    margin-bottom: 10px;
}

.footer-contact .icon-wrapper {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.rtl .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.payment-icons img {
    max-height: 30px;
}

/* Product Card Styling */
.product-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    position: relative;
}

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

.product-img {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

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

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

.product-info {
    padding: 15px;
    text-align: center;
}

    .product-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
        line-height: 1.3;
        height: 40px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

.product-title a {
    color: var(--dark-color);
}

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

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-price del {
    font-size: 14px;
    color: var(--gray-color);
    margin-right: 5px;
    font-weight: 400;
}

.rtl .product-price del {
    margin-right: 0;
    margin-left: 5px;
}

.product-actions {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.product-actions button,
.product-actions a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-color: var(--light-color);
    color: var(--dark-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-actions button:hover,
.product-actions a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}


/* Home Banner */
.hero-banner {
    height: 500px;
    background-color: var(--cream-color);
    position: relative;
    overflow: hidden;
}

.hero-banner-content {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-banner-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.hero-banner-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Categories Section */
.categories-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.category-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    position: relative;
}

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

.category-img {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

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

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

.category-info {
    padding: 15px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.category-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.category-count {
    font-size: 14px;
    color: var(--gray-color);
}

/* Custom styles for Auth Modal */
.auth-modal {
    border-radius: 10px;
    overflow: hidden;
}

.auth-tabs {
    display: flex;
    margin-bottom: 20px;
}

.auth-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    background-color: var(--light-color);
    color: var(--text-color);
    border: none;
    transition: all 0.3s ease;
}

.auth-tab.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.auth-tab-content {
    display: none;
}

.auth-tab-content.active {
    display: block;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: var(--dark-color);
}

.auth-form .form-group {
    margin-bottom: 15px;
}

.auth-form label {
    font-weight: 500;
}

.auth-form .btn-block {
    width: 100%;
    margin-top: 10px;
}

.social-login {
    margin-top: 20px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.social-button.facebook {
    background-color: #3b5998;
}

.social-button.google {
    background-color: #db4a39;
}

.social-button:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

.remember-me {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-checkbox {
    display: flex;
    align-items: center;
}

.custom-checkbox input {
    margin-right: 5px;
}

.rtl .custom-checkbox input {
    margin-right: 0;
    margin-left: 5px;
}

/* Slide-in Cart Styling for Arumora Header */
.slide-in-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.slide-in-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.slide-in-cart {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--white-color);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.rtl .slide-in-cart {
    right: auto;
    left: -320px;
}

.slide-in-cart.active {
    right: 0;
    z-index:999999;
}

.rtl .slide-in-cart.active {
    right: auto;
    left: 0;
}

.slide-in-cart-header {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slide-in-cart-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--dark-color);
}

.slide-in-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.slide-in-cart-items {
    margin-bottom: 15px;
}

.slide-in-cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.slide-in-cart-item-image {
    width: 60px;
    height: 60px;
    overflow: hidden;
    margin-right: 10px;
    border: 1px solid var(--border-color);
}

.rtl .slide-in-cart-item-image {
    margin-right: 0;
    margin-left: 10px;
}

.slide-in-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-in-cart-item-details {
    flex: 1;
}

.slide-in-cart-item-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.slide-in-cart-item-price {
    color: var(--primary-color);
    font-weight: 500;
}

.slide-in-cart-item-remove {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--dark-color);
}

.rtl .slide-in-cart-item-remove {
    right: auto;
    left: 0;
}

.slide-in-cart-empty {
    text-align: center;
    padding: 30px 0;
}

.slide-in-cart-footer {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    background-color: var(--light-color);
}

.slide-in-cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 15px;
}

.slide-in-cart-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .hero-banner {
        height: 400px;
    }
    
    .hero-banner-content {
        padding: 80px 0;
    }
    
    .hero-banner-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .arumora-header .header-right-links {
        display: none;
    }
    
    .arumora-header {
        position: relative;
        padding: 15px 0;
    }
    
    .arumora-header-inner {
        justify-content: space-between;
    }
    
    .arumora-header .logo-container {
        margin-left: auto;
        margin-right: auto;
    }
    
    .arumora-header .logo img {
        max-height: 40px;
    }
    
    .header-left-actions {
        flex: 0 0 auto;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .mobile-menu-toggle {
        display: block;
        margin-left: 10px;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        width: 24px;
        height: 20px;
        position: relative;
    }
    
    .mobile-menu-toggle i {
        font-size: 24px;
        color: var(--dark-color);
        transition: all 0.3s ease;
    }
    
    /* Mobile menu icon styles updated to use FontAwesome */
    
    .rtl .mobile-menu-toggle {
        margin-left: 0;
        margin-right: 10px;
    }
    
    .sticky-header .logo img {
        max-height: 70px;
    }
    
    .sticky-header .header-action-btn {
        font-size: 16px;
    }
    
    .hero-banner {
        height: 350px;
    }
    
    .hero-banner-content {
        padding: 60px 0;
    }
    
    .hero-banner-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Product Inspired By Styling */
.product-inspired-by {
    margin-top: 6px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #666;
    padding: 3px 0;
}

.product-inspired-by .inspired-label {
    font-weight: 500;
    margin-right: 4px;
}

.product-inspired-by .inspired-name {
    font-style: italic;
    color: #333;
}

.rtl .product-inspired-by .inspired-label {
    margin-right: 0;
    margin-left: 4px;
}

@media (max-width: 576px) {
    .hero-banner {
        height: 300px;
    }
    
    .hero-banner-content {
        padding: 50px 0;
    }
    
    .hero-banner-title {
        font-size: 1.8rem;
    }
}
