* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Product Sans', sans-serif;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Disclaimer */
.disclaimer {
    padding: .75rem 0;
    background: #a7f1d2;
    color: #212121;
    font-size: .9375rem;
    text-align: center;
    border-top: 1px solid #48e7a5;
    border-bottom: 1px solid #48e7a5;
}
.disclaimer .container{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap:1rem;
}

.disclaimer .icon-edo {
    background: white;
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    justify-content: space-around;
    align-items: center;
    border: 2px solid #117c4f;
    flex: 0 0 32px;
}

.disclaimer .message {
    flex: 0 1 auto;
}

/* Header */
header {
    background: #031527dd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    backdrop-filter: blur(8px);
    top: 0;
    z-index: 100;
}

header .container{
    padding: 1rem 2rem;
    align-items: stretch
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #48e7a5;
    position: relative;
}

.logo:after{
    content: '';
    display: block; 
    background: url(../img/general/crown.png) no-repeat 0 0 transparent;
    background-position: 0;
    background-size: contain;
    width: 32px;
    height: 32px;
    position: absolute;
    right: 0;
    top: 0;
    transform: rotateZ(28deg) translateX(45%) translateY(-50%);
}

.logo .baseline {
    display:flex;
    font-size: .8125rem;
    color: black;
    position: absolute;
    background: #FADB62;
    border-radius: 8px;
    background: -webkit-linear-gradient(180deg, rgba(250, 219, 98, 1) 30%, rgba(250, 225, 98, 1) 64%, rgba(250, 192, 98, 1) 100%);
    background: -moz-linear-gradient(180deg, rgba(250, 219, 98, 1) 30%, rgba(250, 225, 98, 1) 64%, rgba(250, 192, 98, 1) 100%);
    background: linear-gradient(180deg, rgba(250, 219, 98, 1) 30%, rgba(250, 225, 98, 1) 64%, rgba(250, 192, 98, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FADB62", endColorstr="#FAC062", GradientType=0);
    padding: .25rem .5rem;
    font-weight: normal;
    box-shadow: 0 6px 8px rgba(0, 0, 0, .2) ;
    width: max-content;
    bottom: 0;
    transform: translateY(120%) translateX(-10%);
    justify-content: center;
    align-items: center;
    gap: .25rem;
}

.logo .baseline span{
    display: block;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    width: 20px;
    height: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: .25rem;
}

.nav-links li{
    display: flex;
    align-self: stretch;
}

.nav-links a {
    text-decoration: none;
    color: #ddd;
    font-weight: 500;
    transition: color 0.3s;
    padding: .25rem .5rem;
    display: flex;
    align-items: center;
    transition: color .15s ease-out, background-color .15s ease-out;
    border-radius: .25rem;
}

.nav-links a:hover {
    background: #24c783;
    color: #fff;
}

/* ultra promo */
.ultra-promo{
    background: #031527;
    padding: 2rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.ultra-promo .content {
    margin: 2rem;
}

.ultra-promo .store-logo{
    text-align: left;
    margin: 0 auto 2rem;
}

.ultra-promo .background-animation {
    position: absolute;
    inset: 0px;
    border-radius: 57px;
    background: rgb(40, 45, 64);
}

.ultra-promo .background-animation::before {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: inherit;
    filter: blur(16px);
    will-change: filter;
    z-index: 0;
    animation: 16s linear 0s infinite normal none running lhDoia;
    background: repeating-conic-gradient(from var(--values-capsule-gradient-angle), #0568fd 0%, #0568fd 5%, transparent 6%, transparent 40%, #0568fd 50%);
}

.ultra-promo .background-animation::after {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: inherit;
    z-index: 0;
    animation: 16s linear 0s infinite normal none running lhDoia;
    background: repeating-conic-gradient(from var(--values-capsule-gradient-angle), #0568fd 0%, #0568fd 5%, transparent 6%, transparent 40%, #0568fd 50%);
}

.ultra-promo .section-title{
    color: #fff;
    padding: 1rem;
}

.ultra-promo .section-content{
    position: relative;
    padding: 2px;
}

.ultra-promo .background-image{
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ultra-promo h2{
    color: #fff;
    font-size: 2rem;
    position: relative; 
    z-index: 2;
}

.ultra-promo h3{
    color: #fff;
    font-size: 1.5rem;
    line-height: 2rem;
    position: relative; 
    z-index: 2;
}

.ultra-promo .inner {
    position: relative;
    padding: 1rem;
    text-align: center;
}

.ultra-promo .section-content-inner{
    padding: 2rem;
    border-radius: 57px;
    position: relative;
    overflow: hidden;
}

.ultra-promo .background-image:after{
    content: '';
    display: block; 
    position: absolute; 
    inset: 0;
    background: #000000;
    background: -webkit-linear-gradient(0deg, #031527 50%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(0deg, #031527 50%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, #031527 50%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}

.ultra-promo .background-image img{
    display: block; 
    width: 100%;
    height: 60%;
    z-index: -1;
    object-fit: cover;
}

.ultra-promo .cta-button {
    font-size: 1.25rem;
    margin: 2rem 0 0;
}

@media only screen and (width > 640px) {
    .ultra-promo .section-content-inner{
        padding: 4rem;
    }

    .ultra-promo h2{
        font-size: 3.5rem;
    }

    .ultra-promo h3{
        font-size: 2.25rem;
        line-height: 3rem;
    }
}


@media only screen and (width > 768px) {
    .ultra-promo .content {
        margin: 3rem;
    }

    .ultra-promo .section-content-inner {
        padding: 4rem 4rem 2rem;
    }

    .ultra-promo .cta-button {
        font-size: 1.25rem;
        margin: 2rem 0;
    }
}


@media only screen and (width > 1200px){
    .ultra-promo .content {
        margin: 0;
    }

    .ultra-promo .inner {
        position: relative;
        width: 65%;
        text-align: left;
    }

    .ultra-promo .store-logo{
        text-align: left;
        margin: 0 0 2rem;
    }

    .ultra-promo .section-content-inner{
        padding: 3rem 3rem 2rem;
    }

    .ultra-promo h2{
        color: #fff;
        font-size: 3.5rem;
        position: relative; 
        z-index: 2;
    }

    .ultra-promo h3{
        color: #fff;
        font-size: 2.25rem;
        line-height: 3rem;
        position: relative; 
        z-index: 2;
    }

    .ultra-promo .background-image img{
        display: block; 
        width: 100%;
        height: 100%;
    }

    .ultra-promo .background-image:after{
        background: #000000;
        background: -webkit-linear-gradient(63deg, #031527 30%, rgba(0, 0, 0, 0) 100%);
        background: -moz-linear-gradient(63deg, #031527 30%, rgba(0, 0, 0, 0) 100%);
        background: linear-gradient(63deg, #031527 30%, rgba(0, 0, 0, 0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        padding: .5rem 1rem;
    }
    
}

/*!sc*/
@property --values-capsule-gradient-angle {
    syntax: '<angle>';
    initial-value: 45deg;
    inherits: false;
}

/*!sc*/
@-webkit-keyframes lhDoia {
    0% {
        --values-capsule-gradient-angle: 45deg;
        opacity: 0;
    }

    5% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        --values-capsule-gradient-angle: 765deg;
        opacity: 0;
    }
}

/*!sc*/
@keyframes lhDoia {
    0% {
        --values-capsule-gradient-angle: 45deg;
        opacity: 0;
    }

    5% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        --values-capsule-gradient-angle: 765deg;
        opacity: 0;
    }
}


/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    color: #fff;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #031527;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e011;
}

.mobile-nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #24c783;

}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-links {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid #f0f0f011;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: background 0.3s;
}

.mobile-nav-links a:hover {
    background: #24c783;
    color: #f8f9fa;

}

.mobile-search {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e011;
}

.mobile-search-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.mobile-search-input:focus {
    border-color: #24c783;
}

.search-container {
    position: relative;
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
}

.search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:hover {
    border-color: #24c783;
}
.search-input:focus {
    border-color: #24c783;
    box-shadow: 0 0 20px 5px #24c78355;
}

.search-btn {
    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
    background: #667eea44;
    color: white;
    border: none; 
    padding: 8px 8px;
    border-radius: 50%;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #24c783;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 0 20px 5px #24c78300;
    text-shadow: 0 0 8px transparent;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s, text-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #2bf19f;
    text-shadow: 0 0 8px #000;
    box-shadow: 0 0 20px 5px #24c78355;
}

/* Stats Section */
.stats {
    background: #f8f9fa;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #24c783;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #666;
}

/* Featured Stores */
.featured-stores {
    padding: 4rem 0;
    background: #ebeefd;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.stores-grid.small {
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}

.store-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.02), 0px 8px 24px 0px rgba(0, 0, 0, 0.10);
    text-align: center;
    outline: 4px solid #24c78300;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, opacity 0.15s ease-out, outline 0.15s ease-out !important;
    text-decoration: none;
}

.store-card.highlight{
    outline:2px solid #a5d8c3;
}

.highlight .store-btn{
    color: #24c783;
}

.store-card:hover{
    outline: 4px solid #24c783;
    transform: translateY(-5px) !important;
}

.small .store-card {
    background: white;
    padding: 1rem;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.02), 0px 2px 6px 0px rgba(0, 0, 0, 0.05);
    text-align: center;   
    border-radius: 8px;
}

.store-logo {
    width: 160px;
    height: 160px;
    background: #f0f0f0;
    border-radius: 50%;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
}

.store-logo.bol {
    color: #0000a4;
}

.store-logo * {
    max-width: 100%;
    padding: 1.25em;
}

.store-btn {
    background: none;
    color: #323232;
    padding: 0 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: color 0.15s;
    font-size: 1.5rem;
    font-weight: 600;
}

.store-card:hover .store-btn {
    color: #24c783;
}

.store-name {
    font-size: .85em;
    color: #999;
    margin-bottom: .5rem;
}


.small a.store-card{
    text-decoration: none;
    color:#323232;
    padding: 0;
    overflow: hidden;
}

.small a.store-card:hover{
    transform: translateY(-5px) !important;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.02), 0px 8px 24px 0px rgba(0, 0, 0, 0.10);
}

.small .store-logo {
    width: 80px;
    height: 80px;
    margin: 1rem auto;
}

.small .store-logo * {
    padding:0.25rem;
}

.small .store-promo{
    background: #24c783;
    color: #fff;
    padding: .5rem 0;    
    font-weight: bold;
}

.boost-box {
    align-items: center;
    background-image: repeating-linear-gradient(0deg,rgba(0,0,0,.2),rgba(0,0,0,.2) 6px,transparent 0,transparent 10px,rgba(0,0,0,.2) 0),repeating-linear-gradient(90deg,rgba(0,0,0,.2),rgba(0,0,0,.2) 6px,transparent 0,transparent 10px,rgba(0,0,0,.2) 0),repeating-linear-gradient(180deg,rgba(0,0,0,.2),rgba(0,0,0,.2) 6px,transparent 0,transparent 10px,rgba(0,0,0,.2) 0),repeating-linear-gradient(270deg,rgba(0,0,0,.2),rgba(0,0,0,.2) 6px,transparent 0,transparent 10px,rgba(0,0,0,.2) 0);
    background-position: 0 0,0 0,100% 0,0 100%;
    background-repeat: no-repeat;
    background-size: 1px 100%,100% 1px,1px 100%,100% 1px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 25px 0;
    position: relative;
    margin-top: 1rem;
}

@media (max-width: 767px) {
    .boost-box {
        flex-direction:column
    }
}

.boost-box .label {
    color: #2d3e50;
    font-weight: 700;
    letter-spacing: -.27px
}

.boost-box .label,.boost-box .link {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
    margin-right: 15px;
    white-space: nowrap
}

.boost-box .link {
    color: #7f84ad;
    text-decoration: underline
}

.boost-box .link:hover {
    color: #117c4f;
    text-decoration: underline
}

/* Categories */
.categories {
    background: #f8f9fa;
    padding: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.category-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s !important;
}

.category-item:hover {
    background: #24c783;
    color: white;
    transform: translateY(-3px);
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.category-icon:before {
    background: #fff;
    display: block; 
    position: absolute;
    border-radius: 50%;
    content: "";
    width: 50px;
    height: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index:-1;
}

/* Recent Coupons */
.recent-coupons {
    padding: 4rem 0;
}

.recent-coupons .section-title{
    color: #152a85;
}

.coupon-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.coupon-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.3s;
}

.coupon-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.coupon-info {
    flex: 1;
}

.coupon-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.coupon-store {
    color: #666;
    margin-bottom: 0.5rem;
}

.coupon-code {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: monospace;
    font-weight: bold;
    border: 1px dashed #ccc;
}

.coupon-action {
    margin-left: 1rem;
}

.copy-btn {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: #218838;
}

.btn-reveal {
    min-width: 180px;
    padding-right: 25px;
    position: relative;
    transition: padding .1s
}

.btn-reveal .code {
    align-items: center;
    background-color: #f0faff;
    border: 2px dashed #2441c7;
    border-radius: 3px;
    display: flex;
    height: 100%;
    justify-content: flex-end;
    overflow: hidden;
    padding-right: 10px;
    position: absolute;
    white-space: nowrap;
    width: 100%
}

.btn-reveal .code,
.btn-reveal .code.small {
    color: #2d3e50;
    font-weight: 700;
    line-height: 32px
}

.btn-reveal .code.small {
    font-size: 16px
}

.btn-reveal .code.tiny {
    color: #2d3e50;
    font-family: monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 32px
}

.btn-reveal .cover {
    background-color: #303359;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 16px;
    padding: 15px 25px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    transition: padding .1s;
    white-space: nowrap;
    width: 100%;
    transition: background-color .15s, width .15s;
}

.btn-reveal:focus-visible {
    outline: 1px solid #24c783
}

.btn-reveal:active,
.btn-reveal:focus,
.btn-reveal:hover {
    padding-right: 33px
}

.btn-reveal:active .cover,
.btn-reveal:focus .cover,
.btn-reveal:hover .cover {
    background-color: #24c783;
    padding: 15px 16px;
    width: 130px;
}

.btn-reveal.revealed {
    padding-right: 0
}

.btn-reveal.revealed .cover {
    display: none
}

.btn-reveal.revealed .code {
    display: block;
    justify-content: center;
    padding: 5px;
    position: static;
    text-overflow: ellipsis
}

.badge, .sr-only {
    white-space: nowrap;
}

.badge {
    align-items: center;
    background-color: #eafbf8;
    border-radius: 2px;
    color: #1bbc9b;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -.3px;
    line-height: 26px;
    padding: 5px 15px;
}

.trending-offer {
    background-color: #fff;
    border: 1px solid #e8eef7;
    border-radius: 4px;
    box-sizing: content-box
}

.trending-offer .click {
    display: block;
    height: 100%;
    padding-left: 272px;
    position: relative;
    width: 100%;
    text-decoration: none;
}

.trending-offer .click:focus-visible {
    outline: 1px solid #24c783
}

.trending-offer .short-info {
    align-items: center;
    background-color: #f9fafd;
    border-radius: 4px 0 0 4px;
    border-right: 1px solid #e8eef7;
    display: flex;
    height: 100%;
    left: 0;
    padding-left: 25px;
    position: absolute;
    width: 272px
}

.trending-offer .short-info .logo {
    border: 1px solid #f2f4f7;
    border-radius: 3px;
    display: block;
    height: 100px;
    width: 100px
}

.trending-offer .tile {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-weight: 700;
    padding: 0 15px;
    text-align: center;
    text-transform: uppercase
}

.trending-offer .tile .big {
    color: #24c783;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.5px;
    line-height: 32px;
    margin-bottom: 5px
}

.trending-offer .tile .small {
    color: #24c783;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.7px;
    line-height: 16px
}

.trending-offer .tile .deal-type {
    color: #7f949f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 28px;
    margin-top: 15px
}

.trending-offer .deal-content {
    display: flex
}

@media (max-width:767px) {
    .trending-offer .deal-content {
        flex-direction: column
    }
}

@media (max-width: 882px) {
    .trending-offer .click {
        padding-left:0;
    }

    .trending-offer .short-info {  
        position: relative; 
        width: auto; 
        padding: 2rem;
    }

    .trending-offer .tile{
        text-align: right;
    }


}

.trending-offer .info {
    flex-grow: 1;
    min-height: 150px;
    padding: 25px 0 25px 25px;
    display: flex;
    flex-flow: row wrap;
    align-content: center;
}

.trending-offer .info .title{
    width: 100%
}

.trending-offer .info .merchant {
    color: #7f949f;
    font-size: 13px;
    font-weight: 400;
    font-weight: 700;
    letter-spacing: -.28px;
    line-height: 20px;
    line-height: 16px
}

@media (max-width:767px) {
    .trending-offer .info .merchant {
        font-size: 10px
    }
}

.trending-offer .info .title {
    color: #24c783;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.5px;
    line-height: 28px;
    margin-bottom: 5px
}

.trending-offer .info .description,
.trending-offer .info .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.trending-offer .info .description {
    color: #313f4e;
    font-size: 16x;
    font-weight: 600;
    letter-spacing: -.3px;
    line-height: 24px
}

.trending-offer .info .insights {
    color: #7f949f;
    font-size: 12px;
    font-weight: 700;
    line-height: 22px
}

@media (max-width:767px) {
    .trending-offer .info {
        min-height: unset;
        padding-bottom: 15px;
        padding-right: 25px
    }
}

.trending-offer .verified-badge {
    color: #1bbc9b;
    display: table;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 16px;
    margin-bottom: 5px;
    text-transform: uppercase
}

.trending-offer .verified-badge .check-icon {
    display: inline-block;
    height: 13px;
    margin-right: 5px;
    position: relative;
    top: 1px;
    width: 13px
}

.trending-offer .badge {
    border: solid;
    border-color: #c6f6ed;
    border-radius: 2px;
    border-width: 1px;
    margin-top: 15px;
    padding: 0 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.trending-offer .badge .coupon-icon {
    display: inline-flex;
    height: 14px;
    margin-right: 5px;
    position: relative;
    width: 25px;
    border: 1px solid #1b7a67;
    background: #1b7a6722;
    color: #1b7a67;
    justify-content: center;
    align-items: center;
}

.trending-offer .right {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 25px;
    width: 228px
}

.trending-offer .right .merchant {
    color: #7f949f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -.3px;
    line-height: 22px;
    margin-top: 15px;
    text-align: right
}

.trending-offer .right .merchant .merchant-name {
    text-decoration: underline
}

@media (max-width:767px) {
    .trending-offer .right {
        align-items: flex-start;
        justify-content: unset;
        padding: 0 25px 15px;
        width: unset
    }

    .trending-offer .right .btn,
    .trending-offer .right .btn-reveal {
        margin: 0 15px 0 0
    }
}

/* Footer */
footer {
    background: #062b51;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #24c783;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0 1rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: .725rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .search-container {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
    }
    
    .coupon-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .coupon-action {
        margin-left: 0;
    }
}
