body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
    color: #333;
}

.hero,
.shop-header,
.shops-list {
    padding-top: clamp(80px, 10vw, 160px) !important;
}

.section {
    padding: 30px 0;
}

.hero .stat-item {
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-filter .btn {
    padding: 6px 16px;
    font-weight: 500;
}

.category-filter .btn:hover {
    transform: translateY(-2px);
}

/* ================= GLOBAL ================= */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-weight: 700;
}

/* ================= HERO ================= */
.hero-section {
    background: linear-gradient(135deg, #1f4aa8, #2c66d6);
    color: white;
    padding: 150px 0;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title span {
    color: #ffc107;
}

.hero-sub {
    font-size: 18px;
    opacity: 0.9;
}

.hero-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ================= BUTTONS ================= */
.btn-yellow {
    background: #ffc107;
    color: #000;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    border: none;
}

.btn-yellow:hover {
    background: #ffcd39;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
}

/* ================= ATOME STRIP ================= */
.atome-strip {
    background: #ffe082;
    padding: 15px 0;
    font-weight: 500;
}

.price-preview {
    font-size: 14px;
}

/* ================= SERVICE CARDS ================= */
.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

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

.service-card img {
    border-radius: 12px;
    margin-bottom: 15px;
    width: 100%;
}

.service-card h6 {
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    color: #777;
}

/* ================= PAYLATER ================= */
.paylater-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f4aa8, #2c66d6);
    color: white;
}

.paylater-left ul,
.paylater-right ul {
    list-style: none;
    padding: 0;
}

.paylater-left li,
.paylater-right li {
    margin-bottom: 10px;
}

.paylater-right {
    background: #ecc02d;
    color: #000;
    padding: 30px;
    border-radius: 16px;
}

.paylater-left {
    padding: 30px;
}

/* ================= OFFERS ================= */
.offer-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

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

.offer-card img {
    border-radius: 12px;
    margin-bottom: 15px;
    width: 100%;
}

.offer-card h6 {
    font-weight: 600;
}

.offer-card p {
    font-size: 14px;
    color: #777;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .section-padding {
        padding: 50px 0;
    }
}

.text-dark-blue {
    color: #081e4d;
}

.text-yellow {
    color: #ffc107;
}