/* RESET & GLOBALS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #fafbfc;
    color: #475569;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER */
.navbar {
    background-color: transparent;
    padding: 20px 0;
    width: 100%;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
}

.logo-d {
    color: #0f172a;
    font-size: 1.8rem;
    font-weight: 800;
}

.desktop-nav-links {
    display: flex;
    gap: 30px;
    margin-left: 30px; /* added space between logo and shop */
}

.desktop-nav-links a {
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.desktop-nav-links a:hover {
    color: #0f172a;
}

.desktop-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    font-size: 1.2rem;
    color: #0f172a;
}

.divider {
    width: 1px;
    height: 24px;
    background-color: #e2e8f0;
}

.btn-login {
    font-weight: 600;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-signup {
    background-color: #2563eb;
    color: white;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 0.95rem;
}

.mobile-nav-actions, .mobile-bottom-nav {
    display: none;
}

/* HERO SECTION */
.hero {
    padding: 60px 0;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #fed7aa;
    color: #ea580c;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 24px;
}

h1 {
    font-size: 4rem;
    color: #0f172a;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(90deg, #f97316 0%, #e11d48 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    background: linear-gradient(90deg, #f97316 0%, #e11d48 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.2);
}

.btn-secondary {
    background: white;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: -12px;
}

.a1 { background-color: #ffedd5; color: #ea580c; z-index: 3; }
.a2 { background-color: #fce7f3; color: #db2777; z-index: 2; }
.a3 { background-color: #e0e7ff; color: #4f46e5; z-index: 1; }

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.rating i { color: #f59e0b; }
.rating strong { color: #0f172a; font-weight: 800; font-size: 1.1rem; }
.rating span { color: #64748b; }

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Hero Video Area */
.video-container {
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    position: relative;
    /* Optional: shadow to give it a premium feel */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 24px;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.04);
    z-index: 10;
}

.float-left {
    top: 20%;
    left: -40px;
    animation: float 4s ease-in-out infinite;
}

.float-right {
    bottom: 10%;
    right: -20px;
    animation: float 5s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-header {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.text-green { color: #10b981; }
.text-orange { color: #f59e0b; }
.text-xs { font-size: 0.7rem; color: #94a3b8; }

.float-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
}

.float-label {
    font-size: 0.85rem;
    color: #64748b;
}

.circle-progress {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 6px solid #f97316;
    border-left-color: #f1f5f9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.circle-progress span {
    font-weight: 800;
    color: #0f172a;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 1000;
}

/* WHAT WE OFFER SECTION */
.what-we-offer {
    padding: 80px 0;
    background-color: #fafbfc;
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.outline-badge {
    background: transparent;
    border: 1px solid #fed7aa;
    color: #ea580c;
}

.section-header h2 {
    font-size: 3rem;
    color: #0f172a;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.offer-card {
    border-radius: 20px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.offer-card h3 {
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 12px;
}

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 20px;
}

.bg-blue-light { background-color: #f0f5ff; }
.bg-blue { background-color: #3b82f6; box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3); }

.bg-green-light { background-color: #f0fdf4; }
.bg-green { background-color: #10b981; box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3); }

.bg-orange-light { background-color: #fff7ed; }
.bg-orange { background-color: #f59e0b; box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3); }

.bg-purple-light { background-color: #faf5ff; }
.bg-purple { background-color: #a855f7; box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3); }

.bg-pink-light { background-color: #fdf2f8; }
.bg-pink { background-color: #ec4899; box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3); }

.bg-dark-light { background-color: #f8fafc; }
.bg-dark { background-color: #1e293b; box-shadow: 0 8px 20px rgba(30, 41, 59, 0.3); }

.shop-link {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s, gap 0.2s;
}

.offer-card:hover .shop-link {
    color: #0f172a;
    gap: 12px;
}

.center-btn {
    display: flex;
    justify-content: center;
}

/* ABOUT US SECTION */
.about-us {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content h2 {
    font-size: 3.5rem;
    color: #0f172a;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.about-desc {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-desc strong {
    color: #0f172a;
    font-weight: 700;
}

.stats-row {
    display: flex;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
    margin-bottom: 40px;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.text-blue { color: #3b82f6 !important; }
.text-cyan { color: #06b6d4 !important; }

.border-left {
    border-left: 1px solid #e2e8f0;
}

.contact-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.contact-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px 12px 12px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.bg-peach { background-color: #fff1f2; }
.bg-light-blue { background-color: #f0f9ff; }

.c-icon {
    font-size: 1.2rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 2px;
}

.c-value {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.about-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    color: #0f172a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.btn-outline:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Community Card */
.community-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.shape-orange {
    position: absolute;
    top: -10px;
    right: 0;
    width: 250px;
    height: 250px;
    background: #fed7aa;
    border-radius: 40px;
    transform: rotate(15deg);
    z-index: 0;
    opacity: 0.6;
}

.shape-blue {
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: #bae6fd;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
}

.community-card {
    background: white;
    border-radius: 32px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    z-index: 1;
}

.community-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.c-header-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.community-header h3 {
    font-size: 2.2rem;
    color: #0f172a;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 8px;
}

.community-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.community-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.comm-link {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.2s;
    border: 1px solid rgba(0,0,0,0.03);
}

.comm-link:hover {
    transform: translateY(-3px);
}

.bg-cyan-light { background-color: #ecfeff; }
.bg-cyan { background-color: #06b6d4; box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3); }

.comm-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.4rem;
    margin-right: 16px;
}

.comm-text h4 {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.comm-text p {
    color: #64748b;
    font-size: 0.8rem;
}

.arrow-icon {
    margin-left: auto;
    font-size: 1.1rem;
}

.community-footer {
    text-align: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 24px;
}

.community-footer p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 16px;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.t-icon {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #64748b;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 5%;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(226,232,240,0) 0%, rgba(226,232,240,1) 50%, rgba(226,232,240,0) 100%);
}

.arrow-down-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin: 0 20px;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

/* WHY SHOP WITH US SECTION */
.why-shop {
    padding: 20px 0 100px;
    background-color: #ffffff;
}

.why-badge {
    border-color: #86efac !important;
    color: #10b981 !important;
    background: transparent !important;
}

.text-success {
    color: #10b981;
}

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

.feature-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.f-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 24px;
}

.bg-orange-red { background: linear-gradient(135deg, #f97316 0%, #ef4444 100%); }
.text-orange-red { color: #ef4444 !important; }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.f-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-end;
    transition: all 0.2s;
}

.f-arrow:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    align-items: center;
}

.s-stat {
    text-align: center;
    transition: transform 0.3s ease;
}

.s-stat.s-stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 45px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
}

.s-stat.s-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.s-stat h3 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.s-stat p {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.text-stat-green { color: #00c853; }
.text-stat-orange { color: #ff5e3a; }
.text-stat-blue { color: #0084ff; }
.text-stat-purple { color: #a855f7; }

/* SERVICES SECTION */
.services-section {
    padding: 20px 0 60px;
    background-color: #fbfcfd;
}

.services-badge {
    border-color: #d8b4fe !important;
    color: #a855f7 !important;
    background: transparent !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.015);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.srv-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.srv-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    margin-top: auto;
}

.srv-link:hover {
    color: #a855f7;
}

.btn-outline-purple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    background: white;
    border: 1px solid #d8b4fe;
    color: #a855f7;
    box-shadow: 0 4px 10px rgba(168, 85, 247, 0.05);
}

.btn-outline-purple:hover {
    background: #faf5ff;
    transform: translateY(-2px);
}

.bg-green-gradient {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%) !important;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3) !important;
}

/* HOW IT WORKS SECTION */
.how-it-works {
    padding: 20px 0 80px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.hiw-bg-shape {
    position: absolute;
    top: 60px;
    left: 60px;
    width: 140px;
    height: 140px;
    background: #d1fae5;
    border-radius: 28px;
    transform: rotate(12deg);
    opacity: 0.7;
    z-index: 0;
}

.hiw-badge {
    border-color: #bfdbfe !important;
    color: #3b82f6 !important;
    background: transparent !important;
}

.text-blue {
    color: #3b82f6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.015);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-top {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    letter-spacing: 1px;
}

.step-connector {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
    margin-left: 16px;
}

.step-card.last .step-top {
    width: auto;
}

.step-icon-sm {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 24px;
    margin-top: 4px;
}

.bg-mint { background-color: #d1fae5; }
.bg-peach { background-color: #fee2e2; }

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.bg-blue-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%) !important;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3) !important;
}

/* TESTIMONIALS */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testi-badge {
    border-color: #fde68a !important;
    color: #f59e0b !important;
    background: transparent !important;
}

.text-orange { color: #f97316; }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
}

.stars { color: #f59e0b; font-size: 1rem; display: flex; gap: 3px; }

.testi-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    flex-grow: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testi-author h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 3px;
}

.testi-author span {
    font-size: 0.85rem;
    color: #64748b;
}

/* CTA SECTION */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(120deg, #fff5ee 0%, #fafbff 50%, #f0fdf8 100%);
    position: relative;
    overflow: hidden;
}

.cta-blob-orange {
    position: absolute; top: -60px; left: -80px;
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(253,186,116,0.35) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-blob-blue {
    position: absolute; bottom: -40px; left: 40%;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(147,197,253,0.25) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-blob-green {
    position: absolute; top: 20%; right: -30px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(110,231,183,0.25) 0%, transparent 70%);
    border-radius: 50%;
}

/* Decorative shapes like in design */
.cta-deco-peach {
    position: absolute;
    top: 30px;
    right: 80px;
    width: 110px;
    height: 110px;
    background: #fecaca;
    border-radius: 24px;
    opacity: 0.5;
    transform: rotate(10deg);
}
.cta-deco-teal {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #99f6e4;
    border-radius: 14px;
    opacity: 0.55;
    transform: rotate(-8deg);
}
.cta-deco-circle {
    position: absolute;
    left: 100px;
    bottom: 40px;
    width: 80px;
    height: 80px;
    background: #bfdbfe;
    border-radius: 50%;
    opacity: 0.4;
}

.cta-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.cta-content { flex: 1; }

.cta-badge {
    border-color: #fed7aa !important;
    color: #f97316 !important;
    background: transparent !important;
}

.cta-content h2 {
    font-size: 3.4rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.08;
    margin: 20px 0 18px;
}

.cta-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 460px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.cta-buttons .btn-outline {
    background: white;
    border: 1.5px solid #e2e8f0;
    color: #0f172a;
    padding: 13px 22px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.cta-buttons .btn-outline:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.cta-card-wrapper { 
    flex: 1; 
    display: flex; 
    justify-content: flex-end;
}

.cta-card {
    background: white;
    border-radius: 28px;
    padding: 36px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
}

.cta-card-users {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.cta-avatars { display: flex; }

.cta-avatars .cta-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    color: #92400e;
    background: #fed7aa;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -8px;
    border: 2px solid white;
}

.cta-avatars .cta-av:first-child { margin-left: 0; }

.cta-card-users strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    color: #0f172a;
}

.cta-card-users span { font-size: 0.85rem; color: #64748b; }

.cta-features { 
    display: flex; 
    flex-direction: column; 
    gap: 18px; 
    margin-bottom: 28px; 
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cf-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.cf-icon.bg-mint { background-color: #d1fae5; color: #065f46; }
.cf-icon.bg-light-blue { background-color: #dbeafe; color: #1e40af; }
.cf-icon.bg-peach { background-color: #fee2e2; color: #991b1b; }

.cta-feature span { 
    font-size: 0.95rem; 
    color: #334155; 
    font-weight: 600; 
}

.cta-fee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #64748b;
}

.fee-value { font-weight: 800; font-size: 1rem; }



/* FOOTER */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding-bottom: 0;
}

.footer-newsletter {
    padding: 56px 5%;
}

.fn-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.fn-badge {
    border-color: #334155 !important;
    color: #94a3b8 !important;
    background: transparent !important;
    margin-bottom: 14px;
    display: inline-flex;
}

.fn-left h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
}

.fn-left p { 
    font-size: 0.9rem; 
    color: #64748b; 
    line-height: 1.6;
    max-width: 340px;
}

.fn-right { flex-shrink: 0; }

.newsletter-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.email-input {
    padding: 14px 20px;
    border-radius: 14px;
    border: 1px solid #334155;
    background: #1e293b;
    color: white;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    width: 280px;
    outline: none;
    transition: border-color 0.2s;
}

.email-input::placeholder { color: #475569; }
.email-input:focus { border-color: #f97316; }

.footer-divider {
    height: 1px;
    background: #1e293b;
    margin: 0 5%;
}

.footer-main {
    padding: 56px 5%;
    max-width: 100%;
    display: flex;
    gap: 0;
}

.footer-inner {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.footer-brand { 
    flex: 1.4; 
    min-width: 0;
}

.footer-logo {
    color: white !important;
    font-size: 1.8rem;
    margin-bottom: 14px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-fee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 10px;
    background: #1e293b;
    color: #10b981;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.fee-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
    flex-shrink: 0;
}

.footer-users {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-avatars { display: flex; }

.footer-avatars .avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 800;
    margin-left: -6px;
    border: 2px solid #0f172a;
    background: #f97316;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-avatars .avatar:first-child { margin-left: 0; }

.footer-users span { font-size: 0.88rem; color: #94a3b8; }
.footer-users strong { color: white; }

.footer-links-group {
    flex: 2;
    display: flex;
    gap: 40px;
    justify-content: flex-end;
}

.footer-col { min-width: 130px; }

.footer-col h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }

.footer-col li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.f-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #334155;
    flex-shrink: 0;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: #64748b;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-bottom strong { color: white; }

.footer-bottom-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.footer-bottom-links span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
}



/* MOBILE RESPONSIVENESS */
@media (max-width: 992px) {
    body {
        padding-bottom: 80px; /* Space for bottom nav */
    }

    .navbar {
        background: white;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        padding: 16px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .desktop-nav-links, .desktop-nav-actions {
        display: none;
    }
    
    .mobile-nav-actions {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .menu-btn {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #0f172a;
    }
    
    .hero {
        padding: 40px 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    h1 { 
        font-size: 2.8rem; 
        margin-bottom: 16px;
    }
    
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 32px;
        margin-top: 8px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .btn-primary, .btn-secondary {
        width: auto;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .reviews {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        margin-top: 30px;
    }
    
    .video-container {
        max-width: 90%;
        border-radius: 16px;
        margin: 0 auto;
    }
    
    .hero-video {
        border-radius: 16px;
    }

    .float-left {
        left: -10px;
        top: 10%;
        transform: scale(0.85);
        transform-origin: left top;
    }

    .float-right {
        right: -10px;
        bottom: 5%;
        transform: scale(0.85);
        transform-origin: right bottom;
    }

    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        width: 100%;
        background: white;
        padding: 12px 0;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
        z-index: 1000;
        border-top: 1px solid #e2e8f0;
    }

    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        color: #94a3b8;
        font-size: 0.75rem;
        font-weight: 500;
    }

    .mobile-bottom-nav a.active {
        color: #3b82f6;
    }

    .mobile-bottom-nav i {
        font-size: 1.25rem;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* What We Offer Mobile adjustments */
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .offer-card {
        padding: 24px 16px;
        border-radius: 20px;
    }
    
    .icon-box {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        margin-bottom: 16px;
        font-size: 1.2rem;
    }
    
    .offer-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .shop-link {
        font-size: 0.85rem;
    }
    
    /* About Us Mobile */
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-content h2 {
        font-size: 2.8rem;
    }
    
    .stats-row {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0;
        padding: 20px 0;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
        width: auto;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }

    .stat-item span {
        font-size: 0.75rem;
    }
    
    .border-left {
        border-left: 1px solid #e2e8f0;
    }
    
    .contact-cards {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .about-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .btn-outline {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .community-wrapper {
        width: 100%;
        justify-content: center;
    }
    
    .community-card {
        padding: 24px;
        border-radius: 24px;
    }
    
    /* Why Shop Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        padding: 24px;
        border-radius: 20px;
    }
    
    .success-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }
    
    .s-stat h3 {
        font-size: 2.2rem;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 24px;
        border-radius: 20px;
    }
    
    /* How It Works Mobile */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .step-card {
        padding: 28px 24px;
    }
    
    .step-connector {
        display: none;
    }
    
    .hiw-bg-shape {
        width: 90px;
        height: 90px;
        top: 30px;
        left: 20px;
    }
    
    /* Testimonials Mobile */
    .testi-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* CTA Mobile */
    .cta-section { padding: 60px 5%; }
    
    .cta-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .cta-content h2 { font-size: 2.5rem; }
    
    .cta-buttons { flex-direction: column; align-items: stretch; }
    
    .cta-card-wrapper { width: 100%; justify-content: center; }
    
    .cta-card { padding: 24px; max-width: 100%; }
    
    /* Footer Mobile */
    .fn-container { flex-direction: column; gap: 24px; }
    
    .newsletter-form { flex-direction: column; width: 100%; }
    
    .email-input { width: 100%; }
    
    .footer-main { flex-direction: column; gap: 40px; padding: 40px 5%; }
    
    .footer-links-group { flex-direction: column; gap: 32px; }
    
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    
    .footer-bottom-links { justify-content: center; }
}



/* --- SHOP SECTION HERO --- */
.shop-hero {
    background: radial-gradient(circle at top right, #1e1b4b, #09090b);
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.shop-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.shop-hero h1 span {
    color: #ff5e3a;
}

.shop-hero p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1.1rem;
}

/* --- FILTER BAR --- */
.filter-bar {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.filter-left h2 {
    font-size: 1.5rem;
    font-weight: 800;
}

.filter-left .item-count {
    font-size: 0.9rem;
    color: #777;
    background: #f1f1f1;
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 10px;
}

.filter-right {
    display: flex;
    gap: 15px;
}

.filter-right select {
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;
    font-weight: 600;
    color: #555;
}

/* --- CUSTOM CTA SECTION --- */
.custom-request-section {
    padding: 100px 20px;
    background: #f8fafc;
}

.cta-card-premium {
    max-width: 1000px;
    margin: 0 auto;
    background: #0f172a;
    padding: 60px;
    border-radius: 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.cta-icon-glow {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff5e3a, #ff2a68);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 30px;
    box-shadow: 0 0 30px rgba(255, 94, 58, 0.4);
}

.cta-card-premium h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.btn-cta-gradient {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(90deg, #ff5e3a, #ff2a68);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(255, 42, 104, 0.3);
}

.btn-cta-gradient:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 42, 104, 0.4);
}

/* --- FOOTER UPGRADE --- */
.footer {
    background: #09090b;
    padding: 80px 20px 40px;
    color: #94a3b8;
}

.low-fee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 20px 0;
}

.happy-users {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.user-avatars {
    display: flex;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #334155;
    border: 2px solid #09090b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    margin-left: -10px;
}

.avatar-circle:first-child { margin-left: 0; }

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); }



/* --- SHOP PAGE HERO --- */
.hero-shop-style {
    background: radial-gradient(circle at top right, #1e1b4b, #09090b);
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
}

.hero-shop-style h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 20px 0;
    letter-spacing: -2px;
}

.hero-shop-style .gradient-text {
    background: linear-gradient(90deg, #ff5e3a, #ff2a68);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-shop-style p {
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.2rem;
}

.search-container input {
    width: 100%;
    padding: 22px 30px 22px 65px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* --- PRODUCT CARD STYLES --- */
.product-card {
    position: relative;
    padding: 40px !important;
    border: 1px solid #eee;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff5e3a;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f1f1f1;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.btn-buy {
    background: #0f172a;
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-buy:hover {
    background: #ff5e3a;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hero-shop-style h1 {
        font-size: 2.5rem;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .filter-right {
        width: 100%;
        flex-direction: column;
    }
    
    .cta-card-premium {
        padding: 40px 20px;
    }
    
    .cta-card-premium h2 {
        font-size: 1.8rem;
    }
}



/* --- MATCHING SCREENSHOT GRADIENTS --- */
.hero-shop-style {
    background: radial-gradient(circle at 20% 20%, #2e1065, #000); /* Deep Purple to Black */
    padding: 140px 20px 100px;
}

.hero-shop-style h1 {
    font-size: 4.5rem;
    letter-spacing: -2px;
}

.hero-shop-style .gradient-text {
    background: linear-gradient(90deg, #ff8c00, #ff4500); /* Bright Orange to Red-Orange */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search-container input {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* --- CTA CARD EXACT MATCH --- */
.cta-card-premium {
    background: linear-gradient(135deg, #111827, #000);
    border: 1px solid rgba(255,255,255,0.05);
}

.cta-icon-glow {
    background: #ff4500;
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.4);
}

.btn-cta-gradient {
    background: linear-gradient(90deg, #ff8c00, #ff4500);
}

/* --- FOOTER LOW FEE BADGE --- */
.low-fee-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.low-fee-badge .dot {
    height: 8px;
    width: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #10b981;
    margin-right: 8px;
}

/* --- WHATSAPP GLOW --- */
.whatsapp-float {
    background: #25d366;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}


.hero-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.hero-badge i {
    color: #ff8c00;
}



/* --- HERO SECTION EXACT MATCH --- */
.hero-shop-style h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-shop-style p {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto 50px;
    font-weight: 500;
}

.search-container input::placeholder {
    color: #64748b;
    opacity: 0.8;
}

/* --- FILTER BAR PILL & TEXT --- */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #f1f1f1;
}

.filter-left h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-count {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: lowercase;
}

.filter-right select {
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    color: #475569;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.filter-right select:hover {
    border-color: #cbd5e1;
}

/* --- WHATSAPP ICON EXACT --- */
.whatsapp-float {
    width: 65px;
    height: 65px;
    background: #22c55e;
    border: 4px solid rgba(255,255,255,0.1);
}



/* --- HERO CENTER ALIGNMENT FIX --- */
.hero-shop-style {
    display: flex;
    flex-direction: column;
    align-items: center; /* Sab kuch center karega */
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #2e1065, #000);
    padding: 100px 20px;
    width: 100%;
}

.hero-badge {
    margin: 0 auto 30px; /* Center badge */
    display: inline-flex;
}

.hero-shop-style h1 {
    font-size: 3.5rem; /* Adjusted size */
    width: 100%;
    margin: 0 auto 20px;
    line-height: 1.2;
    text-align: center;
}

.hero-shop-style p {
    margin: 0 auto 40px; /* Center text */
    max-width: 600px;
    text-align: center;
}

.search-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto; /* Center search bar */
}

/* --- FILTER BAR FIX --- */
.filter-bar {
    flex-direction: row !important; /* Ensure horizontal on desktop */
    justify-content: space-between;
    width: 100%;
}



/* --- OVERRIDING ALL CONFLICTS --- */
.hero-shop-style {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    padding: 120px 20px !important;
    background: radial-gradient(circle at center, #2e1065, #000) !important;
}

.hero-shop-style .hero-container {
    max-width: 900px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.hero-shop-style h1 {
    font-size: 4rem !important;
    margin: 20px 0 !important;
    text-align: center !important;
    line-height: 1.1 !important;
    color: #fff !important;
}

.hero-shop-style p {
    font-size: 1.1rem !important;
    max-width: 600px !important;
    margin: 0 auto 40px !important;
    text-align: center !important;
    color: #94a3b8 !important;
}

.search-container {
    width: 100% !important;
    max-width: 700px !important;
    margin: 0 auto !important;
}


.badge.hero-badge {
    display: inline-flex !important;
    margin: 0 auto !important;
    text-align: center !important;
}



/* --- MOBILE BOTTOM NAVIGATION --- */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.05);
    padding: 12px 0;
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
}

.nav-item i {
    font-size: 1.3rem;
}

.nav-item.active {
    color: #10b981; /* Green highlight for Shop */
}

.nav-item.shop-center {
    background: #f0fdf4;
    padding: 10px;
    border-radius: 50%;
    margin-top: -30px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* --- MOBILE HEADER ADJUSTMENTS --- */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    .desktop-nav-links, .desktop-nav-actions {
        display: none !important;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .hero-shop-style h1 {
        font-size: 2.2rem !important;
    }
    
    .services-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; /* 2 columns on mobile */
        gap: 10px !important;
        padding: 10px;
    }
    
    .product-card {
        padding: 15px !important;
    }
    
    .product-card h3 {
        font-size: 0.9rem;
    }
    
    .price-tag {
        font-size: 1rem;
    }
    
    .btn-buy {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .footer {
        padding-bottom: 100px; /* Space for bottom nav */
    }
}



/* --- REFINED PRODUCT CARD (LAPTOP) --- */
.product-card {
    background: #fff;
    border: 1px solid #eef2f6 !important;
    border-radius: 16px !important;
    overflow: hidden;
    padding: 0 !important; /* Reset padding for image container */
    display: flex;
    flex-direction: column;
    text-align: left !important;
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #cbd5e1;
}

.badge-discount {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff4d4d;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
}

.badge-featured {
    position: absolute;
    top: 12px;
    left: 70px;
    background: #10b981;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-info-body {
    padding: 20px;
}

.product-category {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-card h3 {
    font-size: 1.1rem !important;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.product-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.rating-star {
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-card-footer {
    padding: 0 20px 20px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: #0f172a;
}

.old-price {
    font-size: 0.95rem;
    color: #cbd5e1;
    text-decoration: line-through;
}



/* --- FOOTER PIXEL PERFECT MATCH --- */
.site-footer {
    background: #0b0e14 !important; /* Exact Dark Color */
    color: #94a3b8;
    padding: 80px 0 40px;
    font-size: 0.95rem;
}

.footer-newsletter {
    margin-bottom: 60px;
}

.fn-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.fn-left h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin: 10px 0;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.05);
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 20px;
    width: 300px;
    outline: none;
}

.btn-subscribe {
    background: linear-gradient(90deg, #ff5e3a, #ff2a68);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand .logo {
    color: #fff !important;
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-fee-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 20px 0;
}

.fee-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

.footer-avatars {
    display: flex;
    margin-right: 10px;
}

.footer-avatars .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #0b0e14;
    background: #ff5e3a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    margin-right: -10px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #f97316;
    transform: translateX(4px);
}

.f-dot {
    width: 5px;
    height: 5px;
    background: #475569;
    border-radius: 50%;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .fn-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .newsletter-form input {
        width: 100%;
    }
}



/* --- FOOTER BACKGROUND LIGHTING --- */
.site-footer {
    background: #0b0e14 !important;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(88, 28, 135, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

/* Adding a central glow behind the newsletter */
.footer-newsletter {
    position: relative;
    z-index: 1;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 80%);
    pointer-events: none;
    z-index: -1;
}



/* --- CUSTOM CTA SECTION (PREMIUM) --- */
.custom-request-section {
    background: #0b0e14 !important; /* Same as footer */
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.cta-card-premium {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-icon-glow {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff8c42, #ff2a68);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 40px rgba(255, 140, 66, 0.4);
}

.cta-card-premium h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-card-premium p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.btn-cta-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #ff8c42, #ff2a68);
    color: white;
    padding: 16px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(255, 42, 104, 0.3);
}

.btn-cta-gradient:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 42, 104, 0.4);
}

@media (max-width: 768px) {
    .cta-card-premium h2 {
        font-size: 1.8rem;
    }
    .cta-card-premium p {
        font-size: 0.95rem;
    }
}



/* --- FINAL PIXEL PERFECT COLORS --- */
:root {
    --bg-dark: #0f172a; /* Exact Slate Navy from screenshot */
    --accent-orange: #ff5e3a;
    --accent-red: #ff2a68;
    --text-muted: #94a3b8;
}

.custom-request-section, .site-footer {
    background: var(--bg-dark) !important;
    font-family: 'Inter', sans-serif;
}

/* Enhancing the Glow */
.custom-request-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(80px);
}

.cta-icon-glow {
    background: linear-gradient(135deg, #ff7e5f, #feb47b) !important; /* Lighter Orange for icon */
    box-shadow: 0 0 30px rgba(255, 126, 95, 0.4) !important;
}

.cta-card-premium h2 {
    font-weight: 900 !important;
    letter-spacing: -0.03em;
    font-size: 2.8rem !important;
}

.btn-cta-gradient {
    background: linear-gradient(90deg, #ff8c42, #ff2a68) !important;
    box-shadow: 0 10px 30px rgba(255, 42, 104, 0.4) !important;
    padding: 18px 45px !important;
    border-radius: 16px !important;
}

/* Footer Link Bullet Fix */
.f-dot {
    background: #475569 !important;
    width: 6px !important;
    height: 6px !important;
}

.footer-col h4 {
    font-weight: 800 !important;
    text-transform: none !important;
}

.footer-fee-badge {
    background: rgba(16, 185, 129, 0.08) !important;
    border: 1px solid rgba(16, 185, 129, 0.1) !important;
}



/* --- COMPREHENSIVE MOBILE POLISH --- */
@media (max-width: 768px) {
    /* Footer Mobile Refinement */
    .fn-container {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }
    
    .fn-left h3 {
        font-size: 1.8rem !important;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .newsletter-form input {
        width: 100%;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
        margin-bottom: 10px;
        height: 50px;
    }
    
    .btn-subscribe {
        width: 100%;
        height: 50px;
    }
    
    .footer-inner {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand, .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-col h4 {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-bottom: 100px; /* Space for bottom nav */
    }

    /* CTA Mobile Refinement */
    .cta-card-premium h2 {
        font-size: 1.8rem !important;
    }
    
    .cta-card-premium p {
        font-size: 0.9rem !important;
        padding: 0 10px;
    }
    
    .btn-cta-gradient {
        width: 100%;
        justify-content: center;
    }
}



/* --- ADVANCED ADAPTIVE FLUID DESIGN (ALL DEVICES) --- */
html, body {
    overflow-x: hidden; /* Prevent horizontal scroll on any device */
    width: 100%;
}

.section-container, .nav-container, .footer-inner {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%; /* Fluid padding based on screen width */
}

/* Fluid Typography */
h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 6vw, 2.5rem); }

/* Adapting Cards for all Mobile widths */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr 1fr !important; /* Always 2 columns for shop items on tiny screens */
        gap: 8px !important;
        padding: 5px !important;
    }
    
    .product-card {
        padding: 10px !important;
    }
    
    .product-card h3 {
        font-size: 0.8rem !important;
    }
    
    .price-tag, .current-price {
        font-size: 0.9rem !important;
    }
    
    /* Center the hero on small phones */
    .hero-shop-style {
        padding: 60px 15px !important;
        text-align: center;
    }
    
    .search-container {
        width: 100% !important;
    }
}

/* Handling different Notch/Safe-areas for iPhone/Samsung */
.mobile-bottom-nav {
    padding-bottom: env(safe-area-inset-bottom, 12px);
}

/* Ensuring images don't break layout */
img, video {
    max-width: 100%;
    height: auto;
}



/* --- WHAT WE OFFER (PREMIUM CARDS) --- */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns for laptop */
    gap: 15px;
    margin-bottom: 40px;
}

.offer-card {
    padding: 25px 15px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.offer-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.shop-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Specific Card Colors */
.bg-blue-light { background-color: #f0f7ff; }
.bg-blue { background: #3b82f6; }

.bg-green-light { background-color: #f0fdf4; }
.bg-green { background: #10b981; }

.bg-orange-light { background-color: #fffaf0; }
.bg-orange { background: #f97316; }

.bg-purple-light { background-color: #f5f3ff; }
.bg-purple { background: #8b5cf6; }

.bg-pink-light { background-color: #fff1f2; }
.bg-pink { background: #f43f5e; }

.bg-dark-light { background-color: #f8fafc; }
.bg-dark { background: #1e293b; }

/* Gradient Button */
.btn-explore-gradient {
    background: linear-gradient(90deg, #ff8c42, #ff2a68);
    color: white;
    padding: 15px 40px;
    border-radius: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(255, 42, 104, 0.3);
    transition: all 0.3s ease;
}

.btn-explore-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 42, 104, 0.4);
}

@media (max-width: 1024px) {
    .offer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .offer-grid { grid-template-columns: repeat(2, 1fr); }
}



/* --- PREMIUM MOBILE BOTTOM NAV (AS PER IMAGE) --- */
.mobile-bottom-nav {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        justify-content: space-around;
        padding: 10px 5px;
        border-top: 1px solid rgba(0,0,0,0.05);
        z-index: 9999;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.03);
    }
    
    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        color: #64748b;
        font-size: 0.75rem;
        font-weight: 600;
        flex: 1;
        transition: all 0.3s ease;
        position: relative;
    }

    /* Top blue bar for active state */
    .nav-item.active::before {
        content: '';
        position: absolute;
        top: -10px;
        width: 40px;
        height: 4px;
        background: #0084ff;
        border-radius: 0 0 4px 4px;
    }
    
    .nav-item i {
        font-size: 1.4rem;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        transition: all 0.3s ease;
    }
    
    .nav-item.active {
        color: #0084ff;
    }
    
    /* Home Active Box Style */
    .nav-item.active i {
        background: #e6f2ff;
        color: #0084ff;
        box-shadow: 0 4px 12px rgba(0, 132, 255, 0.1);
    }
}



/* --- PREMIUM SHOP FILTERS (AS PER IMAGE) --- */
.shop-header-new {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shop-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-title-row h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
}

.item-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.filter-row-new {
    display: flex;
    gap: 10px;
}

.filter-box {
    flex: 1;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 500;
}

.filter-box i {
    color: #94a3b8;
    font-size: 0.8rem;
}

.filter-icon-left {
    margin-right: 8px;
    font-size: 1rem !important;
}

@media (max-width: 600px) {
    .filter-row-new {
        flex-direction: row; /* Keep them side by side as in image */
    }
}



/* --- REAL PREMIUM FOOTER & CTA (SHOP ONLY) --- */
.shop-cta-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    border-radius: 30px 30px 0 0;
    margin-top: 40px;
}

.cta-icon-box {
    background: #f97316;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.shop-cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.shop-cta-section p {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Footer Style */
.real-footer {
    background: #191e29; /* Darker navy like the image */
    padding: 60px 0 40px;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-left-content {
    flex: 1;
    max-width: 450px;
}

.footer-fee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    margin: 20px 0;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.fee-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

.footer-avatars {
    display: flex;
    margin-right: 12px;
}

.footer-avatars .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #191e29;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.footer-avatars .avatar:first-child { margin-left: 0; }

.footer-grid-links {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
    text-align: left;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    color: #94a3b8;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li::before {
    content: '•';
    color: #334155;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #64748b;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links span {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .footer-top-row {
        flex-direction: column;
    }
    .footer-grid-links {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }
    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-bottom: 80px; /* Space for mobile nav */
    }
}

/* MARKETPLACE MOBILE CARD DESIGN */
.mp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .mp-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 24px;
    }
}
.mp-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}
.mp-card-image {
    position: relative;
    height: 120px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 768px) {
    .mp-card-image { height: 160px; }
}
.mp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mp-badge-status {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    z-index: 10;
}
.mp-badge-active { background: #10b981; }
.mp-badge-sold { background: #f43f5e; }

.mp-card-body {
    padding: 10px;
    flex: 1;
}
.mp-card-title {
    font-size: 0.85rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mp-card-category {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.mp-card-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 12px;
}
.mp-card-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 2px;
}
.mp-stat-box {
    background: #f8fafc;
    border-radius: 6px;
    padding: 6px;
    display: flex;
    flex-direction: column;
}
.mp-stat-box.green-box {
    background: #ecfdf5;
}
.mp-stat-label {
    font-size: 0.6rem;
    color: #64748b;
    margin-bottom: 2px;
}
.mp-stat-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
}
.mp-stat-value.text-green {
    color: #10b981;
}
.mp-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* ==========================================================================
   BLOGS PAGE STYLES
   ========================================================================== */
.blog-hero {
    background: linear-gradient(135deg, #131130 0%, #1e1b4b 100%);
    padding: 80px 0 100px 0;
    text-align: center;
    color: white;
}

.blog-hero-badge {
    border-color: #a855f7 !important;
    color: #c084fc !important;
    background: rgba(168, 85, 247, 0.1) !important;
}

.blog-hero h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.blog-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter & Search Bar */
.blog-filter-section {
    position: relative;
    z-index: 20;
}

.blog-filter-bar {
    margin-top: -45px;
    background: white;
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

/* Category buttons list */
.blog-categories {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    flex: 1;
}

.blog-categories::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.blog-cat-btn {
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.blog-cat-btn:hover {
    color: #0f172a;
    border-color: #cbd5e1;
    background: #f8fafc;
}

.blog-cat-btn.active {
    background: #8b5cf6;
    color: white;
    border-color: #8b5cf6;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

/* Search input container */
.blog-search-box {
    display: flex;
    align-items: center;
    position: relative;
    width: 240px;
    flex-shrink: 0;
}

.blog-search-box .search-icon {
    position: absolute;
    left: 15px;
    color: #94a3b8;
    font-size: 0.9rem;
    pointer-events: none;
}

.blog-search-box input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #0f172a;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.blog-search-box input:focus {
    border-color: #8b5cf6;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Blog Cards Grid styling */
.blog-grid-section {
    padding: 60px 0 100px 0;
    background-color: #fafbfc;
}

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

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-card-image-wrap {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

.blog-card:hover .blog-card-image-wrap img {
    transform: scale(1.06);
}

.blog-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: #0f172a;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.blog-card-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    z-index: 5;
}

.blog-card-title {
    color: white;
    font-weight: 800;
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.4;
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.blog-card-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    color: #a855f7;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease, color 0.2s ease;
}

.blog-card-link i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.blog-card-link:hover {
    color: #8b5cf6;
    gap: 10px;
}

.blog-card-link:hover i {
    transform: translateX(2px);
}

/* Active navigation highlight styles */
.desktop-nav-links a.nav-link-item {
    padding: 8px 16px;
    border-radius: 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
}

.desktop-nav-links a.nav-link-item.active {
    color: #2563eb;
    background-color: #eff6ff;
    font-weight: 700;
    border-bottom-color: #2563eb;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .blog-filter-bar {
        border-radius: 20px;
        padding: 16px 20px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .blog-search-box {
        width: 100%;
    }
    
    .blog-categories {
        padding-bottom: 10px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-hero h1 {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   KNOWLEDGE BASE & GUIDE PAGE STYLES (NEW PREMIUM STEP-BY-STEP LAYOUT)
   ========================================================================== */

/* Hero Banner style */
.new-guide-hero {
    background: linear-gradient(135deg, #131130 0%, #1e1b4b 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.new-guide-hero .hero-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.new-guide-hero .hero-icon-circle {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.new-guide-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: white !important;
}

.new-guide-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Sections & headers */
.guide-section {
    padding: 60px 0 20px 0;
}

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

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.badge-sellers {
    background-color: #dcfce7;
    color: #15803d;
}

.badge-buyers {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.guide-section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.guide-section-desc {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Card grids */
.steps-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.steps-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Premium step card styling */
.step-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.015);
    text-align: left;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    border-color: #cbd5e1;
}

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

.step-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* Icon Box Backgrounds */
.bg-light-blue {
    background-color: #eff6ff;
    color: #3b82f6;
}

.bg-mint {
    background-color: #ecfdf5;
    color: #10b981;
}

.bg-pink {
    background-color: #fdf2f8;
    color: #ec4899;
}

.bg-peach {
    background-color: #fff7ed;
    color: #f97316;
}

.bg-purple {
    background-color: #faf5ff;
    color: #a855f7;
}

.bg-cyan {
    background-color: #ecfeff;
    color: #06b6d4;
}

.bg-mint-teal {
    background-color: #f0fdfa;
    color: #14b8a6;
}

.step-card-header .step-number {
    width: 24px;
    height: 24px;
    background-color: #f1f5f9;
    color: #64748b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.step-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive guide section styling */
@media (max-width: 991px) {
    .steps-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .new-guide-hero h1 {
        font-size: 2.4rem;
    }
    
    .new-guide-subtitle {
        font-size: 1.05rem;
    }
    
    .guide-section-header h2 {
        font-size: 1.8rem;
    }
    
    .steps-grid-6, .steps-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card {
        padding: 24px;
    }
}

/* ==========================================================================
   PLATFORM FEE & CTA STYLES
   ========================================================================== */

.fee-hero-card {
    background: linear-gradient(135deg, #131130 0%, #1e1b4b 100%);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    color: white;
    box-shadow: 0 4px 20px rgba(30, 27, 75, 0.25);
    margin-bottom: 30px;
    text-align: left;
}

.fee-hero-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
}

.fee-hero-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: white !important;
    letter-spacing: -0.02em;
}

.fee-hero-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
}

.fee-intro-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 900px;
    text-align: left;
}

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

.fee-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.015);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.fee-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.fee-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.fee-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.01em;
}

.fee-card-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0 0 20px 0;
}

.fee-large-value {
    font-size: 4rem;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
    margin-top: auto;
}

.calculation-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #475569;
}

.calc-label {
    font-weight: 500;
}

.calc-value {
    font-weight: 600;
    color: #0f172a;
}

.fee-negative {
    color: #ef4444;
}

.fee-positive {
    color: #10b981;
    font-size: 1.2rem;
}

.calc-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 4px 0;
}

.calc-total {
    font-size: 1.1rem;
    color: #0f172a;
}

/* CTA Card */
.guide-cta-card {
    background: linear-gradient(135deg, #131130 0%, #1e1b4b 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 32px rgba(30, 27, 75, 0.25);
}

.guide-cta-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: white !important;
    letter-spacing: -0.02em;
}

.guide-cta-card p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 30px 0;
    font-weight: 400;
    line-height: 1.5;
}

.guide-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-cta-primary {
    background-color: white;
    color: #1e1b4b;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    background-color: #f8fafc;
}

.btn-cta-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.2s ease;
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.25);
}

/* Responsiveness for new sections */
@media (max-width: 768px) {
    .fee-hero-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 16px;
    }
    
    .fee-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fee-card {
        padding: 24px;
    }
    
    .guide-cta-card {
        padding: 40px 24px;
    }
    
    .guide-cta-card h2 {
        font-size: 1.8rem;
    }
    
    .guide-cta-card p {
        font-size: 1rem;
    }
    
    .guide-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   ABOUT PAGE STYLES (PREMIUM DEELZO DESIGN MATCH)
   ========================================================================== */

.about-hero {
    background: linear-gradient(135deg, #131130 0%, #1e1b4b 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero-badge {
    border-color: #f97316 !important;
    color: #fdba74 !important;
    background: rgba(249, 115, 22, 0.1) !important;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.about-section {
    padding: 60px 0;
}

.about-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-card-premium {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.015);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.about-card-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.about-card-premium h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.about-card-premium p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.choose-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.choose-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.choose-card h3 {
    font-size: 1.15rem;
    font-weight: 750;
    color: #0f172a;
    margin-bottom: 10px;
}

.choose-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* What We Offer Category Grid */
.offer-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.offer-cat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.offer-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.offer-cat-card .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 16px;
}

.offer-cat-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
}

/* Founder Section */
.founder-section {
    background: #fff;
}

.founder-card {
    max-width: 850px;
    margin: 0 auto;
    background: linear-gradient(135deg, #131130 0%, #1e1b4b 100%);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(30, 27, 75, 0.2);
    position: relative;
    overflow: hidden;
}

.founder-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #ff8c42;
    font-weight: 750;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.founder-card h2 {
    font-size: 2.2rem;
    font-weight: 850;
    margin-bottom: 20px;
    color: white !important;
}

.founder-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 35px;
    font-weight: 400;
}

.founder-connect-row {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.founder-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.founder-btn.btn-wa {
    background-color: #22c55e;
    color: white;
}

.founder-btn.btn-wa:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(22, 163, 74, 0.3);
}

.founder-btn.btn-mail {
    background-color: white;
    color: #1e1b4b;
}

.founder-btn.btn-mail:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.25);
}

/* Responsive queries */
@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }
    .offer-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-grid-two {
        grid-template-columns: 1fr;
    }
    .about-hero h1 {
        font-size: 2.6rem;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .offer-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .founder-card {
        padding: 35px 20px;
    }
    .founder-card h2 {
        font-size: 1.8rem;
    }
    .founder-connect-row {
        flex-direction: column;
    }
    .founder-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   LEGAL PAGES STYLES (PRIVACY, TERMS, REFUND)
   ========================================================================== */

.legal-hero {
    background: linear-gradient(135deg, #131130 0%, #1e1b4b 100%);
    padding: 70px 0;
    text-align: center;
    color: white;
}

.legal-hero-badge {
    border-color: #f97316 !important;
    color: #fdba74 !important;
    background: rgba(249, 115, 22, 0.1) !important;
}

.legal-hero h1 {
    font-size: 3.2rem;
    color: white;
    font-weight: 900;
    margin-bottom: 12px;
}

.legal-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.legal-content-section {
    padding: 60px 0;
    background: #f8fafc;
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.015);
}

.legal-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 35px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2.4rem;
    }
    .legal-card {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .legal-card h2 {
        font-size: 1.25rem;
    }
}

/* FAQ Accordion Styling Rules */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #f97316 !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.05);
}

.faq-item.active {
    border-color: #2563eb !important;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.faq-question {
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

/* Contact channel hover lift */
.contact-channel-card:hover {
    transform: translateY(-3px);
    border-color: #f97316 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

/* Input Focus Glows */
input:focus, textarea:focus {
    background-color: white !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1) !important;
    border-color: #2563eb !important;
}

@media (max-width: 768px) {
    .form-grid-responsive {
        grid-template-columns: 1fr !important;
    }
}

/* Custom Cookie Toggle Switch Styles */
.custom-switch-slider {
    background-color: #cbd5e1;
}

.custom-switch-slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.cookie-switch-input:checked + .custom-switch-slider {
    background-color: #22c55e;
}

.cookie-switch-input:checked + .custom-switch-slider::before {
    transform: translateX(20px);
}

.custom-switch-slider.disabled {
    background-color: #22c55e !important;
}

/* Timeline Layout Adjustments */
@media (max-width: 768px) {
    .timeline-line-spacer {
        display: none !important;
    }
}

/* Contact Topic Cards Hover and Active effects */
.contact-topic-card {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-topic-card:hover {
    transform: translateY(-4px);
    border-color: #2563eb !important;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
}

/* ==========================================================================
   MOBILE MENU DRAWER (DEELZO STYLE)
   ========================================================================== */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-drawer.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 30px 24px 100px 24px; /* Added extra padding to bottom */
    box-sizing: border-box;
    overflow-y: auto; /* Ensure it scrolls if screen is small */
}

.mobile-menu-drawer.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    color: #0f172a;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-link-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-menu-link-item:hover {
    color: #2563eb;
    background: #f8fafc;
    transform: translateX(4px);
}

.mobile-menu-link-item i {
    font-size: 1.25rem;
    color: #64748b;
    width: 24px;
    text-align: center;
    transition: color 0.2s;
}

.mobile-menu-link-item:hover i {
    color: #2563eb;
}

.mobile-menu-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 24px 0;
}

.mobile-menu-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}

.mobile-menu-btn-login:hover {
    background: #f8fafc;
    color: #2563eb;
}

.mobile-menu-btn-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 750;
    color: white;
    background: #0084ff;
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mobile-menu-btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 132, 255, 0.3);
}

/* Custom Keyframe Transitions for Dropdowns & Alerts */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SPLIT SCREEN AUTHENTICATION DESIGN */
.auth-split-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background-color: #ffffff;
    overflow-x: hidden;
}

.auth-form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    max-width: 50%;
    box-sizing: border-box;
}

.auth-graphic-column {
    flex: 1;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Smartphone illustration design */
.auth-phone-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.auth-smartphone {
    width: 290px;
    height: 540px;
    border: 12px solid #0f172a;
    border-radius: 42px;
    background: linear-gradient(180deg, #d8b4fe 0%, #818cf8 100%);
    position: relative;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.auth-phone-island {
    width: 80px;
    height: 20px;
    background: #0f172a;
    border-radius: 10px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.auth-fingerprint-scanner {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px dashed rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    animation: pulseFingerprint 2s infinite ease-in-out;
}

.auth-fingerprint-scanner i {
    font-size: 2.5rem;
    color: #ffffff;
}

.auth-phone-subtext {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 160px;
    line-height: 1.4;
}

.auth-phone-floating-bubble-1 {
    position: absolute;
    top: 60px;
    right: -24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    animation: floatBubble1 4s infinite ease-in-out;
}

.auth-phone-floating-bubble-1 i {
    font-size: 1.2rem;
    color: #a855f7;
}

.auth-phone-floating-bubble-2 {
    position: absolute;
    bottom: 50px;
    right: -24px;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    animation: floatBubble2 5s infinite ease-in-out;
}

.auth-phone-floating-bubble-2 i {
    font-size: 1.4rem;
    color: #ffffff;
}

/* Animations */
@keyframes pulseFingerprint {
    0%, 100% {
        transform: scale(1);
        border-color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.05);
        border-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 0 35px rgba(255, 255, 255, 0.4);
    }
}

@keyframes floatBubble1 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatBubble2 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Join Deelzo / Accent Column list design */
.auth-navy-bg {
    width: 100%;
    height: 100%;
    background-color: #070b19;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.auth-navy-bar {
    width: 40px;
    height: 4px;
    background: #10b981;
    margin-bottom: 25px;
    border-radius: 2px;
}

.auth-navy-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 45px;
    letter-spacing: -0.5px;
}

.auth-navy-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.auth-navy-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.auth-navy-bullet {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    border: 2px solid #10b981;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.auth-navy-content h4 {
    font-size: 0.95rem;
    font-weight: 750;
    color: white;
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
}

.auth-navy-content p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

/* Auth Input Styling */
.auth-input-wrapper {
    position: relative;
    width: 100%;
}

.auth-input-wrapper > i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.05rem;
    pointer-events: none;
}

.auth-field-input {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 16px 16px 16px 46px;
    font-size: 0.95rem;
    background: #f8fafc;
    color: #0f172a;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
    font-weight: 600;
}

.auth-field-input:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
    background: #ffffff;
}

.auth-field-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

/* Responsiveness */
@media (max-width: 991px) {
    .auth-split-container {
        flex-direction: column;
    }
    
    .auth-form-column {
        max-width: 100%;
        width: 100%;
        padding: 50px 24px;
        min-height: auto;
    }
    
    .auth-graphic-column {
        display: none; /* Hide the decorative illustration on smaller/mobile devices */
    }
}

/* ==========================================================================
   INTERACTIVE PRIORITY CHIPS & DEPARTMENT CARDS
   ========================================================================== */
.priority-chip {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.priority-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
}

.priority-chip.active {
    box-shadow: 0 0 0 3px currentColor !important;
}

.dept-chip {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dept-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.05);
    border-color: #2563eb !important;
}

.addon-toggle-row {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.addon-toggle-row:hover {
    transform: translateY(-1px);
    border-color: #2563eb !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 1; }
}

.pulse-dot {
    animation: pulse 1s infinite alternate;
}

/* =========================================================================
   DASHBOARD UI STYLES
   ========================================================================= */

#dashboardPage {
    display: none;
    background-color: #f8fafc;
    min-height: 100vh;
    width: 100%;
}

.dashboard-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    max-width: 1600px;
    margin: 0 auto;
    min-height: calc(100vh - 80px);
}

/* Sidebar */
.dashboard-sidebar {
    background: white;
    border-right: 1px solid #e2e8f0;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dash-user-card {
    background: #ecfdf5;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #d1fae5;
}

.dash-user-avatar {
    width: 48px;
    height: 48px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.dash-user-info h4 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: #0f172a;
}

.dash-user-info span {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.dash-nav-item i {
    font-size: 1.1rem;
    width: 20px;
}

.dash-nav-item:hover {
    background: #f1f5f9;
}

.dash-nav-item.active {
    background: #10b981;
    color: white;
}

.dash-nav-item .arrow-icon {
    margin-left: auto;
    font-size: 0.8rem;
}

.dash-logout-btn {
    background: #f43f5e;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.dash-logout-btn:hover {
    background: #e11d48;
}

/* Main Content */
.dashboard-main {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-header-title h1 {
    font-size: 1.8rem;
    color: #0f172a;
    margin: 0 0 6px;
}

.dash-header-title p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.dash-header-actions {
    display: flex;
    gap: 12px;
}

.dash-btn-create {
    background: #10b981;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.dash-btn-create:hover {
    background: #059669;
}

.dash-btn-write {
    background: white;
    color: #475569;
    border: 1px solid #cbd5e1;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.dash-btn-write:hover {
    background: #f8fafc;
    color: #0f172a;
}

/* Stats Row White */
.dash-stats-row-white {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dash-stat-card-white {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.stat-value {
    font-size: 1.8rem;
    color: #0f172a;
    margin: 0;
    font-weight: 800;
}

.stat-sub {
    font-size: 0.75rem;
    color: #94a3b8;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Stats Row Colored */
.dash-stats-row-colored {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.dash-stat-card-color {
    border-radius: 16px;
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dash-stat-card-color.bg-green { background: #10b981; }
.dash-stat-card-color.bg-orange { background: #f59e0b; }
.dash-stat-card-color.bg-blue { background: #3b82f6; }
.dash-stat-card-color.bg-purple { background: #8b5cf6; }
.dash-stat-card-color.bg-pink { background: #f43f5e; }

.stat-icon-color {
    background: rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.stat-content-color {
    display: flex;
    flex-direction: column;
}

.stat-content-color .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
}

.stat-content-color .stat-value {
    color: white;
    font-size: 1.4rem;
}

/* Bottom Grid */
.dash-bottom-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.dash-left-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dash-right-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dash-panel {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.dash-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.dash-panel-header h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    color: #0f172a;
}

.dash-panel-header p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
}

.view-all-link {
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dash-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.empty-icon {
    width: 64px;
    height: 64px;
    background: #f1f5f9;
    color: #94a3b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.dash-empty-state h4 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: #0f172a;
}

.dash-empty-state p {
    margin: 0 0 20px;
    font-size: 0.9rem;
    color: #64748b;
}

/* Profile Card */
.dash-profile-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.profile-card-header {
    height: 80px;
}

.bg-green-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.profile-card-body {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-card-avatar {
    width: 80px;
    height: 80px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    border: 4px solid white;
    margin-top: -40px;
    margin-bottom: 16px;
}

.profile-card-body h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    color: #0f172a;
}

.profile-card-body p {
    margin: 0 0 20px;
    font-size: 0.85rem;
    color: #64748b;
}

.dash-btn-outline {
    background: white;
    color: #475569;
    border: 1px solid #cbd5e1;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
}

.dash-btn-outline:hover {
    background: #f8fafc;
    color: #0f172a;
}

/* Performance List */
.perf-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.perf-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.perf-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.bg-light-green { background: #ecfdf5; color: #10b981; }
.bg-light-blue { background: #eff6ff; color: #3b82f6; }
.bg-light-purple { background: #f5f3ff; color: #8b5cf6; }

.perf-details {
    flex: 1;
}

.perf-details h4 {
    margin: 0 0 4px;
    font-size: 0.9rem;
    color: #0f172a;
}

.perf-details p {
    margin: 0;
    font-size: 0.75rem;
    color: #64748b;
}

.perf-value {
    font-weight: 700;
    color: #0f172a;
}

/* Responsive Dashboard */
@media (max-width: 1200px) {
    .dashboard-wrapper {
        grid-template-columns: 240px 1fr;
    }
    .dash-stats-row-white {
        grid-template-columns: repeat(2, 1fr);
    }
    .dash-stats-row-colored {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .dash-bottom-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-wrapper {
        grid-template-columns: 1fr;
    }
    .dashboard-sidebar {
        display: none; /* In a real app, this would be a toggleable drawer */
    }
    #profileLayoutGrid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .dash-stats-row-white {
        grid-template-columns: 1fr;
    }
    .dash-stats-row-colored {
        grid-template-columns: repeat(2, 1fr);
    }
    .dash-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .dashboard-main {
        padding: 20px;
    }
    #profileFormGrid {
        grid-template-columns: 1fr !important;
    }
    #profileFormBio {
        grid-column: span 1 !important;
    }
}
/* --- WHATSAPP ANIMATION & POPUP --- */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-float-container .whatsapp-float {
    position: relative !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 65px !important;
    height: 65px !important;
    background: #25d366 !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2.2rem !important;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    animation: wa-pulse 2s infinite !important;
    border: none !important;
    z-index: 2;
}

.whatsapp-float-container .whatsapp-float:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7) !important;
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-popup {
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.whatsapp-float-container:hover .whatsapp-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-float-container.popup-closed:hover .whatsapp-popup {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(20px) scale(0.95) !important;
}

.wa-popup-icon {
    width: 45px;
    height: 45px;
    background: #e6f8ec;
    color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.wa-popup-text {
    display: flex;
    flex-direction: column;
}

.wa-popup-text strong {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.wa-popup-text span {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.wa-popup-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid #f1f5f9;
}

.wa-popup-close:hover {
    color: #ef4444;
}


/* ========================================================
   MOBILE DASHBOARD SPECIFIC STYLES (MATCHING USER UI)
======================================================== */
@media (max-width: 768px) {
    /* Hide desktop sidebar */
    .dashboard-sidebar {
        display: none !important;
    }
    
    /* Make main content full width */
    .dashboard-main {
        width: 100% !important;
        padding: 24px !important;
    }
    
    /* Top Header */
    .dash-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
    .dash-header-title h1 {
        font-size: 1.6rem !important;
    }
    .dash-header-actions {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
        gap: 10px !important;
        flex-wrap: wrap !important;
    }
    .dash-btn-create {
        flex: 1;
        justify-content: center;
    }
    .dash-btn-write {
        flex: 1;
        justify-content: center;
    }

    /* Row 1 White Cards (2x2 Grid) */
    .dash-stats-row-white {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .dash-stat-card-white {
        padding: 16px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        position: relative !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
        overflow: hidden !important;
        min-height: 140px;
    }
    /* Add top borders to white cards */
    .dash-stat-card-white:nth-child(1) { border-top: 4px solid #3b82f6 !important; } /* Listings */
    .dash-stat-card-white:nth-child(2) { border-top: 4px solid #10b981 !important; } /* Views */
    .dash-stat-card-white:nth-child(3) { border-top: 4px solid #a855f7 !important; } /* Bids */
    .dash-stat-card-white:nth-child(4) { border-top: 4px solid #f97316 !important; } /* Portfolio */
    
    .dash-stat-card-white .stat-icon {
        position: absolute !important;
        right: 16px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }
    .dash-stat-card-white .stat-label {
        font-size: 0.8rem !important;
        margin-bottom: 6px !important;
    }
    .dash-stat-card-white .stat-value {
        font-size: 1.8rem !important;
        margin-bottom: 4px !important;
    }
    .dash-stat-card-white .stat-sub {
        font-size: 0.75rem !important;
    }

    /* Row 2 Colored Cards */
    .dash-stats-row-colored {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .dash-stat-card-color {
        border-radius: 12px !important;
        padding: 16px !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
    .dash-stat-card-color .stat-icon-color {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.1rem !important;
        border-radius: 8px !important;
    }
    .dash-stat-card-color .stat-label {
        font-size: 0.8rem !important;
        opacity: 0.9 !important;
    }
    .dash-stat-card-color .stat-value {
        font-size: 1.4rem !important;
    }
    /* Rating card spans full width or single */
    .dash-stats-row-colored .dash-stat-card-color:nth-child(5) {
        grid-column: 1 / -1 !important; /* Full width for the rating card */
    }

    /* Profile View Layout */
    #profileLayoutGrid {
        grid-template-columns: 1fr !important;
    }
    
    /* Ensure padding at bottom for the mobile bottom nav */
    #dashboardPage {
        padding-bottom: 80px !important;
    }
}

/* ========================================================
   MOBILE DASHBOARD: LISTINGS & ORDERS VIEWS FIX
======================================================== */
@media (max-width: 768px) {
    /* Fix button widths globally, apply stretch only to Home View */
    .dash-btn-create, .dash-btn-write {
        flex: none !important;
        justify-content: flex-start;
    }
    #dashViewHome .dash-header-actions .dash-btn-create, #dashViewHome .dash-header-actions .dash-btn-write {
        flex: 1 !important;
        justify-content: center !important;
    }

    /* Filter Bar Stacking (Listings & Blogs) */
    #dashViewListings .dash-panel, #dashViewBlogs .dash-panel {
        flex-direction: column !important;
        gap: 15px !important;
    }
    #dashViewListings .dash-panel > div, #dashViewBlogs .dash-panel > div {
        width: 100% !important;
    }

    /* Override inline orange border for the dropdown */
    #dashViewListings select, #dashViewBlogs select {
        border: 1px solid #e2e8f0 !important;
        font-weight: 500 !important;
        color: #0f172a !important;
    }

    /* Orders View adjustments */
    #dashViewOrders .dash-header-actions select {
        border-radius: 20px !important; /* Make it more pill-like if needed, or keep 8px */
    }
    #dashViewOrders .empty-icon {
        border-radius: 16px !important;
    }
}

/* WhatsApp Float Mobile Adjustment */
@media (max-width: 768px) {
    .whatsapp-float-container {
        bottom: 90px !important;
        right: 20px !important;
    }
    .whatsapp-float-container .whatsapp-float {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.8rem !important;
    }
}

/* Header Logo Mobile Adjustment */
@media (max-width: 768px) {
    .logo {
        font-size: 1.2rem !important;
        gap: 6px !important;
    }
    .logo-d {
        font-size: 1.3rem !important;
    }
    .logo img {
        width: 30px !important;
        height: 30px !important;
    }
}

/* Dashboard Home Header Mobile Refining */
@media (max-width: 768px) {
    #dashViewHome .dash-header {
        gap: 24px !important;
        margin-bottom: 45px !important;
        margin-top: 10px !important;
    }
    #dashViewHome .dash-header-title h1 {
        font-size: 1.85rem !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        margin-bottom: 12px !important;
        line-height: 1.2 !important;
        letter-spacing: -0.5px !important;
    }
    #dashViewHome .dash-header-title p {
        font-size: 0.9rem !important;
        color: #64748b !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }
    #dashViewHome .dash-header-actions .dash-btn-create, #dashViewHome .dash-header-actions .dash-btn-write {
        padding: 10px 0 !important;
        border-radius: 8px !important;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
    }
    #dashViewHome .dash-header-actions {
        gap: 12px !important;
    }
}

/* Custom Dropdowns */
.custom-dropdown-container {
    position: relative;
    flex: 1;
}
.custom-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 100;
    margin-top: 8px;
    overflow: hidden;
    animation: fadeIn 0.2s ease;
}
.custom-dropdown-menu.show {
    display: block;
}
.dropdown-item {
    padding: 12px 15px;
    font-size: 0.9rem;
    color: #475569;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}
.dropdown-item:last-child {
    border-bottom: none;
}
.dropdown-item:hover {
    background: #f8fafc;
}
.dropdown-item.active {
    color: #0f172a;
    background: #f8fafc;
}
.dropdown-item .check-icon {
    font-size: 0.8rem;
    color: #10b981;
}

/* Product Card Mobile Perfection */
@media (max-width: 768px) {
    .service-card.product-card {
        padding: 0 !important;
        overflow: hidden !important;
        display: flex;
        flex-direction: column;
        border: 1px solid #e2e8f0 !important;
    }
    .product-image-container {
        border-radius: 20px 20px 0 0 !important;
        overflow: hidden !important;
    }
    .product-info-body {
        padding: 12px 12px 0 12px !important;
    }
    .product-card-footer {
        padding: 10px 12px 12px 12px !important;
    }
    .product-card h3 {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .product-desc {
        font-size: 0.75rem !important;
        margin-bottom: 8px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .product-category {
        font-size: 0.65rem !important;
        margin-bottom: 4px !important;
    }
    .product-stats {
        font-size: 0.7rem !important;
    }
    .current-price {
        font-size: 0.95rem !important;
    }
    .old-price {
        font-size: 0.75rem !important;
    }
    .badge-discount, .badge-featured {
        padding: 4px 8px !important;
        font-size: 0.65rem !important;
        top: 8px !important;
    }
    .badge-discount {
        left: 8px !important;
    }
    .badge-featured {
        right: 8px !important;
    }
}

/* Search Input Visibility Fix */
.search-container input {
    color: white !important;
}
.search-container input::placeholder {
    color: rgba(255,255,255,0.6) !important;
}

/* Search Input Visibility Fix v2 */
.search-container input {
    color: #ffffff !important;
    font-size: 16px !important; /* Prevent iOS zoom and ensure visible size */
    line-height: normal !important;
    padding: 15px 20px 15px 50px !important; /* Reduced top/bottom padding so text fits */
    height: auto !important;
    min-height: 50px !important;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-text-fill-color: #ffffff !important; /* Force text color in webkit */
}

/* FINAL SEARCH INPUT OVERRIDE */
.hero-shop-style .search-container input {
    background: rgba(255, 255, 255, 0.1) !important; /* Forces dark transparent background */
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important; /* White text */
    -webkit-text-fill-color: #ffffff !important;
    font-size: 16px !important;
    padding: 15px 20px 15px 50px !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: none !important;
}
.hero-shop-style .search-container input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.6) !important;
}

/* =============================================
   FINAL OVERRIDE: Mobile Bottom Nav 
   ONLY show on mobile, NEVER on desktop
   ============================================= */

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    .mobile-bottom-nav.hide-important {
        display: none !important;
    }
}

/* Also hide mobile dashboard views on desktop */
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none !important;
    }
    /* Hide dashboard mobile-only sections on desktop */
    #dashboardPage .mobile-dash-section {
        display: none !important;
    }
}




/* ==============================================
   PRODUCT DETAIL PAGE - PREMIUM REDESIGN v2
   ============================================== */

#productDetailPage {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
}

/* === TOP BAR === */
.pd-topbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.pd-back-btn {
    display: flex; align-items: center; gap: 8px;
    background: #f1f5f9; border: none;
    font-size: 0.9rem; font-weight: 700;
    color: #0f172a; cursor: pointer;
    padding: 9px 16px; border-radius: 50px;
    transition: all 0.2s;
}
.pd-back-btn:hover { background: #e2e8f0; }
.pd-topbar-actions { display: flex; gap: 8px; }
.pd-share-btn, .pd-wishlist-btn {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid #e2e8f0; background: white;
    font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #64748b; transition: all 0.25s;
}
.pd-share-btn:hover { background: #6366f1; color: white; border-color: #6366f1; }
.pd-wishlist-btn:hover { border-color: #ef4444; color: #ef4444; }
.pd-wishlist-btn.active { background: #fef2f2; color: #ef4444; border-color: #ef4444; }

/* === HERO IMAGE === */
.pd-image-hero {
    position: relative;
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}
.pd-image-hero img {
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.75;
    transition: transform 0.4s ease;
}
.pd-image-hero:hover img { transform: scale(1.03); }
.pd-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.8) 0%, transparent 50%);
}
.pd-badge-discount {
    position: absolute; top: 16px; left: 16px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white; padding: 6px 14px;
    border-radius: 50px; font-weight: 800;
    font-size: 0.82rem; z-index: 5;
    box-shadow: 0 4px 12px rgba(239,68,68,0.5);
    letter-spacing: 0.5px;
}
.pd-badge-featured {
    position: absolute; top: 16px; right: 16px;
    color: white; padding: 6px 14px;
    border-radius: 50px; font-weight: 800;
    font-size: 0.82rem; z-index: 5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    letter-spacing: 0.3px;
}

/* === MAIN CARD === */
.pd-content {
    padding: 0 0 20px;
    max-width: 480px;
    margin: -30px auto 0;
    position: relative;
    z-index: 10;
}
.pd-main-card {
    background: white;
    border-radius: 24px 24px 0 0;
    padding: 24px 20px 20px;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.08);
    margin-bottom: 12px;
}

/* === META ROW === */
.pd-meta-row {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 10px;
}
.pd-category-tag {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #7c3aed;
    padding: 5px 14px; border-radius: 50px;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px;
}
.pd-ratings-inline {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.82rem; font-weight: 600; color: #0f172a;
}
.pd-muted { color: #94a3b8; font-weight: 400; font-size: 0.78rem; }

/* === TITLE === */
.pd-title {
    font-size: 1.2rem; font-weight: 800;
    color: #0f172a; line-height: 1.4;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === PRICE BLOCK === */
.pd-price-block {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 18px; padding: 18px 20px;
    margin-bottom: 16px;
    display: flex; justify-content: space-between; align-items: center;
}
.pd-price-left { display: flex; align-items: baseline; gap: 10px; }
.pd-current-price {
    font-size: 2rem; font-weight: 900; color: #ffffff;
    letter-spacing: -0.5px;
}
.pd-old-price {
    font-size: 1rem; color: #64748b;
    text-decoration: line-through;
}
.pd-discount-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white; padding: 4px 12px;
    border-radius: 50px; font-size: 0.75rem; font-weight: 700;
}
.pd-savings-tag {
    background: rgba(250,204,21,0.15);
    color: #fbbf24;
    padding: 8px 14px; border-radius: 12px;
    font-size: 0.78rem; font-weight: 700;
    display: flex; align-items: center; gap: 5px;
    text-align: center;
}

/* === SHORT DESC === */
.pd-short-desc {
    font-size: 0.88rem; color: #475569;
    line-height: 1.75; margin-bottom: 18px;
}

/* === TRUST BAR === */
.pd-trust-bar {
    display: flex; justify-content: space-around;
    background: #f8fafc; border-radius: 14px;
    padding: 14px 8px; margin-bottom: 18px;
    border: 1px solid #e2e8f0;
}
.pd-trust-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 5px;
    font-size: 0.68rem; font-weight: 600;
    color: #475569; text-align: center;
}
.pd-trust-item i { font-size: 1.3rem; }

/* === CTA BUTTONS === */
.pd-cta-group {
    display: flex; flex-direction: column;
    gap: 12px; margin-bottom: 0;
}
.pd-btn-buy {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white; border: none; border-radius: 16px;
    padding: 18px; font-size: 1.05rem; font-weight: 800;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center; gap: 10px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.2px;
}
.pd-btn-buy:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(37,211,102,0.55); color: white; }
.pd-btn-buy i { font-size: 1.4rem; }
.pd-btn-demo {
    background: white; color: #6366f1;
    border: 2px solid #e0e7ff; border-radius: 16px;
    padding: 15px; font-size: 0.95rem; font-weight: 700;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center; gap: 8px;
    transition: all 0.2s;
}
.pd-btn-demo:hover { background: #6366f1; color: white; border-color: #6366f1; }

/* === SECTION CARDS === */
.pd-section-card {
    background: white; border-radius: 20px;
    padding: 20px; margin: 0 0 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
}
.pd-section-title {
    font-size: 1rem; font-weight: 800;
    color: #0f172a; margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}
.pd-section-title-icon {
    width: 34px; height: 34px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}

/* === CHECKLIST === */
.pd-checklist {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.pd-checklist li {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.88rem; font-weight: 500;
    color: #334155; padding: 11px 14px;
    background: #f0fdf4; border-radius: 12px;
    border: 1px solid #dcfce7;
}
.pd-checklist li .ci { font-size: 1rem; flex-shrink: 0; }

/* === FEATURE LIST === */
.pd-feature-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.pd-feature-list li {
    display: flex; align-items: flex-start;
    gap: 12px; font-size: 0.88rem;
    color: #334155; line-height: 1.6;
}
.pd-feature-list li .fi {
    width: 28px; height: 28px; border-radius: 8px;
    background: #fff7ed; display: flex;
    align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0; margin-top: 1px;
}

/* === FULL DESC === */
.pd-full-desc {
    font-size: 0.88rem; color: #475569;
    line-height: 1.85;
}

/* === SPECS TABLE === */
.pd-specs-table {
    width: 100%; border-collapse: collapse;
}
.pd-specs-table tr:nth-child(odd) td { background: #f8fafc; }
.pd-specs-table td {
    padding: 10px 14px; font-size: 0.84rem;
    color: #334155; border-bottom: 1px solid #f1f5f9;
}
.pd-specs-table td:first-child {
    font-weight: 700; color: #0f172a;
    width: 40%; border-radius: 8px 0 0 8px;
}
.pd-specs-table td:last-child { border-radius: 0 8px 8px 0; }

/* === FAQ === */
.pd-faq-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
}
.pd-faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.pd-faq-q {
    font-size: 0.9rem; font-weight: 700;
    color: #0f172a; margin-bottom: 8px;
    display: flex; align-items: flex-start; gap: 8px;
}
.pd-faq-q::before { content: '?'; font-size: 0.85rem; flex-shrink: 0; margin-top: 1px; }
.pd-faq-a {
    font-size: 0.84rem; color: #475569;
    line-height: 1.7; padding-left: 24px;
}

/* === REVIEWS === */
.pd-reviews-list { display: flex; flex-direction: column; gap: 12px; }
.pd-review-card {
    background: #f8fafc; border-radius: 16px;
    padding: 16px; border: 1px solid #f1f5f9;
}
.pd-review-header {
    display: flex; justify-content: space-between;
    align-items: flex-start; margin-bottom: 10px;
}
.pd-reviewer-info { display: flex; align-items: center; gap: 10px; }
.pd-reviewer-avatar {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.85rem; flex-shrink: 0;
}
.pd-reviewer-name { font-weight: 700; font-size: 0.88rem; color: #0f172a; }
.pd-review-date { font-size: 0.72rem; color: #94a3b8; }
.pd-verified-badge { font-size: 0.68rem; color: #16a34a; font-weight: 700; }
.pd-review-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 1px; }
.pd-review-text { font-size: 0.85rem; color: #475569; line-height: 1.65; }
.pd-no-reviews { color: #94a3b8; font-size: 0.88rem; text-align: center; padding: 20px 0; }

/* === SELLER CARD === */
.pd-seller-card {
    display: flex; align-items: center; gap: 14px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px; padding: 18px 20px;
    margin: 0 0 12px; color: white;
}
.pd-seller-avatar {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    font-weight: 800; font-size: 1rem; flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.2);
}
.pd-seller-name { font-weight: 800; font-size: 0.95rem; }
.pd-seller-tag { font-size: 0.72rem; color: #94a3b8; margin-top: 3px; }
.pd-contact-seller {
    margin-left: auto; background: #25d366;
    color: white; padding: 9px 18px;
    border-radius: 50px; font-size: 0.82rem;
    font-weight: 800; text-decoration: none;
    transition: all 0.2s; flex-shrink: 0;
    display: flex; align-items: center; gap: 6px;
}
.pd-contact-seller:hover { background: #128c7e; color: white; }

/* === STICKY BOTTOM === */
.pd-sticky-bottom {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: white;
    border-top: 1px solid #f1f5f9;
    padding: 12px 20px 16px;
    display: flex; align-items: center;
    justify-content: space-between;
    z-index: 300; gap: 16px;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.1);
}
.pd-sticky-price { display: flex; flex-direction: column; }
.pd-sticky-current { font-size: 1.35rem; font-weight: 900; color: #0f172a; }
.pd-sticky-old { font-size: 0.78rem; color: #94a3b8; text-decoration: line-through; }
.pd-sticky-buy-btn {
    flex: 1; max-width: 220px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white; border: none; border-radius: 14px;
    padding: 15px 20px; font-size: 0.95rem; font-weight: 800;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center; gap: 8px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
    transition: transform 0.2s;
}
.pd-sticky-buy-btn:hover { transform: translateY(-1px); color: white; }

/* ==============================================
   PRODUCT DETAIL PAGE - DEELZO EXACT CLONE
   ============================================== */

#productDetailPage {
    font-family: 'Inter', sans-serif;
}

.pd-breadcrumb {
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
    color: #64748b;
    background: #fff;
}

.pd-top-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px 0;
}

/* GALLERY */
.pd-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.pd-main-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}
.pd-main-image-wrapper img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.pd-discount-pill {
    position: absolute;
    top: 20px; left: -10px;
    background: #ff1f5e;
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    z-index: 2;
}
.pd-bestseller-pill {
    position: absolute;
    top: 60px; left: -10px;
    background: #ff9800;
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    z-index: 2;
}
.pd-thumbnails {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
    flex-wrap: nowrap;
}
.pd-thumbnails.pd-thumbs-wrap {
    gap: 8px;
    margin-top: 12px;
    padding-bottom: 22px;
}
.pd-th-track {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.pd-thumbnails img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    object-fit: cover;
}
.pd-thumbs-wrap .pd-th-track img {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: 90px;
    aspect-ratio: 1 / 1;
    height: auto;
}
.pd-thumbnails img.active {
    border-color: #ff9800;
}
.pd-th-nav {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(15,23,42,0.08);
}
.pd-th-nav:disabled { opacity: 0.35; cursor: not-allowed; }
.pd-th-count {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    font-size: 0.72rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 0.5px;
}
.pd-gallery { min-width: 0; max-width: 100%; }
.pd-thumbnails.pd-thumbs-wrap { max-width: 100%; overflow: hidden; }
.pd-thumbs-wrap .pd-th-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 640px) {
    .pd-thumbnails.pd-thumbs-wrap { gap: 6px; padding-bottom: 20px; }
    .pd-thumbs-wrap .pd-th-track { gap: 6px; }
    .pd-thumbs-wrap .pd-th-track img { max-width: none; width: 100%; border-radius: 6px; }
    .pd-th-nav { width: 26px; height: 26px; font-size: 0.7rem; }
    .pd-th-count { font-size: 0.65rem; }
}



/* RIGHT INFO */
.pd-info-right {
    display: flex;
    flex-direction: column;
}
.pd-cat-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.pd-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 15px;
}
.pd-rating-row {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    margin-bottom: 25px;
}
.pd-stars {
    color: #ffb800;
    margin-right: 8px;
    letter-spacing: 2px;
}
.pd-desc-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* PRICE BOX */
.pd-price-box {
    background: #fff5f3;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.pd-curr-label {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
}
.pd-curr-val {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
}
.pd-old-val {
    font-size: 1.2rem;
    color: #94a3b8;
    text-decoration: line-through;
}

/* BUTTONS */
.pd-actions-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.pd-btn-primary {
    flex: 1;
    background: linear-gradient(135deg, #ff6b00, #ff1f5e);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s;
}
.pd-btn-secondary {
    flex: 1;
    background: white;
    color: #ff6b00;
    border: 1.5px solid #ff6b00;
    border-radius: 12px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.pd-btn-secondary:hover {
    background: #fff8f5;
}
.pd-btn-demo {
    width: 100%;
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 14px;
    font-size: 1rem;
    color: #475569;
    cursor: pointer;
    margin-bottom: 30px;
    transition: background 0.2s;
}
.pd-btn-demo:hover {
    background: #f8fafc;
}

/* TRUST */
.pd-trust-signals {
    display: flex;
    gap: 20px;
    border-top: 1px solid #f1f5f9;
    padding-top: 25px;
}
.pd-trust-item {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* SECTIONS */
.pd-details-section, .pd-reviews-section, .pd-popular-section {
    padding: 40px 0;
    border-top: 1px solid #f1f5f9;
}
.pd-section-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}
.pd-full-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
    overflow-wrap: anywhere;
    word-break: normal;
}
.pd-full-text p {
    margin: 0 0 16px;
}
.pd-full-text h2,
.pd-full-text h3,
.pd-full-text h4 {
    color: #0f172a;
    line-height: 1.35;
    margin: 24px 0 12px;
}
.pd-full-text h2 { font-size: 1.35rem; font-weight: 800; }
.pd-full-text h3 { font-size: 1.18rem; font-weight: 800; }
.pd-full-text h4 { font-size: 1.05rem; font-weight: 800; }
.pd-full-text ul,
.pd-full-text ol {
    margin: 0 0 18px;
    padding-left: 22px;
}
.pd-full-text li {
    margin: 8px 0;
    padding-left: 4px;
}
.pd-full-text a {
    color: #ff6b35;
    font-weight: 700;
    text-decoration: none;
}
.pd-full-text a:hover { text-decoration: underline; }
.pd-full-text blockquote {
    margin: 18px 0;
    padding: 14px 18px;
    border-left: 4px solid #ff6b35;
    background: #fff7ed;
    border-radius: 10px;
    color: #334155;
}
.pd-full-text .pd-desc-figure {
    display: block;
    margin: 20px 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}
.pd-full-text .pd-desc-figure img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    background: #ffffff;
}
.pd-sub-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pd-bullets {
    list-style: none;
    padding: 0; margin: 0;
}
.pd-bullets li {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}
.pd-bullets li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
}

/* REVIEWS */
.pd-reviews-container {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.pd-rev-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.pd-rev-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.pd-rev-avatar {
    width: 45px; height: 45px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #475569;
}
.pd-rev-name {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.pd-rev-date {
    font-size: 0.9rem;
    color: #94a3b8;
}
.pd-rev-text {
    font-size: 1rem;
    color: #475569;
    margin-left: 60px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .pd-top-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pd-actions-row {
        flex-direction: column;
    }
    .pd-trust-signals {
        flex-wrap: wrap;
    }
    .pd-rev-text {
        margin-left: 0;
        margin-top: 15px;
    }
}

.pd-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    display: block; /* Important: not flex! */
}


/* ===== MARKETPLACE CATEGORY PILLS ===== */
.mp-cat-pill {
    background: white;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.mp-cat-pill:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-1px);
}
.mp-cat-pill.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}
.mp-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12) !important;
}

/* ===== MARKETPLACE DETAIL LAYOUT ===== */
.mp-stat-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}
.mp-stat-item .stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.mp-stat-item .stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
}
.mp-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}
.mp-info-row:last-child { border-bottom: none; }
.mp-info-row span:first-child { color: #64748b; font-weight: 500; }
.mp-info-row span:last-child { color: #0f172a; font-weight: 700; }

@media (max-width: 768px) {
    .mp-detail-layout {
        grid-template-columns: 1fr !important;
    }
}


/* ===== CREATE LISTING WIZARD ===== */
.cl-step { display:flex; flex-direction:column; align-items:center; gap:8px; cursor:pointer; }
.cl-step-circle {
    width: 44px; height: 44px; border-radius: 50%;
    background: #e2e8f0; color: #94a3b8;
    font-weight: 800; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.cl-step.active .cl-step-circle { background: #2563eb; color: white; box-shadow: 0 4px 15px rgba(37,99,235,0.4); }
.cl-step.done .cl-step-circle { background: #10b981; color: white; }
.cl-step-label { font-size: 0.8rem; font-weight: 600; color: #94a3b8; transition: color 0.3s; }
.cl-step.active .cl-step-label { color: #2563eb; }
.cl-step.done .cl-step-label { color: #10b981; }
.cl-step-line { flex: 1; height: 2px; background: #e2e8f0; min-width: 40px; max-width: 80px; margin: 0 5px; padding-bottom: 22px; }

.cl-cat-card {
    border: 2px solid #e2e8f0; border-radius: 14px; padding: 20px 15px;
    text-align: center; cursor: pointer; transition: all 0.2s ease;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    background: white;
}


.cl-cat-card:hover { border-color: #2563eb; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.1); }
.cl-cat-card.selected { border-color: #2563eb; color: #2563eb; background: #f0f7ff; }

.cl-form-group { display: flex; flex-direction: column; gap: 8px; }
.cl-form-group label { font-weight: 700; font-size: 0.9rem; color: #0f172a; }
.cl-input {
    border: 1.5px solid #e2e8f0; border-radius: 10px; padding: 12px 16px;
    font-size: 0.95rem; color: #0f172a; outline: none; width: 100%;
    box-sizing: border-box; transition: border-color 0.2s;
    font-family: inherit; background: white;
}
.cl-input:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }

.cl-summary-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.95rem;
}
.cl-summary-row:last-child { border-bottom: none; }
.cl-summary-row span:first-child { opacity: 0.7; }
.cl-summary-row span:last-child { font-weight: 700; }

@media(max-width:600px) {
    .cl-step-line { min-width: 20px; }
    .cl-step-label { font-size: 0.65rem; }
    .cl-step-circle { width: 36px; height: 36px; font-size: 0.85rem; }
}



/* ===== CREATE BLOG PAGE ===== */
.cb-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
@media (max-width: 900px) {
    #cbGridLayout {
        grid-template-columns: 1fr !important;
    }
}


/* Content Editable Placeholder */
#cbContent[contenteditable=true]:empty:before {
    content: attr(placeholder);
    color: #94a3b8;
    pointer-events: none;
    display: block; /* For Firefox */
}
#cbContent img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}
#cbContent iframe {
    max-width: 100%;
    border-radius: 8px;
    margin: 10px 0;
}
#cbContent pre {
    background: #1e293b;
    color: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    font-family: monospace;
    margin: 10px 0;
}

/* --- SERVICES DROPDOWN (DESKTOP) --- */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.nav-dropdown .dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: white;
    min-width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    z-index: 1000;
    top: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px;
    border: 1px solid #e2e8f0;
}

.nav-dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    top: 100%;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30px;
    bottom: -30px;
    left: 0;
}

.dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 12px !important;
    padding: 12px 15px !important;
    color: #475569 !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: #3b82f6;
    font-size: 1.1rem;
}

.dropdown-item:hover {
    background-color: #f8fafc;
    color: #0f172a !important;
    transform: translateX(4px);
}

/* --- SERVICES MOBILE DROPDOWN --- */
.mobile-dropdown-container {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-content {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* ============================================
   SERVICES MAIN PAGE — SHOP STYLE
   ============================================ */
#servicesMainPage {
    background: #fafbfc;
    min-height: 80vh;
}

.services-hero-banner {
    background: radial-gradient(circle at top right, #1e1b4b, #09090b);
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 60%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.services-hero-banner .badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #94a3b8;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.services-hero-banner h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -2px;
    color: white;
}

.services-hero-banner h1 span {
    background: linear-gradient(90deg, #ff5e3a, #ff2a68);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-hero-banner p {
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Cards Grid (dark bg section) */
.services-cards-section {
    background: #09090b;
    padding: 60px 20px 80px;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-main-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 30px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.service-main-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,94,58,0.03), rgba(255,42,104,0.03));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-main-card:hover {
    transform: translateY(-8px);
    border-color: #cbd5e1;
    box-shadow: 0 25px 50px rgba(0,0,0,0.06), 0 0 0 1px rgba(255,94,58,0.1);
}

.service-main-card:hover::before { opacity: 1; }

.service-card-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff5e3a, #ff2a68);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 94, 58, 0.35);
    flex-shrink: 0;
}

.service-main-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.service-main-card p {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.service-card-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.service-card-feature-list li {
    font-size: 0.85rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card-feature-list li i {
    color: #10b981;
    font-size: 0.8rem;
}

.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff5e3a;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 4px;
    transition: gap 0.3s;
}

.service-main-card:hover .service-card-cta {
    gap: 14px;
}

/* ============================================
   SERVICES DETAIL PAGE — SHOP STYLE
   ============================================ */
#servicesPage {
    background: #fafbfc;
    min-height: 80vh;
}

.service-detail-hero {
    background: radial-gradient(circle at top right, #1e1b4b, #09090b);
    padding: 100px 20px 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,94,58,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.service-detail-back {
    position: absolute;
    top: 30px;
    left: 30px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.service-detail-back:hover { color: white; }

.service-detail-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ff5e3a, #ff2a68);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 40px rgba(255,94,58,0.4);
    margin: 0 auto 28px auto;
}

.service-detail-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0 0 20px 0;
    color: white;
}

.service-detail-hero h1 span {
    background: linear-gradient(90deg, #ff5e3a, #ff2a68);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-detail-hero p {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features section */
.service-features-section {
    background: white;
    padding: 80px 20px;
}

.service-features-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 50px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-feat-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.service-feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #ff5e3a;
}

.service-feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff1ef, #ffe4e1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ff5e3a;
    margin-bottom: 18px;
}

.service-feat-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.service-feat-card p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Process steps */
.service-process-section {
    background: #09090b;
    padding: 80px 20px;
    color: white;
}

.service-process-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: white;
}

.service-process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.service-process-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5e3a, #ff2a68);
    color: white;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.service-process-step h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-process-step p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* CTA section */
.service-cta-section {
    background: white;
    padding: 100px 20px;
    text-align: center;
}

.service-cta-card {
    max-width: 800px;
    margin: 0 auto;
    background: #0f172a;
    border-radius: 30px;
    padding: 60px 40px;
    color: white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.service-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,94,58,0.15) 0%, transparent 65%);
    pointer-events: none;
}

.service-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,94,58,0.15);
    color: #ff5e3a;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255,94,58,0.25);
}

.service-cta-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-cta-card p {
    color: #94a3b8;
    font-size: 1.05rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.service-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.cta-trust-badges span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 600;
}
.cta-trust-badges i { color: #22c55e; }

.btn-service-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #ff5e3a, #ff2a68);
    color: white;
    padding: 18px 40px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(255,94,58,0.35);
    border: none;
    cursor: pointer;
}

.btn-service-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,94,58,0.5);
}

.btn-service-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    color: white;
    padding: 18px 35px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-service-secondary:hover {
    background: rgba(255,255,255,0.14);
}

/* ===================== PRICING SECTION ===================== */
.service-pricing-section {
    padding: 80px 20px;
    background: #f8fafc;
    text-align: center;
}
.service-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.service-section-subtitle {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 50px;
}
.service-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}
.pricing-card {
    background: white;
    border-radius: 22px;
    padding: 35px 28px;
    border: 2px solid #e2e8f0;
    text-align: left;
    position: relative;
    transition: all 0.3s;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.pricing-highlighted {
    border-color: #ff5e3a;
    box-shadow: 0 20px 60px rgba(255,94,58,0.18);
    transform: scale(1.04);
    background: white;
}
.pricing-highlighted:hover {
    transform: scale(1.04) translateY(-5px);
}
.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, #ff5e3a, #ff2a68);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricing-plan-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 5px;
    letter-spacing: -1px;
    line-height: 1;
}
.pricing-plan-desc {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 22px;
    line-height: 1.5;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 22px;
}
.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #334155;
    font-weight: 500;
}
.pricing-features-list li i { color: #22c55e; font-size: 0.9rem; flex-shrink: 0; }
.pricing-cta-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}
.pricing-cta-primary {
    background: linear-gradient(90deg, #ff5e3a, #ff2a68);
    color: white;
    box-shadow: 0 8px 20px rgba(255,94,58,0.35);
}
.pricing-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,94,58,0.5); }
.pricing-cta-secondary {
    background: #f1f5f9;
    color: #0f172a;
    border: 2px solid #e2e8f0;
}
.pricing-cta-secondary:hover { background: #e2e8f0; }

/* ===================== FAQ SECTION ===================== */
.service-faq-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}
.service-faq-container {
    max-width: 780px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-faq-item {
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.service-faq-item.faq-open { border-color: #ff5e3a; }
.service-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    text-align: left;
    transition: background 0.2s;
}
.service-faq-question:hover { background: #f8fafc; }
.service-faq-item.faq-open .service-faq-question { background: #fff5f3; color: #ff5e3a; }
.faq-chevron {
    color: #94a3b8;
    flex-shrink: 0;
    transition: transform 0.35s;
}
.service-faq-item.faq-open .faq-chevron { color: #ff5e3a; }
.service-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.service-faq-answer p {
    padding: 0 24px 22px 24px;
    color: #475569;
    font-size: 0.97rem;
    line-height: 1.7;
    margin: 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .service-pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .pricing-highlighted { transform: scale(1); }
    .pricing-highlighted:hover { transform: translateY(-5px); }
}
@media (max-width: 768px) {
    .services-hero-banner h1 { font-size: 2.5rem; letter-spacing: -1px; }
    .service-detail-hero h1 { font-size: 2.2rem; letter-spacing: -1px; }
    .services-cards-grid { grid-template-columns: 1fr; }
    .service-features-grid { grid-template-columns: 1fr; }
    .service-process-steps { flex-direction: column; align-items: center; }
    .service-process-step { max-width: 100%; }
    .service-cta-buttons { flex-direction: column; align-items: center; }
    .service-cta-card { padding: 40px 24px; }
    .service-cta-card h2 { font-size: 1.7rem; }
    .service-detail-back { position: relative; top: auto; left: auto; display: block; margin-bottom: 20px; }
    .cta-trust-badges { gap: 15px; }
    .service-faq-question { font-size: 0.92rem; padding: 16px 18px; }
    .service-faq-answer p { padding: 0 18px 18px; font-size: 0.9rem; }
}

/* Hide floating stat cards on mobile so hero image is fully visible */
@media (max-width: 768px) {
    .float-card { display: none !important; }
}

/* ============ NEWSLETTER (footer) ============ */
.footer-newsletter {
    margin: 40px 0 10px;
    padding: 28px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.14), rgba(14, 165, 233, 0.12));
    border: 1px solid rgba(148, 163, 184, 0.25);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.footer-newsletter .fn-text h4 {
    margin: 0 0 6px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #f8fafc;
}
.footer-newsletter .fn-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #cbd5e1;
    max-width: 460px;
}
.footer-newsletter .fn-form {
    display: flex;
    gap: 10px;
    flex: 1 1 320px;
    max-width: 460px;
}
.footer-newsletter .fn-form input {
    flex: 1;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.55);
    color: #f8fafc;
    font-size: 0.92rem;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.footer-newsletter .fn-form input::placeholder { color: #94a3b8; }
.footer-newsletter .fn-form input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}
.footer-newsletter .fn-form button {
    padding: 13px 22px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #6366f1, #0ea5e9);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.footer-newsletter .fn-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.35);
    filter: brightness(1.05);
}
.footer-newsletter .fn-msg {
    flex-basis: 100%;
    font-size: 0.88rem;
    font-weight: 600;
    min-height: 0;
}
.footer-newsletter .fn-msg.ok { color: #4ade80; }
.footer-newsletter .fn-msg.err { color: #f87171; }
@media (max-width: 768px) {
    .footer-newsletter { padding: 22px 18px; }
    .footer-newsletter .fn-form { flex-direction: column; max-width: 100%; }
    .footer-newsletter .fn-form button { width: 100%; justify-content: center; }
}

/* ============ UI POLISH ============ */
img { max-width: 100%; }
a, button { -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
:where(button, .btn, .cta-btn, a.btn):focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

/* ============ FOOTER SHARE BUTTONS ============ */
.footer-share { display: inline-flex; gap: 8px; align-items: center; }
.footer-share button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(148, 163, 184, 0.12);
    color: #e2e8f0;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}
.footer-share button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #6366f1, #0ea5e9);
    color: #fff;
}

/* Product hero image: keep aspect ratio consistent on mobile */
@media (max-width: 640px) {
    .pd-main-image-wrapper img { aspect-ratio: 4 / 3; object-fit: cover; }
}
