/* Alibaba-style CSS - Exact Match */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.4;
}

/* Header Styles - Compact & Minimal */
.alibaba-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 6px 0;
}

.alibaba-logo {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: #333;
}

.logo-orange {
    color: #ff6a00;
    font-size: 22px;
}

/* Search Container */
.search-container {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    margin-right: 6px;
}

.search-input {
    height: 34px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 35px 0 12px;
    font-size: 13px;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: #ff6a00;
    outline: none;
}

.search-input::placeholder {
    color: #aaa;
}

.search-image-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
}

.search-image-btn:hover {
    color: #ff6a00;
}

.search-btn {
    background-color: #ff6a00;
    border: none;
    color: white;
    height: 34px;
    padding: 0 18px;
    font-weight: 600;
    border-radius: 4px;
    font-size: 13px;
    transition: background-color 0.2s;
}

.search-btn:hover {
    background-color: #e55a00;
}

/* Header Actions - Compact */
.header-actions {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.logo-img {
    height: 24px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    opacity: 0.8;
    cursor: pointer;
}

.logo-img:hover {
    opacity: 1;
}

.language-currency {
    color: #666;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 3px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    min-width: 36px;
    text-align: center;
}

.language-currency:hover {
    color: #ff6a00;
    border-color: #ff6a00;
}

.cart-icon {
    font-size: 18px;
    color: #666;
    cursor: pointer;
    padding: 6px;
}

.cart-icon:hover {
    color: #ff6a00;
}

.sign-in-link {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    padding: 6px 10px;
    font-weight: 500;
}

.sign-in-link:hover {
    color: #ff6a00;
}

.btn-orange {
    background-color: #ff6a00;
    border: none;
    color: white;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
}

.btn-orange:hover {
    background-color: #e55a00;
    color: white;
}

/* Secondary Navigation - Compact */
.secondary-nav {
    background-color: #fafafa;
    border-bottom: 1px solid #e5e5e5;
    padding: 6px 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.nav-links li a:hover {
    color: #ff6a00;
}

/* Trade Assurance Banner - Compact */
.trade-assurance-banner {
    background-color: #fffbf0;
    border-bottom: 1px solid #ffe8a1;
}

.banner-text {
    color: #856404;
    font-size: 12px;
    font-weight: 500;
}

/* Main Content Layout */
.main-content {
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.container-fluid .row {
    margin: 0;
}

.container-fluid .row > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

/* Sidebar Styles - Alibaba Proportions */
.sidebar {
    background-color: #ffffff;
    border-right: 1px solid #e5e5e5;
    padding: 16px 12px;
    min-height: 500px;
    width: 240px;
    max-width: 240px;
}

.sidebar h6 {
    color: #333;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
}

.sidebar .form-check {
    margin-bottom: 6px;
}

.sidebar .form-check-label {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

.sidebar .form-control {
    font-size: 12px;
    height: 28px;
    border: 1px solid #ddd;
    padding: 4px 8px;
}

.sidebar .btn-sm {
    font-size: 11px;
    padding: 3px 8px;
    height: 28px;
}

.sidebar .input-group {
    margin-bottom: 8px;
}

/* Product Grid - Alibaba Proportions */
.product-grid {
    padding: 16px 20px;
    flex: 1;
}

/* 4 Products per row layout */
.product-col {
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 1200px) {
    .product-col {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 992px) {
    .product-col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 768px) {
    .product-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.section-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 2px;
}

.product-count {
    font-size: 12px;
    color: #666;
    margin-bottom: 16px;
}

/* Product Cards - Exact Alibaba Style */
.product-card {
    background: white;
    border: 1px solid #e5e5e5;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    position: relative;
    width: 100%;
}

.product-card:hover {
    border-color: #ff6a00;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #e5e5e5;
}

.product-info {
    padding: 12px;
}

.product-title {
    font-size: 12px;
    color: #333;
    line-height: 1.3;
    margin-bottom: 6px;
    height: 32px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 14px;
    font-weight: bold;
    color: #ff6a00;
    margin-bottom: 3px;
}

.min-order {
    font-size: 11px;
    color: #666;
    margin-bottom: 6px;
}

.supplier-info {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* Product Actions Container */
.product-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.contact-btn {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    flex: 1;
    cursor: pointer;
    height: 32px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.contact-btn:hover {
    background-color: #ff6a00;
    color: white;
    border-color: #ff6a00;
}

.chat-btn {
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
    padding: 6px 8px;
    font-size: 12px;
    cursor: pointer;
    height: 32px;
    width: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chat-btn:hover {
    background-color: #ff6a00;
    color: white;
    border-color: #ff6a00;
}

.ad-label {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #ff6a00;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 2px;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 1000;
}

.rfq-btn, .top-btn {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #ff6a00;
    color: white;
    border: none;
    border-radius: 50%;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.rfq-btn:hover, .top-btn:hover {
    background-color: #e55a00;
}

.rfq-btn i, .top-btn i {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

/* Messenger Button */
.messenger-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background-color: #0084ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}

.messenger-btn:hover {
    background-color: #0066cc;
}

/* Mobile Header Styles */
.mobile-header {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 16px;
}

.mobile-header-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo a {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.logo-orange {
    color: #ff6a00;
    font-size: 22px;
}

.mobile-search {
    flex: 1;
}

.search-input-mobile {
    position: relative;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 8px 16px;
}

.search-input-mobile input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    padding: 4px 8px;
}

.search-icon {
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}

.camera-icon {
    color: #999;
    font-size: 16px;
    margin-left: 8px;
}

/* Mobile Navigation Tabs */
.mobile-nav-tabs {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 16px;
}

.nav-tabs-container {
    display: flex;
    gap: 24px;
}

.nav-tab {
    padding: 12px 0;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-tab.active {
    color: #ff6a00;
    border-bottom-color: #ff6a00;
}

/* Mobile Category Filters */
.mobile-categories {
    background: white;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
}

.categories-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    white-space: nowrap;
    padding: 8px 16px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.category-item.active {
    background: #ff6a00;
    color: white;
}

/* Mobile Action Cards */
.mobile-action-cards {
    background: white;
    padding: 16px;
    display: flex;
    gap: 12px;
    border-bottom: 1px solid #e5e5e5;
}

.action-card {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    position: relative;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.action-icon {
    width: 32px;
    height: 32px;
    background: #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    margin-bottom: 8px;
}

.action-card span {
    font-size: 12px;
    color: #333;
    font-weight: 500;
}

.open-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff6a00;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: bold;
}

/* Mobile Product Sections */
.mobile-section {
    background: white;
    margin-bottom: 16px;
    padding: 16px;
}

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

.section-header h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.section-header p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.section-header i {
    color: #ff6a00;
    font-size: 16px;
}

.mobile-products-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-products-scroll::-webkit-scrollbar {
    display: none;
}

/* OLD STYLES - Replaced with SHEIN round style below */
/* .mobile-product-card {
/*     min-width: 100px;
/*     background: white;
/*     border: 1px solid #e5e5e5;
/*     border-radius: 8px;
/*     overflow: hidden;
/* }
/* 
/* .mobile-product-card img {
/*     width: 100%;
/*     height: 60px;
/*     object-fit: cover;
/* }
/* 
/* .mobile-product-card .no-image {
/*     width: 100%;
/*     height: 60px;
/*     background: #f5f5f5;
/*     display: flex;
/*     align-items: center;
/*     justify-content: center;
/*     color: #999;
/* }
/* 
/* .mobile-product-card .product-info {
/*     padding: 6px;
/* }
/* 
/* .mobile-product-card .price {
/*     font-size: 11px;
/*     font-weight: bold;
/*     color: #ff6a00;
/*     margin-bottom: 4px;
/* }
/* 
/* .mobile-product-card .deal-badge {
/*     background: #dc3545;
/*     color: white;
/*     font-size: 9px;
/*     padding: 2px 4px;
/*     border-radius: 4px;
/*     display: inline-block;
/* }
/* 
/* .mobile-product-card .min-order {
/*     font-size: 9px;
/*     color: #666;
/* }

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e5e5;
    z-index: 1000;
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 10px;
    padding: 4px 8px;
    transition: all 0.2s ease;
}

.bottom-nav-item i {
    font-size: 18px;
    margin-bottom: 2px;
}

.bottom-nav-item.active {
    color: #ff6a00;
}

.bottom-nav-item span {
    font-size: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sidebar {
        width: 200px;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .alibaba-header .col-md-2,
    .alibaba-header .col-md-6,
    .alibaba-header .col-md-4 {
        margin-bottom: 10px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .sidebar {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .floating-buttons {
        right: 10px;
        bottom: 80px;
    }
    
    .messenger-btn {
        right: 10px;
        bottom: 10px;
    }
    
    /* Add bottom padding for mobile bottom nav */
    body {
        padding-bottom: 60px;
    }
}

/* Pagination */
.pagination {
    justify-content: center;
    margin-top: 30px;
}

.page-link {
    color: #ff6a00;
    border-color: #e5e5e5;
}

.page-link:hover {
    color: #e55a00;
    background-color: #fff3cd;
    border-color: #e5e5e5;
}

.page-item.active .page-link {
    background-color: #ff6a00;
    border-color: #ff6a00;
}

/* Form Styles */
.form-control {
    border: 1px solid #ddd;
    border-radius: 0;
}

.form-control:focus {
    border-color: #ff6a00;
    box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.25);
}

.btn-primary {
    background-color: #ff6a00;
    border-color: #ff6a00;
}

.btn-primary:hover {
    background-color: #e55a00;
    border-color: #e55a00;
}

/* User Dropdown - Compact */
.user-menu {
    position: relative;
    display: inline-block;
}

.user-toggle {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    padding: 6px 10px;
    font-weight: 500;
}

.user-toggle:hover {
    color: #ff6a00;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    margin-top: 4px;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid #f5f5f5;
}

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

.dropdown-item:hover {
    background-color: #f8f8f8;
    color: #ff6a00;
}

.dropdown-divider {
    height: 1px;
    background-color: #e5e5e5;
    margin: 0;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    margin-right: 8px;
}

/* Become Seller Page Styles */
.become-seller-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.welcome-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 8px;
    text-align: center;
}

.benefits-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.benefit-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    height: 100%;
    transition: all 0.2s ease;
}

.benefit-card:hover {
    border-color: #ff6a00;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.benefit-card h6 {
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.form-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-section .section-heading {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.form-section .section-subheading {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.form-control, .form-select {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #ff6a00;
    box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.25);
}

.form-check-input:checked {
    background-color: #ff6a00;
    border-color: #ff6a00;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.25);
}

.help-section {
    background-color: #e3f2fd;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

/* Chatbot Widget Interface */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    height: 500px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-widget.show {
    display: flex;
}

.chatbot-widget.minimized {
    height: 60px;
}

.chatbot-widget.minimized .chatbot-messages,
.chatbot-widget.minimized .chatbot-input-area {
    display: none;
}

/* Chatbot Header */
.chatbot-header {
    background: linear-gradient(135deg, #ff6a00 0%, #e55a00 100%);
    padding: 16px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

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

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.chatbot-details {
    flex: 1;
}

.chatbot-name {
    font-weight: 600;
    color: white;
    font-size: 16px;
    margin-bottom: 2px;
}

.chatbot-status {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.chatbot-controls {
    display: flex;
    gap: 8px;
}

.chatbot-minimize,
.chatbot-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.chatbot-minimize:hover,
.chatbot-close:hover {
    background: rgba(255,255,255,0.3);
}

.chat-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    background: #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.chat-details {
    flex: 1;
}

.chat-username {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.chat-status {
    font-size: 12px;
    color: #666;
}

.chat-controls {
    display: flex;
    gap: 8px;
}

.chat-minimize,
.chat-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.chat-minimize:hover,
.chat-close:hover {
    background: #e5e5e5;
    color: #333;
}

/* Chatbot Messages */
.chatbot-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #fafafa;
}

.chatbot-welcome {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.welcome-avatar {
    width: 32px;
    height: 32px;
    background: #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.welcome-content {
    flex: 1;
}

.welcome-text {
    background: white;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.welcome-time {
    font-size: 11px;
    color: #999;
    margin-top: 6px;
    text-align: right;
}

.quick-actions {
    margin-bottom: 16px;
}

.quick-action-title {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.quick-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-btn {
    background: white;
    border: 1px solid #e5e5e5;
    color: #666;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-btn:hover {
    background: #ff6a00;
    color: white;
    border-color: #ff6a00;
}

.chatbot-message {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.chatbot-message.user-message {
    flex-direction: row-reverse;
}

.bot-avatar {
    width: 32px;
    height: 32px;
    background: #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.message-item {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.message-item.user-message {
    flex-direction: row-reverse;
}

.message-item.seller-message {
    flex-direction: row;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.message-content {
    max-width: 75%;
}

.message-text {
    background: white;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.message-text p {
    margin: 0 0 8px 0;
}

.message-text p:last-child {
    margin-bottom: 0;
}

.message-text strong {
    color: #ff6a00;
    font-weight: 600;
}

.user-message .message-text {
    background: #ff6a00;
    color: white;
    border-color: #ff6a00;
}

.seller-message .message-text {
    background: #f8f9fa;
    color: #333;
    border-color: #e5e5e5;
}

.message-time {
    font-size: 11px;
    color: #999;
    margin-top: 6px;
    text-align: right;
}

.user-message .message-time {
    text-align: left;
}

.seller-message .message-time {
    text-align: right;
}



/* Chatbot Input Area */
.chatbot-input-area {
    background: white;
    border-top: 1px solid #e5e5e5;
    padding: 16px;
}

.chatbot-input-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.chatbot-input {
    flex: 1;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.chatbot-input:focus {
    border-color: #ff6a00;
    box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.1);
}

.chatbot-send-btn {
    background: #ff6a00;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chatbot-send-btn:hover {
    background: #e55a00;
    transform: scale(1.05);
}

.chat-toolbar {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    border-bottom: 1px solid #e5e5e5;
}

.toolbar-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.toolbar-btn:hover {
    background: #f8f9fa;
    color: #ff6a00;
}

.chat-input-wrapper {
    display: flex;
    padding: 12px;
    gap: 8px;
}

.chat-input {
    flex: 1;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    outline: none;
    transition: all 0.2s ease;
}

.chat-input:focus {
    border-color: #ff6a00;
    box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.1);
}

.chat-send-btn {
    background: #ff6a00;
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chat-send-btn:hover {
    background: #e55a00;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .messaging-chat {
        width: calc(100vw - 20px);
        height: calc(100vh - 100px);
        bottom: 80px;
        right: 10px;
        left: 10px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 6px;
    }
    
    .contact-btn,
    .chat-btn {
        width: 100%;
        height: 28px;
        font-size: 11px;
    }
}

/* Subscription Styles */
.subscription-hero {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-icon {
    width: 80px;
    height: 80px;
    background: #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 32px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.current-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00a651;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 16px;
}

.subscription-plans-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.subscription-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #e5e5e5;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.subscription-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #ff6a00;
}

.subscription-card.featured {
    border-color: #ff6a00;
    transform: scale(1.05);
}

.subscription-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6a00;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.plan-header {
    margin-bottom: 30px;
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ff6a00;
    font-size: 24px;
}

.plan-name {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.plan-price {
    margin-bottom: 20px;
}

.plan-price .currency {
    font-size: 24px;
    color: #ff6a00;
    vertical-align: top;
}

.plan-price .amount {
    font-size: 48px;
    font-weight: bold;
    color: #ff6a00;
}

.plan-price .period {
    font-size: 16px;
    color: #666;
}

.plan-description {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.plan-features {
    flex: 1;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    text-align: left;
}

.feature-item i {
    color: #00a651;
    font-size: 16px;
    width: 20px;
}

.feature-item span {
    color: #333;
    font-size: 15px;
}

.plan-actions {
    margin-top: auto;
}

.btn-subscribe, .btn-upgrade {
    background: #ff6a00;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-subscribe:hover, .btn-upgrade:hover {
    background: #e55a00;
    color: white;
    transform: translateY(-2px);
}

.btn-current-plan {
    background: #00a651;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.features-comparison-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h5 {
    margin: 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.faq-question i {
    color: #ff6a00;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Subscription Required Styles */
.subscription-required-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.subscription-required-card {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.required-icon {
    width: 80px;
    height: 80px;
    background: #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 32px;
}

.required-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.required-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
}

.benefit-item i {
    color: #00a651;
    font-size: 18px;
}

.required-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.trial-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ff6a00;
    font-weight: 500;
    font-size: 16px;
}

/* My Subscription Styles */
.my-subscription-section {
    padding: 40px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.page-header {
    margin-bottom: 40px;
}

.page-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
}

.subscription-status-card, .usage-stats-card, .recent-products-card, .no-subscription-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.plan-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a00;
    font-size: 24px;
}

.plan-name {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.plan-description {
    color: #666;
    margin: 0;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

.status-badge.inactive {
    background: #f8d7da;
    color: #721c24;
}

.subscription-details {
    margin-bottom: 30px;
}

.detail-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.detail-value {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.subscription-actions {
    display: flex;
    gap: 15px;
}

.stats-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.stat-item {
    margin-bottom: 25px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.stat-progress {
    height: 6px;
    background: #e5e5e5;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #ff6a00;
    transition: width 0.3s ease;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.feature-item i {
    color: #00a651;
    width: 16px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.product-item {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-item:hover {
    border-color: #ff6a00;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.no-image {
    width: 100%;
    height: 120px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 24px;
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-price {
    font-size: 16px;
    font-weight: bold;
    color: #ff6a00;
    margin-bottom: 8px;
}

.product-status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.product-status.active {
    background: #d4edda;
    color: #155724;
}

.product-status.inactive {
    background: #f8d7da;
    color: #721c24;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-state i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-state h5 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.empty-state p {
    margin-bottom: 20px;
}

.no-subscription-card {
    text-align: center;
    padding: 60px 40px;
}

.no-subscription-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #ff6a00;
    font-size: 32px;
}

.no-subscription-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.no-subscription-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.no-subscription-actions {
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .subscription-card {
        padding: 30px 20px;
    }

    .plan-price .amount {
        font-size: 36px;
    }

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

    .status-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .plan-info {
        flex-direction: column;
        text-align: center;
    }

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

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

/* Product Form Styles */
.page-header-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.header-content {
    flex: 1;
}

.page-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.subscription-info-section {
    margin-bottom: 40px;
}

.subscription-info-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #ff6a00;
}

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

.subscription-icon {
    width: 40px;
    height: 40px;
    background: #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.subscription-details h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.subscription-details p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.product-form-section {
    padding-bottom: 60px;
}

.product-form-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid #e5e5e5;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: #ff6a00;
    font-size: 20px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.required {
    color: #e74c3c;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6a00;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-help {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
    font-style: italic;
}

.price-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 16px;
    color: #666;
    font-weight: 600;
    z-index: 1;
}

.price-input-wrapper input {
    padding-left: 32px;
}

/* Image Upload Styles */
.image-upload-area {
    margin-top: 20px;
}

.upload-zone {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: #ff6a00;
    background: #fff8f3;
}

.upload-icon {
    font-size: 48px;
    color: #ff6a00;
    margin-bottom: 16px;
}

.upload-text h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.upload-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.upload-formats {
    font-size: 12px;
    color: #999;
}

.upload-zone input[type="file"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.image-preview {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.image-preview img {
    max-width: 300px;
    max-height: 300px;
    display: block;
}

.remove-image {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-image:hover {
    background: rgba(0,0,0,0.9);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ff6a00;
    color: white;
}

.btn-primary:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.3);
}

.btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e5e5e5;
}

.btn-secondary:hover {
    background: #e9ecef;
    color: #333;
    transform: translateY(-2px);
}

.btn-upgrade {
    background: #ff6a00;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-upgrade:hover {
    background: #e55a00;
    color: white;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        text-align: center;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .product-form-card {
        padding: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .subscription-info-card {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* Product Listing Overrides - ensure larger images on grid */
.desktop-products .product-image,
.product-card .product-image {
    height: 250px;
}
/* SHEIN-Style Round Product Cards - Mobile Only */
@media (max-width: 768px) {
    .mobile-product-card {
        min-width: 90px;
        max-width: 90px;
        background: transparent;
        border: none;
        border-radius: 0;
        overflow: visible;
        text-align: center;
    }

    .mobile-product-card img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #f0f0f0;
        margin: 0 auto 8px;
        display: block;
    }

    .mobile-product-card .no-image {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        margin: 0 auto 8px;
        border: 2px solid #f0f0f0;
    }

    .mobile-product-card .product-info {
        padding: 0;
        text-align: center;
    }

    .mobile-product-card .price {
        font-size: 13px;
        font-weight: bold;
        color: #ff6a00;
        margin-bottom: 2px;
    }

    .mobile-product-card .deal-badge {
        background: #ff6a00;
        color: white;
        font-size: 9px;
        padding: 3px 8px;
        border-radius: 12px;
        display: inline-block;
        margin-top: 4px;
    }

    .mobile-product-card .min-order {
        font-size: 10px;
        color: #999;
        margin-top: 4px;
    }

    /* Adjust the scroll container */
    .mobile-products-scroll {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 12px 16px;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-products-scroll::-webkit-scrollbar {
        display: none;
    }
}

/* =========================================
   MODERN DESIGN UPDATE - INTER & POLISH
   ========================================= */

/* Force Inter Font globally */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif !important;
    letter-spacing: -0.02em;
}

/* Hover Lift Effect Utility */
.hover-scale {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-scale:hover {
    transform: scale(1.05);
}

/* Glassmorphism Utility */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Improved Product Card Styling */
.product-card, 
.deal-card-compact, 
.category-card-horizontal {
    border: none !important;
    border-radius: 12px !important;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03); /* Subtle shadow default */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover, 
.deal-card-compact:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08); /* Deeper shadow on hover */
}

/* Image Zoom on Hover */
.product-card .card-img-top,
.deal-image-wrapper-compact img {
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-top,
.deal-card-compact:hover img {
    transform: scale(1.03);
}

/* Typography Polish */
.product-title, .deal-title-compact {
    font-weight: 500 !important;
    color: #2d3436;
}

.product-price, .deal-price-compact {
    font-weight: 700 !important;
    color: #ff6a00 !important;
    letter-spacing: -0.5px;
}

/* Button Modernization */
.btn-primary, .btn-orange {
    background: linear-gradient(135deg, #ff6a00 0%, #ff8c42 100%) !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(255, 106, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 106, 0, 0.3);
}

