/*
=========================================
BBO Theme Base Styles
=========================================
*/

:root{

    /* Brand Colors */

    --primary:#312E81;
    --secondary:#4F46E5;
    --accent:#F5B400;

    /* Neutrals */

    --white:#ffffff;
    --background:#F9FAFB;

    --heading:#111827;
    --text:#6B7280;
    --border:#E5E7EB;

    /* Layout */

    --container:1280px;

    /* Radius */

    --radius-sm:8px;
    --radius:14px;
    --radius-lg:22px;

    /* Shadow */

    --shadow:
    0 10px 35px rgba(17,24,39,.08);

    /* Transition */

    --transition:.3s ease;

}

/* Reset */

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

    background:var(--background);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

    height:auto;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(100% - 40px,var(--container));

    margin-inline:auto;

}

section{

    padding:80px 0;

}

h1,h2,h3,h4,h5,h6{

    color:var(--heading);

    line-height:1.2;

    font-weight:700;

}

p{

    margin-top:16px;

}

/* Stores Page */

.stores-page {
    padding: 70px 0;
}


.stores-header {
    text-align: center;
    margin-bottom: 45px;
}


.stores-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
}


.stores-header p {
    font-size: 18px;
    color: #6b7280;
}



.stores-grid {
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
}



.store-card {

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;

    padding: 22px;

    text-align: center;

    transition: all .3s ease;

}



.store-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0,0,0,.08);

}



.store-logo {

    width: 80px;
    height: 80px;

    margin: 0 auto 15px;

    display:flex;
    align-items:center;
    justify-content:center;

}



.store-logo img {

    max-width:100%;
    max-height:70px;

    object-fit:contain;

}



.store-card h3 {

    font-size:20px;

    margin:10px 0;

}



.store-rating {

    font-size:14px;

    color:#374151;

    margin-bottom:18px;

}



.store-rating span {

    color:#6b7280;

}



.store-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:170px;

    height:48px;

    padding:0 24px;

    border-radius:10px;

    background:#4F46E5;

    color:#fff;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    transition:all .3s ease;

    box-shadow:0 8px 18px rgba(79,70,229,.20);

}

.store-button:hover{

    background:#4338CA;

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(79,70,229,.28);

}

.store-button:active{

    transform:translateY(0);

}



.store-button:hover {

    opacity:.85;

}



/* Responsive Stores */

@media (max-width:1200px){

    .stores-grid{
        grid-template-columns:repeat(5,1fr);
    }

}

@media (max-width:992px){

    .stores-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .store-card{
        padding:16px;
    }

    .store-logo{
        width:60px;
        height:60px;
        margin:0 auto 10px;
    }

    .store-logo img{
        max-height:50px;
    }

    .store-card h3{
        font-size:16px;
        margin:8px 0;
        line-height:1.3;
    }

    .store-rating{
        font-size:12px;
        margin-bottom:12px;
    }

    .store-button{
        width:100%;
        height:40px;
        padding:0;
        font-size:14px;
    }

}

@media (max-width:768px){

    .stores-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:480px){

    .stores-grid{
        grid-template-columns:1fr;
    }

}

/* ===========================
   Store Search Filter
=========================== */

.store-filters{
    margin:0 0 45px;
}

.store-filters form{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;

}

.store-filters input{

    width:420px;
    max-width:100%;

    height:52px;

    border:1px solid #dbe3ec;

    border-radius:12px;

    padding:0 18px;

    font-size:15px;

    transition:.3s;

    outline:none;

}

.store-filters input:focus{

    border-color:#2563eb;

    box-shadow:0 0 0 4px rgba(37,99,235,.12);

}

.store-filters select{

    width:220px;

    height:52px;

    border:1px solid #dbe3ec;

    border-radius:12px;

    padding:0 15px;

    font-size:15px;

    background:#fff;

    outline:none;

}

.store-filters button{

    height:52px;

    padding:0 30px;

    border:none;

    border-radius:12px;

    background:#4f46e5;

    color:#fff;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.store-filters button:hover{

    background:#1d4ed8;

    transform:translateY(-2px);

}

@media(max-width:768px){

    .store-filters form{

        flex-direction:column;

    }

    .store-filters input,
    .store-filters select,
    .store-filters button{

        width:100%;

    }

    .store-button{

        width:100%;

    }

}


/* Equal Height Store Cards */

.store-card{

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    height:100%;

}

.store-card h3{

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;

    min-height:42px;

    font-size:16px;

    line-height:1.35;

}

.store-rating{

    min-height:36px;

}

.store-button{

    margin-top:auto;

}

/* ===========================
   Single Store
=========================== */

.single-store{

    padding:70px 0;

}

.store-hero{

    display:flex;
    align-items:center;
    gap:30px;

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:16px;

    padding:24px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    margin-bottom:30px;

}

.store-left{

    width:120px;
    flex-shrink:0;

}

.store-left img{

    width:100%;
    height:auto;

    object-fit:contain;

}

.store-right{

    flex:1;

}

.store-right h1{

    font-size:32px;

    margin-bottom:10px;

    line-height:1.2;

}

.store-meta{

    display:flex;
    gap:14px;

    margin-bottom:14px;

    color:#6b7280;

    font-size:14px;

    flex-wrap:wrap;

}

.store-buttons{

    margin-top:25px;

}

.store-content{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:16px;

    padding:24px;

    margin-bottom:30px;

}

@media(max-width:768px){

.store-hero{

flex-direction:column;
text-align:center;

}

.store-meta{

justify-content:center;

}

}

/*======================================
  Store Coupons
======================================*/

.store-coupons{
    margin-top:50px;
}

.store-coupons h2{
    font-size:30px;
    margin-bottom:25px;
}

.coupon-card{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:18px 22px;

    margin-bottom:16px;

    transition:.3s ease;

}

.coupon-card:hover{

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.coupon-left{
    flex:1;
}

.coupon-badges{
    margin-bottom:12px;
}

.coupon-badge{
    display:inline-block;
    padding:6px 12px;
    border-radius:30px;
    margin-right:8px;
    margin-bottom:8px;
    font-size:12px;
    font-weight:700;
}

.verified{
    background:#DCFCE7;
    color:#15803D;
}

.exclusive{
    background:#FEF3C7;
    color:#B45309;
}

.featured{
    background:#DBEAFE;
    color:#1D4ED8;
}

.coupon-left h3{

    font-size:20px;

    margin:8px 0;

    line-height:1.35;

}

.coupon-description{

    color:#6b7280;

    font-size:14px;

    line-height:1.6;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

.coupon-description p{
    margin-top:0;
}

.coupon-right{

    width:190px;

    flex-shrink:0;

    text-align:center;

}

.coupon-code{

    display:flex;

    align-items:center;

    justify-content:center;

    height:48px;

    border:2px dashed #4F46E5;

    border-radius:10px;

    font-size:18px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:10px;

}

.coupon-button{

    display:block;

    width:100%;

    height:48px;

    line-height:48px;

    border-radius:10px;

    background:#4F46E5;

    color:#fff;

    font-size:15px;

    font-weight:600;

    text-align:center;

    transition:.3s;

}

.coupon-button:hover{
    background:#312E81;
}

@media(max-width:768px){

    .coupon-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .coupon-right{
        width:100%;
    }

    .coupon-button{
        width:100%;
    }

}

/*======================================
  Featured Stores
======================================*/

.featured-stores{

    padding:80px 0;

}

.featured-stores-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

    margin-top:40px;

}

.featured-store-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:16px;

    padding:22px;

    text-align:center;

    transition:all .3s ease;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

}

.featured-store-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.featured-store-logo{

    display:flex;

    justify-content:center;

    align-items:center;

    width:90px;

    height:90px;

    margin:0 auto 18px;

}

.featured-store-logo img{

    max-width:100%;

    max-height:75px;

    object-fit:contain;

}

.featured-store-card h3{

    font-size:18px;

    line-height:1.35;

    margin-bottom:10px;

}

.featured-store-rating{

    font-size:14px;

    color:#6b7280;

    margin-bottom:18px;

}

.featured-store-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    height:46px;

    background:#4F46E5;

    color:#fff;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.featured-store-btn:hover{

    background:#312E81;

}

.featured-stores-footer{

    margin-top:40px;

    text-align:center;

}

/* Responsive */

@media(max-width:1200px){

    .featured-stores-grid{

        grid-template-columns:repeat(4,1fr);

    }

}

@media(max-width:992px){

    .featured-stores-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:768px){

    .featured-stores-grid{

        grid-template-columns:repeat(2,1fr);

        gap:18px;

    }

    .featured-store-card{

        padding:18px;

    }

    .featured-store-logo{

        width:70px;

        height:70px;

    }

    .featured-store-logo img{

        max-height:58px;

    }

}

@media(max-width:480px){

    .featured-stores-grid{

        grid-template-columns:1fr;

    }

}

/* ===============================
   Featured Deals Section
================================ */

.featured-deals {
    padding: 80px 0;
    background: #f8fafc;
}


.featured-deals .section-heading {
    text-align:center;
    margin-bottom:45px;
}


.featured-deals .section-heading span {
    color:#2563eb;
    font-weight:600;
    text-transform:uppercase;
    font-size:14px;
}


.featured-deals .section-heading h2 {
    font-size:38px;
    margin:10px 0;
    font-weight:700;
}


.featured-deals .section-heading p {
    color:#64748b;
}



/* Deals Grid */

.deals-grid {

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}


/* =====================================
   Professional Coupon Deals Cards
===================================== */

.featured-deals {
    padding:70px 0;
}


.deals-grid {
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:24px;
}


/* Card */

.deal-card {
    background:#fff;
    border-radius:16px;
    padding:22px;
    border:1px solid #e8edf3;
    transition:all .3s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}


.deal-card:hover {
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}


/* Header */

.deal-header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:18px;
}


/* Logo */

.store-logo {
    width:60px;
    height:60px;
    border-radius:12px;
    background:#f7f8fa;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}


.store-logo img {
    width:100%;
    height:100%;
    object-fit:contain;
    padding:8px;
}


.store-logo span {
    font-size:12px;
    color:#64748b;
}



/* Badge */

.deal-badge {
    background:#dcfce7;
    color:#15803d;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}



/* Title */

.deal-card h3 {

    font-size:18px;
    line-height:1.45;
    margin:0 0 18px;
    min-height:52px;

}



/* Button */

.deal-btn {

    margin-top:auto;
    display:flex;
    align-items:center;
    justify-content:center;

    height:44px;

    background:#2563eb;
    color:white;

    border-radius:10px;

    font-size:15px;
    font-weight:600;

    text-decoration:none;

}



/* Verified */

.verified {

    margin-top:12px;
    text-align:center;

    font-size:13px;
    color:#16a34a;

}



/* =========================
   Large Tablets
========================= */

@media(max-width:1200px){

.deals-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
}

}



/* =========================
   Mobile
========================= */

@media(max-width:767px){

.featured-deals{
    padding:50px 15px;
}


.deals-grid{

    grid-template-columns:1fr;
    gap:18px;

}


.deal-card{

    padding:18px;
    border-radius:14px;

}


.deal-card h3{

    font-size:17px;
    min-height:auto;

}


.store-logo{

    width:55px;
    height:55px;

}


.deal-btn{

    height:42px;

}

}



/* Small Phones */

@media(max-width:380px){

.deal-header{

    flex-direction:column;
    align-items:flex-start;
    gap:12px;

}


.deal-badge{

    align-self:flex-start;

}

}



/* Coupon Code */

.coupon-code {

    background:#f8fafc;
    border:2px dashed #cbd5e1;
    padding:12px;
    text-align:center;
    border-radius:10px;
    font-weight:700;
    color:#2563eb;
    margin-bottom:20px;

}



/* Button */

.deal-btn {

    display:block;
    text-align:center;
    background:#2563eb;
    color:#fff;
    padding:13px 20px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;

}


.deal-btn:hover {

    background:#1d4ed8;
    color:#fff;

}



/* Verified */

.verified {

    text-align:center;
    margin-top:15px;
    font-size:14px;
    color:#16a34a;
    font-weight:600;

}




/* Responsive */

@media(max-width:992px){

.deals-grid{
grid-template-columns:repeat(2,1fr);
}

}


@media(max-width:600px){

.deals-grid{
grid-template-columns:1fr;
}

.featured-deals .section-heading h2{
font-size:30px;
}

}