/* [ACTUAL PRODUCTION CSS - ACTIVE] */
/* DEBUG_PROBE_LOADED: YES */

/* Modern UI Styles - Ajwat Bakkah (Restored Original Feel) */

/* Variables */
:root {
    --header-h: 80px;
    --bg-color: #F8F8F8;
    /* Lighter background */
    --text-color: #333;
    --accent-color: #B8762C;
    --accent-hover: #a1631f;
    --icon-size: 24px;
}

/* General Reset Override */
body {
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #FAFAFA;
}

/* ==================== SALLA PRO PRODUCT CARD ==================== */
.product-card-pro {
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card-pro:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.pro-img-box {
    position: relative;
    padding-top: 100%;
    /* Square Aspect Ratio */
    background: #f9f9f9;
    overflow: hidden;
}

.pro-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-pro:hover .pro-img-box img {
    transform: scale(1.05);
}

/* Badges */
.pro-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.badge-pro {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.badge-pro.sale {
    background: #FF3D00;
    color: white;
}

.badge-pro.new {
    background: #00C853;
    color: white;
}

/* Wishlist Button */
.wishlist-btn-pro {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: 0.2s;
    color: #777;
    font-size: 16px;
}

.wishlist-btn-pro:hover {
    background: #FF3D00;
    color: white;
    transform: scale(1.1);
}

/* Info Section */
.pro-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pro-category {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    display: block;
}

.pro-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.4;
    height: 40px;
    /* Limit to 2 lines */
    overflow: hidden;
}

.pro-title a {
    color: #333;
    text-decoration: none;
    transition: 0.2s;
}

.pro-title a:hover {
    color: var(--primary);
}

.pro-price-box {
    margin-top: auto;
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-current {
    font-size: 18px;
    font-weight: 800;
    color: #333;
}

.price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

/* ==================== SALLA PRO SECTION FOOTER ==================== */
.section-controls-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}

.btn-view-all-salla {
    padding: 8px 24px;
    color: #555;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
    white-space: nowrap;
}

.btn-view-all-salla:hover {
    border-color: #333;
    color: #333;
    background: #fcfcfc;
}

.control-line {
    flex-grow: 1;
    height: 1px;
    background: #e0e0e0;
}

.slider-nav-salla {
    display: flex;
    gap: 10px;
}

.nav-btn-salla {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 8px;
    /* Rounded Square */
    color: #555;
    cursor: pointer;
    transition: 0.2s;
}

.nav-btn-salla:hover {
    border-color: #333;
    color: #333;
    background: #fcfcfc;
}

.nav-btn-salla i {
    font-size: 14px;
}

.nav-btn-salla.swiper-button-disabled {
    opacity: 0.5;
    cursor: default;
    border-color: #eee;
}

/* Action Buttons */
.pro-actions {
    display: flex;
    gap: 10px;
}

.btn-add-cart {
    flex-grow: 1;
    background: #235d64;
    /* Salla Teal */
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    /* Rounded Corners like Salla */
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-add-cart:hover {
    background: #1a464b;
    transform: translateY(-2px);
}

.btn-quick-view {
    width: 42px;
    border: 1px solid #eee;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
}

.btn-quick-view:hover {
    border-color: #235d64;
    color: #235d64;
}

/* Reset CSS */
/* The original body rule is already defined above, so this is redundant.
   Keeping it as per instruction, but it will be overridden by the first body rule. */
body {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Structure - Clean & Flat */
.main-header {
    background-color: #FAFAFA;
    /* Match screenshot background */
    height: var(--header-h);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    /* Removed shadow for flat look */
    border-bottom: 1px solid #eee;
    padding: 0 30px;
    transition: all 0.3s ease;
    direction: rtl;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: rtl;
}

/* Header Sections */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex: 1;
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex: 1;
}

.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

/* Logo */
.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Icons */
.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    /* Slightly smaller for elegance */
    color: #333;
    padding: 5px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.icon-btn:hover {
    opacity: 0.7;
    color: #000;
}

/* Hamburger Icon */
.hamburger-icon {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    border-radius: 2px;
}

/* Cart Badge */
.cart-icon-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #B8762C;
    /* Gold badge */
    color: white;
    font-size: 10px;
    font-weight: bold;
    height: 16px;
    min-width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Drawer Menu (Kept same functioning) */
.nav-drawer {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.nav-drawer.active {
    right: 0;
}

.nav-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.nav-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.drawer-title {
    font-size: 18px;
    font-weight: bold;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.drawer-content {
    padding: 0;
    overflow-y: auto;
    height: calc(100vh - 80px);
}

.drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f9f9f9;
    transition: 0.2s;
}

.drawer-menu li.menu-header {
    background: #f4f4f4;
    padding: 10px 25px;
    font-size: 12px;
    font-weight: bold;
    color: #888;
}

.drawer-menu li a:hover {
    background: #fcfcfc;
    color: var(--accent-color);
}

/* Footer Styles - Restored Layout */
.footer-curve {
    position: relative;
    top: 5px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.footer-curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.main-footer {
    background-color: #F2F0EB;
    color: #5A5A5A;
    padding: 40px 0 30px;
    font-size: 14px;
    margin-top: -1px;
}

/* Footer Balanced Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    text-align: right;
}

/* Shop Layout & Sidebar Styles */
.sidebar-widget {
    background: var(--bg-white, #fff);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px var(--shadow, rgba(0, 0, 0, 0.05));
    border: 1px solid #f0f0f0;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark, #333);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border, #eee);
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--text-main, #555);
    transition: var(--transition, all 0.3s ease);
    text-decoration: none;
}

.category-list a:hover,
.category-list a.active {
    background: var(--bg-light, #f9f9f9);
    color: var(--primary, #B8762C);
    font-weight: bold;
}

.filter-form select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border, #eee);
    border-radius: 8px;
    font-family: inherit;
    margin-top: 8px;
    background: #fff;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group label {
    font-weight: 500;
    color: var(--text-dark, #333);
    display: block;
    margin-bottom: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #555;
    font-size: 14px;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary, #B8762C);
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.shop-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark, #333);
    margin: 0;
}

.shop-count {
    color: var(--text-light, #777);
    background: #eee;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 14px;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-white, #fff);
    border-radius: 15px;
    grid-column: 1 / -1;
}

.no-products i {
    font-size: 60px;
    color: var(--text-muted, #ccc);
    margin-bottom: 20px;
}

.no-products p {
    font-size: 18px;
    color: var(--text-light, #777);
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .shop-sidebar {
        grid-template-columns: 1fr;
    }

    .shop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.shop-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
}

.shop-count {
    color: var(--text-light);
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-white);
    border-radius: 15px;
}

.no-products i {
    font-size: 60px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-products p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .shop-sidebar {
        grid-template-columns: 1fr;
    }
}

/* Laptop Specific (1024px - 1366px) */
@media (max-width: 1366px) {
    .container {
        padding: 0 30px;
        /* More breathing room */
    }

    .footer-grid {
        gap: 20px;
        /* Tighter gap for laptops */
    }
}

.footer-section h4 {
    color: #3D2914;
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #5A5A5A;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #555;
}

.contact-list i {
    color: var(--accent-color);
    width: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid #EAEAEA;
}

.social-links a:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

/* Clean Newsletter Form (Matches Screenshot) */
.newsletter-form-modern {
    margin-top: 20px;
    width: 100%;
}

.input-group-modern {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 4px;
    /* Flatter radius */
    padding: 0;
    border: 1px solid #ddd;
}

.input-group-modern input {
    border: none;
    background: transparent;
    width: 100%;
    padding: 10px 15px;
    font-family: inherit;
    font-size: 13px;
    color: #333;
    outline: none;
    text-align: right;
}

.input-group-modern button {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
    border-left: 1px solid #eee;
    /* Separator */
}

.input-group-modern button:hover {
    color: var(--accent-color);
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: #333;
}

.footer-bottom {
    border-top: 1px solid #E6E4DD;
    padding-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* UI Unification - Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    width: 100%;
    left: 0;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
}

.float-btn {
    pointer-events: auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.float-btn:hover {
    transform: translateY(-3px);
}

.whatsapp-btn {
    background: #25D366;
    color: white !important;
}

.scroll-btn {
    background: white;
    color: var(--accent-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.scroll-btn.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 992px) {

    /* Tablet/Small Laptop: 2 Columns */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .header-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
    }

    .header-left,
    .header-right {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 0 15px;
        height: 70px;
    }

    .header-container {
        justify-content: space-between;
        position: relative;
    }

    /* Mobile Header Layout: Pure Flexbox - No Absolute Overlap */
    .header-right {
        order: 1;
        /* Right */
        flex: 0 0 auto;
        /* Do not grow */
        gap: 10px;
    }

    .header-center {
        order: 2;
        /* Center */
        position: relative !important;
        /* Force relative to preventing overlapping */
        left: auto !important;
        transform: none !important;
        flex: 1;
        /* Take available space */
        justify-content: center;
        width: auto;
    }

    .header-left {
        order: 3;
        /* Left */
        flex: 0 0 auto;
        /* Do not grow */
        gap: 15px;
    }
}

/* ==================== SHOP SIDEBAR CSS (Added Request) ==================== */
.sidebar-widget {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    color: #555;
    transition: 0.3s;
}

.category-list a:hover,
.category-list a.active {
    background: #f4f4f4;
    color: var(--accent-color);
}

.filter-form select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    margin-top: 8px;
}

/* Removed Redundant Shop Section */
}

.shop-title {
    font-size: 28px;
    font-weight: 800;
    color: #333;
}

.shop-count {
    color: #888;
    font-size: 16px;
    margin-right: 10px;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.no-products i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-products p {
    font-size: 18px;
    color: #777;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .shop-sidebar {
        grid-template-columns: 1fr;
    }

    /* Mobile Footer: 1 Column Center */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-section {
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }

    .footer-section:last-child {
        border-bottom: none;
    }
}

.logo-img {
    height: 40px;
}

/* Mobile Specifics Cleanup */
.footer-grid {
    /* Already handled in media query above */
}

.footer-links a:hover {
    padding-right: 0;
    /* Convert hover effect to scale or color only */
    padding-bottom: 5px;
}

.contact-list li {
    justify-content: center;
}

.social-links {
    justify-content: center;
}

.payment-methods {
    justify-content: center;
}

.footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

/* Modals & Floating */
.search-modal {
    padding-top: 80px;
}

.close-search {
    left: 20px;
    top: 20px;
}

.floating-buttons {
    padding: 0 20px;
    bottom: 20px;
}

.float-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
}
}

/* Glassmorphism Utility */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Animations */
.fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out backwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Card Styling */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.card-img-wrap img:hover {
    transform: scale(1.05);
}

.hover-scale {
    transition: transform 0.2s;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Colors */
.text-primary {
    color: var(--accent-color) !important;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-outline-primary {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline-primary:hover {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Price Block Design */
.product-price-block {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.price-row.current {
    font-weight: 800;
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-row.current .currency-symbol {
    font-size: 12px;
    font-weight: normal;
}

.price-row.old {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #999;
}

.old-price {
    text-decoration: line-through;
    text-decoration-color: #999;
}

.discount-badge {
    background-color: #FFEBEE;
    color: #D32F2F;
    font-weight: bold;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Home Slider & Hero */
.hero-slider,
.hero-slider .swiper {
    height: 600px;
    width: 100%;
}

@media (max-width: 768px) {

    .hero-slider,
    .hero-slider .swiper {
        height: 400px;
    }
}

.slider-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.slider-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: right;
}

.slider-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slider-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 500;
}

/* Features */
/* Features - Enhanced */
.feature-box {
    background: #ffffff;
    /* Explicit white */
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    /* Subtle initial shadow */
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(184, 118, 44, 0.15);
    /* Accent color shadow on hover */
    border-color: #e0e0e0;
}

.feature-box .icon-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.03);
    color: var(--accent-color) !important;
    transition: all 0.4s ease;
}

.feature-box:hover .icon-wrapper {
    background: var(--accent-color);
    color: white !important;
    transform: rotateY(180deg);
}

.feature-box:hover .icon-wrapper i {
    transform: rotateY(-180deg);
    /* Keep icon facing forward */
    display: inline-block;
}

/* Banners */
.banner-card img {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.banner-card:hover img {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    transition: background 0.3s;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* Horizontal Product Slider (Salla Pro Style) */
.products-slider {
    padding: 0 5px;
    overflow: hidden;
}

.products-slider .swiper {
    padding-bottom: 20px;
    padding-left: 5px;
    padding-right: 5px;
}

.products-slider .swiper-slide {
    height: auto;
    width: auto;
}

/* Custom Navigation Buttons (Product Slider) */
.swiper-button-next.custom-nav,
.swiper-button-prev.custom-nav {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--accent-color) !important;
    top: 50%;
    transform: translateY(-50%);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    z-index: 10;
    margin-top: 0;
}

.swiper-button-next.custom-nav:hover,
.swiper-button-prev.custom-nav:hover {
    background: var(--accent-color);
    color: white !important;
    transform: translateY(-50%) scale(1.1);
}

.products-section .product-card {
    height: 100%;
}

/* Swiper Minimal Customization */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color) !important;
}

/* =========================================
   🛒 Salla Pro Product Page Design (New)
   ========================================= */

/* Breadcrumbs */
.breadcrumbs-salla {
    padding: 20px 0;
    font-size: 14px;
    color: #777;
    display: flex;
    align-items: center;
}

.breadcrumbs-salla a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumbs-salla a:hover {
    color: var(--accent-color);
}

/* Page Layout */
.product-page-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
    padding: 30px;
    border: 1px solid #f9f9f9;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Gallery wider */
    gap: 50px;
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Gallery (Sticky) */
.p-gallery-sticky {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-img-box {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fcfcfc;
    position: relative;
    cursor: zoom-in;
}

.thumb-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.thumb-item {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: 0.2s;
}

.thumb-item.active {
    border-color: var(--accent-color);
    opacity: 1;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info Styles */
.product-title {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.category-tag {
    background: #f5f5f5;
    padding: 3px 10px;
    border-radius: 20px;
    color: #666;
}

.current-price {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-color);
}

.old-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999;
}

/* Action Buttons */
.btn-add-cart-lg {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-add-cart-lg:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.3);
}

.qty-control-modern {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 120px;
}

.qty-control-modern button {
    background: #f9f9f9;
    border: none;
    width: 35px;
    height: 40px;
    color: #555;
}

.qty-control-modern button:hover {
    background: #eee;
}

.qty-control-modern input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: bold;
    color: #333;
    background: white;
    height: 40px;
}

/* Tabs & Reviews */
.modern-tabs .nav-link {
    color: #555;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    padding: 15px 20px;
}

.modern-tabs .nav-link.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    background: none;
}

.modern-tab-content {
    background: #fff;
    padding: 30px;
    border: 1px solid #f0f0f0;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.review-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.review-item:last-child {
    border-bottom: none;
}

.avatar-circle {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #777;
    margin-left: 10px;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
}

.badge-offer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #d32f2f;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
}

.wishlist-btn-floating {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.wishlist-btn-floating:hover {
    color: #e91e63;
    transform: scale(1.1);
}

.promos-box {
    background: #fcfcfc;
    border: 1px dashed #ddd;
    border-radius: 8px;
    padding: 15px;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #555;
}

.promo-item:last-child {
    margin-bottom: 0;
}

border-radius: 8px;
border: 2px solid transparent;
cursor: pointer;
overflow: hidden;
opacity: 0.7;
transition: 0.3s;
flex-shrink: 0;
}

.thumb-item.active {
    border-color: var(--accent-color);
    opacity: 1;
}

.badge-offer {
    position: absolute;
    background: #ff4757;
    color: white;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10;
}

/* Details Info */
.p-details-info .title {
    color: #333;
    font-weight: 800;
    margin-bottom: 15px;
}

.price-lg {
    font-size: 28px;
    font-weight: 800;
}

.vat-note {
    font-size: 11px;
    color: #999;
    display: block;
    margin-top: 5px;
}

/* Quantity & Cart */
.action-row {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 55px;
    width: 140px;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 20px;
    width: 40px;
    height: 100%;
    cursor: pointer;
    color: #555;
}

.qty-val {
    flex: 1;
    text-align: center;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    -moz-appearance: textfield;
}

.add-cart-lg {
    flex: 1;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(184, 118, 44, 0.3);
}

.add-cart-lg:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Tabs */
.salla-tabs {
    border-top: 1px solid #f5f5f5;
}

.s-tab-btn {
    background: none;
    border: none;
    padding: 15px 0;
    font-size: 16px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.s-tab-btn.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Related Products (Card) */
.section-header-salla {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-salla {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    position: relative;
    display: inline-block;
}

.product-card-salla {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
}

.product-card-salla:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.product-card-salla .p-image {
    display: block;
    padding-bottom: 100%;
    /* Square */
    position: relative;
    overflow: hidden;
}

.product-card-salla .p-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-card-salla:hover .p-image img {
    transform: scale(1.05);
}

.product-card-salla .p-info {
    padding: 15px;
}

.product-card-salla .p-title {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    text-decoration: none;
    height: 40px;
    /* 2 lines max */
    overflow: hidden;
}

.product-card-salla .p-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card-salla .p-price {
    font-weight: bold;
    color: var(--primary);
}

.product-card-salla .p-add-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.product-card-salla .p-add-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

/* =========================================
   🌟 Salla Premium Slider & Banners (Celia++) 
   ========================================= */

/* Hero Slider - Cinematic Feel */
.hero-slider,
.hero-slider .swiper {
    height: 650px;
    /* Taller for desktop */
    width: 100%;
    border-radius: 0 0 20px 20px;
    /* Soft bottom corners */
    overflow: hidden;
}

@media (max-width: 768px) {

    .hero-slider,
    .hero-slider .swiper {
        height: 400px;
        /* Optimized mobile height */
        border-radius: 0;
        /* Full width on mobile */
    }
}

.slider-item {
    position: relative;
    background-size: cover;
    /* Ensure cover */
    background-position: center top;
}

/* Advanced Gradient Overlay */
.slider-item::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Typography & Content */
.slider-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
    padding: 20px;
}

.slider-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.8;
}

.slider-content .btn {
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    /* Fully rounded */
    box-shadow: 0 10px 30px rgba(184, 118, 44, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-content .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(184, 118, 44, 0.6);
}

/* Glassmorphism Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 55px !important;
    height: 55px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff !important;
    transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-color) !important;
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

/* Pagination Dots */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 10px;
    background: var(--accent-color);
}

/* Premium Banners */
.banner-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    height: 280px;
    /* Fixed height for consistency */
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.banner-card:hover img {
    transform: scale(1.1);
}

.banner-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    padding: 30px;
}

.banner-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    transform: translateY(10px);
    transition: 0.4s;
}

.banner-card p {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
    transition-delay: 0.1s;
}

.banner-card:hover h3 {
    transform: translateY(0);
}

.banner-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .slider-content h1 {
        font-size: 2rem;
    }

    .slider-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .slider-content .btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    /* Hide arrows on mobile */
    .banner-card {
        height: 200px;
    }
}

/* ==================== CART PAGE STYLES ==================== */
/* Cart Layout */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

/* Cart Items List */
.cart-items-list {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    padding: 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    color: var(--text-light);
    font-size: 14px;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    padding: 20px;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.cart-item:last-child {
    border-bottom: none;
}

/* Product Info */
.c-product {
    display: flex;
    gap: 15px;
    align-items: center;
}

.c-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.c-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-name h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.c-name span {
    font-size: 12px;
    color: #999;
}

/* Controls */
.c-qty {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: fit-content;
}

.c-qty button {
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-main);
}

.c-qty input {
    width: 35px;
    text-align: center;
    border: none;
    font-weight: bold;
    font-size: 14px;
}

.c-price,
.c-total {
    font-weight: 700;
    color: var(--text-dark);
}

.c-remove {
    color: #e74c3c;
    background: #fff5f5;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.c-remove:hover {
    background: #e74c3c;
    color: white;
}

/* Summary Box */
.cart-summary {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.summary-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.summary-row.total {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 10px;
}

.coupon-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.coupon-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.coupon-box button {
    padding: 10px 20px;
    background: var(--bg-body);
    border: 1px solid #ddd;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.checkout-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        position: relative;
        padding-bottom: 60px;
        /* Space for controls */
    }

    .c-product {
        margin-bottom: 10px;
    }

    .c-qty {
        position: absolute;
        bottom: 15px;
        left: 20px;
    }

    .c-total {
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }

    .c-price {
        display: none;
        /* Hide unit price on mobile, total is enough */
    }

    .c-remove {
        position: absolute;
        top: 20px;
        left: 20px;
    }
}

/* End of modern.css */

/* ==================================================
   Quantum Search System (Glassmorphism & Immersive)
   ================================================== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-inner {
    width: 100%;
    max-width: 900px;
    padding: 40px 20px;
    position: relative;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-modal.active .search-modal-inner {
    transform: translateY(0);
}

.close-search-q {
    position: absolute;
    top: -60px;
    left: 20px;
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    border: none;
}

.close-search-q:hover {
    transform: rotate(90deg);
    background: var(--accent-color);
    color: white;
}

.search-q-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.search-input-wrapper {
    position: relative;
    background: white;
    border-radius: 60px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.search-input-wrapper form {
    display: flex;
    align-items: center;
}

.search-main-icon {
    margin: 0 25px;
    color: var(--accent-color);
    font-size: 20px;
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    padding: 15px 0;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    background: transparent;
}

.search-input-wrapper input:focus {
    outline: none;
}

.search-q-submit {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    margin-right: 5px;
    transition: 0.3s;
}

.search-q-submit:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

/* Live Results Area */
.live-results-container {
    margin-top: 30px;
    max-height: 450px;
    overflow-y: auto;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
}

.q-result-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    text-decoration: none;
    transition: 0.2s;
    animation: slideUp 0.3s ease forwards;
}

.q-result-item:hover {
    background: white;
    transform: translateX(-5px);
}

.q-res-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #eee;
}

.q-res-info {
    flex: 1;
}

.q-res-name {
    display: block;
    font-weight: 700;
    color: #333;
    font-size: 16px;
    margin-bottom: 2px;
}

.q-res-price {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 800;
}

.q-res-old {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    margin-right: 8px;
}

/* Hints Section */
.search-hints {
    margin-top: 40px;
    text-align: center;
}

.hint-label {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.hint-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.hint-tags a {
    display: block;
    padding: 8px 20px;
    background: white;
    border: 1px solid #eee;
    border-radius: 30px;
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.hint-tags a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: var(--primary-light);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Tweaks */
@media (max-width: 600px) {
    .search-q-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .search-input-wrapper input {
        font-size: 16px;
    }

    .search-input-wrapper {
        padding: 4px;
    }

    .search-q-submit {
        padding: 10px 20px;
        font-size: 14px;
    }
}