/* mose.ge — homepage & SEO block styles, additive to main-style.css */

/* ===== Sticky footer: keep the footer pinned to the bottom on short pages ===== */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}

/* ===== Cart icon: show running total next to the item count ===== */
.header-icon a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-total-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

/* ===== Products listing page: breadcrumb, title, category filter ===== */
.section-padding-sm {
    padding-top: 32px;
    padding-bottom: 8px;
}

.section-padding-top-sm {
    padding-top: 24px;
    padding-bottom: 80px;
}

.products-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--tertiary-title);
    margin-bottom: 20px;
}

.products-breadcrumb a {
    color: var(--tertiary-title);
    text-decoration: none;
}

.products-breadcrumb a:hover {
    color: var(--primary-color);
}

.products-count {
    color: var(--tertiary-title);
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 0;
}

.category-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.category-pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid var(--secondary-border);
    color: var(--primary-title);
    font-size: 14px;
    text-decoration: none;
    transition: .3s;
    white-space: nowrap;
}

.category-pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-pill.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* ===== Modern/minimal reskin: lighten fills, let product photos carry the page ===== */
:root {
    --primary-soft-color: #ffffff;
    --primary-soft-color-two: #f7f6f3;
}

.feature-card,
.category-card-two,
.news-card,
.hero-area-bg {
    border: 1px solid var(--secondary-border);
    box-shadow: none;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-title {
    margin-bottom: 32px;
}

.section-title .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-img-card,
.feature-img-card {
    aspect-ratio: 4 / 3;
    background-color: var(--white);
    overflow: hidden;
}

.product-img-card > a,
.feature-img-card > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-img-card img,
.feature-img-card img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: 0 auto;
}

.discount-promo-section {
    background-color: var(--primary-soft-color-two);
}

/* ===== end modern/minimal reskin ===== */

.trust-bar-section {
    padding: 32px 0;
    background-color: var(--primary-soft-color);
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.trust-item i {
    font-size: 30px;
    color: var(--primary-color);
    line-height: 1;
    flex-shrink: 0;
}

.trust-item-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-title);
    margin-bottom: 4px;
}

.trust-item-text p {
    font-size: 13px;
    color: var(--tertiary-title);
    margin-bottom: 0;
    line-height: 1.5;
}

.seo-intro-section {
    padding-top: 30px;
    padding-bottom: 10px;
}

.seo-intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--tertiary-title);
    margin-bottom: 0;
}

.seo-intro-text a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.seo-intro-text a:hover {
    color: var(--secondary-color);
}

.discount-promo-section {
    background-color: var(--primary-soft-color-two);
    border-radius: 24px;
    margin: 0 auto 20px;
}

.view-all-products {
    margin-top: 30px;
}

.category-card-two {
    transition: transform .25s ease, box-shadow .25s ease;
}

.category-card-two:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.product-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

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

.text-content-section .image img {
    border-radius: 20px;
}

.text-content-section .text-content-item {
    background-color: var(--primary-soft-color-two);
    border-radius: 24px;
    padding: 40px;
}

.text-content-section .text-content {
    max-width: 720px;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.text-content-section .outline-pill-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.text-content-section .outline-pill-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.news-img {
    aspect-ratio: 16 / 10;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.borderless-iframe {
    border: 0;
}

.btn-icon-fixed {
    flex-shrink: 0;
}

.newsSwiper-active .swiper-button-next,
.newsSwiper-active .swiper-button-prev {
    background-color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}

.newsSwiper-active .swiper-button-next::after,
.newsSwiper-active .swiper-button-prev::after {
    font-size: 16px;
    color: var(--primary-color);
}

@media (max-width: 767px) {
    .trust-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}

/* ===== Contact page ===== */
.contact-icon {
    background-color: var(--primary-color);
}

.contact-icon.icon-whatsapp {
    background-color: #25D366;
}

.contact-icon.icon-viber {
    background-color: #7360F2;
}

.contact-icon-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-address {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-title);
    margin-bottom: 24px;
}

.contact-address i {
    color: var(--primary-color);
    font-size: 20px;
}

.contact-hero-section .contact-area-item {
    display: flex;
    flex-direction: column;
}

.contact-cta-panel {
    position: relative;
    min-height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--primary-title);
    display: flex;
    align-items: flex-end;
}

.contact-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.contact-cta-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 40px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .1) 100%);
    color: var(--white);
}

.contact-cta-overlay .title {
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-cta-overlay p {
    color: var(--light-white);
    margin-bottom: 24px;
}

.contact-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 30px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.contact-cta-btn.cta-whatsapp {
    background-color: #25D366;
}

.contact-cta-btn.cta-facebook {
    background-color: #1877F2;
}

.contact-cta-btn:hover {
    opacity: .85;
    color: var(--white);
}

/* ===== Product detail page: make the price the visual focal point ===== */
.product-details-content .product-price-section {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: auto;
}

.product-details-content .product-price-section .price-section {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.product-details-content .product-price-section .price-section .price.price-main {
    font-size: 32px !important;
    font-weight: 800;
    color: var(--primary-color);
}

.product-details-content .product-price-section .price-section .price.discounted {
    font-size: 18px !important;
    font-weight: 500;
}

.price-save-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-title);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ===== Related products / related articles carousels ===== */
.related-section .swiper-slide > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: none;
    padding-left: 8px;
    padding-right: 8px;
}

.related-section .swiper-button-next,
.related-section .swiper-button-prev {
    background-color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}

.related-section .swiper-button-next::after,
.related-section .swiper-button-prev::after {
    font-size: 16px;
    color: var(--primary-color);
}

/* ===== Product description: sits inside the same details card, below a divider ===== */
.second-section {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--secondary-border);
}

.product-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--tertiary-title);
}

/* ===== Product trust badges (delivery, quality) ===== */
.product-trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid var(--secondary-border);
    border-bottom: 1px solid var(--secondary-border);
}

.trust-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.trust-badge-item i {
    font-size: 22px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.trust-badge-item strong {
    display: block;
    font-size: 14px;
    color: var(--primary-title);
}

.trust-badge-item span {
    display: block;
    font-size: 12px;
    color: var(--tertiary-title);
    line-height: 1.4;
}

@media (max-width: 575px) {
    .product-trust-badges {
        grid-template-columns: 1fr;
    }
}

.product-desc p {
    margin-bottom: 16px;
}

.product-desc iframe {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    margin: 16px 0 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

.product-desc img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ===== Footer polish ===== */
.footer-title::after {
    width: 44px;
    height: 3px;
}

.footer-contact-list li {
    align-items: flex-start;
}

.footer-social .social-icon:hover {
    transform: translateY(-3px);
}

/* ===== Cart page: order summary card ===== */
.product-summary {
    background: var(--white);
    border: 1.5px solid var(--secondary-border);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
}

.product-summary ul {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.product-summary ul li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--secondary-border);
    font-size: 14px;
    color: var(--tertiary-title);
}

.product-summary ul li:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-title);
}

.product-summary ul li .total {
    color: var(--primary-color);
}

.cart-item-image-title h3 {
    margin-bottom: 10px;
}
