/* amazon-coupons.css */

.amazon-hero {
    background: var(--white);
    /* background-color: white; */
    padding: 23px 0;
    color: #1d0303;
    position: relative;
    overflow: hidden;
    font-family: "Spinnaker", sans-serif;
}

.amazon-hero::after {
    content: "";
    position: absolute;
    right: -50px;
    top: 50%;
    /* transform: translateY(-50%) rotate(-15deg); */
    width: 600px;
    height: 400px;
    /* background-image: url("https://upload.wikimedia.org/wikipedia/commons/a/a9/Amazon_logo.svg"); */
    /* background-repeat: no-repeat;
    background-size: contain; */
    opacity: 0.15;
    /* filter: brightness(0) invert(1); */
    pointer-events: none;
}

.amazon-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center; /* Ensure contents are centered */
}

.hero-content-box {
    border-bottom: 1px solid #ff5e14; /* Narrow orange line under content */
    padding: 0 20px 15px 20px;
    display: inline-block;
    max-width: 850px;
    margin: 0 auto;
}

.amazon-hero h1 {
    font-size: 45px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    color: #002d5b;
}

/* ===============================
   MAIN CONTENT LAYOUT
================================ */
.coupon-page-content {
    background-color: #ffffff;
    padding: 40px 0 20px 0; /* Balanced padding */
    font-family: "Segoe UI", Roboto, sans-serif;
}

.coupon-page-content .container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
    display: flex;
    gap: 40px;
}

/* ===============================
   SIDEBAR
================================ */
.filter-sidebar {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.filter-card {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 8px;
    padding: 15px 25px 25px 25px; /* Adjust padding for better look */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

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

.filter-header h3 {
    font-size: 20px;
    font-weight: 500;
    display: flex; /* Added flex */
    justify-content: space-between; /* Space out items */
    align-items: center;
    width: 100%; /* Take full width */
}

.clear-link {
    font-size: 13px;
    color: #ff5e14; /* Modern blue */
    text-decoration: none;
    font-weight: 400;
}

.clear-link:hover {
    text-decoration: underline;
}

/* ===============================
   COMMON LIST STYLE
================================ */
.category-list,
.status-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li,
.status-item {
    margin-bottom: 6px;
}

/* ===============================
   FULL CLICKABLE ROW
================================ */
.custom-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s ease;
    user-select: none;
    border: none;
}

.custom-check:hover {
    background: #e9eef5;
}

.custom-check input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ff5e14;
    border-radius: 5px;
    position: relative;
    flex-shrink: 0;
}

.custom-check input:checked+.checkmark {
    background: #ff5e14;
}

.custom-check input:checked+.checkmark::after {
    content: "✓";
    color: white;
    font-size: 12px;
    position: absolute;
    top: -2px;
    left: 3px;
}

.custom-check input:checked~* {
    font-weight: 600;
}

/* ===============================
   SEARCH BOX
================================ */
.search-box {
    position: relative;
    margin-bottom: 24px;
}

.search-box input {
    width: 100%;
    padding: 10px 40px 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
}

.search-box button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: #ff5e14;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* ===============================
   CATEGORY / TAG FILTER
================================ */
.category-filter h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #888;
    cursor: pointer;
}

.show-more-sidebar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #0088cc;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 500;
}

.show-more-sidebar i {
    font-size: 12px;
}

.show-more-sidebar:hover {
    color: #006699;
}

/* ===============================
   OFFER STATUS
================================ */
.status-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #8ca4bc;
}

.status-count {
    color: #8ca4bc;
    font-size: 14px;
}

/* ===============================
   MAIN CONTENT AREA
================================ */
.coupons-main {
    flex: 1;
}

.coupons-section {
    flex: 1;
    min-width: 0;
    padding: 30px 0;
    background-color: #ffffff;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.coupons-container {
    width: 100%;
}

/* ===============================
   DEALS GRID (Vertical Layout)
================================ */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.deal-card-vertical {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.deal-card-vertical-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.deal-card-vertical-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-badge-circle {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 45px;
    height: 45px;
    background: #002d5b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.brand-badge-circle img {
    max-width: 60%;
    filter: brightness(0) invert(1);
    height: auto;
}

.deal-card-vertical-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.deal-card-vertical-content h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.deal-desc-vertical {
    font-size: 12px;
    color: #8ca4bc;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.meta-info-row-vertical {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.meta-item-vertical {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #8ca4bc;
}

.meta-item-vertical i {
    font-size: 14px;
    color: #446084;
}

.deal-footer-vertical {
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.buy-now-btn-vertical {
    border: 1px solid #1e3a8a;
    color: #1e3a8a;
    padding: 4px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s;
}

.buy-now-btn-vertical:hover {
    background: #1e3a8a;
    color: #fff;
}

.user-count-row-vertical {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 12px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .coupon-page-content .container {
        flex-direction: column;
        gap: 30px;
    }

    .filter-sidebar {
        flex: 1 0 auto;
        width: 100%;
    }
}

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

/* FAQ Section Styles */
.faq-section {
    background-color: #fcfcfc;
    padding: 0 0 80px 0;
    font-family: "Spinnaker", sans-serif;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section h2 {
    font-size: 28px;
    color: #002d5b;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.no-faq-msg {
    text-align: center;
    color: #8ca4bc;
    font-size: 16px;
    padding: 20px 0;
}

.faq-item {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    position: relative;
    list-style: none;
    /* Hide default triangle */
    outline: none;
    transition: background-color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: #003566;
    transition: transform 0.3s ease;
}

.faq-item[open] summary {
    border-bottom: 1px solid #ededed;
}

.faq-item[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}

.faq-content {
    padding: 20px 25px;
    background: #fff;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Rich SEO Content Styling */
.seo-rich-content {
    padding: 80px 0;
    background: #fdfdfd;
    border-top: 1px solid #eee;
    font-family: "Spinnaker", sans-serif;
}

.seo-rich-content .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-block {
    margin-bottom: 25px;
    /* Reduced margin */
}

.seo-block h2 {
    font-size: 32px;
    color: #002d5b;
    margin-bottom: 25px;
    font-weight: 600;
}

.seo-block h3 {
    font-size: 26px;
    color: #002d5b;
    margin-bottom: 20px;
    font-weight: 600;
}

.seo-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.brand-link {
    color: #0088cc;
    text-decoration: underline;
    font-weight: 600;
}

.accent-highlight {
    background: #fff3e0;
    padding: 12px 20px;
    border-left: 4px solid #ff9800;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
}

.accent-highlight p {
    margin-bottom: 0;
    font-weight: 500;
    color: #333;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.seo-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.seo-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #002d5b;
    font-size: 24px;
    line-height: 14px;
}

.icon-list li {
    padding-left: 35px;
    margin-bottom: 20px;
}

.icon-list li::before {
    display: none;
}

.icon-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #0088cc;
    font-size: 18px;
}

.icon-list li strong {
    display: block;
    color: #002d5b;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .seo-block h2 {
        font-size: 26px;
    }

    .seo-block h3 {
        font-size: 22px;
    }

    .seo-block p {
        font-size: 15px;
    }
}

/* Modern Design System Tokens */
:root {
    --primary-blue: #003580;
    --accent-orange: #ff6838;
    --success-green: #008267;
    --light-green: #e1f5f1;
    --text-main: #1a1a1a;
    --text-muted: #5e6d77;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px rgba(0, 53, 128, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #f9fbff;
    color: var(--text-main);
    line-height: 1.6;
}

/* Hero Section Container */
.expedia-hero {
    width: 100%;
    /* padding: 40px 0; */
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.hero-container {
    background: transparent;
    padding: 40px 5% 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Background Glow Effect Removed */
.bg-glow {
    display: none;
}

/* Logo Styling */
.logo-wrapper {
    margin-bottom: 12px;
    /* Half of original */
}

.logo-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f8fafc;
    padding: 10px;
    animation: floatLogo 5s infinite ease-in-out;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.logo-text {
    font-family: "Outfit", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.logo-text .domain {
    color: #ffcc00;
    /* Yellow dot/text style */
}

/* Ratings */
.rating-container {
    margin-bottom: 20px;
}

.stars {
    color: #ffb800;
    font-size: 14px;
    margin-bottom: 8px;
}

.rating-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Savings Badge */
.savings-badge {
    display: inline-block;
    background: var(--light-green);
    color: var(--success-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 130, 103, 0.1);
}

/* Description */
.hero-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 35px;
    font-weight: 400;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0 auto 40px;
    padding: 15px 0;
    width: 100%;
    max-width: 750px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.stat-card {
    /* border: 1px solid #f1f5f9; */
    padding: 20px 45px;
    border-radius: 18px;
    /* background: #ffffff; */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6a39, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-value {
    font-size: 26px;
    font-weight: 600;
    background: #64748b;
    -webkit-background-clip: text;
    background-clip: text;
    /* Fixed lint */
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* CTA Button */
.cta-wrapper {
    margin-bottom: 10px;
    /* Reduced bottom margin */
}

.visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6a39 0%, #ff5e14 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 60px;
    /* Expanded horizontal padding */
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 106, 57, 0.25);
    position: relative;
    overflow: hidden;
}

.visit-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(25deg);
    transition: all 0s linear;
}

.visit-btn:hover::after {
    left: 140%;
    transition: all 0.6s ease;
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 106, 57, 0.4);
    color: #ffffff;
}

/* ===============================
   FINAL PIXEL-PERFECT DESIGN MATCH (SCOPED)
================================ */

.coupons-section {
    padding: 30px 0;
    width: 100%;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 700;
    color: #4a5568;
    cursor: pointer;
    position: relative;
}

.tab-btn.active {
    color: #ff6a39;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff6a39;
}

/* Scoped Coupon Card Styles */
.coupon-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-left: 3px solid #edf2f7;
    border-radius: 12px;
    display: flex !important;
    flex-direction: row !important;
    position: relative;
    padding: 10px 40px 10px 24px !important;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    min-height: 100px;
    align-items: center;
}

.coupon-card.featured {
    border-left: 3px solid #ff6a39;
}

.coupon-card .featured-badge {
    position: absolute;
    top: -10px;
    left: 12px;
    background: #ff6a39;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Scoped Left Section */
.coupon-card .card-left {
    flex: 0 0 120px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    padding-right: 20px !important;
    border-right: none !important;
    /* Reset conflicting borders */
}

.coupon-card .card-left::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    border-right: 1.5px dotted #cbd5e0;
}

.coupon-card .discount-value {
    font-size: 40px;
    font-weight: 800;
    color: #ff6a39;
    line-height: 1;
}

.coupon-card .discount-label {
    font-size: 14px;
    font-weight: 700;
    color: #718096;
    margin-top: 5px;
    text-transform: uppercase;
}

/* Scoped Middle Section */
.coupon-card .card-middle {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 0 25px !important;
    align-items: flex-start;
}

.coupon-card .offer-title {
    font-size: 20px;
    font-weight: 700;
    color: #0c3e8a;
    margin: 0 0 8px 0 !important;
    line-height: 1.2;
}

.coupon-card .offer-desc {
    font-size: 14px;
    color: #4a5568;
    margin: 0 0 15px 0 !important;
    line-height: 1.5;
    text-align: left !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* FIX */
}

.coupon-card .offer-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px 12px; /* Tightened to fit all stats on one line */
    font-size: 12.5px; /* Slightly smaller for better fit */
    color: #718096;
    align-items: center;
}

.coupon-card .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap; /* Prevent stats from breaking internally */
}

.coupon-card .meta-item.success {
    color: #38a169;
    font-weight: 600;
}

/* Scoped Right Section */
.coupon-card .card-right {
    flex: 0 0 160px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-left: auto !important;
}

.coupon-card .reveal-btn {
    width: 100% !important;
    max-width: 150px !important;
    background: #ff6a39 !important;
    color: #fff !important;
    text-align: center;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    font-size: 16px !important;
    display: block !important;
}

.coupon-card .reveal-btn:hover {
    background: #e55a2b !important;
}

.coupon-card .reveal-btn.get-deal-blue {
    background: #ff5e14 !important;
}

.coupon-card .reveal-btn.get-deal-blue:hover {
    background: #002d5b !important;
}

.coupon-card .verified-badge {
    display: flex !important;
    align-items: center;
    gap: 6px;
}

/* Ticket Style Reveal Button */
.coupon-code-reveal {
    display: flex;
    border: 1px solid #003566;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    padding: 0;
    width: 100%;
    max-width: 145px;
    height: 45px;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.coupon-code-reveal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 94, 20, 0.15);
    border-color: #ff5e14;
}

.coupon-code-reveal .code-text-preview {
    font-size: 14px;
    width: 100%;
    text-align: right;
    padding-right: 15px; /* Balanced to look centered in the visible white area */
    font-weight: 800;
    color: #ff5e14;
    letter-spacing: 1px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    font-family: 'Monaco', 'Consolas', monospace;
}

.coupon-code-reveal .reveal-overlay {
    position: absolute;
    left: -2px; /* Cover border */
    top: -2px; /* Cover border */
    height: calc(100% + 4px);
    width: 75%; /* Reduced to give more space for code */
    background: linear-gradient(135deg, #ff6a39 0%, #ff5e14 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%); /* More professional slant */
    z-index: 2;
    padding-right: 15px;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
}

.coupon-code-reveal:hover .reveal-overlay {
    width: 75%; /* Dynamic movement */
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.coupon-code-reveal:active .reveal-overlay {
    width: 100%;
    clip-path: none;
}

/* For Blue Deals (without code) */
.coupon-card .reveal-btn.get-deal-blue {
    background: #003566 !important; /* Restore Blue Color */
    max-width: 165px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    padding: 13px 20px !important;
}

.coupon-card .verified-badge {
    font-size: 11px;
    color: #10b981 !important;
    background: #f0fff4;
    padding: 4px 10px !important;
    border: 1px solid #c6f6d5;
    border-radius: 6px;
    font-weight: 700;
    text-align: center !important;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .coupon-card {
        flex-direction: column !important;
        padding: 30px 20px 25px !important;
        text-align: center;
        gap: 0 !important; /* Controlled spacing with margin/padding */
        min-height: 580px !important; /* Uniform Height */
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
    }

    .coupon-card .card-left {
        flex: 0 0 auto !important;
        padding-bottom: 20px !important;
        margin-bottom: 15px !important;
        width: 100% !important;
        border-bottom: 1px dashed #cbd5e0;
        padding-right: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 110px;
    }

    .coupon-card .card-left::after {
        display: none;
    }

    .coupon-card .card-middle {
        padding: 0 !important;
        text-align: center !important;
        margin-bottom: 15px !important;
        align-items: center !important;
        flex: 1 0 auto !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .coupon-card .offer-title {
        font-size: 18px !important;
        margin-bottom: 10px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 44px; /* Fixed height for title area */
    }

    .coupon-card .offer-desc {
        text-align: center !important;
        font-size: 13px !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 58px; /* Fixed height for description area */
        margin-bottom: 15px !important;
    }

    .coupon-card .offer-meta {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        white-space: normal !important;
        min-height: 80px; /* Space for meta icons */
        margin-bottom: 15px !important;
    }

    .coupon-card .meta-item {
        justify-content: center;
        width: 100%;
        font-size: 12px;
    }

    .coupon-card .card-right {
        flex: 0 0 auto !important;
        align-items: center !important;
        width: 100% !important;
        padding-top: 20px;
        border-top: 1px solid #f1f5f9;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 15px !important;
        min-height: 100px;
    }
    
    .coupon-card .card-right .reveal-btn {
         max-width: 100% !important;
         width: 100% !important;
         margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .coupon-card .offer-meta {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .coupon-card .discount-value {
        font-size: 32px !important;
    }
}

/* ===============================
   RELATED BRANDS SECTION
================================ */
.related-brands-section {
    background: #ffffff;
    padding: 50px 0 60px;
    border-top: 1px solid #edf2f7;
}

.related-brands-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.related-brands-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    font-family: "Segoe UI", Roboto, sans-serif;
}

.related-brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-brand-card {
    border: 1px solid #e8edf3;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    cursor: pointer;
}

.related-brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.brand-card-banner {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 0;
}

.brand-card-name {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    font-family: "Segoe UI", Roboto, sans-serif;
    letter-spacing: -0.5px;
}

.brand-card-body {
    padding: 14px 16px 16px;
}

.brand-card-label {
    font-size: 10px;
    font-weight: 700;
    color: #a0aec0;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.brand-card-offer {
    font-size: 14px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
    line-height: 1.4;
}

.brand-card-link {
    font-size: 13px;
    font-weight: 600;
    color: #ff6a39;
    text-decoration: none;
    transition: color 0.2s ease;
}

.brand-card-link:hover {
    color: #e05520;
}

/* Responsive */
@media (max-width: 992px) {
    .related-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .related-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .brand-card-banner {
        height: 80px;
    }

    .brand-card-name {
        font-size: 20px;
    }
}

/* Section Styling */
.features-section {
    padding: 0px 20px 60px 20px;
    background-color: #ffffff;
}

/* Container */
.features-container {
    max-width: 1100px;
    /* Slightly contained */
    margin: 0 auto;
    width: 100%;
}

/* Main Title */
.features-main-title {
    text-align: center;
    font-size: 26px;
    /* Matches screenshot font size feeling */
    font-weight: 700;
    color: #0b1c3c;
    /* Very deep blue */
    margin-top: 0;
    margin-bottom: 60px;
    /* Gives space to icons */
}

/* Grid System */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 equal columns */
    gap: 40px 20px;
    /* Spacing */
}

/* Individual Card */
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Icon Wrapper */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #f6f8fb;
    /* Light grayish-blue almost white */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: #e2e8f0;
    /* Slight interaction effect */
}

/* SVGs Styling inside Icon */
.feature-icon svg {
    width: 20px;
    height: 20px;
    color: #1e3a7a;
    /* Deep middle-tone blue */
}

/* Card Titles */
.feature-title {
    font-size: 15px;
    font-weight: 700;
    color: #0b1c3c;
    margin: 0 0 10px 0;
}

/* Card Text/Descriptions */
.feature-text {
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
    /* Medium Slate */
    margin: 0;
    padding: 0 10px;
}

/* Responsive Desgin */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 grid for tablets */
        gap: 50px 30px;
    }

    .features-main-title {
        font-size: 22px;
        margin-bottom: 40px;
    }
}

@media (max-width: 500px) {
    .features-grid {
        grid-template-columns: 1fr;
        /* Stack vertically for mobile */
        gap: 40px;
    }

    .features-section {
        padding-top: 60px;
    }
}

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

.coupon-card {
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 53, 128, 0.06);
}

/* Featured Style */
.coupon-card.featured {
    border-left: 4px solid var(--accent-orange);
}

.featured-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--accent-orange);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Card Left - Discount */
.card-left {
    width: 130px;
    text-align: center;
    border-right: 2px dashed #eef2f6;
    padding-right: 20px;
    flex-shrink: 0;
}

.discount-value {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.discount-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Card Middle - Content */
.card-middle {
    flex-grow: 1;
    padding: 0 40px;
}

.offer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.offer-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    font-size: 14px;
}

.meta-item.success {
    color: var(--success-green);
    font-weight: 600;
}

/* Card Right - Action */
.card-right {
    text-align: center;
    width: 200px;
    flex-shrink: 0;
}

.reveal-btn {
    display: block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition);
}

.reveal-btn:hover {
    background: #e85a2d;
    box-shadow: 0 8px 15px rgba(255, 104, 56, 0.2);
}

.reveal-btn.get-deal-blue {
    background: #003580 !important;
}

.reveal-btn.get-deal-blue:hover {
    background: #002d5b !important;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--success-green);
    background: var(--light-green);
    padding: 4px 12px;
    border-radius: 50px;
}

.verified-badge.unverified {
    color: #fff !important;
    background: #ef4444 !important;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

/* Responsive Coupons */
@media (max-width: 900px) {
    .coupon-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .card-left {
        width: 100%;
        border-right: none;
        border-bottom: 2px dashed #eef2f6;
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .card-middle {
        padding: 0;
        margin-bottom: 25px;
    }

    .offer-meta {
        justify-content: center;
    }

    .card-right {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .tabs-nav {
        overflow-x: auto;
        white-space: nowrap;
        gap: 15px;
        padding-bottom: 10px;
    }

    .tab-btn {
        font-size: 14px;
    }
}

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

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* CTA Button */
.cta-wrapper {
    margin-top: 10px;
}

.visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(255, 104, 56, 0.3);
    transition: var(--transition);
}

.visit-btn i {
    font-size: 16px;
    transition: var(--transition);
}

.visit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 104, 56, 0.4);
    background: #e85a2d;
}

.visit-btn:hover i {
    transform: translate(3px, -3px);
}

.visit-btn:active {
    transform: translateY(-2px);
}

/* Responsive Tweaks */
@media (max-width: 600px) {
    .stats-grid {
        flex-direction: column;
        gap: 25px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero-container {
        padding: 40px 20px;
        border-radius: 0;
    }

    .hero-description {
        font-size: 16px;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .logo-text {
        font-size: 1.3rem;
    }
}

/* top: 4px;
left: 4px;
background: var(--accent-orange);
color: var(--white);
font-size: 10px;
font-weight: 800;
padding: 4px 10px;
border-radius: 4px;
text-transform: uppercase;
} */

/* Card Left - Discount */
.brand-linked-v2 .card-left {
    width: 130px;
    text-align: center;
    border-right: 2px dashed #eef2f6;
    padding-right: 20px;
    flex-shrink: 0;
}

.brand-linked-v2 .discount-value {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.brand-linked-v2 .discount-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Card Middle - Content */
.brand-linked-v2 .card-middle {
    flex-grow: 1;
    padding: 0 40px;
}

.brand-linked-v2 .offer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.brand-linked-v2 .offer-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.brand-linked-v2 .offer-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.brand-linked-v2 .meta-item {
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-linked-v2 .meta-item i {
    font-size: 14px;
}

.brand-linked-v2 .meta-item.success {
    color: var(--success-green);
    font-weight: 600;
}

/* Card Right - Action */
.brand-linked-v2 .card-right {
    text-align: center;
    width: 200px;
    flex-shrink: 0;
}

.brand-linked-v2 .reveal-btn {
    display: block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition);
}

.brand-linked-v2 .reveal-btn:hover {
    background: #e85a2d;
    box-shadow: 0 8px 15px rgba(255, 104, 56, 0.2);
}

.brand-linked-v2 .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--success-green);
    background: var(--light-green);
    padding: 4px 12px;
    border-radius: 50px;
}

/* Responsive Coupons */
@media (max-width: 900px) {
    .brand-linked-v2 .coupon-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .brand-linked-v2 .card-left {
        width: 100%;
        border-right: none;
        border-bottom: 2px dashed #eef2f6;
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .brand-linked-v2 .card-middle {
        padding: 0;
        margin-bottom: 25px;
    }

    .brand-linked-v2 .offer-meta {
        justify-content: center;
    }

    .brand-linked-v2 .card-right {
        width: 100%;
    }
}

.brand-linked-v2 .stat-divider {
    width: 1px;
    height: 40px;
    background-color: #e2e8f0;
}

.brand-linked-v2 .stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.brand-linked-v2 .stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* CTA Button */
.brand-linked-v2 .cta-wrapper {
    margin-top: 10px;
}

.brand-linked-v2 .visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(255, 104, 56, 0.3);
    transition: var(--transition);
}

.brand-linked-v2 .visit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 104, 56, 0.4);
    background: #e85a2d;
}