/* 
   🌟 Premium Theme Overhaul 
   Antigravity Designer Edition
*/

:root {
    --brand-orange: #FF6B35;
    --brand-orange-hover: #E65100;
    --brand-orange-soft: rgba(255, 107, 53, 0.1);
    --jakarta: 'Plus Jakarta Sans', sans-serif;
    --inter: 'Inter', sans-serif;
    --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --hover-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Global Typography */
h1, h2, h3, h4, .section-title {
    font-family: var(--jakarta);
    color: #1F2937;
    font-weight: 700;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }

body, p {
    font-family: var(--inter);
    line-height: 1.6;
    color: #4B5563;
}

/* Standardized Buttons */
.btn-premium-primary {
    background-color: var(--brand-orange);
    color: white !important;
    height: 48px;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.btn-premium-primary:hover {
    background-color: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.btn-premium-primary:active {
    transform: scale(0.98);
}

.btn-premium-secondary {
    background-color: transparent;
    color: var(--brand-orange) !important;
    border: 2px solid var(--brand-orange);
    height: 48px;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.btn-premium-secondary:hover {
    background-color: var(--brand-orange);
    color: white !important;
}

/* 🧱 Category Cards */
.premium-cat-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.premium-cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.premium-cat-card {
    background: white;
    border: 1px solid #F1F5F9;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.premium-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-orange);
}

.cat-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cat-name {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
}

.cat-count {
    font-size: 14px;
    color: #6B7280;
}

/* 🛒 Universal Product Card Style (Best Sellers, Solutions, etc.) */
.premium-product-card {
    background: white;
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-product-card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-4px);
}

.prod-img-container {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    aspect-ratio: 1/1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.prod-img-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.premium-product-card:hover .prod-img-container img {
    transform: scale(1.08);
}

.prod-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-new { background: #10B981; color: white; }
.badge-hot { background: #EF4444; color: white; }

.prod-wishlist {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s;
    z-index: 2;
}

.prod-wishlist:hover {
    color: #EF4444;
    transform: scale(1.1);
}

.prod-name {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
}

.prod-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.stars {
    color: #FBBF24;
    font-size: 14px;
}

.review-count {
    font-size: 13px;
    color: #6B7280;
}

.prod-price-area {
    margin-top: auto;
    padding-top: 12px;
}

.prod-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-orange);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.prod-old-price {
    font-size: 16px;
    color: #9CA3AF;
    text-decoration: line-through;
}

/* Large CTA Button In Card */
.prod-add-btn {
    width: 100%;
    height: 48px;
    background: var(--brand-orange);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.prod-add-btn:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
}

/* ⚡ Hot Deals Section */
.hot-deals-section {
    background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 50%, #FFF7ED 100%);
    padding: 80px 0;
}

.deal-badge-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FF6B35;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 3;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.timer-box {
    background: rgba(0,0,0,0.05);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    color: #EF4444;
    margin-top: 8px;
}

.urgency-text {
    color: #EF4444;
    font-size: 12px;
    font-weight: 700;
    margin-top: 4px;
}

/* Mobile Responsiveness Extra */
@media (max-width: 1024px) {
    .premium-cat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .premium-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .premium-cat-section { padding: 40px 0; }
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
}

/*  INDUSTRY ICONS for Restaurant Section */
.industry-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.industry-icon {
    font-size: 30px;
    color: var(--brand-orange);
}
