/* ============================================
   HEADER STYLES
   ============================================ */
   #hero_box img{
    width:7%;
    margin-left:1rem;
}

#box img{
    width:15%;
    margin-left:1rem;
}
/* Top Banner */
.fa-search {
    color: #000000;
}

.top-banner {
    background-color: #1b2337;
    color: #fff;
    padding: 8px 0;
    font-size: 17px;
    text-align: center;
}

.top-banner i {
    margin: 0 4px;
}

/* Logo Styles */
.logo-square {
    width: 40px;
    height: 40px;
    background-color: #ff6b35;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-right: 8px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.logo-text .fr {
    color: #ff6b35;
}

/* Navbar Background */
.navbar-custom {
    background-color: #f5f3e7;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: #ff6b35;
}

/* Search Container */
.search-container {
    position: relative;
    display: none;
}

.search-container.active {
    display: block;
    position: absolute;
    top: 100%;
    right: 78px;
    margin-top: 10px;
    z-index: 1050;
    min-width: 400px;
}

.search-form-wrapper {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #d1e8fe;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 8px;
}

.search-input {
    border: none;
    outline: none;
}

.search-submit-btn {
    background-color: #fff;
    border: none;
    border-left: 1px solid #d1e8fe;
    color: #010101;
}

/* View Codes Button */
.btn-view-codes {
    background-color: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    text-decoration: none;
}

.btn-view-codes:hover {
    background-color: #e55a2b;
    color: #fff;
}

/* Search Results Box */
#box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 5px;
    z-index: 1051;
    max-height: 400px;
    overflow-y: auto;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon i {
    color: #333;
    font-size: 24px;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .search-container.active {
        position: fixed;
        top: 70px;
        left: 20px;
        right: 20px;
        min-width: auto;
        width: calc(100% - 40px);
    }
    
    .top-banner {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .top-banner span {
        display: block;
        line-height: 1.4;
    }
    
    .navbar-nav {
        margin-top: 1rem;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
    }
}

@media (max-width: 575.98px) {
    .logo-square {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .btn-view-codes {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 0;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo-square {
    width: 40px;
    height: 40px;
    background: #ff6b35;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    flex-shrink: 0;
}

.footer-logo-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.footer-logo-text .fr {
    color: #ff6b35;
}

.footer-description {
    color: #ecf0f1;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ecf0f1;
    font-size: 14px;
}

.footer-stats-icon {
    color: #ff6b35;
    font-size: 16px;
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-column-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-bottom {
    background-color: #1a252f;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: #ecf0f1;
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .main-footer {
        padding: 40px 0 0;
    }
    .footer-column {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 30px 0 0;
    }
    .footer-logo {
        margin-bottom: 1rem;
    }
    .footer-description {
        font-size: 14px;
        margin-bottom: 1rem;
    }
    .footer-column-title {
        font-size: 15px;
        margin-bottom: 1rem;
    }
    .footer-links a {
        font-size: 14px;
    }
    .footer-copyright {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .footer-logo-square {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    .footer-logo-text {
        font-size: 20px;
    }
    .footer-description {
        font-size: 13px;
    }
    .footer-stats {
        font-size: 13px;
    }
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(144, 238, 144, 0.1);
    z-index: 0;
}

.hero-section::before {
    top: -50px;
    left: -50px;
}

.hero-section::after {
    top: -50px;
    right: -50px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.notification-badge {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 2rem;
}

.notification-badge .dot {
    width: 8px;
    height: 8px;
    background-color: #4caf50;
    border-radius: 50%;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-headline .highlight {
    color: #ff6b35;
}

.hero-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-search-wrapper {
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
}

.hero-search-form {
    display: flex;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.hero-search-form:focus-within {
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.hero-search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 20px;
}

.hero-search-icon {
    color: #333;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
    pointer-events: none;
}

.hero-search-input {
    flex: 1;
    border: none;
    padding: 20px 0;
    font-size: 16px;
    outline: none;
    background: transparent;
    color: #333;
    min-width: 0;
}

.hero-search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.hero-search-btn {
    background-color: #ff6b35;
    color: #fff;
    border: none;
    padding: 20px 35px;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-search-btn span {
    position: relative;
    z-index: 1;
}

.hero-search-btn i {
    font-size: 14px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-search-btn:hover {
    background-color: #e55a2b;
    color: #fff;
}

.hero-search-btn:hover i {
    transform: translateX(3px);
}

.hero-search-btn:active {
    transform: scale(0.98);
}

/* Search Results Box for Hero */
#hero_box {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1051;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    padding: 10px 0;
}

#hero_box table {
    width: 100%;
    border-collapse: collapse;
}

#hero_box tr {
    cursor: pointer;
    transition: background-color 0.2s;
}

#hero_box tr:hover {
    background-color: #f9fafb;
}

#hero_box td {
    padding: 12px 20px;
    color: #333;
    font-size: 15px;
}

#hero_box tr:first-child td {
    padding-top: 15px;
}

#hero_box tr:last-child td {
    padding-bottom: 15px;
}

/* Affiliate Disclaimer */
.affiliate-disclaimer {
    margin: 1.5rem 0;
    padding: 0 1rem;
}

.affiliate-disclaimer-text {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.popular-section {
    text-align: center;
}

.popular-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 1rem;
    display: block;
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.popular-tag {
    background-color: #f0f0f0;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.popular-tag:hover {
    background-color: #fff;
    border-color: #ff6b35;
    color: #ff6b35;
}

/* ===========================
   Brand / Store Hero (codes-promo & marques)
   =========================== */

.brand-hero-section {
    background-color: #f5f3e7;
}

.brand-breadcrumb {
    font-size: 14px;
    color: #6b7280;
}

.brand-breadcrumb .breadcrumb-link {
    color: #6b7280;
    text-decoration: none;
}

.brand-breadcrumb .breadcrumb-link:hover {
    color: #111827;
    text-decoration: underline;
}

.brand-breadcrumb .breadcrumb-separator {
    margin: 0 6px;
    color: #d1d5db;
}

.brand-breadcrumb .breadcrumb-current {
    color: #111827;
    font-weight: 500;
}

.brand-hero-card {
    background: radial-gradient(circle at top left, #fffaf0 0, #ffffff 55%, #fff7ed 100%);
    border-radius: 26px;
    padding: 28px 36px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.brand-hero-left {
    display: flex;
    align-items: center;
    gap: 28px;
    width: 100%;
}

.brand-logo-initial {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    box-shadow: inset 0 0 0 1px #e5e7eb;
}

.brand-hero-content {
    flex: 1;
}

.brand-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #111827;
    margin-bottom: 10px;
}

.brand-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.brand-verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-size: 13px;
    font-weight: 600;
}

.brand-verified-pill i {
    font-size: 14px;
}

.brand-last-updated {
    padding: 4px 12px;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 13px;
    font-weight: 500;
}

.brand-hero-text {
    margin: 10px 0 16px;
    font-size: 15px;
    color: #4b5563;
    max-width: 720px;
}

.brand-hero-text .highlight-percent {
    color: #ff6b35;
    font-weight: 700;
}

.brand-hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    color: #4b5563;
}

.brand-hero-stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.brand-hero-stats strong {
    font-weight: 600;
}

.brand-hero-stats .fa-star {
    color: #fbbf24;
}

.brand-hero-stats .fa-users,
.brand-hero-stats .fa-fire {
    color: #ef4444;
}

.dot-active {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background-color: #16a34a;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
    display: inline-block;
}

@media (max-width: 768px) {
    .brand-hero-card {
        padding: 20px 18px;
        border-radius: 20px;
    }
    .brand-hero-left {
        flex-direction: row;
        align-items: flex-start;
    }
    .brand-logo-initial {
        width: 72px;
        height: 72px;
        border-radius: 20px;
        font-size: 32px;
    }
    .brand-hero-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .brand-hero-left {
        flex-direction: column;
        align-items: flex-start;
    }
    .brand-hero-title {
        font-size: 1.6rem;
    }
    .brand-hero-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-search-wrapper {
        padding: 0 15px;
    }
    .hero-search-form {
        border-radius: 30px;
        flex-wrap: nowrap;
    }
    .hero-search-input-wrapper {
        padding-left: 15px;
    }
    .hero-search-icon {
        font-size: 16px;
        margin-right: 10px;
    }
    .hero-search-input {
        padding: 16px 0;
        font-size: 15px;
    }
    .hero-search-btn {
        padding: 16px 25px;
        font-size: 15px;
    }
    .hero-search-btn span {
        display: none;
    }
    .hero-search-btn i {
        margin: 0;
    }
    .affiliate-disclaimer {
        margin: 1.25rem 0;
        padding: 0 1rem;
    }
    .affiliate-disclaimer-text {
        font-size: 12.5px;
    }
    .notification-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    .hero-section::before,
    .hero-section::after {
        width: 150px;
        height: 150px;
    }
    #hero_box {
        left: 15px;
        right: 15px;
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 0.95rem;
    }
    .hero-search-wrapper {
        padding: 0 10px;
    }
    .hero-search-form {
        border-radius: 25px;
    }
    .hero-search-input-wrapper {
        padding-left: 12px;
    }
    .hero-search-icon {
        font-size: 15px;
        margin-right: 8px;
    }
    .hero-search-input {
        padding: 14px 0;
        font-size: 14px;
    }
    .hero-search-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    .hero-search-btn span {
        display: none;
    }
    .affiliate-disclaimer {
        margin: 1.25rem 0;
        padding: 0 0.75rem;
    }
    .affiliate-disclaimer-text {
        font-size: 12px;
    }
    .popular-tags {
        gap: 8px;
    }
    .popular-tag {
        font-size: 13px;
        padding: 6px 12px;
    }
    #hero_box {
        left: 10px;
        right: 10px;
        font-size: 14px;
    }
}

/* ============================================
   PARTNER BRANDS SECTION
   ============================================ */

.partner-brands-section {
    background-color: #f5f3e7;
}

.partner-brands-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.partner-brands-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.partner-brands-subtitle {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

.all-brands-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.all-brands-link:hover {
    color: #e55a2b;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.brand-card {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.brand-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flame-icon {
    position: absolute;
    top: -9px;
    right: 5px;
    width: 24px;
    height: 24px;
    background-color: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 1;
}

.brand-logo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f3e7;
    border-radius: 8px;
    overflow: hidden;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background: #e0e0e0;
}

.brand-info {
    flex: 1;
    min-width: 0;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.brand-codes {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .partner-brands-header {
        flex-direction: column;
    }
    .partner-brands-title {
        font-size: 2rem;
    }
    .partner-brands-subtitle {
        font-size: 0.9rem;
    }
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .brand-card {
        padding: 0.8rem 1rem;
    }
    .brand-logo {
        width: 50px;
        height: 50px;
    }
    .brand-name {
        font-size: 1rem;
    }
    .brand-link {
        gap: 0.75rem;
    }
}

@media (max-width: 576px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .brand-card {
        padding: 0.3rem;
    }
    .partner-brands-title {
        font-size: 1.75rem;
    }
    .brand-logo {
        width: 45px;
        height: 45px;
    }
    .brand-name {
        font-size: 0.95rem;
    }
    .brand-codes {
        font-size: 0.85rem;
    }
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */

.categories-section {
    background-color: #f5f3e7;
}

.categories-header {
    margin-bottom: 3rem;
}

.categories-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 0.5rem 0;
    font-family: serif;
}

.categories-subtitle {
    font-size: 1rem;
    color: #333;
    margin: 0;
    font-family: sans-serif;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff5f0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ff6b35;
    color: #ff6b35;
}

.category-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ff6b35;
}

.category-icon i {
    font-size: 22px;
    color: #ff6b35;
}

.category-info {
    text-align: center;
}

.category-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
    font-family: sans-serif;
}

.category-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-codes {
    font-size: 0.9rem;
    color: #666;
    font-family: sans-serif;
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .categories-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .category-card {
        padding: 1.25rem;
    }
    .categories-title {
        font-size: 1.75rem;
    }
    .categories-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .category-card {
        padding: 1rem;
    }
    .category-icon {
        width: 50px;
        height: 50px;
    }
    .category-icon svg {
        width: 20px;
        height: 20px;
    }
    .category-name {
        font-size: 1rem;
    }
    .category-codes {
        font-size: 0.85rem;
    }
}

/* ============================================
   PROMO CODES SECTION
   ============================================ */

.promo-codes-section {
    background-color: #f5f3e7;
}

.promo-codes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.promo-codes-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.promo-codes-subtitle {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

.promo-codes-updated {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promo-codes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.promo-code-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.promo-code-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card-badges-container {
    display: flex;
    gap: 6px;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.badge-popular {
    background: #fff3e0;
    color: #e65100;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 500;
    white-space: nowrap;
    display: inline-block;
}

.badge-verified {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 500;
    white-space: nowrap;
    display: inline-block;
}

.badge-verified::before {
    content: '';
}

/* Store FAQ Section */
.store-faq-section {
    background-color: #f5f3e7;
    padding: 4rem 0;
}

.store-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.store-faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    font-family: serif;
}

.store-faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.store-faq-item {
    background: #f5f3e7;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.store-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.store-faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #000;
    user-select: none;
}

.store-faq-question:hover {
    background-color: rgba(0,0,0,0.02);
}

.store-faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
    line-height: 1;
    min-width: 24px;
    text-align: center;
}

.store-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    color: #666;
    line-height: 1.6;
}

.store-faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: block;
}

@media (max-width: 768px) {
    .store-faq-title {
        font-size: 2rem;
    }
    
    .store-faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .store-faq-answer {
        padding: 0 1.25rem;
    }
    
    .store-faq-answer.active {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

.store-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.store-initial {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    flex-shrink: 0;
    overflow: hidden;
}

.store-initial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-name-discount {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    gap: 0.25rem;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.discount-percent {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b35;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.promo-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.promo-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.usage-stats {
    margin-bottom: 1rem;
}

.usage-count {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.usage-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.usage-bar-fill {
    height: 100%;
    background: #4caf50;
    border-radius: 4px;
    transition: width 0.3s;
}

.usage-percent {
    font-size: 0.85rem;
    color: #4caf50;
    font-weight: 600;
}

.promo-conditions {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.promo-btn {
    display: block;
    width: 100%;
    background: #ff6b35;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.promo-btn:hover {
    background: #e55a2b;
    color: #fff;
}

.promo-btn i {
    margin-right: 8px;
}

/* Coupon Modal Styles */
.coupon-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.coupon-modal.active {
    display: flex;
}

.coupon-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.coupon-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coupon-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
    z-index: 1;
}

.coupon-modal-close:hover {
    background: #f5f5f5;
    color: #000;
}

/* Modal Badges */
.coupon-modal-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.coupon-modal-badge-popular {
    background: #ff6b35;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.coupon-modal-badge-verified {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Modal Store Header */
.coupon-modal-store-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
}

.coupon-modal-store-initial {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    flex-shrink: 0;
    overflow: hidden;
}

.coupon-modal-store-initial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coupon-modal-store-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.coupon-modal-store-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.coupon-modal-discount-percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin: 0;
    line-height: 1;
}

/* Modal Title and Description */
.coupon-modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
    padding: 0 2rem;
    line-height: 1.3;
}

.coupon-modal-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
    line-height: 1.5;
}

/* Instructions */
.coupon-modal-instructions {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    padding: 0 2rem;
    text-align: center;
}

/* Coupon Code Display */
.coupon-code-display {
    background: #fff5f0;
    border: 2px dashed #ff6b35;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.coupon-code-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
    flex: 1;
}

.copy-coupon-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.copy-coupon-btn:hover {
    background: #e55a2b;
}

.copy-coupon-btn i {
    margin-right: 6px;
}

/* Modal Footer */
.coupon-modal-footer {
    text-align: center;
    margin-bottom: 1rem;
    padding: 0 2rem;
}

.coupon-modal-link {
    display: inline-block;
    background: #e0e0e0;
    color: #333;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
}

.coupon-modal-link:hover {
    background: #d0d0d0;
    color: #333;
}

.coupon-modal-link i {
    margin-left: 8px;
}

/* Expiry Date */
.coupon-modal-expiry {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    padding: 0 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.coupon-modal-expiry i {
    font-size: 0.9rem;
}

/* ============================================
   ALL CATEGORIES PAGE STYLES
   ============================================ */

.categories-page-container {
    padding: 2rem 1rem;
    background-color: #f5f3e7;
    min-height: 70vh;
}

.categories-page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.categories-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.categories-page-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.all-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.category-card-all {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card-all:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.category-link-all {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 1.5rem;
}

.category-icon-wrapper-all {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.category-icon-all {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #ff6b35;
    transition: all 0.3s ease;
}

.category-card-all:hover .category-icon-all {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
}

.category-card-all:hover .category-icon-all svg {
    stroke: #fff;
}

.category-icon-all svg {
    width: 32px;
    height: 32px;
    stroke: #ff6b35;
    transition: stroke 0.3s ease;
}

.category-icon-all i {
    font-size: 28px;
    color: #ff6b35;
    transition: color 0.3s ease;
}

.category-card-all:hover .category-icon-all i {
    color: #fff;
}

.category-info-all {
    text-align: center;
}

.category-name-all {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.category-card-all:hover .category-name-all {
    color: #ff6b35;
}

.category-description-all {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    min-height: 2.85em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-codes-all {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 1200px) {
    .all-categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .categories-page-title {
        font-size: 2rem;
    }
    
    .categories-page-subtitle {
        font-size: 1rem;
    }
    
    .all-categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .category-card-all {
        border-radius: 12px;
    }
    
    .category-link-all {
        padding: 1.25rem;
    }
    
    .category-icon-all {
        width: 60px;
        height: 60px;
    }
    
    .category-icon-all svg {
        width: 28px;
        height: 28px;
    }
    
    .category-name-all {
        font-size: 1.15rem;
    }
}

@media (max-width: 576px) {
    .categories-page-container {
        padding: 1.5rem 0.5rem;
    }
    
    .categories-page-header {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    
    .categories-page-title {
        font-size: 1.75rem;
    }
    
    .all-categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ============================================
   ALL STORES PAGE STYLES (MARQUES)
   ============================================ */

.stores-page-container {
    padding: 2rem 1rem;
    background-color: #f5f3e7;
    min-height: 70vh;
}

.stores-page-wrapper {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Sidebar - Letter Filter */
.stores-filter-sidebar {
    width: 200px;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.filter-sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.letter-filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.letter-filter-btn {
    display: block;
    padding: 12px 16px;
    text-align: center;
    text-decoration: none;
    color: #000;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.letter-filter-btn:hover {
    background: #fff5f0;
    border-color: #ff6b35;
    color: #ff6b35;
    transform: translateX(4px);
}

.letter-filter-btn.active {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.letter-filter-btn.active::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: #ff8c5a;
    border-radius: 0 2px 2px 0;
}

/* Main Content Area */
.stores-main-content {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.stores-main-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ff6b35;
    border-radius: 12px 0 0 12px;
}

.stores-content-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.stores-page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.stores-content-body {
    padding-top: 1rem;
}

/* Stores Grid */
.stores-grid-by-letter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.store-card-by-letter {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

.store-card-by-letter:hover {
    border-color: #ff6b35;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

.store-link-by-letter {
    text-decoration: none;
    color: inherit;
    display: block;
}

.store-name-by-letter {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
    transition: color 0.3s ease;
}

.store-card-by-letter:hover .store-name-by-letter {
    color: #ff6b35;
}

.store-country-code {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
    margin-left: 0.5rem;
}

.no-stores-message {
    text-align: center;
    padding: 3rem 2rem;
    color: #999;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stores-page-wrapper {
        flex-direction: column;
    }
    
    .stores-filter-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }
    
    .letter-filter-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .letter-filter-btn {
        min-width: 45px;
    }
    
    .stores-grid-by-letter {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stores-page-container {
        padding: 1.5rem 0.5rem;
    }
    
    .stores-main-content {
        padding: 1.5rem;
    }
    
    .stores-page-title {
        font-size: 1.5rem;
    }
    
    .stores-grid-by-letter {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .store-card-by-letter {
        padding: 0.875rem 1rem;
    }
    
    .filter-sidebar-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .stores-page-container {
        padding: 1rem 0.5rem;
    }
    
    .stores-main-content {
        padding: 1.25rem;
    }
    
    .stores-page-title {
        font-size: 1.25rem;
    }
    
    .letter-filter-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}

.promo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.expiry-date {
    color: #333;
}

.promo-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.promo-link:hover {
    text-decoration: underline;
}

/* Pagination Styles */
.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item {
    margin: 0;
}

.page-link {
    display: block;
    padding: 10px 16px;
    color: #333;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
}

.page-link:hover {
    background: #fff5f0;
    border-color: #ff6b35;
    color: #ff6b35;
    text-decoration: none;
}

.page-item.active .page-link {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

.page-item.disabled .page-link {
    background: #f5f5f5;
    color: #999;
    border-color: #e0e0e0;
    cursor: not-allowed;
    pointer-events: none;
}

.no-promo-codes {
    text-align: center;
    padding: 3rem 2rem;
    color: #999;
    font-size: 1.1rem;
    background: #fff;
    border-radius: 12px;
}

@media (max-width: 1200px) {
    .promo-codes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .promo-codes-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .promo-codes-title {
        font-size: 2rem;
    }
    .promo-codes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .promo-code-card {
        padding: 1.25rem;
    }
    .store-info-header {
        gap: 0.75rem;
    }
    .store-initial {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .store-name {
        font-size: 1rem;
    }
    .discount-percent {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .promo-codes-title {
        font-size: 1.75rem;
    }
    .promo-codes-subtitle {
        font-size: 0.9rem;
    }
    .store-info-header {
        gap: 0.5rem;
    }
    .store-initial {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .store-name {
        font-size: 0.95rem;
    }
    .discount-percent {
        font-size: 0.95rem;
    }
    .promo-title {
        font-size: 1.1rem;
    }
    .coupon-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    .coupon-modal-store-header {
        padding: 0 1.5rem;
        margin-top: 2.5rem;
    }
    .coupon-modal-title {
        padding: 0 1.5rem;
        font-size: 1.1rem;
    }
    .coupon-modal-description {
        padding: 0 1.5rem;
        font-size: 0.9rem;
    }
    .coupon-modal-instructions {
        padding: 0 1.5rem;
    }
    .coupon-code-display {
        margin: 0 1.5rem 1.5rem;
        padding: 1.25rem;
        flex-direction: column;
        gap: 1rem;
    }
    .coupon-code-text {
        font-size: 1.25rem;
    }
    .coupon-modal-footer {
        padding: 0 1.5rem;
    }
    .coupon-modal-expiry {
        padding: 0 1.5rem 1.5rem;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 3rem 0;
}

.faq-item {
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b35 0%, #ff8c42 100%);
    transition: width 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6b35 !important;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15) !important;
    transform: translateY(-2px);
}

.faq-item:hover::before {
    width: 6px;
}

.faq-question {
    position: relative;
}

.faq-answer {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-toggle:hover {
    background: #fff3e0 !important;
    transform: rotate(90deg);
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works-section {
    background-color: #f5f3e7;
}

.how-it-works-section .section-title {
    font-family: serif;
    font-size: 42px;
    font-weight: 600;
    color: #1f2937;
}

.how-it-works-section .section-subtitle {
    color: #6b7280;
    font-size: 18px;
}

.how-it-works-section .step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 40px 50px;
    position: relative;
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: 0.3s;
}

.how-it-works-section .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.how-it-works-section .step-number {
    width: 55px;
    height: 55px;
    background: #ff6b35;
    color: #fff;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: absolute;
    top: -27px;
    left: 50%;
    transform: translateX(-50%);
}

.how-it-works-section .step-icon {
    font-size: 40px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-it-works-section .step-icon svg {
    width: 48px;
    height: 48px;
    stroke: #333;
}

.how-it-works-section .step-icon svg circle {
    fill: #4a90e2;
}

.how-it-works-section .step-icon svg path {
    fill: none;
}

.how-it-works-section .step-title {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
    color: #1f2937;
}

.how-it-works-section .step-text {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

.how-it-works-section .arrow {
    font-size: 28px;
    color: #d1d5db;
}

.how-it-works-section .btn-main {
    background: #ff6b35;
    color: #fff;
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 12px;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.how-it-works-section .btn-main:hover {
    background: #e55a2b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f5f3e7;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #ff6b35;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: #fff;
    color: #000;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: #fff5f0;
    color: #ff6b35;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #ff6b35;
}

.accordion-button::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: rotate(0deg);
}

.accordion-collapse {
    transition: height 0.3s ease;
}

.accordion-body {
    padding: 1.5rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    background: #fff;
}

@media (max-width: 991px) {
    .how-it-works-section .arrow {
        display: none;
    }
    .how-it-works-section .section-title {
        font-size: 32px;
    }
    .how-it-works-section .section-subtitle {
        font-size: 16px;
    }
    .how-it-works-section .step-card {
        padding: 50px 30px 40px;
    }
    .how-it-works-section .step-title {
        font-size: 20px;
    }
    .how-it-works-section .step-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section .section-title {
        font-size: 28px;
    }
    .how-it-works-section .section-subtitle {
        font-size: 15px;
    }
    .how-it-works-section .step-card {
        padding: 40px 25px 35px;
        margin-bottom: 2rem;
    }
    .how-it-works-section .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
        top: -22px;
    }
    .how-it-works-section .step-icon {
        font-size: 35px;
        margin-bottom: 15px;
    }
    .how-it-works-section .step-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .how-it-works-section .step-text {
        font-size: 14px;
    }
    .how-it-works-section .btn-main {
        padding: 12px 28px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .how-it-works-section .section-title {
        font-size: 24px;
    }
    .how-it-works-section .section-subtitle {
        font-size: 14px;
    }
    .how-it-works-section .step-card {
        padding: 35px 20px 30px;
    }
    .how-it-works-section .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        top: -20px;
    }
    .how-it-works-section .step-icon {
        font-size: 30px;
    }
    .how-it-works-section .step-title {
        font-size: 16px;
    }
    .how-it-works-section .step-text {
        font-size: 13px;
    }
    .how-it-works-section .btn-main {
        padding: 10px 24px;
        font-size: 15px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background-color: #f5f3e7;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-family: serif;
    font-size: 42px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.faq-subtitle {
    color: #6b7280;
    font-size: 18px;
    margin: 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section .accordion {
    --bs-accordion-bg: #ffffff;
    --bs-accordion-border-color: #e5e7eb;
    --bs-accordion-border-radius: 12px;
    --bs-accordion-border-width: 1px;
    --bs-accordion-btn-padding-x: 1.5rem;
    --bs-accordion-btn-padding-y: 1.25rem;
    --bs-accordion-body-padding-x: 1.5rem;
    --bs-accordion-body-padding-y: 1.25rem;
    --bs-accordion-active-color: #1f2937;
    --bs-accordion-active-bg: #ffffff;
    --bs-accordion-btn-focus-box-shadow: none;
}

.faq-section .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 18px;
    color: #1f2937;
    background-color: #ffffff;
    border: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: #1f2937;
    box-shadow: none;
}

.faq-section .accordion-button:hover {
    background-color: #f9fafb;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: #e5e7eb;
}

.faq-section .accordion-body {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    padding-top: 0;
}

.faq-section .accordion-button::after {
    content: '';
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b7280'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.25rem;
    height: 1.25rem;
    transform: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.faq-section .accordion-button:not(.collapsed)::after {
    content: '';
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b7280'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: none;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 32px;
    }
    .faq-subtitle {
        font-size: 16px;
    }
    .faq-section .accordion-button {
        font-size: 16px;
        padding: 1rem 1.25rem;
    }
    .faq-section .accordion-body {
        font-size: 15px;
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .faq-title {
        font-size: 28px;
    }
    .faq-subtitle {
        font-size: 14px;
    }
    .faq-section .accordion-button {
        font-size: 15px;
        padding: 0.875rem 1rem;
    }
    .faq-section .accordion-body {
        font-size: 14px;
        padding: 0.875rem 1rem;
    }
}

/* ============================================
   STATIC LEGAL / INFO PAGES
   ============================================ */

.static-page {
    max-width: 960px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2.75rem;
    border: 1px solid #f1e6da;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.static-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.18), transparent 55%),
                radial-gradient(circle at bottom right, rgba(251, 191, 36, 0.16), transparent 55%);
    opacity: 0.75;
    pointer-events: none;
}

.static-page > * {
    position: relative;
    z-index: 1;
}

.static-page h1 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.static-page .static-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    background-color: rgba(255, 107, 53, 0.08);
    color: #b45309;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.static-page .static-page-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #ff6b35;
}

.static-page .static-page-meta {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.75rem;
}

.static-page h2 {
    font-size: 1.3rem;
    font-weight: 650;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.static-page h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.75rem;
    height: 0.16rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff6b35, #fbbf24);
}

.static-page h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-top: 1.25rem;
    margin-bottom: 0.35rem;
}

.static-page p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0.85rem;
}

.static-page ul {
    padding-left: 1.3rem;
    margin-bottom: 1rem;
}

.static-page ul li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 0.1rem;
    font-size: 0.98rem;
    color: #4b5563;
}

.static-page ul li::marker {
    color: #ff6b35;
}

.static-page table.table {
    border-radius: 16px;
    overflow: hidden;
    border-color: #e5e7eb;
}

.static-page table.table thead {
    background: linear-gradient(90deg, #ff6b35, #f97316);
    color: #ffffff;
}

.static-page table.table th {
    border-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.static-page table.table td {
    border-color: #e5e7eb;
    font-size: 0.95rem;
    vertical-align: top;
}

.static-page a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.static-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .static-page {
        padding: 1.75rem 1.5rem;
        border-radius: 18px;
    }

    .static-page h1 {
        font-size: 1.7rem;
    }
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter-section {
    background-color: #f5f3e7;
}

.newsletter-box {
    background: #faf9f6;
    border-radius: 20px;
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: #fff5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid #ff6b35;
}

.newsletter-icon svg {
    width: 30px;
    height: 30px;
    stroke: #ff6b35;
    fill: none;
    stroke-width: 2;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-description strong {
    color: #1f2937;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    background: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    border-color: #ff6b35;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-button {
    background: #ff6b35;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-button:hover {
    background: #e55a2b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1f2937;
    font-size: 14px;
}

.newsletter-benefit-icon {
    color: #10b981;
    font-size: 18px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
    background-color: #f5f3e7;
}

.contact-header {
    max-width: 720px;
    margin: 0 auto 2.75rem;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.contact-type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 980px;
    margin: 0 auto;
}

.contact-type-card {
    background: #fdfbf6;
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    border: 1px solid #f1e6da;
    text-align: left;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.contact-type-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #fff5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-type-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.4rem;
}

.contact-type-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.contact-form-wrapper {
    max-width: 980px;
    margin: 2.75rem auto 0;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #f1e6da;
    padding: 2.25rem 2.5rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.contact-input,
.contact-textarea {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 0.8rem 0.95rem;
    font-size: 0.98rem;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.3);
}

.contact-textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-submit-btn {
    background: #ff6b35;
    color: #ffffff;
    padding: 0.85rem 2.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

.contact-submit-btn:hover {
    background: #e55a2b;
    color: #ffffff;
}

@media (max-width: 992px) {
    .contact-type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-type-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 1.75rem 1.5rem;
    }

    .contact-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .newsletter-box {
        padding: 2rem 1.5rem;
    }
    .newsletter-title {
        font-size: 1.75rem;
    }
    .newsletter-description {
        font-size: 0.95rem;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-button {
        width: 100%;
        justify-content: center;
    }
    .newsletter-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .newsletter-box {
        padding: 1.5rem 1rem;
    }
    .newsletter-title {
        font-size: 1.5rem;
    }
    .newsletter-description {
        font-size: 0.9rem;
    }
    .newsletter-icon {
        width: 50px;
        height: 50px;
    }
    .newsletter-icon svg {
        width: 25px;
        height: 25px;
    }
}

/* ============================================
   SWIPER STYLES
   ============================================ */

.swiper {
    width: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   NINE H1 STYLES
   ============================================ */

.nine h1 {
    text-align: center;
    font-size: 50px;
    text-transform: uppercase;
    color: #222;
    letter-spacing: 1px;
}

.nine h1 span {
    margin-top: 5px;
    font-size: 15px;
    color: #444;
    word-spacing: 1px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    grid-template-rows: 27px 0;
    grid-gap: 20px;
    align-items: center;
}

.nine h1 span:after,
.nine h1 span:before {
    content: " ";
    display: block;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    height: 5px;
    background-color: #f8f8f8;
}

/* ============================================
   COOKIE CONSENT STYLES
   ============================================ */

.wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 20px;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.wrapper.active {
    display: block;
    transform: translateY(0);
}

.wrapper header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.wrapper header i {
    font-size: 30px;
    color: #ff6b35;
}

.wrapper header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.wrapper .data {
    margin-bottom: 15px;
}

.wrapper .data p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.wrapper .data p a {
    color: #ff6b35;
    text-decoration: underline;
}

.wrapper .buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.wrapper .button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.wrapper .button#acceptBtn {
    background-color: #ff6b35;
    color: #fff;
}

.wrapper .button#acceptBtn:hover {
    background-color: #e55a2b;
}

.wrapper .button#declineBtn {
    background-color: #e0e0e0;
    color: #333;
}

.wrapper .button#declineBtn:hover {
    background-color: #d0d0d0;
}

@media (max-width: 768px) {
    .wrapper {
        padding: 15px;
    }
    
    .wrapper header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .wrapper header h2 {
        font-size: 18px;
    }
    
    .wrapper .data p {
        font-size: 13px;
    }
    
    .wrapper .buttons {
        flex-direction: column;
    }
    
    .wrapper .button {
        width: 100%;
    }
}

/* ============================================
   CODE PROMO SECTION HEADING - RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
    .section-heading {
        font-size: 2rem !important;
    }
}

@media (max-width: 767px) {
    .section-heading {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 1.25rem !important;
    }
}

/* ============================================
   MOBILE FONT SIZE OPTIMIZATIONS
   ============================================ */

/* Mobile - 767px and below */
@media (max-width: 767px) {
    body {
        font-size: 13px;
    }
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 18px;
    }
    h5 {
        font-size: 16px;
    }
    h6 {
        font-size: 14px;
    }
    p {
        font-size: 13px;
        line-height: 20px;
    }
    .top-banner {
        font-size: 14px;
    }
    .logo-text {
        font-size: 18px;
    }
    .hero-headline {
        font-size: 24px !important;
    }
    .partner-brands-title,
    .categories-title,
    .promo-codes-title,
    .faq-title,
    .newsletter-title {
        font-size: 22px !important;
    }
    .section-title {
        font-size: 20px !important;
    }
}

/* Small Mobile - 640px and below */
@media (max-width: 640px) {
    body {
        font-size: 12px;
    }
    h1 {
        font-size: 22px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 16px;
    }
    h5 {
        font-size: 14px;
    }
    h6 {
        font-size: 13px;
    }
    p {
        font-size: 12px;
        line-height: 18px;
    }
    .top-banner {
        font-size: 13px;
    }
    .logo-text {
        font-size: 16px;
    }
    .hero-headline {
        font-size: 22px !important;
    }
    .partner-brands-title,
    .categories-title,
    .promo-codes-title,
    .faq-title,
    .newsletter-title {
        font-size: 20px !important;
    }
    .section-title {
        font-size: 18px !important;
    }
}

/* Extra Small Mobile - 440px and below */
@media (max-width: 440px) {
    body {
        font-size: 11px;
    }
    h1 {
        font-size: 18px;
    }
    h2 {
        font-size: 16px;
    }
    h3 {
        font-size: 14px;
    }
    h4 {
        font-size: 13px;
    }
    h5 {
        font-size: 12px;
    }
    h6 {
        font-size: 11px;
    }
    p {
        font-size: 11px;
        line-height: 17px;
    }
    .top-banner {
        font-size: 12px;
    }
    .logo-text {
        font-size: 14px;
    }
    .hero-headline {
        font-size: 18px !important;
    }
    .partner-brands-title,
    .categories-title,
    .promo-codes-title,
    .faq-title,
    .newsletter-title {
        font-size: 16px !important;
    }
    .section-title {
        font-size: 15px !important;
    }
}

/* Minimum Mobile - 320px and below */
@media (max-width: 320px) {
    body {
        font-size: 11px;
    }
    h1 {
        font-size: 16px;
    }
    h2 {
        font-size: 15px;
    }
    h3 {
        font-size: 13px;
    }
    h4 {
        font-size: 12px;
    }
    h5 {
        font-size: 11px;
    }
    h6 {
        font-size: 10px;
    }
    p {
        font-size: 11px;
        line-height: 16px;
    }
    .hero-headline {
        font-size: 16px !important;
    }
    .partner-brands-title,
    .categories-title,
    .promo-codes-title,
    .faq-title,
    .newsletter-title {
        font-size: 14px !important;
    }
}

/* =============================================================================
   Code-promo page hero — flex layout (reliable on all viewports)
   Head row: [logo aside | copy]. Footer: stats.
   Desktop: logo top-aligned with copy; stats indented under copy.
   Mobile: align-items:center on head → logo vertically centered beside text block;
           stats full width below.
   ============================================================================= */
.code-promo-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.code-promo-hero-head {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 1.5rem;
}

.code-promo-hero-logo-aside {
    flex: 0 0 auto;
}

.code-promo-hero-logo-el {
    width: 120px;
    height: 120px;
    background-color: #f0f0f0;
    border-radius: 12px;
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    padding: 8px;
    box-sizing: border-box;
}

.code-promo-hero-logo-el img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.code-promo-hero-copy {
    flex: 1 1 0;
    min-width: 0;
}

.code-promo-hero-title {
    font-weight: 700;
    color: #1a1a1a;
}

.code-promo-hero-date-badge {
    background-color: #ff6b35 !important;
    color: #fff !important;
    font-weight: 500;
    border: none;
}

.code-promo-hero-verified-badge {
    background-color: #e8f5e9 !important;
    color: #2e7d32 !important;
    border: 1px solid #4caf50 !important;
}

.code-promo-hero-desc {
    color: #1a1a1a;
    line-height: 1.6;
}

.code-promo-desc-line1 {
    color: #ff6b35;
    font-weight: 600;
}

.code-promo-desc-line2 {
    color: #1a1a1a;
}

.code-promo-hero-foot {
    width: 100%;
    margin: 0;
    margin-left: 0;
    padding-top: 0.25rem;
    border: 0;
}

.code-promo-hero-stat-text {
    color: #1a1a1a;
    font-weight: 500;
}

@media (min-width: 768px) {
    .code-promo-hero-foot {
        margin-left: calc(120px + 1.5rem);
        box-sizing: border-box;
        max-width: calc(100% - 120px - 1.5rem);
    }
}

/* ----- Mobile: match card layout (logo left + centered vs copy, stats full width) ----- */
@media (max-width: 767.98px) {
    .code-promo-section {
        padding-top: 1rem !important;
        padding-bottom: 1.5rem !important;
    }

    .code-promo-section .code-promo-breadcrumb {
        margin-bottom: 1rem !important;
        font-size: 0.8125rem;
    }

    .code-promo-page-hero.code-promo-hero {
        margin-bottom: 1.5rem !important;
        padding: 1rem 1rem 1.125rem !important;
        border-radius: 14px !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04) !important;
        border: 1px solid rgba(0, 0, 0, 0.04);
        background: #ffffff !important;
    }

    .code-promo-hero-inner {
        gap: 0.875rem;
    }

    /* Core: force stable two-column mobile layout on all devices */
    .code-promo-hero-head {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center;
        gap: 0.85rem;
    }

    .code-promo-hero-logo-aside {
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        flex: 0 0 auto;
    }

    .code-promo-hero-logo-el {
        width: 92px;
        height: 92px;
        min-width: 92px;
        border-radius: 10px;
        font-size: 2.1rem;
        background-color: #f5f5f5;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .code-promo-hero-copy {
        flex: 1 1 0;
        min-width: 0;
    }

    .code-promo-hero-title-row {
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .code-promo-hero-title {
        font-size: 0.9rem !important;
        line-height: 1.25 !important;
        color: #111 !important;
        flex: 1;
        min-width: 0;
    }

    .code-promo-hero-date-badge {
        padding: 0.35rem 0.65rem !important;
        font-size: 0.66rem !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
        white-space: nowrap;
    }

    .code-promo-hero-verified {
        margin-bottom: 0.5rem !important;
    }

    .code-promo-hero-verified-badge {
        display: inline-flex;
        align-items: center;
        padding: 0.35rem 0.75rem !important;
        font-size: 0.72rem !important;
        font-weight: 500 !important;
        color: #1b5e20 !important;
        border-color: #a5d6a7 !important;
    }

    .code-promo-hero-verified-badge .fa-check-circle {
        font-size: 0.875rem;
    }

    .code-promo-hero-desc {
        font-size: 0.78rem !important;
        line-height: 1.45 !important;
        font-weight: 400 !important;
        margin-bottom: 0 !important;
    }

    .code-promo-desc-line1 {
        display: block;
        color: #e85d2c !important;
        font-weight: 600 !important;
        margin-bottom: 0.25rem;
    }

    .code-promo-desc-desktop-inline {
        display: none;
    }

    .code-promo-desc-line2 {
        display: block;
        color: #333 !important;
    }

    .code-promo-hero-foot {
        margin-left: 0 !important;
        max-width: none !important;
        width: 100%;
        padding-top: 0.375rem;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .code-promo-hero-stats {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 0.25rem !important;
        width: 100%;
    }

    .code-promo-hero-stat:nth-child(1) {
        justify-content: flex-start;
    }

    .code-promo-hero-stat:nth-child(2) {
        justify-content: center;
    }

    .code-promo-hero-stat:nth-child(3) {
        justify-content: flex-end;
    }

    .code-promo-hero-stat {
        display: flex;
        align-items: center;
        min-width: 0;
    }

    .code-promo-stat-dot {
        display: none !important;
    }

    .code-promo-stat-text {
        font-size: 0.75rem !important;
        color: #555 !important;
    }

    .code-promo-stat-star {
        font-size: 0.8125rem !important;
        color: #ff6b35 !important;
        margin-right: 0.25rem !important;
    }

    .code-promo-stat-flame {
        font-size: 0.8125rem !important;
        color: #e53935 !important;
        margin-right: 0.25rem !important;
    }
}
