/* Marketplace Page Styles */
/* Ensure font-family inheritance - All marketplace sections inherit from body */
.marketplace-hero,
.marketplace-benefits,
.explore-products,
.smart-vouchers,
.gift-cards-section,
.coupons-section,
.smart-crm-section,
.why-different-section,
.marketplace-cta-banner,
.marketplace-hero *,
.marketplace-benefits *,
.explore-products *,
.smart-vouchers *,
.gift-cards-section *,
.coupons-section *,
.smart-crm-section *,
.why-different-section *,
.marketplace-cta-banner * {
    font-family: inherit;
}

/* Ensure Font Awesome icons display correctly - Override font-family inheritance */
.marketplace-hero .fas,
.marketplace-hero .far,
.marketplace-hero .fab,
.marketplace-benefits .fas,
.marketplace-benefits .far,
.marketplace-benefits .fab,
.explore-products .fas,
.explore-products .far,
.explore-products .fab,
.smart-vouchers .fas,
.smart-vouchers .far,
.smart-vouchers .fab,
.gift-cards-section .fas,
.gift-cards-section .far,
.gift-cards-section .fab,
.coupons-section .fas,
.coupons-section .far,
.coupons-section .fab,
.smart-crm-section .fas,
.smart-crm-section .far,
.smart-crm-section .fab,
.why-different-section .fas,
.why-different-section .far,
.why-different-section .fab,
.marketplace-cta-banner .fas,
.marketplace-cta-banner .far,
.marketplace-cta-banner .fab,
.fas,
.far,
.fab,
.fal,
.fad,
.fa-solid,
.fa-regular,
.fa-brands,
.fa-light,
.fa-duotone {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands", "FontAwesome" !important;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Hero Section - 100vh Full Height - Account for notification banner + navbar */
.marketplace-hero {
    min-height: 100vh;
    padding: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.04) 50%, rgba(240, 147, 251, 0.05) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Account for notification banner (40px) + navbar (72px) = 112px */
    padding-top: 112px;
    box-sizing: border-box;
    transition: padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When banner is hidden, only account for navbar */
body.banner-hidden .marketplace-hero {
    padding-top: 72px;
}

.marketplace-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.marketplace-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 24px 80px;
}

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

.marketplace-hero-title {
    font-size: var(--h1-size);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-6);
    color: var(--text-color);
    letter-spacing: -0.03em;
}

.marketplace-hero-description {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    margin-bottom: var(--space-10);
    font-weight: var(--font-weight-normal);
    letter-spacing: -0.01em;
}

.marketplace-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

/* Hero Feature Cards */
.marketplace-hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.marketplace-hero-feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.marketplace-hero-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.marketplace-hero-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.marketplace-hero-feature-card:hover .marketplace-hero-feature-icon {
    background: linear-gradient(135deg, #a855f7 0%, #667eea 100%);
    transform: scale(1.1);
}

.marketplace-hero-feature-icon i {
    font-size: 24px;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.marketplace-hero-feature-card:hover .marketplace-hero-feature-icon i {
    -webkit-text-fill-color: #ffffff;
    background: transparent;
}

.marketplace-hero-feature-content {
    width: 100%;
}

.marketplace-hero-feature-title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.marketplace-hero-feature-text {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    line-height: var(--line-height-normal);
    margin: 0;
}

/* Hero Visual */
.marketplace-hero-visual {
    position: relative;
    height: 600px;
    min-height: 500px;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tablet-device {
    position: relative;
    width: 400px;
    height: 500px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 16px;
    z-index: 3;
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
}

.tablet-device:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 40px 100px rgba(168, 85, 247, 0.3), 0 0 0 1px rgba(168, 85, 247, 0.1);
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.tablet-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-showcase {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.tablet-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.product-badge {
    background: linear-gradient(135deg, #a855f7 0%, #667eea 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

/* Floating Products */
.floating-products {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-product {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid #ffffff;
    animation: float 6s ease-in-out infinite;
}

.floating-product-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.floating-product-2 {
    top: 60%;
    right: -5%;
    animation-delay: 2s;
    transform: rotate(12deg);
}

.floating-product-3 {
    bottom: 15%;
    left: 5%;
    animation-delay: 4s;
    transform: rotate(-8deg);
}

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(var(--rotation, 0deg));
    }
}

.floating-product-1 {
    --rotation: -15deg;
}

.floating-product-2 {
    --rotation: 12deg;
}

.floating-product-3 {
    --rotation: -8deg;
}

.gift-card-visual {
    position: absolute;
    top: 20%;
    right: 10%;
    transform: rotate(8deg);
    z-index: 3;
}

.gift-card {
    position: absolute;
    top: 20%;
    right: -5%;
    width: 220px;
    height: 280px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(240, 147, 251, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transform: rotate(8deg);
    z-index: 4;
    transition: transform 0.4s ease;
}

.gift-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 25px 70px rgba(240, 147, 251, 0.6);
}

.gift-card-header {
    width: 100%;
    text-align: center;
}

.gift-card-label {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gift-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.gift-card-amount {
    font-size: var(--h3-size);
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.qr-code {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: var(--font-size-4xl);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.gift-card-code {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Decorative Elements */
.hero-decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    animation: pulse 4s ease-in-out infinite;
}

.decorative-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.decorative-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 1.5s;
}

.decorative-circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 5%;
    animation-delay: 3s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Marketplace Benefits */
.marketplace-benefits {
    padding: 100px 0;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(168, 85, 247, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--h3-size);
    color: #a855f7;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #a855f7 0%, #667eea 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.benefit-title {
    font-size: var(--h4-size);
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
}

.benefit-description {
    font-size: var(--font-size-base);
    color: var(--text-light);
    line-height: var(--line-height-relaxed);
}

/* Explore Products */
.explore-products {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.product-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(168, 85, 247, 0.3);
}

.product-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    position: relative;
}

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

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

.product-badge-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.product-badge-text {
    background: linear-gradient(135deg, #a855f7 0%, #667eea 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
    display: inline-block;
}

.product-info {
    padding: var(--space-5);
}

.product-name {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    margin-bottom: var(--space-3);
    line-height: var(--line-height-normal);
    letter-spacing: -0.01em;
}

.product-price {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: var(--space-4);
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.btn-product-cart {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

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

.btn-product-cart:hover::before {
    left: 100%;
}

.btn-product-cart:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Smart Vouchers */
.smart-vouchers {
    padding: 100px 0;
    background: #ffffff;
}

.smart-vouchers-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.smart-vouchers-title {
    font-size: var(--h2-size);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-snug);
    margin-bottom: var(--space-6);
    color: var(--text-color);
    letter-spacing: -0.03em;
}

.smart-vouchers-description {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    margin-bottom: var(--space-8);
}

.smart-vouchers-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.smart-voucher-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    transition: transform 0.4s ease;
}

.smart-voucher-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.smart-voucher-single-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 400px;
}

/* Gift Cards Section */
.gift-cards-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.gift-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.gift-card-feature {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.gift-card-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(168, 85, 247, 0.3);
}

.gift-card-feature-image {
    width: 100%;
    height: 240px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: var(--space-6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease;
}

.gift-card-feature:hover .gift-card-feature-image {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.gift-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gift-card-feature-title {
    font-size: var(--h5-size);
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
}

.gift-card-feature-description {
    font-size: var(--font-size-base);
    color: var(--text-light);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-5);
}

.btn-link-gradient {
    color: #a855f7;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-link-gradient:hover {
    color: #667eea;
    gap: 12px;
}

/* Coupons Section */
.coupons-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Smart CRM Section */
.smart-crm-section {
    padding: 100px 0;
    background: var(--bg-light);
}

/* Why Different Section */
.why-different-section {
    padding: 100px 0;
    background: #ffffff;
}

.different-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.different-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    width: 100%;
}

.different-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(168, 85, 247, 0.3);
}

/* Mobile Carousel Styles */
.mobile-carousel-wrapper {
    width: 100%;
    position: relative;
    margin: var(--space-6) 0;
}

.mobile-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
}

.mobile-carousel-track {
    display: flex;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.mobile-carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 var(--space-2);
    box-sizing: border-box;
}

.mobile-carousel-slide>* {
    width: 100%;
    margin: 0;
}

.mobile-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    padding: var(--space-2) 0;
}

.mobile-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.mobile-carousel-dot.active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(135deg, #a855f7 0%, #667eea 100%);
}

.mobile-carousel-dot:focus {
    outline: 2px solid rgba(168, 85, 247, 0.5);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .different-feature-item {
        padding: var(--space-5);
        border-radius: var(--radius-md);
    }

    .different-feature-item:active {
        transform: scale(0.98);
    }
}

.different-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--h5-size);
    color: #a855f7;
    flex-shrink: 0;
    transition: var(--transition);
}

.different-feature-item:hover .different-feature-icon {
    background: linear-gradient(135deg, #a855f7 0%, #667eea 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.different-feature-text {
    font-size: var(--font-size-base);
    color: var(--text-color);
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-medium);
}

/* CTA Banner */
.marketplace-cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.marketplace-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-banner-title {
    font-size: var(--h3-size);
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    line-height: var(--line-height-snug);
    letter-spacing: -0.02em;
}

.btn-cta-white {
    background: #ffffff;
    color: #000000;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-cta-white:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .marketplace-hero {
        min-height: 100vh;
        /* Account for notification banner (40px) + navbar (64px) = 104px */
        padding-top: 104px;
        padding-bottom: 0;
    }

    body.banner-hidden .marketplace-hero {
        padding-top: 64px;
    }

    .marketplace-hero-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        padding: 0 24px 60px;
    }

    .marketplace-hero-visual {
        height: 500px;
        min-height: 400px;
    }

    .tablet-device {
        width: 350px;
        height: 450px;
    }

    .gift-card {
        width: 180px;
        height: 240px;
        right: -3%;
    }

    .floating-product {
        width: 100px;
        height: 100px;
    }

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

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

    .smart-vouchers-wrapper {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .marketplace-hero {
        min-height: 100vh;
        /* Account for notification banner (36px) + navbar (64px) = 100px */
        padding-top: 100px;
        padding-bottom: 0;
    }

    body.banner-hidden .marketplace-hero {
        padding-top: 64px;
    }

    .marketplace-hero-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        padding: 0 16px 50px;
    }

    .marketplace-hero-title {
        font-size: var(--h1-size-mobile);
        margin-bottom: var(--space-4);
    }

    .marketplace-hero-description {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-6);
    }

    .marketplace-hero-cta {
        flex-direction: column;
        gap: var(--space-3);
    }

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

    .marketplace-hero-features {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-3);
        margin-top: var(--space-5);
    }

    .marketplace-hero-feature-card {
        padding: var(--space-3);
    }

    .marketplace-hero-feature-icon {
        width: 48px;
        height: 48px;
    }

    .marketplace-hero-feature-icon i {
        font-size: 20px;
    }

    .marketplace-hero-visual {
        height: 300px;
        min-height: 280px;
    }

    .tablet-device {
        width: 280px;
        height: 360px;
        margin: 0 auto;
    }

    .gift-card {
        width: 140px;
        height: 180px;
        right: 5%;
        top: 10%;
        padding: 16px;
    }

    .gift-card-amount {
        font-size: var(--h4-size-mobile);
    }

    .qr-code {
        width: 60px;
        height: 60px;
        font-size: var(--h4-size-mobile);
    }

    .floating-product {
        display: none;
    }

    .decorative-circle {
        display: none;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: var(--space-8);
    }

    .section-title {
        font-size: var(--h2-size-mobile);
        margin-bottom: var(--space-4);
    }

    .section-subtitle {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-6);
    }

    /* Benefits - Use Carousel */
    .benefits-grid {
        display: none;
        /* Hidden, replaced by carousel */
    }

    /* Products - Use Carousel */
    .products-grid {
        display: none;
        /* Hidden, replaced by carousel */
    }

    /* Product Cards in Carousel */
    .mobile-carousel-slide .product-card {
        margin: 0;
        max-width: 100%;
    }

    .mobile-carousel-slide .product-image-wrapper {
        height: 240px;
    }

    .mobile-carousel-slide .product-img {
        object-fit: cover;
    }

    /* Smart Vouchers */
    .smart-vouchers-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .smart-vouchers-title {
        font-size: var(--h2-size-mobile);
        margin-bottom: var(--space-4);
    }

    .smart-vouchers-description {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-6);
    }

    .smart-voucher-image-wrapper {
        min-height: auto;
        margin-top: var(--space-4);
    }

    .smart-voucher-single-img {
        min-height: 250px;
    }

    /* Gift Cards - Use Carousel */
    .gift-cards-grid {
        display: none;
        /* Hidden, replaced by carousel */
    }

    .mobile-carousel-slide .gift-card-feature {
        margin: 0;
        max-width: 100%;
    }

    .gift-card-feature-image {
        height: 200px;
    }

    .phone-visual {
        width: 120px;
        height: 200px;
    }

    .gift-box-visual {
        width: 150px;
        height: 150px;
    }

    .cards-stack-visual {
        width: 180px;
        height: 150px;
    }

    /* Different Features - Use Carousel */
    .different-features-list {
        display: none;
        /* Hidden, replaced by carousel */
    }

    .mobile-carousel-slide .different-feature-item {
        margin: 0;
        max-width: 100%;
    }

    /* CTA Banner */
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-6);
    }

    .cta-banner-title {
        font-size: var(--h3-size-mobile);
        margin-bottom: 0;
    }

    .btn-cta-white {
        width: 100%;
        justify-content: center;
    }

    /* Section Padding */
    section {
        padding: var(--space-12) 0;
    }

    /* Image Optimization */
    img {
        max-width: 100%;
        height: auto;
    }

    .tablet-product-image,
    .product-img,
    .voucher-bg-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

@media (max-width: 480px) {
    .marketplace-hero {
        min-height: 100vh;
        /* Account for notification banner (32px) + navbar (60px) = 92px */
        padding-top: 92px;
        padding-bottom: 0;
    }

    body.banner-hidden .marketplace-hero {
        padding-top: 60px;
    }

    .marketplace-hero-wrapper {
        padding: 0 12px 40px;
    }

    .marketplace-hero-title {
        font-size: var(--h1-size-mobile);
        line-height: var(--line-height-tight);
    }

    .marketplace-hero-description {
        font-size: var(--font-size-base);
    }

    .marketplace-hero-features {
        grid-template-columns: 1fr;
        gap: var(--space-3);
        margin-top: var(--space-4);
    }

    .marketplace-hero-feature-card {
        padding: var(--space-3);
        flex-direction: row;
        text-align: left;
    }

    .marketplace-hero-feature-icon {
        width: 44px;
        height: 44px;
    }

    .marketplace-hero-feature-icon i {
        font-size: 18px;
    }

    .marketplace-hero-feature-title {
        font-size: var(--font-size-xs);
    }

    .marketplace-hero-feature-text {
        font-size: 11px;
    }

    .marketplace-hero-visual {
        height: 280px;
        min-height: 250px;
    }

    .tablet-device {
        width: 260px;
        height: 320px;
    }

    .gift-card {
        width: 120px;
        height: 160px;
        padding: 12px;
        right: 3%;
        top: 8%;
    }

    .gift-card-amount {
        font-size: var(--h5-size-mobile);
    }

    .gift-card-code {
        font-size: var(--font-size-xs);
    }

    .qr-code {
        width: 50px;
        height: 50px;
        font-size: var(--h5-size-mobile);
    }

    .section-title {
        font-size: var(--h2-size-mobile);
    }

    .section-subtitle {
        font-size: var(--font-size-base);
    }

    .mobile-carousel-slide .product-image-wrapper {
        height: 220px;
    }

    .mobile-carousel-slide .product-info {
        padding: var(--space-4);
    }

    .mobile-carousel-slide .product-name {
        font-size: var(--font-size-base);
    }

    .mobile-carousel-slide .product-price {
        font-size: var(--font-size-lg);
    }

    .voucher-visual-container {
        height: 300px;
    }

    .gift-card-feature-image {
        height: 180px;
    }

    .phone-visual {
        width: 100px;
        height: 180px;
    }

    .gift-box-visual {
        width: 120px;
        height: 120px;
    }

    .cards-stack-visual {
        width: 150px;
        height: 120px;
    }

    .cta-banner-title {
        font-size: var(--h4-size-mobile);
    }

    section {
        padding: var(--space-10) 0;
    }
}

@keyframes gradient-shift {

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

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

/* --- Marketplace Image Fitting Overrides --- */
/* Targeted specifically to marketplace sections to avoid affecting the landing page */

.coupons-section .features-tabs-visual,
.smart-crm-section .features-tabs-visual {
    padding-bottom: 0 !important;
    height: auto !important;
    min-height: 500px !important;
    /* Premium large display */
    background: #f8f9fa;
    /* Subtle contrast background */
}

.coupons-section .features-image-container,
.coupons-section .features-image-slider,
.coupons-section .features-image-slide,
.smart-crm-section .features-image-container,
.smart-crm-section .features-image-slider,
.smart-crm-section .features-image-slide {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
}

.coupons-section .features-image,
.smart-crm-section .features-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    /* Fill the cinematic area completely */
    object-position: top center !important;
    /* Prioritize the header of the dashboard/coupon */
    border-radius: 0;
    /* Clean edge-to-edge look */
}

@media (max-width: 1024px) {

    .coupons-section .features-tabs-visual,
    .smart-crm-section .features-tabs-visual {
        min-height: 400px !important;
    }
}

@media (max-width: 768px) {

    .coupons-section .features-tabs-visual,
    .smart-crm-section .features-tabs-visual {
        min-height: 300px !important;
    }
}