/* Font Awesome Subset for current page */
:root {
    --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free';
    --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free';
    --primary-color: #2563eb;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --dark-text: #1e293b;
    --light-text: #64748b;
    --light-bg: #f8fafc;
    --border-radius: 0.5rem;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 6px rgba(0, 0, 0, 0.1);
}

:host,
:root {
    --fa-style-family-brands: "Font Awesome 6 Brands";
    --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype");
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype");
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype");
}

.fa-brands,
.fab {
    font-weight: 400;
}

.fa-whatsapp:before {
    content: "\f232";
}

.fa-facebook-f:before {
    content: "\f39e";
}

.fa-twitter:before {
    content: "\f099";
}

.fa-instagram:before {
    content: "\f16d";
}

.fa-youtube:before {
    content: "\f167";
}

.fa-gift:before {
    content: "\f06b";
}

.fa-chart-line:before {
    content: "\f201";
}

.fa-chart-bar:before {
    content: "\f080";
}

.fa-chart-pie:before {
    content: "\f200";
}

.fa-chart-area:before {
    content: "\f1fe";
}

.fa-clock:before {
    content: "\f017";
}

.fa-bolt:before {
    content: "\f0e7";
}

.fa-shield-alt:before {
    content: "\f3ed";
}

.fa-star:before {
    content: "\f005";
}

.fa-play-circle:before {
    content: "\f144";
}

.fa-search:before {
    content: "\f002";
}

.fa-paper-plane:before {
    content: "\f1d8";
}

.fa-money-bill-wave:before {
    content: "\f53a";
}

.fa-headset:before {
    content: "\f590";
}

.fa-award:before {
    content: "\f559";
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-trophy:before {
    content: "\f091";
}

.fa-gamepad:before {
    content: "\f11b";
}

.fa-arrows-rotate:before {
    content: "\f021";
}

.fa-steam:before {
    content: "\f1b6";
}

.fa-apple:before {
    content: "\f179";
}

.fa-xbox:before {
    content: "\f412";
}

.fa-google:before {
    content: "\f1a0";
}

.fa-amazon:before {
    content: "\f270";
}

.fa-handshake:before {
    content: "\f2b5";
}

.fa-users:before {
    content: "\f0c0";
}

.fa-check-circle:before {
    content: "\f058";
}

.fa-heart:before {
    content: "\f004";
}

.fa-percent:before {
    content: "\f541";
}

.fa-ticket-alt:before {
    content: "\f3ff";
}

.fa-user-plus:before {
    content: "\f234";
}

.fa-calendar-check:before {
    content: "\f274";
}

.fa-exchange-alt:before {
    content: "\f362";
}


.fa,
.fas,
.far,
.fab {
    display: inline-block;
    line-height: 1;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fas {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.far {
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
}

.fab {
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
}

/* Base style reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--light-text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header styles */
header {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: white;
}

.logo span {
    color: var(--secondary-color);
}

.logo i {
    margin-right: var(--spacing-xs);
    font-size: 1.75rem;
}

.logo-img {
    height: 32px;
    width: auto;
    margin-right: var(--spacing-xs);
    vertical-align: middle;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li {
    margin-left: var(--spacing-md);
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

.auth-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-login {
    color: white;
    margin-right: var(--spacing-sm);
}

.btn-signup {
    background-color: var(--secondary-color);
    color: white;
}

.btn-signup:hover {
    background-color: #0da271;
    transform: translateY(-2px);
}







/* Hero Banner */
.hero-banner {
    /* 背景图 + 居中铺满 */
    background: url('../images/HeroBanner.jpeg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden; /* 确保遮罩不溢出圆角 */
}

/* 统一用遮罩来压暗背景 */
.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    border-radius: var(--border-radius);
    z-index: 1;
}

.hero-banner > * {
    position: relative;
    z-index: 2;
}

.hero-banner h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.03em; /* 可选：稍微拉开一点字距 */
}

.hero-banner p {
    font-size: 1.0rem;
    max-width: 720px;
    margin: 0 auto 0.75rem;
    line-height: 1.5;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}


/* 最后一段和按钮之间拉开一点 */
.hero-banner p:last-of-type {
    margin-bottom: 32px;
}

/* 按钮样式 */
.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1.125rem;
    border: none;
    border-radius: 999px;          /* 胶囊按钮，更醒目一点 */
    cursor: pointer;
    transition: all 0.2s ease-out; /* hover 动画 */
}

.btn-primary:hover {
    background-color: #0da271;
    transform: translateY(-2px);
}

/* 可选：手机端缩小字号 */
@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 1.9rem;
    }
    .hero-banner p {
        font-size: 1rem;
    }
}








/* Bonus Section */
.bonus-section {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: var(--spacing-lg) 0;
    text-align: center;
}

.bonus-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.bonus-item {
    background-color: var(--light-bg);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.bonus-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.bonus-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

/* Daily Bonus */
.daily-bonus {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    margin: var(--spacing-lg) 0;
}

.daily-bonus h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 2rem;
}

.daily-bonus p {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--spacing-xs);
}

.day-item {
    background-color: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xs);
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s;
}

.day-icon {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: var(--spacing-xs);
}

.day-item:hover {
    transform: translateY(-5px);
}

.day-item h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.day-item p {
    font-size: 0.75rem;
    margin: 0;
}

/* How to Sell Section */
.how-to-sell {
    background: var(--light-bg);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--border-radius);
    margin: var(--spacing-lg) 0;
    text-align: center;
}

.how-to-sell h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.how-to-sell>p {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    width: 80%;
    margin: var(--spacing-lg) auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.step {
    background: white;
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-illustration {
    width: 260px;
    height: 210px;
    margin: var(--spacing-xs) auto 0;
    border-radius: var(--border-radius);
    background-size: cover;
    background-position: center;
    background-color: #eef6f0;
}






/* Popular Gift Cards 整块区域 */
.popular-gift-cards {
    background: var(--light-bg);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--border-radius);
    margin: var(--spacing-lg) 0;
    text-align: center;
}

.popular-gift-cards h2 {
    color: var(--primary-color);
    font-size: 2.2rem; /* 比 how-to-sell 略小一点 */
    margin-bottom: var(--spacing-sm);
}

.popular-gift-cards > p {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

/* 网格布局，类似 .steps */
.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

/* 单个卡片（用你的 product-item class） */
.popular-gift-cards .product-item {
    background: #ffffff;
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    text-decoration: none;     /* 去掉链接下划线 */
    color: inherit;            /* 文字颜色继承 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.popular-gift-cards .product-item:hover {
    transform: translateY(-8px);      /* 和 .step 一样的上浮效果 */
    box-shadow: var(--shadow-hover);
}

/* 上面的“图片”区域 */
.popular-gift-cards .product-image {
    width: 220px;
    height: 140px;
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0.5rem 0.75rem;
    box-sizing: border-box;
}

.popular-gift-cards .product-image span {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* H3 标题 + 描述 */
.popular-gift-cards .product-item h3 {
    font-size: 1.2rem;          /* 和你说的首页 H3 保持一致 */
    color: #2563eb;             /* 统一蓝色 */
    margin-bottom: 0.35rem;
}

.popular-gift-cards .product-item p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin: 0;
}

/* 响应式：中屏两列，小屏一列 */
@media (max-width: 992px) {
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .popular-grid {
        grid-template-columns: 1fr;
    }

    .popular-gift-cards .product-image {
        width: 100%;
    }
}






.sprite-1 {
    background-image: url('../images/step1.jpg');
}

.sprite-2 {
    background-image: url('../images/step2.jpg');
}

.sprite-3 {
    background-image: url('../images/step3.jpg');
}

.sprite-4 {
    background-image: url('../images/step4.jpg');
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.step p {
    color: var(--light-text);
    margin-bottom: var(--spacing-md);
}

.features-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-small {
    text-align: center;
    padding: var(--spacing-md);
}

.feature-small i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.feature-small h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

/* Customer Reviews Section */
.customer-reviews {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    color: var(--light-text);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Text Reviews */
.text-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.review-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border-top: 5px solid var(--secondary-color);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.customer-info {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: var(--spacing-sm);
}

.customer-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.customer-details .date {
    color: var(--light-text);
    font-size: 0.9rem;
}

.review-content {
    color: var(--dark-text);
    line-height: 1.8;
    font-style: italic;
}

.rating {
    color: var(--accent-color);
    margin-top: var(--spacing-sm);
}

/* Video Reviews */
.video-reviews {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.video-reviews h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: var(--spacing-md);
}

.video-reviews p {
    color: var(--light-text);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.video-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-placeholder {
    background: var(--primary-color);
    border-radius: var(--border-radius);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.play-button {
    position: relative;
    z-index: 2;
    font-size: 3rem;
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: var(--spacing-xs);
    font-size: 0.9rem;
    text-align: center;
}

.video-meta {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.video-meta h3 {
    font-size: 1.05rem;
    color: var(--primary-color);
    line-height: 1.35;
    margin-bottom: var(--spacing-xs);
}

.video-meta .stars {
    color: var(--accent-color);
    margin: 0.375rem 0 0.75rem;
    font-size: 1.125rem;
    text-align: left;
}

.video-meta p {
    color: var(--dark-text);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.video-meta .meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--light-text);
    font-size: 0.95rem;
    margin-top: auto;
}

.video-meta .amount {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.05rem;
}

.see-more {
    text-align: center;
    margin-top: var(--spacing-md);
}

.btn-see-more {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: all 0.3s;
}

.btn-see-more:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
}

/* How It Works */
.how-it-works {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    margin: var(--spacing-sm) 0 var(--spacing-lg) 0;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 2rem;
}

.steps-old {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.step-old {
    text-align: center;
    padding: var(--spacing-md);
}

.step-old i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.step-old h3 {
    margin-bottom: var(--spacing-xs);
}

/* Features */
.features {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: var(--spacing-lg) 0;
}

.features h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-md);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

/* Monthly Trading Bonus Program */
.monthly-bonus {
    background: var(--light-bg);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--border-radius);
    margin: var(--spacing-md) 0 var(--spacing-lg);
    text-align: center;
}

.monthly-bonus h2 {
    font-size: 2.2rem;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.monthly-bonus>p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.bonus-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: var(--spacing-md) var(--spacing-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.bonus-icon {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.bonus-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
    margin: 0.375rem 0;
}

.bonus-label {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.bonus-badge {
    display: inline-block;
    background: #e7f5eb;
    color: var(--secondary-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    font-weight: 700;
}

/* Responsive design */
@media (max-width: 992px) {
    .text-reviews,
    .steps,
    .features-small {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xs);
    }
    
    .bonus-item {
        padding: var(--spacing-xs);
    }
    
    .bonus-item i {
        font-size: 1.5rem;
    }
    
    .bonus-item h3 {
        font-size: 0.9rem;
    }
    
    .days-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-xs);
    }
    
    .day-item {
        padding: var(--spacing-xs);
    }
    
    .day-icon {
        font-size: 1.1rem;
    }
    
    .day-item h3 {
        font-size: 0.8rem;
    }
    
    .day-item p {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: var(--spacing-md);
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 var(--spacing-xs) var(--spacing-xs);
    }
    
    .auth-buttons {
        margin-top: var(--spacing-md);
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .hero-banner p {
        font-size: 1rem;
    }
    
    .text-reviews,
    .steps,
    .features-small,
    .video-container {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
    }
    
    .bonus-item {
        padding: var(--spacing-xs);
    }
    
    .bonus-item i {
        font-size: 1.3rem;
    }
    
    .bonus-item h3 {
        font-size: 0.8rem;
    }
    
    .bonus-item p {
        font-size: 0.75rem;
    }
    
    .days-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xs);
    }
    
    .day-item {
        padding: var(--spacing-xs);
    }
    
    .day-icon {
        font-size: 1rem;
    }
    
    .day-item h3 {
        font-size: 0.75rem;
    }
    
    .day-item p {
        font-size: 0.65rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .how-to-sell h2 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.footer-column h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

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

.footer-column ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* WhatsApp button adjustments for mobile devices */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
}

/* Calculator Page Styles */
.calculator-page {
    background-color: var(--light-bg);
    min-height: calc(100vh - 200px);
    padding: var(--spacing-lg) 0;
}

.calculator-container {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 100%;
    margin: 0 auto;
    padding: 3rem;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calculator-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.calculator-header h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.calculator-header p {
    color: var(--light-text);
    font-size: 1.15rem;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
}

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

.form-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-control {
    padding: 1rem 1.25rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control:disabled {
    background-color: #f5f7fa;
    cursor: not-allowed;
}

.price-display {
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    display: block;
    width: 100%;
}

.price-display.show {
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -2px;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: var(--light-text);
}

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    background: #fee;
    color: #c33;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 4px solid #c33;
}

.info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 1.25rem 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #1565c0;
    width: 100%;
}

/* Calculator Mobile Responsive */
@media (max-width: 768px) {
    .calculator-page {
        padding: var(--spacing-md) 0;
    }

    .calculator-container {
        padding: 2rem 1.5rem;
    }

    .calculator-header h1 {
        font-size: 2.25rem;
    }

    .calculator-header p {
        font-size: 1rem;
    }

    .form-control {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    .price-value {
        font-size: 3rem;
    }

    .price-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .calculator-page {
        padding: var(--spacing-sm) 0;
    }

    .calculator-container {
        padding: 1.5rem 1rem;
        border-radius: 0;
    }

    .calculator-header h1 {
        font-size: 1.75rem;
    }

    .calculator-header p {
        font-size: 0.9rem;
    }

    .form-control {
        padding: 0.75rem 0.875rem;
        font-size: 0.95rem;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .price-label {
        font-size: 0.9rem;
    }

    .price-display {
        padding: 2rem 1.5rem;
    }
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.mission, .vision {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission::before, .vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #357abd);
}

.vision::before {
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
}

.mission {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-left: 5px solid #4a90e2;
}

.vision {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-left: 5px solid #ff6b6b;
}

.mission:hover, .vision:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission h2, .vision h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
}

.mission h2::after, .vision h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #357abd);
    border-radius: 2px;
}

.vision h2::after {
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
}

.mission p, .vision p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.values-section {
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    color: #10b981;
}

.value-item h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.4rem;
    font-weight: 700;
}

.value-item p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    border-radius: 20px;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 1.5s both;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(74,144,226,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    margin-bottom: 30px;
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #10b981);
    border-radius: 2px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.contact-method:hover {
    transform: translateX(10px);
    background: rgba(74,144,226,0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74,144,226,0.3);
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(74,144,226,0.4);
}

.contact-details h4 {
    margin-bottom: 8px;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

.contact-details a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #10b981;
    text-decoration: underline;
}

.stats-section {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    padding: 80px 0;
    border-radius: 20px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
}

.stat-item h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
}

/* About Us Page General Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #10b981);
    border-radius: 2px;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #4a90e2, transparent);
    width: 200px;
    margin: 30px auto;
    border-radius: 1px;
}

.story-section {
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 1.8s both;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

/* About Us Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .mission-vision {
        flex-direction: column;
        gap: 30px;
    }
    
    .mission, .vision {
        padding: 30px 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item {
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item h2 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-method {
        padding: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item h2 {
        font-size: 2rem;
    }
    
    .mission, .vision {
        padding: 20px 15px;
    }
    
    .value-item {
        padding: 25px 15px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Products Page Styles */
.products-section {
    padding: 80px 0 50px;
}
.products-intro {
    max-width: 1152px;
    margin: 0 auto 20px;
}
.products-section h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 18px;
	text-align: center;
    position: relative;
}

.products-section h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #10b981);
    border-radius: 2px;
}

.products-section p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin: 0 0 10px;
    text-align: left;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-item:hover::before {
    transform: scaleX(1);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.product-image {
    width: 120px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.product-item:hover .product-image {
    transform: scale(1.1);
}

.product-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Gift Card Brand Colors */
.amex-card {
    background: linear-gradient(135deg, #006fcf, #00a8e8);
}

.visa-card {
    background: linear-gradient(135deg, #1a1f71, #0066cc);
}

.vanilla-card {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.walmart-card {
    background: linear-gradient(135deg, #004c91, #0073e6);
}

.amazon-card {
    background: linear-gradient(135deg, #ff9900, #ffad33);
}

.ebay-card {
    background: linear-gradient(135deg, #e53238, #ff6b6b);
}

.footlocker-card {
    background: linear-gradient(135deg, #000000, #333333);
}

.nike-card {
    background: linear-gradient(135deg, #000000, #333333);
}

.sephora-card {
    background: linear-gradient(135deg, #ff6b9d, #ff8fb3);
}

.dicks-card {
    background: linear-gradient(135deg, #0066cc, #0080ff);
}

.finishline-card {
    background: linear-gradient(135deg, #ff0000, #ff3333);
}

.aloyoga-card {
    background: linear-gradient(135deg, #000000, #333333);
}

.homedepot-card {
    background: linear-gradient(135deg, #f96302, #ff7a1a);
}

.gamestop-card {
    background: linear-gradient(135deg, #000000, #333333);
}

.dollargeneral-card {
    background: linear-gradient(135deg, #0066cc, #0080ff);
}

.cvs-card {
    background: linear-gradient(135deg, #0066cc, #0080ff);
}

.bestbuy-card {
    background: linear-gradient(135deg, #003b64, #0066cc);
}

.paysafe-card {
    background: linear-gradient(135deg, #0066cc, #0080ff);
}

.uber-card {
    background: linear-gradient(135deg, #000000, #333333);
}

.doordash-card {
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
}

.transcash-card {
    background: linear-gradient(135deg, #0066cc, #0080ff);
}

.neosurf-card {
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
}

.lowes-card {
    background: linear-gradient(135deg, #004080, #0066cc);
}

.costco-card {
    background: linear-gradient(135deg, #e60012, #ff1a1a);
}

.starbucks-card {
    background: linear-gradient(135deg, #00704a, #00a86b);
}

.airbnb-card {
    background: linear-gradient(135deg, #ff5a5f, #ff7a7f);
}

.adidas-card {
    background: linear-gradient(135deg, #000000, #333333);
}

.netflix-card {
    background: linear-gradient(135deg, #e50914, #ff1a1a);
}

.instacart-card {
    background: linear-gradient(135deg, #00a86b, #00cc7a);
}

.delta-card {
    background: linear-gradient(135deg, #c41e3a, #e60012);
}

.xbox-card {
    background: linear-gradient(135deg, #107c10, #00a86b);
}

.razergold-card {
    background: linear-gradient(135deg, #00a86b, #00cc7a);
}

.steam-card {
    background: linear-gradient(135deg, #171a21, #2a475e);
}

.apple-card {
    background: linear-gradient(135deg, #000000, #333333);
}

.default-card {
    background: linear-gradient(135deg, #6c757d, #868e96);
}

/* Products Page Mobile Responsive */
@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }
    
    .products-section h2 {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 600px;
    }
    
    .product-item {
        padding: 30px 20px;
        min-height: 180px;
    }
    
    .product-image {
        width: 100px;
        height: 65px;
        font-size: 1rem;
    }
    
    .product-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .products-section h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
    }
    
    .product-item {
        padding: 25px 20px;
        min-height: 160px;
    }
    
    .product-image {
        width: 80px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .product-item h3 {
        font-size: 1.1rem;
    }
}





.products-subheading {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 32px auto 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .products-subheading {
        font-size: 1.5rem;
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .products-subheading {
        font-size: 1.35rem;
    }
}
