@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #0f172a;
    --primary-muted: #475569;
    --primary-light: #f8fafc;
    --accent-green: #10b981;
    --accent-green-hover: #059669;
    --accent-green-light: #ecfdf5;
    --accent-orange: #f97316;
    --accent-orange-hover: #ea580c;
    --accent-orange-light: #fff7ed;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--primary-light);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

p {
    color: var(--primary-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title p {
    font-size: 1.125rem;
}

.highlight-green {
    color: var(--accent-green);
    position: relative;
    display: inline-block;
}

.highlight-green::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-green-light);
    z-index: -1;
}

/* Breadcrumbs Component */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 0.875rem;
    color: var(--primary-muted);
}

.breadcrumbs a {
    color: var(--primary-muted);
}

.breadcrumbs a:hover {
    color: var(--accent-green);
}

.breadcrumbs span.separator {
    color: var(--border-color);
}

.breadcrumbs span.current {
    color: var(--primary);
    font-weight: 500;
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--accent-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

.btn-orange {
    background-color: var(--accent-orange);
    color: white;
}

.btn-orange:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Header & Navigation */
header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

header.scrolled {
    box-shadow: var(--shadow-sm);
    background-color: rgba(255, 255, 255, 0.95);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}

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

.logo svg {
    color: var(--accent-green);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-muted);
}

.nav-link:hover {
    color: var(--accent-green);
}

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

.mobile-only {
    display: none;
}

/* Burger menu icon styling */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1100;
    margin-right: -8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

/* Hero Section (Homepage) */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    background: radial-gradient(circle at 80% 20%, var(--accent-green-light) 0%, transparent 40%),
                radial-gradient(circle at 10% 80%, var(--accent-orange-light) 0%, transparent 30%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--accent-green-light);
    color: var(--accent-green);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 32px;
}

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

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.trust-avatar-group {
    display: flex;
}

.trust-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 2px solid white;
    margin-left: -12px;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

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

.trust-info p {
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-info strong {
    color: var(--primary);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.hero-badge-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.hero-badge-card.badge-1 {
    top: 20px;
    left: -20px;
}

.hero-badge-card.badge-2 {
    bottom: 30px;
    right: -20px;
    animation-delay: 3s;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: var(--accent-green-light);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-card.badge-2 .badge-icon {
    background-color: var(--accent-orange-light);
    color: var(--accent-orange);
}

.badge-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--primary-muted);
}

.badge-text strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

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

/* What is a Coupon Section */
.info-section {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}

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

.info-visual {
    background: radial-gradient(circle at center, var(--accent-green-light) 0%, transparent 70%);
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.coupon-card-mock {
    background: var(--primary);
    color: white;
    border-radius: var(--radius-lg);
    width: 380px;
    max-width: 100%;
    padding: 28px;
    position: relative;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.coupon-card-mock::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 70%;
    border-left: 2px dashed rgba(255, 255, 255, 0.2);
}

.coupon-card-mock::before {
    content: '';
    position: absolute;
    top: -15px;
    left: calc(70% - 15px);
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: var(--radius-full);
}

.coupon-card-mock-circle-bottom {
    position: absolute;
    bottom: -15px;
    left: calc(70% - 15px);
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: var(--radius-full);
}

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

.coupon-logo {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.coupon-deal-tag {
    background-color: var(--accent-orange);
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.coupon-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.coupon-store {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.coupon-conditions {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.coupon-code-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-left: 72%;
    padding-left: 10px;
    text-align: center;
}

.coupon-code-area span {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.coupon-code-display {
    font-family: monospace;
    font-weight: 700;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.info-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.info-content p {
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-feature-item svg {
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 3px;
}

.info-feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

/* Coupon Simulator UI */
.simulator-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.simulator-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.simulator-section .section-title h2 {
    color: white;
}

.simulator-section .section-title p {
    color: #94a3b8;
}

.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.simulator-info h3 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.simulator-info p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.code-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.code-pill-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.code-pill-details span {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.code-pill-details strong {
    font-family: monospace;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: var(--accent-orange);
}

.btn-copy {
    background-color: var(--accent-green);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-copy:hover {
    background-color: var(--accent-green-hover);
}

.simulator-container {
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 30px;
    max-width: 450px;
    margin: 0 auto;
}

.sim-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.sim-header h4 {
    font-size: 1.125rem;
    color: white;
}

.sim-product {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.sim-product-img {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.sim-product-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sim-product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.sim-product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-green);
}

.sim-coupon-form {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    position: relative;
}

.sim-input {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.sim-input:focus {
    outline: none;
    border-color: var(--accent-green);
    background-color: rgba(255, 255, 255, 0.08);
}

.btn-apply {
    background-color: var(--accent-orange);
    color: white;
    font-weight: 600;
    padding: 0 20px;
    border-radius: var(--radius-sm);
}

.btn-apply:hover {
    background-color: var(--accent-orange-hover);
}

.sim-totals {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.sim-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #94a3b8;
}

.sim-row.discount-row {
    color: var(--accent-green);
    display: none;
}

.sim-row.total-row {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    margin-top: 4px;
}

.sim-success-msg {
    margin-top: 16px;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    display: none;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    background-color: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--primary-light);
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--accent-green);
}

.faq-question {
    width: 100%;
    padding: 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.faq-question svg {
    color: var(--primary-muted);
    transition: var(--transition-normal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-inner {
    padding: 0 24px 24px;
    color: var(--primary-muted);
    font-size: 0.975rem;
}

.faq-item.active {
    background-color: white;
    border-color: var(--accent-green);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--accent-green);
}

/* Blog Hub Layout */
.blog-intro {
    background: linear-gradient(135deg, var(--accent-green-light) 0%, transparent 60%);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.blog-card {
    background-color: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.2);
}

.blog-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-green-light) 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-muted);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

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

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-tag {
    align-self: flex-start;
    background-color: var(--accent-green-light);
    color: var(--accent-green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.blog-card-title a:hover {
    color: var(--accent-green);
}

.blog-card-description {
    font-size: 0.95rem;
    color: var(--primary-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #94a3b8;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

/* Blog Single Page Layout */
.blog-single-wrapper {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 40px;
    padding: 40px 0 80px;
}

.blog-article {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.article-header {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 0.875rem;
    color: var(--primary-muted);
    margin-bottom: 16px;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-title {
    font-size: 2.75rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.toc-container {
    background-color: var(--primary-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 32px;
}

.toc-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.toc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
}

.toc-list a {
    color: var(--primary-muted);
}

.toc-list a:hover {
    color: var(--accent-green);
    padding-left: 4px;
}

.article-content {
    font-size: 1.1rem;
    color: #334155;
}

.article-content p {
    margin-bottom: 24px;
    color: #334155;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary);
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 16px;
    color: var(--primary);
}

.article-content blockquote {
    border-left: 4px solid var(--accent-green);
    background-color: var(--accent-green-light);
    padding: 20px 24px;
    margin: 30px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--accent-green-hover);
}

.article-content ul, .article-content ol {
    margin: 0 0 24px 24px;
}

.article-content li {
    margin-bottom: 8px;
}

/* Sidebar Layout */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-green-light);
}

.widget-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.widget-newsletter input {
    width: 100%;
    background-color: var(--primary-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: inherit;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.widget-newsletter button {
    width: 100%;
    background-color: var(--accent-green);
    color: white;
    font-weight: 600;
    padding: 12px;
    border-radius: var(--radius-sm);
}

.widget-newsletter button:hover {
    background-color: var(--accent-green-hover);
}

.recommended-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rec-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.rec-item-img {
    width: 60px;
    height: 60px;
    background-color: var(--accent-green-light);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.rec-item-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

.rec-item-content h4 a:hover {
    color: var(--accent-green);
}

/* Stores Hub Layout */
.stores-hub-intro {
    background: linear-gradient(135deg, var(--accent-orange-light) 0%, transparent 60%);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 30px 0;
}

.alphabet-letter-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: white;
    color: var(--primary-muted);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.alphabet-letter-btn:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.stores-directory {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.store-group-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.store-group-letter {
    font-size: 2rem;
    color: var(--accent-orange);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.store-group-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-group-links a {
    font-weight: 500;
    color: var(--primary-muted);
}

.store-group-links a:hover {
    color: var(--accent-green);
    padding-left: 4px;
}

/* Store Single Coupons Layout */
.store-single-grid {
    display: grid;
    grid-template-columns: 0.85fr 2.15fr;
    gap: 40px;
    padding: 40px 0 80px;
}

.store-profile-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.store-logo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent-green-light) 0%, var(--accent-orange-light) 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.store-profile-card h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.store-rating {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.store-stats {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
}

.store-stat-item span {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
}

.store-stat-item strong {
    font-size: 1.1rem;
    color: var(--primary);
}

.coupons-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coupon-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-normal);
}

.coupon-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(16, 185, 129, 0.2);
}

.coupon-left {
    width: 160px;
    background-color: var(--primary-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-right: 1.5px dashed var(--border-color);
    text-align: center;
    flex-shrink: 0;
}

.coupon-badge {
    background-color: var(--accent-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.coupon-badge.sale {
    background-color: var(--accent-orange);
}

.coupon-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.coupon-value span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-muted);
}

.coupon-right {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.coupon-details h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.coupon-details p {
    font-size: 0.95rem;
    color: var(--primary-muted);
    margin-bottom: 12px;
}

.coupon-expiry {
    font-size: 0.8rem;
    color: #94a3b8;
}

.coupon-action-box {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Coupon Copy Button Stack */
.coupon-btn {
    background-color: var(--accent-green);
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.1);
}

.coupon-btn:hover {
    background-color: var(--accent-green-hover);
}

.coupon-btn.sale-btn {
    background-color: var(--accent-orange);
}

.coupon-btn.sale-btn:hover {
    background-color: var(--accent-orange-hover);
}

.coupon-terms-trigger {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 8px;
    text-decoration: underline;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: transform var(--transition-normal) cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* Confetti Canvas */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1001;
}

/* Footer Section */
footer {
    background-color: var(--primary);
    color: white;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: #94a3b8;
    margin-top: 16px;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--accent-green);
    color: white;
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: white;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-green);
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-newsletter p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    flex-grow: 1;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-green);
}

.newsletter-form button {
    background-color: var(--accent-green);
    color: white;
    font-weight: 600;
    padding: 0 16px;
    border-radius: var(--radius-sm);
}

.newsletter-form button:hover {
    background-color: var(--accent-green-hover);
}

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

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a:hover {
    color: #94a3b8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-grid {
        gap: 40px;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .stores-directory {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    .section-title {
        margin-bottom: 40px;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    
    /* Navigation burger menu integration */
    .nav-toggle {
        display: flex;
        z-index: 1100;
    }

    .mobile-only {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition-slow);
        z-index: 1050;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
    
    .nav-cta {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-badge-card.badge-1 {
        left: 0;
    }
    
    .hero-badge-card.badge-2 {
        right: 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-single-wrapper {
        grid-template-columns: 1fr;
    }
    
    .store-single-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.25rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .stores-directory {
        grid-template-columns: 1fr;
    }
    .coupon-card {
        flex-direction: column;
    }
    .coupon-left {
        width: 100%;
        border-right: none;
        border-bottom: 1.5px dashed var(--border-color);
    }
    .coupon-right {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    .coupon-action-box {
        width: 100%;
        align-items: flex-start;
    }
    .coupon-btn {
        width: 100%;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-legal-links {
        justify-content: center;
    }
}
