/* ================= PREMIUM STORE ADD-ONS ================= */

/* Announcement Bar */
.store-announcement-bar {
    color: white;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* About & Video Section */
.store-about-section {
    max-width: 1100px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.about-text-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
}

.about-text-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-text-box p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Responsive YouTube Video Box */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 4px solid white;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}


/* ================= PUBLIC STORE STYLES ================= */
.store-header-container {
    background: white;
    padding-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.store-banner {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: #cbd5e1;
}

.store-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 6px solid white;
    margin-top: -65px;
    object-fit: cover;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.store-name {
    font-size: 2.2rem;
    margin-top: 10px;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 800;
}

.store-bio {
    color: #475569;
    max-width: 600px;
    margin: 10px auto 0;
    font-size: 15px;
    line-height: 1.6;
    padding: 0 20px;
}

/* Mobile responsive for store */
@media (max-width: 768px) {
    .store-banner {
        height: 180px;
    }
    .store-avatar {
        width: 100px;
        height: 100px;
        margin-top: -50px;
        border-width: 4px;
    }
    .store-name {
        font-size: 1.6rem;
    }
}
/* Checkout Page Responsiveness */
@media (max-width: 850px) {
    .checkout-grid {
        grid-template-columns: 1fr !important; /* Mobile par upar form, neechy summary */
    }
    .checkout-summary-section .card {
        position: relative;
        top: 0;
    }
}


/* Modal Background */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);

    z-index: 99999; /* VERY IMPORTANT */
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

/* Prevent background scroll (important fix) */
body.modal-open {
    overflow: hidden;
}

/* Modal Box */
.modal-content {
    background: #fff;
    width: 95%;
    max-width: 420px;
    max-height: 85vh;          /* Important for mobile */
    overflow-y: auto;          /* Scroll inside modal */

    padding: 18px;
    border-radius: 14px;

    transform: translateY(-30px) scale(0.95);
    transition: all 0.3s ease;
}

/* Animation */
.modal.show .modal-content {
    transform: translateY(0) scale(1);
}

/* Close Button */
.close-btn {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

/* Product Cards */
.product {
    margin-top: 12px;
    padding: 10px;
    border-radius: 10px;
    background: #f5f5f5;
}

/* Mobile spacing improve */
@media (max-width: 480px) {
    .modal-content {
        padding: 14px;
        border-radius: 12px;
    }

    .product h3 {
        font-size: 16px;
    }

    .product p {
        font-size: 14px;
    }
}

/* Label row fix */
.label-container {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

/* Icon fix */
.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #555;
}

/* Prevent mobile shifting */
@media (max-width: 600px) {
    .label-container {
        flex-wrap: nowrap;
    }
}



.creator-links-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.creator-title {
    color: lightgreen;
    font-weight: bold;
    font-size: 16px;
}

/* Main fix here */
.creator-links {
    flex-wrap: nowrap;
    overflow-x: auto;
}
.creator-links a {
    text-decoration: none;
    color: white;
    font-size: 14px;

    /* IMPORTANT FIX */
    white-space: nowrap;   /* text break nahi hoga */
    display: inline-block;

    padding: 4px 8px;
    border-radius: 6px;
    transition: 0.3s;
}

.creator-links a:hover {
    background: rgba(255,255,255,0.1);
}



.tabs button i {
    margin-right: 6px;
}

/* History Modal Styling */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.7); 
    display: flex; justify-content: center; align-items: center; z-index: 9999;
}
.modal-card.withdrawal-history-card {
    background: white; width: 90%; max-width: 450px; 
    border-radius: 20px; padding: 25px; max-height: 80vh; overflow-y: auto;
}
.modal-header {
    display: flex; justify-content: space-between; align-items: center; 
    border-bottom: 1px solid #eee; padding-bottom: 15px; margin-bottom: 10px;
}
.close-modal-btn { cursor: pointer; font-size: 20px; color: #94a3b8; }
.close-modal-btn:hover { color: #ef4444; }

.history-item-card:last-child { border-bottom: none !important; }


.report-link {
    font-size: 11px;
    color: #ef4444;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.report-link:hover {
    color: indianred; /* Hover par red ho jaye */
}

.report-link i {
    font-size: 10px;
}

/* Admin Badge for Reported Designs */
#reported-badge {
    background: #ef4444;
    color: white;
    padding: 1px 6px;
    border-radius: 10px;
    font-size: 10px;
}



/* Creator Status Styles */
.status-msg-container { padding: 30px 20px; text-align: center; animation: fadeIn 0.5s ease; }
.icon-circle { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 30px; }
.icon-circle.red { background: #fef2f2; color: #ef4444; }
.icon-circle.orange { background: #fffbeb; color: #f59e0b; }

.admin-note { 
    background: #f3f4f6; padding: 15px; border-radius: 10px; font-size: 14px; 
    border-left: 4px solid #3b82f6; text-align: left; margin-bottom: 20px; 
}

.whatsapp-btn { 
    background: #25D366; color: white; padding: 12px; border-radius: 8px; 
    text-decoration: none; display: flex; align-items: center; justify-content: center; 
    gap: 10px; font-weight: 700; transition: 0.3s; 
}
.whatsapp-btn:hover { background: #1eb954; transform: translateY(-2px); }

.time-badge { 
    background: #f0fdf4; color: #166534; padding: 10px; 
    border-radius: 8px; font-weight: 700; display: inline-block; 
}


/* Inventory Toggles */
.inventory-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 15px; padding: 20px; }
.color-status-card { 
    background: white; padding: 15px; border-radius: 10px; 
    display: flex; justify-content: space-between; align-items: center; border: 1px solid #ddd;
}
.status-toggle { cursor: pointer; padding: 5px 10px; border-radius: 5px; font-size: 0.8rem; font-weight: bold; }
.status-on { background: #10b981; color: white; }
.status-off { background: #ef4444; color: white; }

/* Management Badges */
.badge-suspended { background: #f59e0b; color: white; padding: 2px 8px; border-radius: 4px; font-size: 0.7rem; }
.creator-actions { display: flex; gap: 5px; }
.btn-suspend { background: #f59e0b; color: white; border: none; padding: 5px; border-radius: 4px; cursor: pointer; }
.btn-delete { background: #ef4444; color: white; border: none; padding: 5px; border-radius: 4px; cursor: pointer; }/* Suspension Badge in Admin */
.suspension-badge {
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
}

/* Specific button styling for admin actions */
.ac-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

@media (max-width: 768px) {
    .ac-actions {
        flex-direction: column;
        width: 100%;
    }
    .ac-actions button {
        width: 100%;
    }
}






/* after ratings card product image */



















/* ================= FEATURES SECTION STYLING ================= */
.features-section {
    padding: 80px 20px;
    background: #ffffff; /* White background taake steps section se alag dikhe */
    text-align: center;
}

/* Card ke andar ke icon ka color aur size handle karne ke liye */
.features-section .step-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effects (Wahi jo aapne step-cards ke liye rakha hai) */
.features-section .step-card:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

/* Heading style adjustment */
.features-section .sec-title {
    margin-bottom: 50px;
    position: relative;
}

/* Chota sa decorative underline */
.features-section .sec-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .features-section {
        padding: 50px 15px;
    }
}

/* ================== DESIGN SYSTEM ================== */
:root {
    --primary: #0f172a;       /* Slate Dark - Professional Base */
    --accent: #10b981;        /* Emerald Green - Money/Success */
    --accent-glow: rgba(16, 185, 129, 0.3);
    --secondary: #6366f1;     /* Indigo - Creative/Tech */
    --bg: #f8fafc;            /* Light Grey Background */
    --text: #1e293b;          /* Dark Slate Text */
    --text-muted: #64748b;    /* Muted Text */
    --white: #ffffff;
    --danger: #ef4444;        /* Red for Errors/Reject */
    --radius: 12px;           /* Consistent rounding */
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); 
    --glass: rgba(255, 255, 255, 0.85);
}

/* ================== GLOBAL RESET ================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--primary); }
.hidden { display: none !important; }
.w-100 { width: 100% !important; }
.label-s { display: block; margin: 15px 0 8px; font-weight: 600; font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; }

/* ================== ANIMATIONS ================== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ================== NAVIGATION & SIDEBAR ================== */
.main-nav {
    position: sticky; top: 0; z-index: 1000;
    background: var(--glass); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05); padding: 15px 0;
}
.nav-container {
    max-width: 1300px; margin: 0 auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo { font-size: 1.8rem; font-weight: 800; cursor: pointer; color: var(--primary); }
.nav-logo span { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
#nav-avatar { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--accent); cursor: pointer; }
.menu-toggle { font-size: 1.5rem; cursor: pointer; color: var(--primary); }

.sidebar-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1500; opacity: 0; visibility: hidden; transition: 0.3s; }
.sidebar-overlay.active { opacity: 1; visibility: visible; }
.right-sidebar {
    position: fixed; top: 0; right: -100%; width: 320px; height: 100vh;
    background: white; z-index: 2000; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1); display: flex; flex-direction: column;
}
.right-sidebar.active { right: 0; }
.sidebar-header { padding: 25px; border-bottom: 1px solid #f1f5f9; display: flex; justify-content: space-between; align-items: center; }
.user-info-side { display: flex; align-items: center; gap: 12px; }
.user-info-side img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--accent); }
.side-links { list-style: none; padding: 20px; }
.side-links a { display: flex; align-items: center; gap: 15px; padding: 12px; text-decoration: none; color: var(--text); font-weight: 600; border-radius: 8px; transition: 0.3s; }
.side-links a:hover { background: #f1f5f9; color: var(--accent); transform: translateX(5px); }

/* ================== HERO SECTION ================== */
.hero-v2 { padding: 60px 20px; max-width: 1300px; margin: 0 auto; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin: 20px 0; }
.hero-text h1 span { color: var(--accent); }
.hero-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; }
.hero-cta { display: flex; gap: 15px; }
.hero-visual img {
    width: 90%;              /* Desktop size same */
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Mobile par big */
@media (max-width: 768px) {
    .hero-visual img {
        width: 100%;         /* mobile par zyada bari */
    }
}.badge-new { background: #f0fdf4; color: var(--accent); padding: 5px 15px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; }

/* ================== BUTTONS & FORMS ================== */
.btn-main { background: var(--accent); color: white; border: none; padding: 12px 25px; border-radius: var(--radius); font-weight: 700; cursor: pointer; transition: 0.4s; }
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 10px 20px var(--accent-glow); }
.btn-glass { background: var(--bg); border: 1px solid #e2e8f0; padding: 12px 25px; border-radius: var(--radius); cursor: pointer; font-weight: 600; }
.btn-glass:hover { border-color: var(--accent); color: var(--accent); }

input, select, textarea {
    width: 100%; padding: 12px 15px; margin-bottom: 15px;
    border: 1px solid #e2e8f0; border-radius: 8px; outline: none;
    transition: 0.3s; font-size: 1rem; background: #fcfcfc;
}
input:focus, textarea:focus { border-color: var(--accent); background: white; }

/* ================== AUTHENTICATION ================== */
.auth-container { padding: 40px 20px; display: flex; justify-content: center; align-items: center; min-height: 80vh; }
.auth-card { background: white; width: 100%; max-width: 450px; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.auth-tabs { display: flex; border-bottom: 1px solid #f1f5f9; }
.auth-tabs button { flex: 1; padding: 20px; border: none; background: #f8fafc; color: var(--text-muted); font-weight: 700; cursor: pointer; transition: 0.3s; }
.auth-tabs button.active { background: white; color: var(--accent); border-bottom: 3px solid var(--accent); }
.auth-body { padding: 30px; }

/* ================== MARKETPLACE ================== */
.shop-header { max-width: 1300px; margin: 40px auto 20px; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 25px; padding: 20px; max-width: 1300px; margin: 0 auto; }
.product-card { background: white; padding: 15px; border-radius: 15px; border: 1px solid #f1f5f9; cursor: pointer; transition: 0.3s; text-align: center; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent); }
.product-card img { width: 100%; height: 200px; object-fit: contain; margin-bottom: 15px; }

/* ================== CUSTOMIZER (EDITOR) ================== */
.editor-layout { display: grid; grid-template-columns: 1fr 420px; gap: 40px; padding: 40px 20px; max-width: 1300px; margin: 0 auto; }
#canvas-main { width: 100%; height: 500px; background: #e2e8f0; position: relative; border-radius: var(--radius); display: flex; justify-content: center; align-items: center; border: 1px solid #cbd5e1; transition: background 0.3s; }
#p-base { width: 90%; height: 90%; object-fit: contain; }
#l-overlay { position: absolute; width: 130px; top: 50%; left: 50%; transform: translate(-50%, -50%); filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1)); }
.editor-sidebar { background: white; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); height: fit-content; }

.item-select-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); gap: 8px; margin-bottom: 20px; }
.item-select-grid button { padding: 8px; border: 1.5px solid #e2e8f0; background: white; border-radius: 8px; cursor: pointer; font-size: 0.8rem; font-weight: 600; transition: 0.2s; }
.item-select-grid button:hover, .item-select-grid button.active { border-color: var(--accent); color: var(--accent); background: #f0fdf4; }

.color-picker-v2 { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.color-dot { width: 32px; height: 32px; border-radius: 50%; border: 3px solid #e2e8f0; cursor: pointer; transition: 0.3s; }
.color-dot.active { border-color: var(--accent); transform: scale(1.15); box-shadow: 0 0 10px var(--accent-glow); }

.color-dot.white { background: #ffffff; border-color: #ddd; }
.color-dot.black { background: #1a1a1a; }
.color-dot.navy { background: #000080; }
.color-dot.red { background: #b91c1c; }
.color-dot.grey { background: #808080; }
.color-dot.royal { background: #4169e1; }
.color-dot.green { background: #008000; }

.price-summary-box { background: #f1f5f9; padding: 20px; border-radius: 12px; text-align: center; margin: 20px 0; border: 1px solid #e2e8f0; }
.price-summary-box h3 { color: var(--accent); font-size: 1.6rem; }

/* ================== PAYMENT & DASHBOARD ================== */
.payment-info-card { background: #fffbeb; border: 1px solid #fde68a; padding: 20px; margin-bottom: 20px; border-radius: 12px; }
.admin-card { background: white; padding: 20px; border-radius: 12px; border: 1px solid #f1f5f9; display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.container-dash { max-width: 1000px; margin: 40px auto; padding: 0 20px; }

.dash-grid,
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 35px;

  /* Added styles (sirf yahin changes) */
  background: linear-gradient(180deg, #ffffff, #f6f7f9);
  padding: 24px;
  border-radius: 50px;
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.stat-card, .a-card { padding: 30px; border-radius: var(--radius); color: white; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.wallet { background: linear-gradient(135deg, #10b981, #059669); }
.sales { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.a-card { background: white; color: var(--primary); border-left: 5px solid var(--secondary); }

/* ================== SYSTEM COMPONENTS ================== */
.toast { position: fixed; bottom: 20px; right: 20px; background: white; padding: 15px 25px; border-radius: 8px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px; border-left: 5px solid var(--accent); z-index: 10000; }

/* ================== RESPONSIVENESS (MOBILE OPTIMIZATION) ================== */
@media (max-width: 1024px) {
    .editor-layout { grid-template-columns: 1fr; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-cta { justify-content: center; }
}

@media (max-width: 768px) {
    .nav-logo { font-size: 1.4rem; }
    #canvas-main { height: 350px; }
    .right-sidebar { width: 85%; }
    
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 15px; padding: 10px; }
    .product-card img { height: 140px; }
    
    .admin-card { flex-direction: column; align-items: flex-start; gap: 15px; }
    .ac-actions { width: 100%; justify-content: space-between; }
    
    .shop-header { flex-direction: column; align-items: flex-start; }
    .search-bar-container { width: 100%; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 2rem; }
    .hero-cta { flex-direction: column; }
    .auth-body { padding: 20px; }
    .editor-sidebar { padding: 20px; }
    .item-select-grid { grid-template-columns: repeat(3, 1fr); }
    
    .stat-card p, .a-card p { font-size: 1.8rem; }
    .toast { left: 10px; right: 10px; bottom: 10px; }
}
  
.how-it-works {
    padding: 100px 20px;
    background: whitesmoke;
    text-align: center;
}

.sec-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    padding: 40px;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    /* Smooth transition for all changes */
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    background: var(--primary); /* Hover par background change */
}

/* Hover par andar ka sab white */
.step-card:hover,
.step-card:hover * {
    color: white;
}

.step-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    transition: color 0.3s ease; /* Smooth icon color change */
}

.step-num {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.05;
    transition: color 0.3s ease; /* Smooth number color change */
}

/* creator,order,users,rating this is for ratings tab */
.stats-bar { background: var(--primary); color: white; padding: 50px 20px; display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 30px; }
.stat-item strong { display: block; font-size: 2rem; color: var(--accent); }


/* Specific coloring for email and phone items */
.email-item .footer-text {
    color: #ffca28; /* yellow for email */
}

.phone-item .footer-text {
    color: #00e5ff; /* cyan for phone */
}

.footer-nav-links{
    display: flex;
    justify-content: space-between; /* push left & right to ends */
    align-items: center;
    padding: 10px 20px;
    display: flex;
    gap: 15px; /* spacing between links */
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}





/* Tracking Page Styles */
.tracking-list { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }

.tracking-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.tc-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
    margin-bottom: 15px;
    font-size: 13px;
    color: #64748b;
}

.tc-body {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.order-img-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: #f8fafc;
}

.order-details h4 { font-size: 16px; margin-bottom: 4px; }
.order-details p { font-size: 13px; color: #64748b; }
.order-price { font-weight: 700; color: var(--accent); margin-top: 5px; }

.order-status-badge {
    margin-left: auto;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.status-pending { background: #fff7ed; color: #f59e0b; }
.status-shipped { background: #eff6ff; color: #3b82f6; }
.status-completed { background: #f0fdf4; color: #10b981; }

/* Timeline Bar */
.tracking-timeline { margin-top: 15px; }
.progress-bar-bg {
    height: 6px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}
.progress-bar-fill {
    height: 100%;
    background: var(--accent);
    transition: width 1s ease-in-out;
}
.status-steps {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #cbd5e1;
    font-weight: 600;
}
.status-steps span.active { color: var(--primary); }


#mockup-preview-area {
    background: #fdfdfd;
    border: 1px dashed #cbd5e1;
    padding: 15px;
    animation: fadeIn 0.8s ease;
}

#mockup-img:hover {
    transform: scale(1.02);
    transition: 0.3s;
}

.product-card h4 {
    margin-top: 10px;
    font-size: 15px;
    color: var(--primary);
}



/* Admin Design Management Styling */
.admin-design-row {
    background: white;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.adr-img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #eee;
    cursor: pointer;
}

.adr-info {
    flex: 1;
}

.adr-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--primary);
}

.adr-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.adr-info p span {
    font-weight: 700;
    color: #475569;
}

.adr-stats {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.sold-badge {
    background: #ecfdf5;
    color: #059669;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
}

.adr-actions button {
    padding: 8px 15px;
    font-size: 0.8rem;
}

/* Mobile responsive for admin rows */
@media (max-width: 600px) {
    .admin-design-row {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .adr-img img {
        width: 100%;
        height: 150px;
    }
    .adr-actions {
        width: 100%;
    }
    .adr-actions button {
        width: 100%;
        margin-top: 10px;
    }
}


/* Image Modal Styles */
.modal-overlay {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    animation: zoomIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

@keyframes zoomIn {
    from {transform: scale(0.7); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}
.admin-nav .tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 10px 5px;
    border-bottom: 2px solid #f1f5f9;
}

.admin-nav .tabs::-webkit-scrollbar {
    height: 4px;
}

.admin-nav .tabs::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.admin-nav .tabs button {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 30px;
}

/* --- PREMIUM GUIDE MODAL STYLING --- */
.guide-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75); /* Slate Dark Overlay */
    backdrop-filter: blur(10px); /* Blur effect */
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.guide-overlay.active { display: flex !important; }

.guide-card {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 28px;
    padding: 35px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin-top: auto;
    margin-bottom: auto;
    transform: translateY(30px);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.guide-overlay.active .guide-card { transform: translateY(0); }

/* Header Styling */
.guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

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

.icon-box-purple {
    background: #eef2ff;
    color: #6366f1;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.3rem;
}

.close-x {
    background: #f1f5f9;
    border: none;
    font-size: 22px;
    color: #94a3b8;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: 0.3s;
}
.close-x:hover { background: #fee2e2; color: #ef4444; transform: rotate(90deg); }

/* Steps Timeline Styling */
.guide-steps {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-left: 2px dashed #e2e8f0;
    margin-left: 15px;
    padding-left: 25px;
    position: relative;
}

.step-icon {
    position: absolute;
    left: -14px;
    top: 0;
    background: #6366f1;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
}

.step-text { font-size: 14px; color: #475569; line-height: 1.6; }
.step-text strong { color: #1e293b; display: block; margin-bottom: 4px; font-size: 15px; }

/* Info Box & Tip Styling */
.code-highlight {
    background: #fef2f2;
    color: #ef4444;
    padding: 2px 6px;
    border-radius: 6px;
    font-family: monospace;
    font-weight: 700;
}

.pro-tip-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    padding: 15px;
    border-radius: 16px;
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #92400e;
    margin-bottom: 20px;
}

.pro-tip-box i { color: #f59e0b; font-size: 1.1rem; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 480px) {
    .guide-card { padding: 25px 20px; }
    .step-text { font-size: 13px; }
}











/* Premium Creator Cards */
.premium-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.section-badge {
    background: #ecfdf5;
    color: #10b981;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Withdraw Section Styles */
.withdraw-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #1e293b;
    font-family: 'Outfit';
    font-size: 1.1rem;
}

.header-left i {
    background: #f1f5f9;
    color: #6366f1;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.toggle-icon {
    color: #94a3b8;
    transition: 0.3s;
}

.withdraw-collapse-section.active .toggle-icon {
    transform: rotate(180deg);
    color: #6366f1;
}

/* Input Fields Styles */
.input-field {
    margin-bottom: 15px;
}

.input-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-field input, .input-field select {
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    margin-bottom: 0 !important;
}

.input-field input:focus {
    border-color: #6366f1 !important;
    background: #fff !important;
}

/* Mini Guide Button */
.mini-guide-btn {
    background: #f1f5f9;
    color: #475569;
    padding: 8px 15px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    transition: 0.3s;
}
.mini-guide-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* Grid for forms */
.payout-form-grid, .input-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 600px) {
    .payout-form-grid, .input-grid-v2 { grid-template-columns: 1fr; }
}





/* Report Section Mobile Responsive */
.admin-design-row {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

/* Jab screen mobile ki ho (768px se kam) */
@media (max-width: 768px) {
    .admin-design-row {
        flex-direction: column; /* Sab kuch ek ke niche ek aa jaye */
        align-items: flex-start;
        gap: 12px;
    }

    .adr-img {
        width: 100%; /* Image poori width le le */
        text-align: center;
    }

    .adr-img img {
        width: 120px; /* Mobile par image ka size theek rahy */
        height: 120px;
    }

    .adr-info {
        width: 100%; /* Text gayab na ho, poori jagah le */
    }

    .adr-info h4 {
        font-size: 1rem;
        word-wrap: break-word; /* Lamba naam screen se bahar na jaye */
    }

    .adr-actions {
        width: 100%;
    }

    .adr-actions button {
        width: 100%; /* Delete button bara aur asaan ho click krne me */
        padding: 12px;
    }

    /* Header message ko bhi mobile par set krna */
    .admin-header-actions h3 {
        font-size: 1.2rem;
    }
}

/* Responsive Admin Filter Bar */
.admin-filter-wrapper {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    border: 1px solid #f1f5f9;
}

.filter-controls {
    display: grid;
    grid-template-columns: 1fr auto; /* Desktop: Inputs left, Export right */
    gap: 15px;
    align-items: center;
}

.date-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.date-input-group input[type="date"] {
    width: 160px;
    margin-bottom: 0;
    padding: 8px 12px;
    border: 1.5px solid #e2e8f0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .filter-controls {
        grid-template-columns: 1fr; /* Mobile: Everything in one column */
    }

    .date-input-group {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Two dates side by side */
        gap: 10px;
    }

    .date-input-group input[type="date"] {
        width: 100%;
    }

    .filter-btn-group {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Filter & Reset buttons side by side */
        gap: 10px;
    }

    .btn-export-full {
        width: 100%;
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    /* Filter container mobile par full width aur stack ho jaye */
    .filter-controls {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .date-input-group {
        display: grid !important;
        grid-template-columns: 1fr 1fr; /* Dates side by side */
        gap: 10px !important;
        width: 100%;
    }

    .date-input-group input[type="date"] {
        width: 100% !important;
    }

    .filter-btn-group {
        grid-column: span 2; /* Buttons dates ke niche full width */
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .btn-main, .btn-glass {
        width: 100%;
        justify-content: center;
    }
}


.footer {
    background: var(--primary);
    padding: 40px 20px 20px; /* Thoda upar ka gap badhaya achi look ke liye */
    font-family: sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop par 4 barabar columns banayega */
    gap: 20px;
    max-width: 1200px; /* Ye poore layout ko center mein rakhega aur zyada phailne nahi dega */
    margin: 0 auto;
}

/* HAR COLUMN KI SETTING */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col strong {
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* LINKS KI SETTING */
.footer-col a.footer-nav-links {
    color: white;
    font-size: 14px;
    margin: 6px 0;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-col a.footer-nav-links:hover {
    color: greenyellow; /* Purana color rakha hai */
}

/* RIGHT SIDE KI SEPARATOR LINE */
.border-separator {
    border-left: 1px solid #333;
    padding-left: 20px;
}

/* BOTTOM SECTION */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333; /* Ek pyari si line di hai footer ke bottom mein */
    color: white;
}

.f-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.f-logo span {
    color: mediumseagreen;
}

/* MOBILE RESPONSIVE SETTINGS */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr); /* Tablets aur bade mobile par 2 columns ban jayenge */
        gap: 40px;
    }
    
    .border-separator {
        border-left: none; /* Mobile par separator ajeeb lagta hai, is liye hata diya */
        padding-left: 0;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr; /* Chote phones par line se 1 column aye ga taake screen ke bahar na jaye */
    }
}









/* ================= PROFESSIONAL CHECKBOX STYLING ================= */
.checkout-agreements {
    margin: 25px 0;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0; /* Ek light line upar takay section alag lagy */
}

.custom-checkbox-wrapper {
    display: flex;
    align-items: flex-start; /* Checkbox aur pehli line ko barabar rakhega */
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

/* Default boring checkbox chupa dein */
.custom-checkbox-wrapper input[type="checkbox"] {
    display: none; 
}

/* Custom Checkbox Design */
.custom-checkbox-ui {
    width: 22px;
    min-width: 22px;
    height: 22px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    margin-top: 2px; /* Text ke sath perfect center karne ke liye */
}

/* FontAwesome Tick Icon jo check hone par ayega */
.custom-checkbox-ui::after {
    content: "\f00c"; /* FontAwesome check icon code */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    font-size: 13px;
    transform: scale(0); /* Shuru mein chupa hoga */
    transition: transform 0.2s ease-in-out;
}

/* Jab user click kare (Checked State) */
.custom-checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox-ui {
    background-color: var(--accent); /* Emerald Green */
    border-color: var(--accent);
}

.custom-checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox-ui::after {
    transform: scale(1); /* Tick pop up hojayega */
}

/* Text aur Links ka Style */
.terms-text {
    font-size: 13px;
    line-height: 1.6;
    color: #475569;
}

.terms-text a {
    color: #6366f1; /* Indigo/Blue color links ke liye */
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
    border-bottom: 1px dashed transparent;
}

.terms-text a:hover {
    color: var(--primary);
    border-bottom: 1px dashed var(--primary);
}

/* Non-Refundable wali warning ka design */
.terms-highlight {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #ef4444; /* Light Red */
    font-weight: 600;
    background: #fef2f2;
    padding: 6px 10px;
    border-radius: 6px;
    border-left: 3px solid #ef4444;
}

.terms-highlight i {
    margin-right: 4px;
}






/* ================= CREATOR STUDIO TABS STYLING ================= */
.creator-nav {
    margin-bottom: 25px;
}

.creator-nav .tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 10px 5px;
    border-bottom: 2px solid #f1f5f9;
}

/* Hide scrollbar for tabs */
.creator-nav .tabs::-webkit-scrollbar {
    height: 4px;
}
.creator-nav .tabs::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* Tab Buttons */
.creator-nav .tabs button {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 12px 22px;
    font-size: 13.5px;
    border-radius: 30px;
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.creator-nav .tabs button i {
    margin-right: 6px;
    font-size: 14px;
}

.creator-nav .tabs button:hover {
    background: #f1f5f9;
    color: var(--primary);
}

/* Active State */
.creator-nav .tabs button.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

/* Animation for Smooth Tab Switching */
.creator-section-tab {
    animation: fadeIn 0.4s ease-in-out;
}





/* ================= STORE PAGE MOBILE RESPONSIVE FIX ================= */

/* Ye media query tab apply hogi jab screen 768px ya us se choti ho (tablet/mobile) */
@media (max-width: 768px) {

    /* Banner ki height kam kardi taake mobile par zyada jaga na le */
    .store-banner {
        height: 180px;
    }

    /* Avatar (profile pic) ko chota kiya hai */
    .store-avatar {
        width: 100px;
        height: 100px;
        margin-top: -50px; /* Nayi height ka half, taake banner par aadhi dikhe */
        border-width: 4px; /* Border bhi thora patla kar diya */
    }

    /* Creator ka naam mobile par chota dikhega */
    .store-name {
        font-size: 1.6rem;
    }

    /* Creator ki bio ka text thora chota kar rahe hain mobile ke liye */
    .store-bio {
        font-size: 14px;
    }
}


/* ================= NEW STORE CUSTOMIZATION STYLES ================= */

/* Featured Product Card */
.featured-product-card {
    grid-column: 1 / -1; /* Ye poori line le lega */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    text-align: left;
    border: 2px solid var(--store-theme-color, var(--accent));
    padding: 20px;
}

.featured-product-card img {
    height: 300px;
}

.featured-product-card h4 {
    font-size: 1.8rem;
}

.featured-product-card p {
    font-size: 1rem;
}

/* Featured Badge */
.featured-badge {
    background-color: var(--store-theme-color, var(--accent));
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

/* Social Media Icons Styling */
.store-social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.store-social-links a {
    font-size: 1.2rem;
    color: #fff;
    background-color: var(--store-theme-color, var(--accent));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.store-social-links a:hover {
    transform: scale(1.1) translateY(-3px);
}

/* Mobile responsive for featured card */
@media (max-width: 768px) {
    .featured-product-card {
        grid-template-columns: 1fr; /* Mobile par image upar, text neechay */
        text-align: center;
    }
    .featured-product-card img {
        height: 250px;
    }
}

/* ================= PROFESSIONAL STORE UPGRADE CSS ================= */

/* Public Store Page Container */
#store-view-page {
    background-color: #ffffff; /* Pure white background for a premium feel */
}

/* Header/Banner Section */
.store-header-container {
    position: relative; /* Social links ko position karne ke liye */
    text-align: center;
    padding-bottom: 80px; /* Avatar ke liye extra jaga */
    background: #f8fafc;
}

.store-banner {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.store-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-top: -75px; /* Banner par overlap */
    position: relative;
}

.store-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin: 15px 20px 5px;
}

.store-slogan {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 20px 15px;
}

/* Social Links on Banner */
.store-social-links {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    background: rgba(0,0,0,0.4);
    padding: 8px 12px;
    border-radius: 50px;
}
.store-social-links a {
    color: white;
    font-size: 1rem;
    transition: transform 0.2s;
}
.store-social-links a:hover {
    transform: scale(1.2);
}

/* Featured Product Section */
.featured-product-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 40px;
    background: #f8fafc;
    border-radius: 20px;
}
.featured-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    border: 1px solid #eee;
}
.featured-info .featured-badge {
    background: var(--store-theme-color, #10b981);
    color: white;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 50px;
    display: inline-block;
}
.featured-info h2 {
    font-size: 2.8rem;
    margin: 15px 0;
    color: var(--primary);
    font-family: 'Outfit';
}
.featured-info p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}
.btn-featured {
    background: var(--store-theme-color, #10b981);
    padding: 15px 30px;
    font-size: 1rem;
}

/* Collection Title */
.collection-title {
    text-align: center;
    font-family: 'Outfit';
    font-size: 2rem;
    margin: 60px 0 30px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
    display: inline-block;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .featured-product-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .featured-image-wrapper img { height: 300px; }
    .featured-info h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .store-banner { height: 200px; }
    .store-avatar { width: 120px; height: 120px; margin-top: -60px; }
    .store-headline { font-size: 1.8rem; }
    .store-slogan { font-size: 1rem; }
}




/* ================= PROFESSIONAL MARKETPLACE CSS ================= */

/* Hero Section */
.shop-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), 
                url('https://images.unsplash.com/photo-1558191053-8edcb01e1da3?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 40px;
}
.shop-hero-content h1 { color: white; font-size: 2.5rem; margin-bottom: 10px; }
.shop-hero-content h1 span { color: var(--accent); }
.shop-hero-content p { color: #cbd5e1; font-size: 1.1rem; }

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

/* Filter Bar */
.shop-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.search-wrapper { position: relative; flex: 1; }
.search-wrapper i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #94a3b8; }
.search-wrapper input { padding-left: 45px; margin-bottom: 0; border-radius: 50px; background: white; }

.sort-wrapper select { width: 200px; margin-bottom: 0; border-radius: 50px; background: white; cursor: pointer; }

/* Category Pills */
.category-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.category-pills::-webkit-scrollbar { height: 4px; }
.pill {
    padding: 8px 20px;
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    white-space: nowrap;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: 0.3s;
}
.pill.active, .pill:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* Premium Grid & Cards */
.product-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.shop-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.shop-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.card-image-box {
    position: relative;
    background: #f8fafc;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.card-image-box img { width: 100%; height: 100%; object-fit: contain; }

.card-badge {
    position: absolute; top: 15px; left: 15px;
    background: var(--accent); color: white;
    padding: 4px 12px; border-radius: 50px; font-size: 10px; font-weight: 800;
}

.card-details { padding: 20px; }
.card-details .creator-name { font-size: 12px; color: var(--accent); font-weight: 700; margin-bottom: 5px; display: block; }
.card-details h4 { font-size: 1.1rem; color: var(--primary); margin-bottom: 10px; height: 45px; overflow: hidden; }

.card-footer {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid #f1f5f9; padding-top: 15px;
}
.price-box .label { font-size: 10px; color: #94a3b8; display: block; }
.price-box .val { font-weight: 800; font-size: 1.1rem; color: var(--primary); }

.btn-shop-view {
    width: 40px; height: 40px; border-radius: 50%; background: var(--primary);
    color: white; display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.shop-card:hover .btn-shop-view { background: var(--accent); transform: scale(1.1); }

/* Empty State Styling */
#shop-empty-state { text-align: center; padding: 100px 20px; color: #94a3b8; }
#shop-empty-state i { font-size: 4rem; margin-bottom: 20px; opacity: 0.2; }


