@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Tajawal:wght@300;400;500;700&display=swap');

:root {
    --radius: 16px;
    --font-heading: 'Cairo', sans-serif;
    --font-body: 'Tajawal', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 14px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #e11d48, #be123c);
    color: white;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.35);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #be123c, #9f1239);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.45);
}

.btn-secondary {
    background: linear-gradient(135deg, #0f766e, #0d9488);
    color: white;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.35);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.45);
}

.btn-outline {
    background: transparent;
    color: #e11d48;
    border: 2px solid #e11d48;
    box-shadow: none;
}

.btn-outline:hover {
    background: #e11d48;
    color: white;
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.35);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

/* Form inputs modern style */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e11d48;
    background: white;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

/* Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

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

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

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(244, 114, 182, 0.05);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 800;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background: var(--primary) !important;
}

.rtl {
    direction: rtl;
    text-align: right;
}

.ltr {
    direction: ltr;
    text-align: left;
}

/* Header Styles */
.top-bar {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 10px 0;
    font-size: 13px;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-right span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.top-bar-right .divider {
    color: rgba(255, 255, 255, 0.3);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-left .social-links {
    display: flex;
    gap: 8px;
}

.top-bar-left .social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.top-bar-left .social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.top-bar-icons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-icons a {
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 11px;
}

.top-bar-icons a:hover {
    color: var(--primary);
    background: rgba(244, 114, 182, 0.1);
}

.top-bar-icons .divider {
    width: 1px;
    height: 18px;
    background: #ddd;
    margin: 0 8px;
}

.top-bar-icons .social-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-icons .social-links a {
    color: white;
    background: var(--primary);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 11px;
}

.top-bar-icons .social-links a:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.top-bar-lang {
    display: flex;
    align-items: center;
    gap: 0;
}

.top-bar-lang a {
    color: #888;
    font-weight: 600;
    padding: 5px 12px;
    transition: all 0.3s ease;
    font-size: 12px;
    background: transparent;
    width: auto;
    height: auto;
}

.top-bar-lang a.active {
    color: var(--primary);
    background: rgba(244, 114, 182, 0.1);
    border-radius: 15px 0 0 15px;
}

.top-bar-lang a:last-child.active {
    border-radius: 0 15px 15px 0;
}

.top-bar-lang a:hover {
    color: var(--primary);
}

/* Main Header */
.header-main {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 50%, #fdfcfc 100%) !important;
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #e11d48, #f472b6) 1;
}

.header-main.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-main .logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-main .logo img {
    height: 60px;
    object-fit: contain;
    background: white;
    padding: 8px 12px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.15);
    border: 2px solid rgba(225, 29, 72, 0.1);
    transition: all 0.3s ease;
}

.header-main .logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.25);
}

.header-main .logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e11d48, #be123c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-main .search-box {
    flex: 1;
    max-width: 600px;
}

.header-main .search-box form {
    display: flex;
    position: relative;
}

.header-main .search-box input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
}

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

.header-main .search-box button {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-main .search-box button:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.05);
}

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

.header-main .header-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: white;
    border: 1px solid transparent;
}

.header-main .header-action:hover {
    background: rgba(225, 29, 72, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.header-main .action-icon {
    position: relative;
    font-size: 18px;
    color: var(--text);
}

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

.header-main .action-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-main .action-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.header-main .action-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 20px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0 5px;
}

.header-main .cart-action {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.header-main .cart-action .action-icon {
    color: white;
}

.header-main .cart-action .action-text {
    color: white;
}

.header-main .cart-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(225, 29, 72, 0.4);
}

.search-box {
    flex: 1;
    max-width: 550px;
    position: relative;
}

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

.search-box input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 4px 20px rgba(244, 114, 182, 0.12);
}

.search-box button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(244, 114, 182, 0.25);
}

.search-box button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.35);
}

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

.header-action {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--text);
    font-size: 12px;
    padding: 10px 14px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.header-action:hover {
    color: var(--primary);
    background: rgba(244, 114, 182, 0.08);
}

.header-action i {
    font-size: 20px;
    font-weight: 400;
}

.action-text {
    font-size: 10px;
    font-weight: 600;
    opacity: 0.75;
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: 4px;
    right: 6px;
    min-width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 20px;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(244, 114, 182, 0.35);
}

/* Navigation */
.nav-bar {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-top: none;
    position: relative;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-bar.scrolled {
    box-shadow: var(--shadow-header);
}

.nav-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    justify-content: center;
}

.main-nav>li {
    position: relative;
}

.main-nav>li>a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    font-weight: 600;
    color: var(--text);
    position: relative;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.main-nav>li>a i {
    font-size: 13px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.main-nav>li>a:hover,
.main-nav>li.active>a {
    background: var(--primary);
    color: white;
}

.main-nav>li>a:hover i,
.main-nav>li.active>a i {
    color: white;
}

.main-nav>li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e11d48, #be123c);
    border-radius: 2px;
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.main-nav>li:hover>a {
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.08), rgba(225, 29, 72, 0.04));
    color: #e11d48;
}

.main-nav>li:hover>a i {
    transform: scale(1.15);
}

.main-nav>li:hover>a::after {
    width: 35px;
}

.main-nav>li>a.active {
    color: #e11d48;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.1), rgba(225, 29, 72, 0.05));
}

.nav-categories {
    position: relative;
}

.nav-categories>a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #e11d48, #be123c);
    color: white !important;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
    transition: all 0.3s ease;
}

.nav-categories>a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-categories:hover>a {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
}

.nav-categories:hover>a i {
    transform: rotate(180deg);
}

.nav-categories:hover .category-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto;
}

.category-dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.category-dropdown li a:hover {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: white;
    padding-right: 25px;
}

.category-dropdown li:last-child a {
    border-bottom: none;
}

/* Mobile Navigation - Professional */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--bg);
    color: var(--primary);
}

/* Mobile Nav Full Screen */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--gradient-header);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo img {
    height: 35px;
    border-radius: 8px;
}

.mobile-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

/* Mobile Search */
.mobile-search {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-search form {
    display: flex;
    gap: 10px;
}

.mobile-search input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-search input:focus {
    outline: none;
    border-color: var(--primary);
}

.mobile-search button {
    width: 45px;
    background: var(--gradient-button);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-search button:hover {
    transform: scale(1.05);
}

/* Mobile Menu Items */
.mobile-menu {
    padding: 10px 0;
}

.mobile-menu>li>a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.mobile-menu>li>a:hover {
    background: var(--bg);
    color: var(--primary);
    padding-right: 25px;
}

.mobile-menu>li>a i {
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.mobile-count {
    background: var(--primary);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    margin-right: auto;
}

.mobile-divider {
    height: 8px;
    background: var(--bg);
    margin: 10px 0;
}

.mobile-category-title {
    padding: 12px 20px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-category-title i {
    margin-left: 8px;
    color: var(--primary);
}

/* Mobile Nav Footer */
.mobile-nav-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--border);
    margin-top: 20px;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    color: var(--text);
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background: var(--primary);
    color: white;
}

.mobile-nav-footer p {
    font-size: 12px;
    color: var(--text-light);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f9 50%, #fbcfe8 100%);
    min-height: 550px;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(244, 114, 182, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}


.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.hero-slider-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-nav button.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-top: 15px;
}

.section-title-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.category-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(225, 29, 72, 0.2);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(225, 29, 72, 0.95) 0%, rgba(190, 18, 60, 0.8) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px 15px 15px;
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 0.4s ease;
}

.category-card h3 {
    color: white !important;
    font-size: 0.95rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 4px;
    line-height: 1.4;
    display: block !important;
}

.category-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
}

.category-card-default {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card-default i {
    font-size: 3rem;
    color: white;
    opacity: 0.5;
}

/* Products Section - Professional */
.products-section {
    padding: 100px 0;
    background: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #e11d48, #f472b6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(225, 29, 72, 0.2);
    border-color: rgba(225, 29, 72, 0.2);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.03) 100%);
    z-index: 1;
    pointer-events: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.badge {
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.badge-sale {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.badge-featured {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.product-actions {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 16px;
    color: #1f2937;
}

.product-action:hover {
    background: #e11d48;
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.product-action.active {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    animation: pulse 1s ease;
}

.product-action.added {
    animation: pulse 0.5s ease;
}

.quick-view-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 16px;
    color: var(--text);
}

.quick-view-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.product-category {
    font-size: 12px;
    color: #e11d48;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.9;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    min-height: 48px;
    transition: color 0.3s ease;
}

.product-title a {
    color: inherit;
}

.product-title a:hover {
    color: #e11d48;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #e11d48;
    letter-spacing: -0.5px;
}

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

.product-card-footer {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-card-buy {
    flex: 1;
    background: linear-gradient(135deg, #e11d48, #be123c);
    color: white;
    border: none;
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-card-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-card-buy:hover::before {
    left: 100%;
}

.btn-card-buy:hover {
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
    transform: translateY(-2px);
}

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

.btn-card-buy.added {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-card-view {
    width: 44px;
    height: 44px;
    background: var(--bg);
    color: var(--text);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

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

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--warning);
}

/* Banner Section - Professional */
.banner-section {
    padding: 100px 0;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.banner-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.banner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
    transition: all 0.4s ease;
}

.banner-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.banner-content {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    max-width: 280px;
    z-index: 2;
}

.banner-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 12px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-size: 1rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Features Section - Professional */
.features-section {
    padding: 50px 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px;
    background: var(--bg);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
}

.feature-item:hover {
    box-shadow: 0 10px 30px rgba(244, 114, 182, 0.12);
    border-color: rgba(244, 114, 182, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f472b6, #ec4899);
    color: white;
    border-radius: 16px;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.3);
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1f2937 !important;
}

.feature-text p {
    font-size: 13px;
    color: #6b7280 !important;
    margin: 0;
}

/* Footer - Professional */
.footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
    padding: 80px 0 0;
    margin-top: 80px;
    position: relative;
    color: white;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e11d48, #f472b6, #e11d48, #f472b6);
    background-size: 200% 100%;
    animation: footerGradient 3s ease infinite;
}

@keyframes footerGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e11d48, #f472b6);
    border-radius: 2px;
}

.footer-col ul::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e11d48, #be123c);
    border-radius: 2px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
}

.footer-col ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
    padding-right: 18px;
    background: rgba(var(--primary-rgb), 0.2);
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-col p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 55px;
    border-radius: 12px;
    background: white;
    padding: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

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

.footer-contact-item i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    color: #e11d48;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(225, 29, 72, 0.15);
    border-radius: 16px;
    font-family: var(--font-body);
    background: white;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #e11d48;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

.newsletter-form button {
    padding: 14px 22px;
    background: linear-gradient(135deg, #e11d48, #be123c);
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 14px;
    color: var(--text);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #e11d48;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(225, 29, 72, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.payment-methods img {
    height: 30px;
    opacity: 0.7;
}

/* Page Header - Professional */
.page-header {
    background: var(--gradient-header, linear-gradient(135deg, var(--secondary) 0%, var(--primary) 50%, var(--primary-dark) 100%));
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%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");
    opacity: 0.5;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

.breadcrumb span {
    color: var(--primary);
}

/* Products Page */
.products-page {
    padding: 60px 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.products-sidebar {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text);
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    color: var(--text-light);
    font-size: 14px;
}

.filter-group label:hover {
    color: var(--primary);
}

.filter-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-range input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.results-count {
    color: var(--text-light);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options select {
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    cursor: pointer;
}

.products-main .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: white;
    color: var(--text);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination span.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Product Detail Page */
.product-detail {
    padding: 50px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    background: white;
    aspect-ratio: 1;
    cursor: zoom-in;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.5);
}

.main-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(225, 29, 72, 0.1);
    border-radius: 24px;
    pointer-events: none;
}

.thumbnails {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: #e11d48;
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-card);
    margin-bottom: 15px;
    cursor: zoom-in;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-image:hover img {
    transform: scale(1.3);
}

.main-image .zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.main-image:hover .zoom-hint {
    opacity: 1;
}

.thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--primary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.product-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.08), rgba(236, 72, 153, 0.08));
    border-radius: 16px;
    border: 1px solid rgba(244, 114, 182, 0.15);
}

.product-detail-price .current-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.product-detail-price .old-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-detail-price .discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.product-short-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-options {
    margin-bottom: 25px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.color-option {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid white;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.color-option:hover,
.color-option.active {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.color-option.active {
    border-color: var(--primary);
}

.size-option {
    padding: 10px 20px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.size-option:hover,
.size-option.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.selected-variant-name {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.quantity-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.quantity-input {
    width: 60px;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
}

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

.product-detail-actions .btn {
    flex: 1;
    padding: 15px;
}

.quick-order-section {
    margin-top: 15px;
}

.quick-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: white !important;
    padding: 15px !important;
    border-radius: 12px !important;
}

.out-of-stock-alert {
    background: #fef3c7;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    margin-top: 20px;
}

.out-of-stock-alert i {
    font-size: 40px;
    color: #f59e0b;
    margin-bottom: 15px;
}

.out-of-stock-alert p {
    color: #92400e;
    margin-bottom: 15px;
    font-weight: 600 !important;
}

.quick-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
}

.product-meta-features {
    background: linear-gradient(135deg, #f8fafc, #fff);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 14px;
    padding: 12px 15px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.meta-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.meta-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 10px;
    font-size: 16px;
}

/* Tabs */
.product-tabs {
    margin-top: 40px;
}

.tabs-nav {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 25px;
}

.tab-btn {
    padding: 15px 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Cart Page */
.cart-page {
    padding: 60px 0;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.cart-table th {
    background: var(--bg);
    padding: 15px;
    text-align: right;
    font-weight: 600;
}

.cart-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

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

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-product-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.cart-product-info p {
    font-size: 13px;
    color: var(--text-light);
}

.cart-summary {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    margin-top: 30px;
    max-width: 400px;
    margin-left: auto;
}

.cart-summary h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    padding-top: 15px;
    border-top: 2px solid var(--border);
    margin-top: 15px;
}

.coupon-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.coupon-input-group {
    display: flex;
    gap: 8px;
}

.coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.coupon-input:focus {
    outline: none;
    border-color: var(--primary);
}

.coupon-btn {
    padding: 12px 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.coupon-btn:hover {
    background: var(--primary-dark);
}

.coupon-message {
    margin-top: 10px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.coupon-message.success {
    color: var(--success);
}

.coupon-message.error {
    color: var(--danger);
}

.discount-row {
    color: var(--success);
}

.discount-amount {
    color: var(--success);
    font-weight: 600;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty i {
    font-size: 80px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cart-empty h3 {
    margin-bottom: 15px;
}

/* Wishlist Page */
.wishlist-page {
    padding: 60px 0;
}

/* Checkout Page */
.checkout-page {
    padding: 60px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.checkout-form {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.order-summary {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.order-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.order-item-info p {
    font-size: 13px;
    color: var(--text-light);
}

/* Auth Pages */
.auth-page {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    max-width: 450px;
    width: 100%;
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

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

.auth-divider {
    text-align: center;
    margin: 20px 0;
    color: var(--text-light);
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border);
}

.auth-divider::before {
    right: 0;
}

.auth-divider::after {
    left: 0;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-login button {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.social-login button:hover {
    border-color: var(--primary);
    background: var(--bg);
}

/* Admin Styles */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: #1e1b4b;
    color: white;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar-header {
    padding: 20px;
    background: #312e81;
    text-align: center;
}

.admin-sidebar-header h2 {
    font-size: 1.5rem;
}

.admin-sidebar-header a {
    color: white;
}

.admin-sidebar ul {
    padding: 20px 0;
}

.admin-sidebar li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    border-right: 3px solid transparent;
    transition: all 0.3s ease;
}

.admin-sidebar li a:hover,
.admin-sidebar li a.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-right-color: var(--primary);
}

.admin-content {
    margin-right: 260px;
    padding: 30px;
    background: var(--bg);
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.admin-header h1 {
    font-size: 1.8rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.stat-card h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.stat-card .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.admin-table {
    width: 100%;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.admin-table th {
    background: var(--bg);
    padding: 15px;
    text-align: right;
    font-weight: 600;
    font-size: 14px;
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.admin-table img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.admin-table .actions {
    display: flex;
    gap: 10px;
}

.admin-table .btn {
    padding: 8px 12px;
    font-size: 13px;
}

.admin-form {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    max-width: 600px;
}

.admin-form .form-row {
    margin-bottom: 20px;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.active,
.status-badge.approved,
.status-badge.paid {
    background: #d1fae5;
    color: #059669;
}

.status-badge.inactive,
.status-badge.rejected,
.status-badge.cancelled {
    background: #fee2e2;
    color: #dc2626;
}

.status-badge.pending {
    background: #fef3c7;
    color: #d97706;
}

/* Theme Settings */
.theme-presets {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.theme-preset {
    flex: 1;
    min-width: 180px;
    padding: 20px;
    border: 3px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.theme-preset:hover {
    border-color: var(--primary);
}

.theme-preset.active {
    border-color: var(--primary);
    background: var(--bg);
}

.theme-preset h4 {
    margin-bottom: 10px;
}

.theme-colors {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.theme-color {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Alerts */
.alert {
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
    border: 1px solid #34d399;
}

.alert-error {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #dc2626;
    border: 1px solid #f87171;
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
    border: 1px solid #fbbf24;
}

/* Search Autocomplete */
.search-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-height: 450px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 8px;
}

.search-autocomplete.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: linear-gradient(90deg, rgba(244, 114, 182, 0.08), rgba(236, 72, 153, 0.04));
    padding-right: 25px;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-result-info h4 {
    font-size: 14px;
    margin-bottom: 3px;
}

.search-result-info p {
    font-size: 12px;
    color: var(--text-light);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-success {
    border-right: 4px solid var(--success);
}

.toast-error {
    border-right: 4px solid var(--error);
}

/* Loading */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive - Professional Mobile & Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        display: none;
    }

    .products-main {
        width: 100%;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Mobile Experience */
@media (max-width: 768px) {

    /* Desktop top bar - flow naturally on mobile */
    .top-bar {
        display: flex !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1001 !important;
        padding: 6px 0 !important;
    }

    .top-bar .container {
        display: flex !important;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;
    }

    .top-bar-contact {
        display: flex;
        gap: 8px;
    }

    .top-bar-contact a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.95);
        font-size: 11px;
        gap: 4px;
    }

    .top-bar-contact a i {
        color: white;
        font-size: 11px;
    }

    .top-bar-social {
        display: flex;
        gap: 5px;
    }

    .top-bar-social a {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 6px;
        color: white;
        font-size: 10px;
    }

    /* Hide mobile top bar backup */
    .mobile-top-bar {
        display: none;
    }

    /* Header mobile - flow naturally */
    .header-main {
        display: flex !important;
        padding: 8px 0 !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background: #fff !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        overflow-x: hidden;
    }

    .header-main .container {
        padding: 0 10px;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 5px;
        flex-wrap: nowrap !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .header-main .logo {
        flex: 0 0 auto !important;
        min-width: auto !important;
        max-width: 80px !important;
    }

    .header-main .logo img {
        height: 30px !important;
        max-width: 80px !important;
        padding: 2px 5px !important;
        width: auto !important;
    }

    .header-main .logo-text {
        font-size: 1rem;
    }

    /* Force header actions on same line - compact */
    .header-actions {
        display: flex !important;
        gap: 2px !important;
        align-items: center !important;
        flex-shrink: 0 !important;
        min-width: auto !important;
    }

    .header-action,
    .header-action-btn {
        padding: 4px 6px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .header-action i,
    .header-action-btn i {
        font-size: 14px !important;
    }

    .header-action .action-text,
    .header-action-btn span {
        display: none !important;
    }

    /* Hide brand text on mobile */
    .site-brand,
    .site-brand .brand-text,
    .brand-text {
        display: none !important;
    }

    /* Keep desktop search visible on mobile */
    /* .header-search {
        display: none !important;
    } */

    /* Header actions - show mobile version */
    .header-actions {
        display: flex !important;
        gap: 4px !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }

    .header-action-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        padding: 4px !important;
        border-radius: 8px !important;
        background: white;
        color: var(--text);
        font-size: 14px !important;
        position: relative;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        text-decoration: none;
        border: 1px solid #e5e7eb;
        transition: all 0.3s ease;
        flex-shrink: 0 !important;
    }

    .header-action-btn span {
        display: none !important;
    }

    .header-action-btn .badge {
        position: absolute;
        top: -3px;
        right: -3px;
        min-width: 16px;
        height: 16px;
        font-size: 10px;
        line-height: 16px;
    }

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

    .header-action-btn .badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background: #e11d48;
        color: white;
        font-size: 10px;
        padding: 2px 6px;
        border-radius: 10px;
        min-width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-action-btn span {
        display: none;
    }

    /* Mobile menu button */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: white;
        color: var(--text);
        font-size: 18px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        cursor: pointer;
        transition: all 0.3s ease;
    }

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

    .mobile-header-actions {
        display: flex !important;
        gap: 5px;
    }

    .mobile-action-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: white;
        color: var(--text);
        font-size: 16px;
        position: relative;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .mobile-action-btn .badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background: #e11d48;
        color: white;
        font-size: 10px;
        padding: 2px 6px;
        border-radius: 10px;
    }

    /* Mobile search - full width */
    .header-main .search-box {
        order: 10;
        width: 100%;
        max-width: 100%;
        margin: 8px 0 0;
        display: none;
    }

    /* Hide search on very small screens */
    @media (max-width: 480px) {

        .header-search,
        .header-main .search-box {
            display: none !important;
        }
    }

    .header-main .search-box.mobile-visible {
        display: block;
    }

    .header-main .search-box input {
        padding: 10px 40px 10px 15px;
        font-size: 13px;
    }

    .header-main .search-box button {
        width: 36px;
        height: 36px;
    }

    /* Hide desktop nav */
    .nav-bar {
        display: none !important;
    }

    /* Mobile menu button */
    .mobile-menu-btn {
        display: flex !important;
        padding: 8px;
        font-size: 18px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    /* Main content top padding for fixed header + mobile top bar */
    main {
        padding-top: 110px !important;
    }

    /* Better touch targets */
    .btn {
        min-height: 48px;
        padding: 14px 24px;
    }

    /* Swipeable product cards */
    .product-card {
        touch-action: pan-y;
    }

    /* Better scroll */
    .container {
        padding: 0 12px;
    }

    /* Larger touch elements */
    .product-action,
    .quick-view-btn,
    .btn-card-buy {
        min-width: 44px;
        min-height: 44px;
    }

    /* Better modal on mobile */
    .quick-view-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }

    /* Bottom safe area */
    .mobile-sticky-cart {
        padding-bottom: calc(15px + env(safe-area-inset-bottom));
    }

    /* Better navigation */
    .bottom-nav {
        padding-bottom: env(safe-area-inset-bottom);
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Hero section mobile */
    .hero {
        min-height: 280px;
        padding: 20px 0;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    /* Features mobile */
    .features-section {
        padding: 25px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-item {
        padding: 15px 10px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .feature-text h4 {
        font-size: 0.8rem;
    }

    .feature-text p {
        font-size: 0.7rem;
    }

    /* Categories mobile */
    .categories-section {
        padding: 30px 0;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .category-card {
        border-radius: 12px;
    }

    .category-card h3 {
        font-size: 0.75rem;
    }

    /* Products mobile */
    .products-section {
        padding: 30px 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        border-radius: 14px;
    }

    .product-info {
        padding: 10px;
    }

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

    .current-price {
        font-size: 1rem;
    }

    .btn-card-buy {
        padding: 10px 8px;
        font-size: 11px;
    }

    /* Footer mobile */
    .footer {
        padding: 30px 0 0;
        margin-top: 40px;
    }

    .footer-grid {
        gap: 20px;
    }

    .footer-col {
        padding: 0 10px;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-col ul li a {
        font-size: 13px;
        padding: 8px 10px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    /* Section titles mobile */
    .section-title {
        margin-bottom: 20px;
    }

    .section-title h2 {
        font-size: 1.3rem;
    }

    .section-title p {
        font-size: 0.85rem;
    }

    /* Banner mobile */
    .banner-section {
        padding: 30px 0;
    }

    .banner-card {
        border-radius: 14px;
    }

    /* Floating WhatsApp button - Move up to avoid bottom nav */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 240px !important;
        right: 20px !important;
    }

    .whatsapp-float-btn {
        width: 50px !important;
        height: 50px !important;
        bottom: 240px !important;
        right: 20px !important;
    }

    .whatsapp-float i {
        font-size: 24px;
    }

    .whatsapp-tooltip {
        bottom: 60px !important;
    }

    /* Wishlist page mobile */
    .wishlist-page {
        padding: 20px 0;
    }

    .wishlist-page .section-title {
        margin-bottom: 20px;
    }

    .wishlist-page .section-title h2 {
        font-size: 1.3rem;
    }

    .wishlist-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .wishlist-item {
        background: var(--card-bg);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .wishlist-item-image {
        width: 100%;
        aspect-ratio: 1;
        overflow: hidden;
    }

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

    .wishlist-item-info {
        padding: 10px;
    }

    .wishlist-item-info h3 {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .wishlist-item-info h3 a {
        color: var(--text);
    }

    .wishlist-item-price {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary);
    }

    .wishlist-item-actions {
        display: flex;
        gap: 8px;
        margin-top: 8px;
    }

    .wishlist-item-actions button,
    .wishlist-item-actions a {
        flex: 1;
        padding: 8px;
        font-size: 12px;
        border-radius: 8px;
    }

    /* Account page mobile */
    .account-page {
        padding: 20px 0;
    }

    .account-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .account-avatar {
        width: 70px;
        height: 70px;
    }

    .account-header h2 {
        font-size: 1.2rem;
    }

    .account-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }

    .account-nav a {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 10px;
        background: var(--bg);
        color: var(--text);
    }

    .account-nav a.active {
        background: var(--primary);
        color: white;
    }

    .account-content {
        background: var(--card-bg);
        border-radius: 14px;
        padding: 15px;
    }

    .account-content h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .profile-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .profile-form .form-group {
        margin-bottom: 0;
    }

    .profile-form input,
    .profile-form textarea,
    .profile-form select {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        border-radius: 10px;
    }

    /* Cart page mobile */
    .cart-page {
        padding: 20px 0;
    }

    .cart-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .cart-items {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .cart-item {
        display: flex;
        flex-direction: column;
        background: var(--card-bg);
        border-radius: 14px;
        padding: 12px;
        gap: 12px;
    }

    .cart-item-image {
        width: 100%;
        height: 100px;
        border-radius: 10px;
        overflow: hidden;
    }

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

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

    .cart-item-details h3 {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }

    .cart-item-price {
        font-size: 0.9rem;
    }

    .cart-item-actions {
        display: flex;
        gap: 8px;
    }

    .cart-item-actions button {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 8px;
    }

    .quantity-selector {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .quantity-selector button {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 14px;
    }

    .quantity-selector input {
        width: 50px;
        height: 32px;
        font-size: 14px;
        border-radius: 8px;
    }

    .cart-summary {
        background: var(--card-bg);
        border-radius: 14px;
        padding: 15px;
        position: sticky;
        bottom: 0;
    }

    .cart-summary h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .cart-summary-row {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        font-size: 14px;
    }

    .cart-summary-row.total {
        border-top: 1px solid var(--border);
        margin-top: 8px;
        padding-top: 12px;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .cart-summary .btn {
        width: 100%;
        margin-top: 12px;
    }

    /* Auth pages mobile */
    .auth-page {
        padding: 20px 0;
    }

    .auth-card {
        padding: 20px;
        border-radius: 16px;
    }

    .auth-card h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .auth-card p {
        font-size: 0.9rem;
    }

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

    .auth-card input {
        padding: 12px;
        font-size: 14px;
        border-radius: 10px;
    }

    .auth-card .btn {
        width: 100%;
        padding: 14px;
        font-size: 14px;
    }

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

    .auth-card .social-login button {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        border-radius: 10px;
    }

    .auth-card p[style*="text-align: center"] {
        font-size: 0.85rem;
        margin-top: 15px;
    }

    /* Checkout page mobile */
    .checkout-page {
        padding: 20px 0;
    }

    .checkout-form {
        padding: 15px;
        border-radius: 14px;
    }

    .checkout-form h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .form-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

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

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
        border-radius: 10px;
    }

    .order-summary {
        padding: 15px;
        border-radius: 14px;
    }

    .order-summary h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .order-items {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .order-item {
        display: flex;
        gap: 10px;
    }

    .order-item img {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }

    .order-item-info h4 {
        font-size: 0.9rem;
    }

    .order-item-info span {
        font-size: 0.8rem;
    }

    .payment-options {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .payment-option {
        padding: 12px;
        border-radius: 10px;
    }

    /* Product detail mobile */
    .product-detail {
        padding: 20px 0;
    }

    .product-detail-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .product-gallery {
        width: 100%;
    }

    .main-image {
        width: 100%;
        height: 300px;
        border-radius: 14px;
        overflow: hidden;
    }

    .main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .thumbnails {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 10px 0;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .product-detail-info {
        padding: 0;
    }

    .product-detail-info h1 {
        font-size: 1.3rem;
    }

    .product-detail-meta {
        flex-wrap: wrap;
        gap: 8px;
    }

    .product-detail-meta span {
        font-size: 0.8rem;
    }

    .product-detail-price {
        margin: 15px 0;
    }

    .product-detail-price .current-price {
        font-size: 1.5rem;
    }

    .product-detail-price .old-price {
        font-size: 0.9rem;
    }

    .product-short-desc {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .product-detail-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .product-detail-actions .btn {
        width: 100%;
        padding: 14px;
        font-size: 14px;
    }

    .quantity-selector-lg {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .quantity-selector-lg button {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 16px;
    }

    .quantity-selector-lg input {
        width: 60px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }

    .product-meta-features {
        padding: 12px;
        border-radius: 12px;
    }

    /* Tabs mobile */
    .tabs-nav {
        overflow-x: auto;
        gap: 0;
        padding-bottom: 10px;
    }

    .tab-btn {
        padding: 10px 14px;
        font-size: 13px;
        white-space: nowrap;
    }

    .tab-content {
        padding: 15px;
    }

    .tab-content h3 {
        font-size: 1rem;
    }

    /* Compare page mobile */
    .compare-page {
        padding: 20px 0;
    }

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

    .compare-products {
        display: flex;
        gap: 10px;
        overflow-x: auto;
    }

    .compare-product {
        min-width: 150px;
        border-radius: 12px;
    }

    /* Footer mobile - ensure proper display */
    .footer {
        padding: 30px 15px 0;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col {
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    .footer-col ul li a {
        font-size: 13px;
        padding: 8px 0;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    /* Page header mobile */
    .page-header {
        padding: 30px 0;
        margin-top: 50px;
    }

    .page-header h1 {
        font-size: 1.3rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }
}

/* Micro-animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

.scale-in {
    animation: scaleIn 0.4s ease forwards;
}

.bounce-hover:hover {
    animation: bounce 0.5s ease;
}

/* Stagger animations */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

/* Button ripple effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Enhanced hover states */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Input focus animations */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.15);
    transition: all 0.3s ease;
}

/* Link hover animation */
a {
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

@media (max-width: 991px) {

    /* Hide top bar on tablet and below */
    .top-bar {
        display: none !important;
    }

    /* Top Bar */
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-bar-right,
    .top-bar-left {
        justify-content: center;
    }

    .top-bar-right span {
        display: none;
    }

    /* Header - Professional Mobile */
    .header-main {
        padding: 10px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    }

    .header-main .container {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 12px;
    }

    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 1rem;
    }

    /* Search - Full width on mobile */
    .header-main .search-box {
        order: 10;
        width: 100%;
        max-width: 100%;
        margin-top: 8px;
    }

    .header-main .search-box form {
        display: none;
    }

    .header-main .search-box input {
        padding: 10px 40px 10px 15px;
        font-size: 13px;
        border-radius: 12px;
    }

    .header-main .search-box button {
        width: 36px;
        height: 36px;
    }

    /* Search icon to toggle search */
    .search-toggle {
        display: flex;
    }

    /* Header Actions */
    .header-actions {
        gap: 6px;
    }

    .header-action span {
        display: none;
    }

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

    .header-action {
        padding: 8px 10px;
        border-radius: 10px;
    }

    /* Navigation */
    .nav-bar {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
        background: none;
        border: none;
        font-size: 20px;
        color: var(--text);
        cursor: pointer;
        padding: 8px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn:hover {
        background: var(--bg);
    }

    /* Main content padding for fixed header */
    main {
        padding-top: 60px;
    }

    /* Hero Section */
    .hero {
        min-height: 300px;
        padding: 25px 0;
    }

    .hero-content {
        text-align: center;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-slider-nav {
        bottom: 12px;
    }

    /* Features - Professional Mobile */
    .features-section {
        padding: 25px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 15px 12px;
        border-radius: 14px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 16px;
        border-radius: 12px;
    }

    .feature-text h4 {
        font-size: 0.85rem;
    }

    .feature-text p {
        font-size: 0.7rem;
    }

    /* Section Titles */
    .section-title {
        margin-bottom: 25px;
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    .section-title p {
        font-size: 0.85rem;
    }

    /* Categories - Professional Mobile */
    .categories-section {
        padding: 30px 0;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .category-card {
        border-radius: 12px;
    }

    .category-card h3 {
        font-size: 0.7rem;
    }

    /* Products - Professional Mobile */
    .products-section {
        padding: 30px 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        border-radius: 14px;
    }

    .product-info {
        padding: 10px;
    }

    .product-category {
        font-size: 9px;
    }

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

    .product-title a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .current-price {
        font-size: 1rem;
    }

    .old-price {
        font-size: 0.75rem;
    }

    .product-badges {
        top: 8px;
        right: 8px;
    }

    .badge {
        padding: 3px 8px;
        font-size: 9px;
    }

    .product-actions {
        opacity: 1;
        transform: none;
        flex-direction: row;
        top: auto;
        bottom: 6px;
        right: 6px;
        left: 6px;
        justify-content: flex-end;
        gap: 6px;
    }

    .product-action,
    .quick-view-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .product-card:hover .product-actions {
        transform: none;
    }

    .product-card-footer {
        flex-direction: row;
    }

    .btn-card-buy {
        flex: 1;
        padding: 10px 10px;
        font-size: 11px;
    }

    .btn-card-view {
        width: 32px;
        height: 32px;
        padding: 0;
    }

    .btn-card-view i {
        font-size: 12px;
    }

    /* Banner - Professional Mobile */
    .banner-section {
        padding: 30px 0;
    }

    .banner-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .banner-card {
        aspect-ratio: 16/10;
        border-radius: 14px;
    }

    .banner-content {
        right: 15px;
        max-width: 150px;
    }

    .banner-content h3 {
        font-size: 1rem;
    }

    .banner-content p {
        font-size: 0.8rem;
    }

    /* Footer - Professional Mobile */
    .footer {
        padding: 40px 0 0;
        margin-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col ul li a {
        font-size: 13px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
        text-align: center;
    }

    .newsletter-form button {
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    /* Page Header - Professional Mobile */
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .breadcrumb {
        font-size: 11px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    /* Products Page - Professional Mobile */
    .products-page {
        padding: 25px 0;
    }

    .products-header {
        flex-direction: column;
        gap: 10px;
    }

    .results-count {
        font-size: 12px;
    }

    .sort-options {
        width: 100%;
    }

    .sort-options select {
        width: 100%;
        padding: 12px;
        font-size: 13px;
    }

    /* Product Detail - Professional Mobile */
    .product-detail {
        padding: 25px 0;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }

    .main-image {
        border-radius: 14px;
    }

    .thumbnails {
        gap: 8px;
    }

    .thumbnail {
        width: 55px;
        height: 55px;
    }

    .product-detail-info h1 {
        font-size: 1.3rem;
    }

    .product-detail-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .product-detail-meta span {
        font-size: 11px;
    }

    .product-detail-price .current-price {
        font-size: 1.5rem;
    }

    .product-short-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }

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

    .product-detail-actions .btn {
        width: 100%;
        padding: 14px;
        font-size: 14px;
    }

    .product-meta-features {
        padding: 15px;
    }

    /* Tabs - Professional Mobile */
    .tabs-nav {
        overflow-x: auto;
        gap: 0;
    }

    .tab-btn {
        white-space: nowrap;
        padding: 10px 14px;
        font-size: 13px;
    }

    /* Cart - Professional Mobile */
    .cart-page {
        padding: 25px 0;
    }

    .cart-table {
        display: block;
        overflow-x: auto;
    }

    .cart-table th,
    .cart-table td {
        padding: 8px;
        font-size: 12px;
    }

    .cart-product {
        flex-direction: column;
        gap: 8px;
    }

    .cart-product img {
        width: 60px;
        height: 60px;
    }

    .cart-summary {
        margin-top: 15px;
        padding: 15px;
    }

    .quantity-selector {
        justify-content: center;
    }

    /* Checkout - Professional Mobile */
    .checkout-page {
        padding: 25px 0;
    }

    .checkout-form {
        padding: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .order-summary {
        padding: 15px;
    }

    /* Auth Pages - Professional Mobile */
    .auth-page {
        padding: 25px 12px;
    }

    .auth-card {
        padding: 20px 15px;
        border-radius: 16px;
    }
}

.top-bar-right,
.top-bar-left {
    justify-content: center;
}

.top-bar-right span {
    display: none;
}

/* Header - Professional Mobile */
.header-main {
    padding: 12px 0;
}

.header-main .container {
    flex-wrap: wrap;
    gap: 10px;
}

.logo img {
    height: 42px;
}

.logo-text {
    font-size: 1.1rem;
}

/* Search - Full width on mobile */
.search-box {
    order: 5;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
}

.search-box input {
    padding: 12px 45px 12px 18px;
    font-size: 14px;
    border-radius: 14px;
}

.search-box button {
    width: 40px;
    height: 40px;
}

/* Header Actions */
.header-actions {
    gap: 10px;
}

.header-action span {
    display: none;
}

.header-action i {
    font-size: 20px;
}

/* Navigation */
.nav-bar {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--bg);
}

/* Hero Section */
.hero {
    min-height: 350px;
    padding: 30px 0;
}

.hero-content {
    text-align: center;
    padding: 0 15px;
}

.hero-content h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.hero-buttons {
    flex-direction: column;
    gap: 10px;
}

.hero-buttons .btn {
    width: 100%;
    justify-content: center;
}

.hero-slider-nav {
    bottom: 15px;
}

/* Features - Professional Mobile */
.features-section {
    padding: 30px 0;
}

.features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
    border-radius: 16px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 18px;
    border-radius: 12px;
}

.feature-text h4 {
    font-size: 0.9rem;
}

.feature-text p {
    font-size: 11px;
}

/* Section Titles */
.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 1.5rem;
}

.section-title p {
    font-size: 0.9rem;
}

/* Categories - Professional Mobile */
.categories-section {
    padding: 40px 0;
}

.category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.category-card {
    border-radius: 14px;
}

.category-card h3 {
    font-size: 0.85rem;
}

/* Products - Professional Mobile */
.products-section {
    padding: 40px 0;
}

.product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-card {
    border-radius: 16px;
}

.product-info {
    padding: 12px;
}

.product-category {
    font-size: 10px;
}

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

.product-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.old-price {
    font-size: 0.8rem;
}

.product-badges {
    top: 10px;
    right: 10px;
}

.badge {
    padding: 4px 10px;
    font-size: 10px;
}

.product-actions {
    opacity: 1;
    transform: none;
    flex-direction: row;
    top: auto;
    bottom: 8px;
    right: 8px;
    left: 8px;
    justify-content: flex-end;
    gap: 8px;
}

.product-action,
.quick-view-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

.product-card:hover .product-actions {
    transform: none;
}

.product-card-footer {
    flex-direction: row;
}

.btn-card-buy {
    flex: 1;
    padding: 10px 12px;
    font-size: 12px;
}

.btn-card-view {
    width: 36px;
    height: 36px;
    padding: 0;
}

.btn-card-view i {
    font-size: 14px;
}

/* Banner - Professional Mobile */
.banner-section {
    padding: 40px 0;
}

.banner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.banner-card {
    aspect-ratio: 16/10;
    border-radius: 18px;
}

.banner-content {
    right: 20px;
    max-width: 180px;
}

.banner-content h3 {
    font-size: 1.2rem;
}

.banner-content p {
    font-size: 0.85rem;
}

/* Footer - Professional Mobile */
.footer {
    padding: 50px 0 0;
    margin-top: 60px;
}

.footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-col {
    text-align: center;
}

.footer-col h4 {
    font-size: 1.1rem;
}

.footer-logo {
    justify-content: center;
}

.footer-contact {
    align-items: center;
}

.footer-social {
    justify-content: center;
}

.footer-col ul li a {
    font-size: 14px;
}

.newsletter-form {
    flex-direction: column;
}

.newsletter-form input {
    width: 100%;
    text-align: center;
}

.newsletter-form button {
    width: 100%;
}

.social-links {
    justify-content: center;
}

.footer-bottom-content {
    flex-direction: column;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    margin-bottom: 15px;
}

/* Page Header - Professional Mobile */
.page-header {
    padding: 50px 0;
}

.page-header h1 {
    font-size: 1.8rem;
}

.breadcrumb {
    font-size: 12px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

/* Products Page - Professional Mobile */
.products-page {
    padding: 30px 0;
}

.products-header {
    flex-direction: column;
    gap: 12px;
}

.results-count {
    font-size: 13px;
}

.sort-options {
    width: 100%;
}

.sort-options select {
    width: 100%;
    padding: 12px;
    font-size: 14px;
}

/* Product Detail - Professional Mobile */
.product-detail {
    padding: 30px 0;
}

.product-gallery {
    position: relative;
    top: 0;
}

.main-image {
    border-radius: 16px;
}

.thumbnails {
    gap: 10px;
}

.thumbnail {
    width: 65px;
    height: 65px;
}

.product-detail-info h1 {
    font-size: 1.5rem;
}

.product-detail-meta {
    flex-wrap: wrap;
    gap: 12px;
}

.product-detail-meta span {
    font-size: 12px;
}

.product-detail-price .current-price {
    font-size: 1.8rem;
}

.product-short-desc {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.product-detail-actions .btn {
    width: 100%;
    padding: 16px;
    font-size: 15px;
}

.product-meta-features {
    padding: 18px;
}

/* Tabs - Professional Mobile */
.tabs-nav {
    overflow-x: auto;
    gap: 0;
}

.tab-btn {
    white-space: nowrap;
    padding: 12px 16px;
    font-size: 14px;
}

/* Cart - Professional Mobile */
.cart-page {
    padding: 30px 0;
}

.cart-table {
    display: block;
    overflow-x: auto;
}

.cart-table th,
.cart-table td {
    padding: 10px;
    font-size: 13px;
}

.cart-product {
    flex-direction: column;
    gap: 10px;
}

.cart-product img {
    width: 70px;
    height: 70px;
}

.cart-summary {
    margin-top: 20px;
    padding: 20px;
}

.quantity-selector {
    justify-content: center;
}

/* Checkout - Professional Mobile */
.checkout-page {
    padding: 30px 0;
}

.checkout-form {
    padding: 20px;
}

.form-row {
    grid-template-columns: 1fr;
}

.order-summary {
    padding: 20px;
}

/* Auth Pages - Professional Mobile */
.auth-page {
    padding: 30px 15px;
}

.auth-card {
    padding: 25px 20px;
    border-radius: 20px;
}

.auth-card h2 {
    font-size: 1.5rem;
}

.social-login {
    flex-direction: column;
}

/* Pagination - Professional Mobile */
.pagination {
    flex-wrap: wrap;
    gap: 8px;
}

.pagination a,
.pagination span {
    width: 38px;
    height: 38px;
    font-size: 13px;
}

/* Empty State - Professional Mobile */
.cart-empty {
    padding: 50px 20px;
}

.cart-empty i {
    font-size: 60px;
}

.cart-empty h3 {
    font-size: 1.3rem;
}

/* Toast - Professional Mobile */
.toast-container {
    left: 15px;
    right: 15px;
    bottom: 80px;
}

.toast {
    min-width: auto;
    width: 100%;
}

/* Search Autocomplete - Under Search Bar */
.header-search .search-autocomplete {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-top: 8px !important;
    max-height: 300px !important;
}

.search-result-item {
    padding: 12px 15px;
}

.search-result-item img {
    width: 45px;
    height: 45px;
}

/* Professional Touch: Bottom Nav - Improved */
.bottom-nav {
    display: none;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 8px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 11px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 65px;
    position: relative;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: #e11d48;
    background: rgba(225, 29, 72, 0.08);
}

.bottom-nav-item i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.bottom-nav-item:hover i {
    transform: scale(1.15);
}

.nav-icon-badge {
    position: relative;
}

.nav-icon-badge .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e11d48;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.bottom-nav-item i {
    font-size: 22px;
}

.bottom-nav-item.active {
    color: var(--primary);
}

.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 0 0 3px 3px;
}

.bottom-nav-item:active {
    transform: scale(0.95);
}

.nav-icon-badge {
    position: relative;
}

.nav-icon-badge .badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--primary);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid white;
}

/* Mobile Header Styles */
.top-bar {
    padding: 5px 0;
}

.top-bar-icons {
    gap: 3px;
}

.top-bar-icons a {
    width: 24px;
    height: 24px;
    font-size: 10px;
}

.top-bar-icons .divider {
    margin: 0 4px;
    height: 16px;
}

.top-bar-icons .social-links {
    gap: 3px;
}

.top-bar-icons .social-links a {
    width: 22px;
    height: 22px;
    font-size: 9px;
}

.top-bar-lang a {
    padding: 4px 8px;
    font-size: 10px;
}

/* Main Header Mobile */
.header-main {
    padding: 10px 0;
}

.header-main .container {
    flex-wrap: wrap;
    gap: 10px;
}

.header-main .logo img {
    height: 38px;
}

.header-main .logo-text {
    font-size: 1.2rem;
}

.header-main .search-box {
    order: 3;
    width: 100%;
    max-width: 100%;
}

.header-main .header-actions {
    gap: 2px;
}

.header-main .header-action {
    padding: 8px;
}

.header-main .header-action i {
    font-size: 18px;
}

.header-main .header-action .action-text {
    display: none;
}

.mobile-menu-btn {
    display: flex !important;
    color: white;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    /* Hide desktop nav */
    .nav-bar {
        display: none !important;
    }

    /* Header mobile */
    .header-actions .action-text {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Main content padding for fixed header */
    main {
        padding-top: 60px !important;
    }

    /* Mobile Nav */
    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--card-bg);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        overflow-y: auto;
        display: block;
    }

    .mobile-nav.active {
        right: 0;
    }

    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        background: linear-gradient(135deg, #fff1f2, #fce7f9);
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .mobile-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: #e11d48;
        font-weight: 700;
    }

    .mobile-logo img {
        height: 35px;
        width: auto;
    }

    .mobile-nav-close {
        background: none;
        border: none;
        font-size: 22px;
        color: var(--text);
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .mobile-nav-close:hover {
        background: rgba(0, 0, 0, 0.05);
        color: #e11d48;
    }

    .mobile-search {
        padding: 15px;
        border-bottom: 1px solid var(--border);
    }

    .mobile-search form {
        display: flex;
        gap: 10px;
    }

    .mobile-search input {
        flex: 1;
        padding: 12px;
        border: 2px solid var(--border);
        border-radius: 10px;
        font-size: 14px;
        transition: border-color 0.3s;
    }

    .mobile-search input:focus {
        outline: none;
        border-color: #e11d48;
    }

    .mobile-search button {
        padding: 12px 18px;
        background: #e11d48;
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s;
    }

    .mobile-search button:hover {
        background: #be123c;
    }

    .mobile-menu {
        list-style: none;
        padding: 10px 0;
    }

    .mobile-menu li {
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        color: var(--text);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s;
    }

    .mobile-menu a:hover {
        background: rgba(225, 29, 72, 0.06);
        color: #e11d48;
        padding-right: 25px;
    }

    .mobile-menu a i {
        width: 24px;
        text-align: center;
        color: #e11d48;
    }

    .mobile-divider {
        height: 8px;
        background: var(--bg);
        margin: 10px 0;
    }

    .mobile-category-title {
        padding: 14px 20px;
        color: var(--text-light);
        font-weight: 600;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mobile-category-title i {
        margin-left: 8px;
        color: #e11d48;
    }

    .mobile-count {
        background: #e11d48;
        color: white;
        padding: 2px 8px;
        border-radius: 10px;
        font-size: 11px;
        font-weight: 600;
        margin-right: auto;
    }

    .mobile-nav-footer {
        padding: 15px;
        border-top: 1px solid var(--border);
        text-align: center;
        margin-top: 15px;
    }

    .mobile-social {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .mobile-social a {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--bg);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text);
        transition: all 0.3s;
    }

    .mobile-social a:hover {
        background: #e11d48;
        color: white;
    }

    .mobile-nav-footer p {
        color: var(--text-light);
        font-size: 12px;
    }

    /* Mobile nav ul */
    .mobile-nav ul {
        list-style: none;
        font-size: 13px;
        margin: 0;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .cart-item {
        flex-wrap: wrap;
    }

    .cart-item-actions {
        width: 100%;
        justify-content: space-between;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--border);
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .banner-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

.header-main .container {
    flex-wrap: wrap;
    gap: 10px;
}

.header-main .logo img {
    height: 38px;
}

.header-main .logo-text {
    font-size: 1.2rem;
}

.header-main .search-box {
    order: 3;
    width: 100%;
    max-width: 100%;
}

.header-main .header-actions {
    gap: 2px;
}

.header-main .header-action {
    padding: 8px;
}

.header-main .header-action i {
    font-size: 18px;
}

.header-main .header-action .action-text {
    display: none;
}



/* Product card footer on mobile */
.product-card-footer {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.btn-card-buy {
    flex: 1;
}

.btn-card-view {
    width: 40px;
    height: 40px;
}

/* Quick view modal on mobile */
.quick-view-content {
    max-height: 85vh;
    border-radius: 20px;
}

.quick-view-grid {
    padding: 20px;
    gap: 20px;
}

/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent pull-to-refresh on mobile */
body {
    overscroll-behavior-y: contain;
}

/* Mobile header fix - removed to avoid conflicts with main mobile styles */

@media (max-width: 480px) {

    /* Even smaller adjustments */
    .container {
        padding: 0 10px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 13px;
        min-height: 44px;
    }

    .logo img {
        height: 32px;
    }

    .header-main {
        padding: 6px 0;
    }

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

    .mobile-header-actions {
        gap: 4px;
    }

    .mobile-action-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .mobile-menu-btn {
        font-size: 16px;
        padding: 6px;
    }

    main {
        padding-top: 110px !important;
    }

    .hero {
        min-height: 220px;
        padding: 15px 0;
    }

    .hero-content h1 {
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 0.75rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-image {
        aspect-ratio: 1;
    }

    .product-actions {
        gap: 4px;
        bottom: 6px;
    }

    .product-action {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .badge {
        font-size: 9px;
        padding: 3px 6px;
    }

    .features-grid {
        gap: 8px;
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        padding: 12px 8px;
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
        margin: 0 auto 8px;
    }

    .feature-text h4 {
        font-size: 0.75rem;
    }

    .feature-text p {
        font-size: 0.65rem;
    }

    .banner-content {
        right: 10px;
    }

    .banner-content h3 {
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 1.3rem;
    }

    /* Cart mobile professional */
    .cart-table thead {
        display: none;
    }

    .cart-table tbody tr {
        display: flex;
        flex-direction: column;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: white;
        margin-bottom: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }

    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px dashed var(--border);
    }

    .cart-table td:last-child {
        border-bottom: none;
    }

    .cart-table td:before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 12px;
        color: var(--text-light);
    }

    .cart-product {
        border-bottom: 1px solid var(--border) !important;
        margin-bottom: 5px;
        padding-bottom: 12px !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
    }

    .cart-product:before {
        display: none !important;
    }

    /* Form inputs */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 10px;
    }

    /* Product detail mobile */
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .main-image {
        border-radius: 12px;
    }

    .thumbnail {
        width: 50px;
        height: 50px;
    }

    .product-detail-info h1 {
        font-size: 1.3rem;
    }

    .product-detail-price .current-price {
        font-size: 1.5rem;
    }

    /* Checkout mobile */
    .checkout-form {
        padding: 15px;
    }

    .order-summary {
        padding: 15px;
    }

    /* Auth mobile */
    .auth-card {
        padding: 20px 15px;
        border-radius: 16px;
    }

    /* Footer small mobile */
    .footer-col h4 {
        font-size: 0.95rem;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }

    /* Product card small adjustments */
    .product-info {
        padding: 8px;
    }

    .product-title {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .current-price {
        font-size: 0.9rem;
    }

    .old-price {
        font-size: 0.7rem;
    }

    .btn-card-buy {
        padding: 8px 6px;
        font-size: 10px;
    }

    .product-badges {
        top: 6px;
        right: 6px;
    }

    /* Newsletter small mobile */
    .newsletter-form input {
        padding: 12px;
        font-size: 13px;
    }

    /* Tabs mobile */
    .tabs-nav {
        overflow-x: auto;
    }

    .tab-btn {
        padding: 10px 14px;
        font-size: 13px;
        white-space: nowrap;
    }
}

/* Touch device optimizations - Product actions always visible on mobile */
@media (hover: none),
(max-width: 768px) {
    .product-actions {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto;
    }

    .product-card:hover {
        transform: none;
    }

    .product-card:hover .product-image img {
        transform: none;
    }

    /* Make product action buttons touch-friendly */
    .product-action,
    .quick-view-btn {
        opacity: 1 !important;
        visibility: visible !important;
        transform: scale(1) !important;
    }
}

/* Bottom Navigation Bar - Mobile */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 992px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    body {
        padding-bottom: 70px;
    }
}

.mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 16px;
    color: #6b7280;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
    min-width: 60px;
    position: relative;
}

.mobile-bottom-nav-item i {
    font-size: 20px;
    transition: transform 0.2s ease;
}

.mobile-bottom-nav-item:active {
    transform: scale(0.95);
}

.mobile-bottom-nav-item:hover,
.mobile-bottom-nav-item.active {
    color: #e11d48;
}

.mobile-bottom-nav-item:hover i,
.mobile-bottom-nav-item.active i {
    transform: scale(1.15);
}

.mobile-bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #e11d48;
    border-radius: 0 0 3px 3px;
}

.mobile-nav-badge {
    position: absolute;
    top: 2px;
    right: 8px;
    min-width: 18px;
    height: 18px;
    background: #e11d48;
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* Hero Slider Mobile Improvements */
@media (max-width: 768px) {
    .hero-full-bg {
        height: 60vh;
        min-height: 400px;
    }

    .hero-full-slide {
        position: relative;
    }

    .hero-full-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.3) 0%,
                rgba(0, 0, 0, 0.5) 50%,
                rgba(0, 0, 0, 0.4) 100%);
    }

    .glass-card {
        padding: 25px 20px !important;
        max-width: 90%;
        margin: 0 5%;
    }

    .glass-card h1 {
        font-size: 22px !important;
    }

    .glass-desc {
        display: none;
    }

    .glass-price .current {
        font-size: 28px !important;
    }

    .glass-price .old {
        font-size: 16px !important;
    }

    .btn-lg {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }

    .hero-arrow {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
    }

    .hero-arrow-prev {
        left: 10px !important;
    }

    .hero-arrow-next {
        right: 10px !important;
    }

    .hero-full-nav {
        bottom: 15px;
        gap: 8px;
    }

    .hero-full-nav button {
        width: 8px;
        height: 8px;
    }

    .glass-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .glass-stock {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .hero-full-bg {
        height: 50vh;
        min-height: 350px;
    }

    .glass-card {
        padding: 20px 15px !important;
    }

    .glass-card h1 {
        font-size: 18px !important;
        margin-bottom: 10px;
    }

    .glass-price {
        gap: 10px;
        margin-bottom: 10px;
    }

    .glass-price .current {
        font-size: 24px !important;
    }

    .glass-actions {
        margin-top: 5px;
    }

    .btn-lg {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }

    .hero-progress-bar {
        display: none;
    }
}

/* Trust Badges Mobile — single scrollable row, no wrapping */
@media (max-width: 768px) {
    .trust-badges-bar-new {
        padding: 14px 0 !important;
    }

    /* Keep one row — horizontal scroll */
    .trust-badges-bar-new .trust-badges-grid,
    .trust-badges-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        grid-template-columns: unset !important;
        gap: 0 !important;
    }

    .trust-badge {
        flex-shrink: 0 !important;
        flex: 0 0 auto !important;
        padding: 8px 16px !important;
        border-radius: 0 !important;
        flex-direction: row !important;
        /* icon + text side-by-side */
        text-align: right !important;
    }

    .trust-badge-icon {
        width: 34px !important;
        height: 34px !important;
        font-size: 15px !important;
    }

    /* Title + desc inline */
    .trust-badge-text {
        display: flex !important;
        flex-direction: row !important;
        align-items: baseline !important;
        gap: 4px !important;
    }

    .trust-badge-title {
        font-size: 12px !important;
        font-weight: 700 !important;
    }

    .trust-badge-desc {
        font-size: 11px !important;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1350px;
    }

    .product-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Animations - Professional */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.slide-up {
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Scroll Animation Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* Pulse Animation */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Shimmer Loading Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(to right, #f0f0f0 4%, #e0e0e0 25%, #f0f0f0 36%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Skeleton Loading for Products */
.product-skeleton {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.skeleton-image {
    aspect-ratio: 1;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 14px;
    border-radius: 4px;
    margin: 10px 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-text.short {
    width: 40%;
}

.skeleton-text.medium {
    width: 70%;
}

.skeleton-text.long {
    width: 90%;
}

.skeleton-title {
    height: 20px;
    width: 80%;
    border-radius: 4px;
    margin: 15px 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-price {
    height: 24px;
    width: 50%;
    border-radius: 4px;
    margin: 15px 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

/* Page Loading Spinner */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.page-loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.page-loader-text {
    color: var(--text-light);
    font-size: 16px;
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
}

.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.quick-view-content {
    position: relative;
    background: white;
    border-radius: 24px;
    max-width: 950px;
    width: 95%;
    max-height: 92vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.quick-view-modal.active .quick-view-content {
    transform: scale(1) translateY(0);
}

.quick-view-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quick-view-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.quick-view-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 35px;
}

.quick-view-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-view-main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg), var(--bg-2));
    position: relative;
}

.quick-view-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.quick-view-main-image:hover img {
    transform: scale(1.05);
}

.quick-view-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-view-thumbnails img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.quick-view-thumbnails img.active,
.quick-view-thumbnails img:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.3);
}

.quick-view-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-view-category {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
}

.quick-view-info h2 {
    font-size: 24px;
    margin: 0;
}

.quick-view-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-view-price .current-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.quick-view-price .old-price {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
}

.quick-view-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.quick-view-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-size: 14px;
}

.quick-view-qty {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-view-qty label {
    font-weight: 600;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.qty-selector .qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.qty-selector input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.quick-view-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.quick-view-actions .btn {
    flex: 1;
    text-align: center;
}

@media (max-width: 768px) {
    .quick-view-grid {
        grid-template-columns: 1fr;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination .page-btn {
    min-width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .page-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Search View All Link */
.search-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    color: var(--primary);
    font-weight: 600;
    border-top: 1px solid var(--border);
    transition: all 0.3s ease;
}

.search-view-all:hover {
    background: var(--bg);
}

/* Reviews Section */
.reviews-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reviews-summary {
    display: flex;
    gap: 30px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius);
}

.rating-overview {
    text-align: center;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.rating-stars {
    color: #fbbf24;
    font-size: 18px;
    margin: 5px 0;
}

.rating-stars i.active {
    color: #fbbf24;
}

.rating-stars i:not(.active) {
    color: var(--border);
}

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

.rating-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-input .stars {
    display: flex;
    gap: 5px;
}

.rating-input .stars i {
    font-size: 24px;
    cursor: pointer;
    color: var(--border);
    transition: all 0.2s ease;
}

.rating-input .stars i.active,
.rating-input .stars i:hover {
    color: #fbbf24;
}

.review-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    resize: vertical;
    font-family: inherit;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

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

.review-user {
    font-weight: 600;
}

.review-rating {
    color: #fbbf24;
}

.review-comment {
    color: var(--text-light);
    line-height: 1.6;
}

.review-date {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
    display: block;
}

.login-to-review {
    text-align: center;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius);
}

.login-to-review a {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   PROFESSIONAL UI ENHANCEMENTS
   ============================================ */

/* Free Shipping Progress Bar */
.shipping-progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f2937, #374151);
    padding: 12px 20px;
    z-index: 1600;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.shipping-progress-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.shipping-progress-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
}

.shipping-progress-text i {
    color: #10b981;
    font-size: 18px;
}

.shipping-progress-text .highlight {
    color: #fbbf24;
    font-weight: 700;
}

.shipping-progress-bar-wrapper {
    flex: 1;
    max-width: 300px;
}

.shipping-progress-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.shipping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.shipping-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.shipping-progress-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    transition: color 0.3s;
}

.shipping-progress-close:hover {
    color: white;
}

.shipping-progress-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 15px;
}

.shipping-shop-btn {
    background: linear-gradient(135deg, #fff, #f3f4f6);
    color: #e11d48;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.shipping-shop-btn:hover {
    background: #e11d48;
    color: white;
    transform: translateY(-2px);
}

.shipping-cart-btn {
    background: linear-gradient(135deg, #e11d48, #be123c);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.shipping-cart-btn:hover {
    background: #be123c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.4);
}

.shipping-progress-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 16px;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .shipping-progress-bar {
        padding: 12px 15px;
    }

    .shipping-progress-content {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .shipping-progress-bar-wrapper {
        order: 3;
        max-width: 100%;
        width: 100%;
    }

    .shipping-progress-actions {
        order: 2;
        margin-right: 0;
    }

    .shipping-shop-btn,
    .shipping-cart-btn {
        padding: 8px 12px;
        font-size: 11px;
    }

    .shipping-progress-close {
        position: absolute;
        top: 8px;
        left: 10px;
    }
}

/* Trust Badges Bar */
.trust-badges-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.trust-badges-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--text);
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--bg), white);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.trust-badge-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(244, 114, 182, 0.3);
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
}

.trust-badge-title {
    font-weight: 700;
    font-size: 14px;
}

.trust-badge-desc {
    font-size: 12px;
    color: var(--text-light);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.payment-icon {
    width: 50px;
    height: 32px;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .trust-badges-grid {
        gap: 20px;
    }

    .trust-badge {
        flex: 0 0 calc(50% - 10px);
        justify-content: center;
    }
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.skeleton-image {
    aspect-ratio: 1;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

.skeleton-info {
    padding: 20px;
}

.skeleton-line {
    height: 14px;
    margin-bottom: 10px;
    border-radius: 6px;
}

.skeleton-line.short {
    width: 60%;
}

.skeleton-line.medium {
    width: 80%;
}

.skeleton-line.long {
    width: 100%;
}

.skeleton-btn {
    height: 44px;
    margin-top: 15px;
    border-radius: 12px;
}

/* Urgency Indicators */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    animation: pulse-subtle 2s infinite;
}

@keyframes pulse-subtle {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.low-stock-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #dc2626;
    font-size: 12px;
    font-weight: 600;
}

.low-stock-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.viewing-now {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 12px;
}

.viewing-now .pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Enhanced Empty States */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--bg), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.empty-state-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, var(--bg), transparent);
    border-radius: 50%;
    z-index: -1;
}

.empty-state-icon i {
    font-size: 50px;
    color: var(--primary);
    opacity: 0.7;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text);
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.empty-state .btn {
    margin-top: 10px;
}

/* Social Proof Counter */
.social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    margin-bottom: 20px;
}

.social-proof-avatars {
    display: flex;
}

.social-proof-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    object-fit: cover;
}

.social-proof-avatars img:first-child {
    margin-left: 0;
}

.social-proof-text {
    font-size: 14px;
    color: var(--text);
}

.social-proof-text strong {
    color: #10b981;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 240px;
    right: 20px;
    z-index: 9998;
}

.whatsapp-float-btn {
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    position: fixed;
    bottom: 240px;
    right: 20px;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 65px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: max-content;
    max-width: 150px;
    background: #1f2937;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Mobile Bottom Sheet Filter */
.filter-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 24px 24px 0 0;
    z-index: 2000;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.15);
}

.filter-sheet.active {
    transform: translateY(0);
}

.filter-sheet-handle {
    width: 40px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin: 12px auto;
}

.filter-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.filter-sheet-header h3 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-sheet-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
}

.filter-sheet-content {
    padding: 20px;
}

.filter-sheet-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    position: sticky;
    bottom: 0;
    background: white;
    display: flex;
    gap: 15px;
}

.filter-sheet-footer .btn {
    flex: 1;
}

.filter-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.filter-sheet-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-filter-btn .filter-count {
    background: var(--primary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .mobile-filter-btn {
        display: flex;
    }

    .products-sidebar {
        display: none;
    }
}

/* Enhanced Micro-interactions */
.btn-press:active {
    transform: scale(0.95);
}

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

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Wishlist Heart Animation */
.wishlist-btn.animating i {
    animation: heart-beat 0.6s ease;
}

@keyframes heart-beat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Cart Add Animation */
.cart-added-animation {
    animation: cart-bounce 0.5s ease;
}

@keyframes cart-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Staggered Animation Helper */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Card Hover */
.enhanced-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.enhanced-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.enhanced-card:hover::before {
    opacity: 1;
}

/* Toast Notifications - Enhanced */
.toast-enhanced {
    background: white;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    max-width: 400px;
    animation: toast-slide-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes toast-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-enhanced.success {
    border-right: 4px solid #10b981;
}

.toast-enhanced.error {
    border-right: 4px solid #ef4444;
}

.toast-enhanced.warning {
    border-right: 4px solid #f59e0b;
}

.toast-enhanced-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.toast-enhanced.success .toast-enhanced-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.toast-enhanced.error .toast-enhanced-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.toast-enhanced-content {
    flex: 1;
}

.toast-enhanced-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
}

.toast-enhanced-message {
    font-size: 13px;
    color: var(--text-light);
}

/* Enhanced Quick View */
.quick-view-enhanced .quick-view-content {
    max-width: 1000px;
}

.quick-view-enhanced .quick-view-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    padding: 30px;
}

.quick-view-gallery-enhanced {
    position: relative;
}

.quick-view-main-enhanced {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg);
    margin-bottom: 15px;
}

.quick-view-main-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.quick-view-main-enhanced:hover img {
    transform: scale(1.05);
}

.quick-view-thumbs-enhanced {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.quick-view-thumbs-enhanced::-webkit-scrollbar {
    height: 4px;
}

.quick-view-thumbs-enhanced::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

.quick-view-thumb-enhanced {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.quick-view-thumb-enhanced.active,
.quick-view-thumb-enhanced:hover {
    border-color: var(--primary);
}

.quick-view-thumb-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-info-enhanced h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.quick-view-price-enhanced {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quick-view-price-enhanced .current {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.quick-view-price-enhanced .old {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.quick-view-price-enhanced .discount {
    background: #ef4444;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.quick-view-variants {
    margin-bottom: 20px;
}

.quick-view-variant-label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.quick-view-variant-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.variant-option {
    padding: 10px 20px;
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.variant-option:hover,
.variant-option.active {
    border-color: var(--primary);
    background: rgba(244, 114, 182, 0.1);
    color: var(--primary);
}

.variant-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .quick-view-enhanced .quick-view-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
}

/* Sticky Add to Cart Bar */
.sticky-add-to-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1400;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.sticky-add-to-cart.visible {
    transform: translateY(0);
}

.sticky-add-to-cart-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.sticky-product-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.sticky-product-name {
    font-weight: 600;
    font-size: 14px;
}

.sticky-product-price {
    color: var(--primary);
    font-weight: 700;
}

.sticky-add-to-cart .btn {
    padding: 14px 30px;
}

@media (max-width: 768px) {
    .sticky-add-to-cart {
        display: block;
    }
}

/* Product Grid - Load More */
.load-more-wrapper {
    text-align: center;
    padding: 40px 0;
}

.load-more-btn {
    min-width: 200px;
}

.load-more-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Notification Dot */
.notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 160px;
        width: 45px;
        height: 45px;
    }
}

/* Image Lazy Load Effect */
.lazy-image {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Enhanced Badge */
.badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.badge-hot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.badge-limited {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

/* Newsletter Popup */
.newsletter-popup {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.newsletter-popup.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.newsletter-popup-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.newsletter-popup.active .newsletter-popup-content {
    transform: scale(1);
}

.newsletter-popup-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
}

.newsletter-popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.newsletter-popup-icon i {
    font-size: 35px;
    color: white;
}

.newsletter-popup h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.newsletter-popup p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.newsletter-popup-form {
    display: flex;
    gap: 10px;
}

.newsletter-popup-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
}

.newsletter-popup-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-popup-form button {
    padding: 14px 25px;
}

.newsletter-popup-discount {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: white;
    padding: 20px;
    z-index: 2500;
    display: none;
}

.cookie-consent.show {
    display: block;
    animation: slide-up 0.4s ease;
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    font-size: 14px;
    opacity: 0.9;
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary);
    color: white;
    border: none;
}

.cookie-settings {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mobile Sticky Add to Cart */
.mobile-sticky-cart {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.sticky-cart-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-cart-info img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.sticky-cart-details {
    display: flex;
    flex-direction: column;
}

.sticky-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.sticky-stock {
    font-size: 12px;
    color: var(--success);
}

.mobile-sticky-cart .btn {
    padding: 12px 25px;
}

@media (max-width: 768px) {
    .mobile-sticky-cart {
        display: flex;
    }

    .product-detail {
        padding-bottom: 100px;
    }
}

/* PROFESSIONAL ENHANCEMENTS */
/* ============================================
   ENHANCED TOP BAR - Add to your CSS file
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
    background-size: 200% 200% !important;
    padding: 10px 0 !important;
    animation: topBarGradient 8s ease infinite !important;
}

@keyframes topBarGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   ENHANCED HEADER MAIN
   ============================================ */
.header-main {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08) !important;
    padding: 12px 0 !important;
}

.header-main .logo img {
    height: 65px !important;
}

/* ============================================
   ENHANCED SEARCH BOX
   ============================================ */
.header-search form {
    border-radius: 50px !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05) !important;
}

.header-search form:focus-within {
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.2) !important;
    transform: translateY(-2px) !important;
}

.header-search input {
    padding: 16px 22px !important;
}

.header-search button {
    padding: 16px 28px !important;
    background: linear-gradient(135deg, #e94560, #c73659) !important;
}

/* ============================================
   ENHANCED HEADER ACTIONS
   ============================================ */
.header-action-btn {
    border-radius: 50px !important;
    border: 1px solid #eee !important;
    padding: 12px 20px !important;
}

.header-action-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(233, 69, 96, 0.3) !important;
    background: linear-gradient(135deg, #e94560, #c73659) !important;
    color: #fff !important;
}

.header-action-btn .badge {
    width: 22px !important;
    height: 22px !important;
    animation: badgePulse 2s infinite !important;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.header-action-btn.cart-btn {
    background: linear-gradient(135deg, #e94560, #0f3460) !important;
    color: #fff !important;
}

/* ============================================
   ENHANCED NAVIGATION
   ============================================ */
.nav-bar {
    border-bottom: 3px solid !important;
    border-image: linear-gradient(90deg, #e94560, #0f3460, #e94560) 1 !important;
}

.main-nav li a {
    padding: 18px 26px !important;
    border-radius: 10px !important;
}

.main-nav li a:hover,
.main-nav li.active a {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.35) !important;
    background: linear-gradient(135deg, #e94560, #c73659) !important;
    color: #fff !important;
}