html,
body {
    height: 100%;
}

.header-section {
    width: 100%;
    background-color: #343a40; /* Darker background for header */
    color: #fff;
    padding-top: .5rem;
}
.header-section p {
    margin-bottom: 0.25rem;
}
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-section {
    padding-bottom: 120px;
}

.subscription-section {
    background-color: #6c757d;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.site-footer {
    background-color: #343a40;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.flex-grow-1 {
    flex-grow: 1;
}

.fixed-bottom .footer,
.fixed-bottom .subscription-section {
    background-color: #343a40; /* Dark background for footer */
    color: #fff;
    padding-bottom: 0;
    width: 100%;
}

.fixed-bottom .subscription-section {
    background-color: #6c757d; /* Secondary background color for subscription section */
    color: #fff;
    padding-bottom: 0;
    margin-bottom: 0;
}

.btn-social {
    margin: 0.2rem;
    color: #000;
}

.socialLinks {
    padding: .5rem .5rem;
}

.socialLinks ul,
.socialLinks li {
    margin: 0 !important;
}

.page_link, .page_link:hover {
    color: #fff;
    text-decoration: none;
}

.socialLinks .client-name a {
    color: #000000;
    text-decoration: none;
}

.client-card .card-body {
    padding: 0 !important;
}

.client-card .client-logo,
.client-card .client-images {
    width: 50% !important;
}

.client-group .col-12 {
    padding: 0 5px !important;
}

body > .container-group {
    padding-top: 10px;
}

body > .container-group ~ .container-group {
    padding-top: 0;
}
/* Skeleton loader */
.skeleton {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 56.25%;
    background: #e2e2e2;
    overflow: hidden;
}
.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    height: 100%;
    width: 150px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: skeleton-loading 1.2s infinite;
}
@keyframes skeleton-loading {
    0%   { left: -150px; }
    100% { left: 100%; }
}
.skeleton img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .3s ease;
}
.skeleton img.loaded {
    opacity: 1;
}

.store-actions {
    justify-content: flex-start;
}

.store-actions__coupon {
    min-width: 260px;
    max-width: 320px;
}

.similar-stores .card {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .store-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .store-actions .btn,
    .store-actions__coupon {
        width: 100%;
    }
    .store-actions .btn-primary{
        width: calc(100% - 35px);
        margin-bottom: 15px;
    }
    .store-actions__coupon{
        flex-wrap: nowrap;
    }
    .store-actions .copy-coupon{
        width: 80px;
    }
    .store-search-form button{
        margin-top: 0.75rem;
    }
}
.site-header__buttons{
    gap: 10px;
    margin-bottom: 15px;
}
