﻿/* Base stylesheet shared across the site */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p {
    margin: 0;
}

html {
    margin: 0;
    padding: 0;
}

body {
    padding: 0;
    font-family: "Titillium Web", Tahoma, Arial, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #333333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Promo bar (top of page) */
.promotion-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #536ea6;
    color: #fff;
    padding: 5px 0;
}

.promo-first-text {
    font-size: 18px;
    font-weight: 600;
}

.promo-third-text {
    opacity: 0.8;
}

.promo-mobile-combined {
    display: none;
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .promotion-banner {
        flex-direction: column;
        gap: 0;
        padding: 6px 0;
    }

        .promotion-banner span,
        .promo-mobile-combined {
            margin: 0;
            line-height: 1.2;
        }

    .promo-second-text,
    .promo-third-text {
        display: none;
    }

    .promo-mobile-combined {
        display: block;
        text-align: center;
        margin-top: 2px;
    }
}

/* Header layout (desktop + mobile) */
.site-header {
    border-bottom: 3px solid #214781;
}

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

.desktop-header-main {
    display: flex;
    flex-direction: column;
}

.desktop-header-top-section {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 0 6px;
}

.main-logo {
    height: 35px;
    width: auto;
}

.desktop-header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #214781;
    font-size: 16px;
}

    .desktop-header-contact i {
        font-size: 16px;
    }

.phone-number a {
    text-decoration: none;
    color: #214781;
    font-weight: 700;
}

.contact-hours {
    font-size: 12px;
    color: #666;
    margin-left: 6px;
}

.header-button {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    text-decoration: none;
    color: #214781;
    font-weight: 600;
    border-radius: 6px;
}

.desktop-header-top-section .header-button + .header-button {
    margin-left: 0;
}

.header-button i {
    font-size: 18px;
}

.header-button:hover {
    background: #f3f6ff;
    color: #4f76b3;
}

.desktop-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 20px 8px;
    font-size: 16px;
    font-weight: 300;
}



.desktop-navigation-link {
    color: #000;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    padding: 0 22px;
}

    .desktop-navigation-link:first-child {
        padding-left: 0;
    }

    .desktop-navigation-link:last-child {
        padding-right: 0;
    }

    .desktop-navigation-link:hover {
        color: #214781;
        text-decoration: none;
    }

    .desktop-navigation-link:visited {
        color: #000;
    }

    .desktop-navigation-link:hover {
        color: #4f76b3;
    }

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: inline-flex !important;
    }

    .desktop-header-top-section {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 10px 12px;
        gap: 10px;
    }

    .mobile-menu-button {
        display: inline-flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 6px 8px;
        line-height: 1.1;
        white-space: nowrap;
        min-width: 44px;
        min-height: 44px;
    }

        .mobile-menu-button i {
            line-height: 1;
        }

        .mobile-menu-button span {
            font-size: 12px;
            line-height: 1.1;
        }

    .desktop-header-top-section > a:first-child {
        grid-column: 2;
        justify-self: center;
        position: static;
        transform: none;
    }

    .main-logo {
        height: 26px;
    }

    .header-button-basket {
        grid-column: 3;
        justify-self: end;
        margin-left: 0;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        padding: 6px 10px;
        font-size: 12px;
        line-height: 1.1;
    }
}

.mobile-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    font-family: "Titillium Web", Arial, sans-serif;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    border-bottom: 2px solid #4d68a2;
}

.mobile-menu-header-logo img {
    display: block;
    height: 22px;
    width: auto;
    margin-top: 5px;
}

.mobile-menu-close {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 12px;
    text-decoration: none;
    color: #333;
    border-radius: 6px;
    border: 1px solid #d0d0d0;
    background: #f7f7f7;
}

    .mobile-menu-close i {
        font-size: 14px;
    }

.mobile-menu-main {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0 16px;
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
}

    .mobile-menu-items a {
        display: block;
        padding: 14px 16px;
        text-decoration: none;
        color: #1e306e;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #ebedf5;
    }

        .mobile-menu-items a span {
            display: block;
            margin-top: 4px;
            font-size: 13px;
            font-weight: 400;
            color: #666;
        }

        .mobile-menu-items a:hover,
        .mobile-menu-items a:active {
            background-color: #f5f7ff;
        }

.mobile-menu-footer {
    border-top: 2px solid #4d68a2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    margin-top: auto;
    background: #ffffff;
}

.header-mobile-button {
    padding: 10px 4px 8px;
    text-decoration: none;
    color: #1e306e;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ebedf5;
}

    .header-mobile-button:last-child {
        border-right: none;
    }

    .header-mobile-button i {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .header-mobile-button span {
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

.usp-bar {
    background: #f7f7f7;
    color: #555;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
    font-size: 16px;
}

.usp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.usp-icon {
    color: #28a745;
    font-size: 16px;
}

.usp-stars {
    height: 20px;
    margin-top: -2px;
}

.usp-detail {
    color: #333;
}

@media (max-width: 992px) {
    .hide-md {
        display: none;
    }
}

.mobile-usp-bar {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    height: 40px;
    font-size: 14px;
    font-weight: 600;
    color: #1e306e;
    overflow: hidden;
}

.mobile-usp-slide {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

    .mobile-usp-slide.active {
        opacity: 1;
    }

    .mobile-usp-slide img {
        display: block;
    }

@media (max-width: 992px) {
    .usp-container {
        display: none;
    }

    .mobile-usp-bar {
        display: flex;
    }
}

/* Homepage hero section */
.hero-banner {
    position: relative;
    width: 100%;
    height: 435px;
    background-image: url("img/HeroBanner.png");
    background-size: cover;
    background-position: center top;
}

.hero-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.hero-banner-content {
    max-width: 320px;
    text-align: center;
}

    .hero-banner-content h1 {
        font-size: 26px;
        font-weight: 600;
        color: #111;
        line-height: 1.25;
        margin: 0 0 18px;
    }

.hero-banner-button {
    display: inline-block;
    padding: 12px 32px;
    font-size: 18px;
    color: #ffffff;
    background-color: #ff4d00;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

    .hero-banner-button:hover {
        background-color: #e84300;
    }

@media (min-width: 993px) {
    .hero-banner-inner {
        justify-content: flex-start;
    }

    .hero-banner-content {
        max-width: 520px;
        text-align: left;
    }

        .hero-banner-content h1 {
            font-size: 50px;
            line-height: 1.2;
        }

    .hero-banner-button {
        font-size: 22px;
        padding: 14px 38px;
        border: 1.5px solid #ffffff;
    }
}

@media (max-width: 992px) {
    .hero-banner {
        height: 420px;
        background-position: center top;
        display: flex;
        align-items: center;
        background-image: url("img/HeroBannerM.png");
    }

    .hero-banner-inner {
        justify-content: center;
        padding: 0 16px;
    }

    .hero-banner-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        text-align: center;
        max-width: 360px;
        padding: 20px 0;
    }

        .hero-banner-content h1 {
            margin-top: 0;
            font-size: 34px;
            line-height: 1.25;
            font-weight: 700;
        }

            .hero-banner-content h1 span {
                display: block;
            }

    .hero-banner-button {
        font-size: 22px;
        padding: 10px 65px;
        border-radius: 10px;
        margin-top: auto;
        border: 2px solid #ffffff;
    }
}

.homepage-top-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.hpts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.wide-box {
    grid-column: span 2;
}

.hpts-img {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.hpts-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 16px 15px 8px;
    color: #0b3d91;
}

.hpts-box p {
    margin: 0 15px 15px;
    font-size: 16px;
    line-height: 1.4;
    color: #444;
}

.hpts-box a {
    display: block;
    margin: 0 15px;
    text-align: center;
    background: #1e306e;
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

    .hpts-box a::after {
        content: "";
        position: absolute;
        bottom: 3px;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #fff;
        transition: 0.25s ease;
        transform: translateX(-50%);
    }

    .hpts-box a:hover::after {
        width: 60%;
    }

@media (max-width: 992px) {
    .hpts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wide-box {
        grid-column: span 2;
    }

    .hpts-img {
        height: 260px;
    }
}

@media (max-width: 600px) {
    .homepage-top-section {
        margin: 40px 0;
        padding: 0 15px;
    }

    .hpts-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .wide-box {
        grid-column: auto;
    }

    .hpts-box {
        padding-bottom: 16px;
    }

    .hpts-img {
        height: 230px;
    }

    .hpts-box h3 {
        margin: 14px 12px 6px;
    }

    .hpts-box p {
        line-height: 1.55;
        margin: 0 12px 16px;
    }

    .hpts-box a {
        font-size: 15px;
        padding: 9px 0;
        margin: 0 12px 14px;
    }
}

@media (min-width: 993px) {
    .hpts-grid {
        align-items: stretch;
    }

    .hpts-box {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

        .hpts-box a {
            margin: auto 15px 15px;
        }
}

.custom-price-banner {
    background: #f8f9fb;
    padding: 80px 0;
    margin: 100px 0;
}

    .custom-price-banner .text-wrapper {
        text-align: center;
    }

.cpb-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e306e;
}

.cpb-subtitle {
    font-size: 18px;
    margin-top: 10px;
    color: #1e306e;
}

.uk-manufacture-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin: 80px 0;
    display: flex;
    align-items: center;
}

.ums-grid {
    display: grid;
    grid-template-columns: 2fr 0.6fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.ums-image {
    width: 100%;
    min-height: 420px;
    background-image: url("img/ManufacturedInTheUK.png");
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.ums-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 30px;
    margin-left: 10px;
}

.ums-small-title {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

.ums-title {
    font-size: 32px;
    font-weight: 600;
    color: #1e306e;
    margin: 4px 0 20px;
    white-space: nowrap;
}

.ums-line {
    font-size: 16px;
    color: #212529;
    margin-top: 20px;
}

.ums-button {
    margin-top: 30px;
    display: inline-block;
    background: #1e306e;
    color: white;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    align-self: center;
    width: auto;
}

    .ums-button:hover {
        background: #162456;
    }

.ums-footnote {
    margin-top: 20px;
    font-size: 12px;
    color: #6c757d;
}

@media (max-width: 900px) {
    .uk-manufacture-section {
        padding: 60px 0;
        margin: 60px 0;
        display: block;
    }

    .ums-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
        justify-items: center;
    }

    .ums-image {
        min-height: 260px;
    }

    .ums-text {
        margin-left: 0;
        padding: 40px 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .ums-title {
        white-space: normal;
        font-size: 28px;
    }

    .ums-line {
        font-size: 15px;
        line-height: 1.5;
    }
}

.easy-feature-section {
    margin: 140px 0;
    text-align: center;
    padding: 0 20px;
}

.efs-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e306e;
}

.efs-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.efs-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.efs-icon {
    font-size: 50px;
    color: #1e306e;
}

.efs-card-title {
    margin-top: 20px;
    font-weight: 600;
    font-size: 18px;
    color: #1e306e;
}

.efs-card-text {
    margin-top: 15px;
    color: #6c757d;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 992px) {
    .efs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .easy-feature-section {
        margin: 100px 0;
    }

    .efs-icon {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    .easy-feature-section {
        margin: 70px 0;
        padding: 0 15px;
    }

    .efs-title {
        font-size: 26px;
    }

    .efs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }

    .efs-card {
        padding: 25px 20px;
        border-radius: 8px;
    }

    .efs-icon {
        font-size: 38px;
    }

    .efs-card-title {
        font-size: 17px;
        margin-top: 16px;
    }

    .efs-card-text {
        font-size: 14px;
        margin-top: 12px;
        line-height: 1.5;
    }
}

.customer-carousel-section {
    background-color: rgba(252, 248, 255, 1);
    padding: 80px 0;
    position: relative;
    text-align: center;
}

.ccs-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1e306e;
}

.ccs-subheading {
    color: #007bff;
    font-size: 16px;
}

    .ccs-subheading a {
        color: #1e306e;
        text-decoration: none;
    }

.ccs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(40px);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50%;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 10;
    user-select: none;
}

    .ccs-arrow.left {
        left: 10px;
    }

    .ccs-arrow.right {
        right: 10px;
    }

    .ccs-arrow i {
        font-size: 24px;
    }

.ccs-scroller {
    margin-top: 40px;
    overflow: hidden;
}

.ccs-row {
    display: flex;
    gap: 20px;
    width: max-content;
    padding-left: 20px;
}

.ccs-card {
    background: white;
    border-radius: 5px;
    box-shadow: #999 5px 5px 10px;
    overflow: hidden;
    width: 250px;
    margin-top: 10px;
}

    .ccs-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

.ccs-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    color: #4266b2;
}

    .ccs-card-footer i {
        font-size: 24px;
    }

    .ccs-card-footer small {
        display: block;
        color: #6c757d;
    }

.quantity-section {
    margin-top: 140px;
    padding: 80px 20px;
    background-color: #ffffff;
    background-image: radial-gradient(#f2f2f2 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: right top;
}

.quantity-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: stretch;
}

.quantity-content-wrapper {
    background-color: rgba(252, 248, 255, 1);
    border-radius: 14px;
    padding: 40px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-content {
    text-align: center;
}

.quantity-kicker {
    font-weight: 700;
    color: #1e306e;
    margin-bottom: 10px;
}

.quantity-title {
    font-size: 32px;
    font-weight: 600;
    color: #1e306e;
    margin-bottom: 30px;
}

.quantity-text {
    font-size: 16px;
    color: #495057;
    margin-bottom: 30px;
}

.quantity-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    background-color: #1e306e;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-top: 10px;
}

    .quantity-btn:hover {
        background-color: #182556;
        transform: translateY(-1px);
    }

.quantity-image {
    width: 100%;
    min-height: 300px;
    background-image: url("img/QualityDiscounts.png");
    background-size: cover;
    background-position: top right;
    border-radius: 16px;
}

@media (max-width: 900px) {
    .quantity-section {
        margin-top: 100px;
        padding: 60px 16px;
    }

    .quantity-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .quantity-content-wrapper {
        padding: 32px 20px;
    }

    .quantity-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .quantity-text {
        margin-bottom: 24px;
    }

    .quantity-btn {
        margin-top: 16px;
        font-size: 20px;
    }

    .quantity-image {
        min-height: 300px;
        background-image: url("img/QualityDiscountsM.png");
    }
}

.payment-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-top: 140px;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    text-align: center;
}

.payment-icon {
    height: 47px;
    object-fit: contain;
    margin: 0 12px;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

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

.payment-icon-tall {
    padding: 5px 8px;
}

@media (max-width: 768px) {
    .payment-section {
        margin-top: 60px;
        padding: 30px 0;
    }

    .payment-container {
        gap: 14px;
    }

    .payment-icon {
        height: 40px;
        margin: 10px;
    }
}

.delivery-section {
    margin-top: 140px;
    background-color: #fff;
    padding: 80px 20px;
    background-image: radial-gradient(#f2f2f2 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: right top;
    overflow-x: hidden;
}

.delivery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 50px;
    align-items: center;
}

.delivery-image {
    width: 100%;
    min-height: 300px;
    background-image: url("img/FastUK&EuropeDelivery.png");
    background-size: cover;
    background-position: right center;
    border-radius: 12px;
}

.delivery-content {
    text-align: center;
    padding: 40px 24px;
}

.delivery-title {
    color: #1e306e;
    font-size: 32px;
    font-weight: 600;
}

.delivery-text {
    margin-top: 32px;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

.delivery-small {
    display: block;
    font-size: 14px;
    color: #777;
}

.delivery-btn {
    display: inline-block;
    margin-top: 32px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    background-color: #1e306e;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

    .delivery-btn:hover {
        background-color: #182556;
        transform: translateY(-1px);
    }

.delivery-terms {
    display: block;
    margin-top: 18px;
    font-size: 12px;
    color: #999;
}

@media (max-width: 900px) {
    .delivery-section {
        margin-top: 100px;
        padding: 60px 16px;
    }

    .delivery-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .delivery-image {
        min-height: 260px;
        background-position: center right;
    }

    .delivery-content {
        padding: 10px 10px 0;
    }

    .delivery-title {
        font-size: 30px;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .delivery-text {
        margin-top: 24px;
        font-size: 16px;
        line-height: 3;
    }

    .delivery-small {
        line-height: 1;
    }

    .delivery-btn {
        margin-top: 28px;
        padding: 14px 36px;
    }

    .delivery-terms {
        margin-top: 16px;
    }
}

.help-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
    margin-top: 140px;
    text-align: center;
}

.help-title {
    color: #1e306e;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.help-phone {
    font-size: 28px;
    color: #1e306e;
    margin-top: 10px;
}

.help-phone-icon {
    margin-right: 10px;
}

.help-phone-number {
    color: #1e306e;
    text-decoration: none;
}

    .help-phone-number:hover {
        text-decoration: underline;
    }

.help-hours {
    margin-top: 20px;
    font-size: 14px;
    color: #1e306e;
}

.why-frames {
    background-color: #fff;
    margin-top: 140px;
    margin-bottom: 100px;
    padding: 0 20px;
}

.why-frames-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
    gap: 50px;
    align-items: flex-start;
}

.why-frames-main {
    line-height: 1.75;
}

.why-frames-heading {
    margin-top: 0;
    font-size: 32px;
    color: #1e306e;
    font-weight: 700;
}

.heading-secondary {
    margin-top: 40px;
}

.why-frames-text {
    margin-top: 16px;
    font-size: 16px;
    color: #333;
    text-align: justify;
}

    .why-frames-text a {
        color: #1e306e;
        text-decoration: underline;
    }

.why-frames-cta {
    margin-top: 40px;
    background-color: #ffc107;
    padding: 24px;
    border-radius: 4px;
}

    .why-frames-cta h3 {
        margin-top: 0;
        margin-bottom: 8px;
        font-size: 28px;
        font-weight: 600;
    }

    .why-frames-cta p {
        margin: 0;
        font-size: 18px;
    }

.why-frames-cta-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    background-color: #ffffff;
    color: #333;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

    .why-frames-cta-btn i {
        margin-left: 8px;
    }

.why-frames-reviews {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.review {
    user-select: none;
    font-size: 14px;
    color: #444;
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.review-stars {
    width: 100px;
    max-width: 100px;
    height: auto;
    margin-top: 10px;
}

.review-time {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

.review-title {
    margin-top: 10px;
    font-weight: 600;
    font-size: 18px;
}

    .review-title i {
        margin-right: 8px;
    }

.review-text {
    margin-top: 8px;
    font-size: 14px;
    color: #6c757d;
    line-height: 20px;
    max-height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.review-author {
    margin-top: 4px;
    font-style: italic;
    font-weight: 600;
    color: #007bff;
}

.trustpilot-note {
    margin-top: 40px;
    text-align: center;
    background-color: #f8f9fa;
    color: #212529;
    padding: 16px;
    font-size: 14px;
}

.trustpilot-badge {
    margin-top: 16px;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #00b67a;
    color: #fff;
    font-size: 12px;
}

@media (max-width: 900px) {
    .why-frames {
        margin-top: 100px;
        margin-bottom: 80px;
        padding: 0 16px;
    }

    .why-frames-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .why-frames-heading {
        font-size: 30px;
    }

    .heading-secondary {
        margin-top: 32px;
    }

    .why-frames-cta {
        margin-top: 32px;
        padding: 20px 18px 24px;
    }

        .why-frames-cta h3 {
            font-size: 24px;
        }

        .why-frames-cta p {
            font-size: 16px;
        }

    .why-frames-cta-btn {
        width: 100%;
        text-align: center;
    }

    .why-frames-reviews {
        margin-top: 32px;
        text-align: center;
        align-items: center;
    }

    .review,
    .trustpilot-note {
        width: 100%;
        max-width: 420px;
    }
}

/* Footer */
.frames-footer {
    background-color: #4d68a2;
    color: #dfe7ff;
    font-family: "Titillium Web", Tahoma, Arial, sans-serif;
    margin-top: 70px;
}

.frames-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 10px;
}

.frames-footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.frames-footer-col {
    flex: 1 1 160px;
    min-width: 160px;
}

    .frames-footer-col h3 {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        color: #f7fbff;
        margin: 0 0 8px;
    }

    .frames-footer-col a {
        display: block;
        font-size: 14px;
        color: #d5e1ff;
        text-decoration: none;
        margin-bottom: 3px;
    }

        .frames-footer-col a:hover {
            text-decoration: underline;
        }

.footer-hiring {
    margin-top: 16px;
}

.frames-footer-contact .contact-lines {
    font-size: 16px;
    font-weight: 300;
    margin: 4px 0 10px;
}

.frames-footer-contact i {
    width: 26px;
}

.frames-footer-contact a {
    display: inline;
    color: #e4edff;
}

.frames-footer-contact small {
    font-size: 12px;
    color: #c5d3ff;
}

.frames-footer-contact-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
    background-color: #27b66c;
    color: #ffffff;
    text-decoration: none;
    border: none;
    font-weight: 600;
}

    .frames-footer-contact-btn:hover {
        filter: brightness(0.95);
    }

.frames-footer-payments {
    text-align: center;
    padding: 30px 0;
}

    .frames-footer-payments img {
        height: 47px;
        margin: 0 8px 8px;
        vertical-align: middle;
    }

.frames-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.frames-footer-trustpilot {
    height: 34px;
}

.frames-footer-social {
    display: flex;
    gap: 10px;
}

.frames-footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: #ffffff;
    color: #4d68a2;
    font-size: 16px;
    text-decoration: none;
    border-radius: 3px;
}

    .frames-footer-social-btn i {
        font-size: 16px;
    }

    .frames-footer-social-btn:hover {
        filter: brightness(0.96);
    }

@media (max-width: 900px) {
    .frames-footer-bottom {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .frames-footer-social {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .frames-footer-inner {
        padding: 30px 16px 10px;
    }

    .frames-footer-columns {
        gap: 24px;
    }

    .frames-footer-col {
        flex: 1 1 100%;
    }
}

.frames-legal-bar {
    background-color: #333;
    color: #fff;
    font-size: 12px;
    border-top: 1px solid #fff;
    padding: 30px 0;
    position: relative;
    overflow: visible;
    min-height: 80px;
    margin-top: 0;
}

.frames-legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.frames-legal-badge {
    position: absolute;
    top: -60px;
    background: #fff;
    padding: 10px;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.frames-legal-text {
    margin-left: 150px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .frames-legal-bar {
        text-align: center;
        padding-top: 70px;
    }

    .frames-legal-badge {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 10px;
    }

    .frames-legal-text {
        margin-left: 0;
    }
}

.frames-footer-mobile {
    display: none;
}

@media (max-width: 768px) {
    .frames-footer,
    .frames-legal-bar {
        display: none;
    }

    .frames-footer-mobile {
        display: block;
        color: #fff;
        text-align: center;
        font-family: "Titillium Web", Tahoma, Arial, sans-serif;
    }

    .frames-footer-mobile-links {
        background-color: #4d68a2;
        margin-top: 70px;
        padding: 16px;
        font-size: 14px;
    }

        .frames-footer-mobile-links a {
            color: #ffffff;
            text-decoration: none;
        }

            .frames-footer-mobile-links a:hover {
                text-decoration: underline;
            }

        .frames-footer-mobile-links span {
            margin: 0 8px;
        }

    .frames-footer-mobile-payments {
        background-color: #333;
        padding: 20px 10px;
    }

        .frames-footer-mobile-payments img {
            height: 42px;
            margin: 0 4px 8px;
            vertical-align: middle;
        }

    .frames-footer-mobile-legal {
        background-color: #333;
        padding: 16px 20px;
        font-size: 12px;
        line-height: 1.5;
    }

    .frames-footer-mobile-legal-bottom {
        padding-top: 0;
    }
}

@media (min-width: 993px) {
    .desktop-header-top-section {
        display: flex;
        align-items: center;
    }

        .desktop-header-top-section .header-button.desktop-only {
            margin-left: auto;
        }

            .desktop-header-top-section .header-button.desktop-only + .header-button.desktop-only {
                margin-left: 18px;
            }
}

@media (max-width: 1024px) {
    .desktop-header-container {
        padding: 0 12px;
    }

    .desktop-header-top-section {
        display: grid !important;
        grid-template-columns: 108px minmax(0,1fr) 108px;
        grid-template-areas: "menu logo basket";
        align-items: center !important;
        min-height: 70px;
        padding: 10px 0;
        gap: 8px;
        width: 100%;
        box-sizing: border-box;
    }

        .desktop-header-top-section .header-button {
            margin-left: 0 !important;
        }

    .mobile-menu-button {
        grid-area: menu;
        place-self: center start;
        width: auto;
        min-width: 108px;
        min-height: 56px;
        margin: 0 !important;
    }

    .header-button-basket {
        grid-area: basket;
        place-self: center end;
        width: auto;
        min-width: 108px;
        min-height: 56px;
        margin: 0 !important;
        padding: 6px 0 !important;
    }

    .desktop-header-top-section > a[href="index.html"] {
        grid-area: logo;
        place-self: center;
        line-height: 0;
        margin: 0 !important;
        padding: 0 !important;
        min-width: 0;
    }

        .desktop-header-top-section > a[href="index.html"] .main-logo {
            display: block;
            height: 28px;
            width: auto;
        }

    .mobile-menu-button i,
    .header-button-basket i {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .desktop-header-top-section {
        grid-template-columns: 92px minmax(0,1fr) 92px;
        gap: 0;
    }

    .mobile-menu-button {
        padding-right: 10px;
        min-width: 92px;
    }

    .header-button-basket {
        padding-left: 10px;
        min-width: 92px;
    }
}

@media (max-width: 380px) {
    .desktop-header-top-section {
        grid-template-columns: 84px minmax(0,1fr) 84px;
    }

    .mobile-menu-button,
    .header-button-basket {
        min-width: 84px;
        min-height: 54px;
        font-size: 12px;
    }

        .mobile-menu-button i,
        .header-button-basket i {
            font-size: 19px;
        }
}

.basket-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    min-width: 18px;
    height: 18px;
    padding: 0 6px;
    border-radius: 999px;
    background: #19b24b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}
