/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {

    --primary-blue: #062c75;

    --dark-blue: #061d45;

    --medium-blue: #0b4da2;

    --yellow: #ffd500;

    --text: #111827;

    --gray: #6b7280;

    --border: #e5e7eb;

    --white: #ffffff;

}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: #ffffff;

    overflow-x: hidden;

}


a {
    text-decoration: none;

    color: inherit;
}


button,
input,
select {
    font-family: inherit;
}



/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    width: 100%;

    min-height: 38px;

    padding: 0 4%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: #061b42;

    color: #ffffff;

    font-size: 12px;

}


.top-left,
.top-right {

    display: flex;

    align-items: center;

}


.top-left {
    gap: 28px;
}


.top-right {
    gap: 28px;
}


.top-contact {

    display: flex;

    align-items: center;

    gap: 8px;

    white-space: nowrap;

}


.top-contact i,
.delivery-text i {

    font-size: 12px;

}


.delivery-text {

    display: flex;

    align-items: center;

    gap: 8px;

    white-space: nowrap;

}


.social-icons {

    display: flex;

    align-items: center;

    gap: 18px;

}


.social-icons a {

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;

    transition: opacity .2s ease;

}


.social-icons a:hover {
    opacity: .7;
}



/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {

    width: 100%;

    min-height: 105px;

    padding: 0 4%;

    display: flex;

    align-items: center;

    gap: 30px;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

}



/* =========================================================
   LOGO
========================================================= */

.logo {

    width: 260px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    gap: 14px;

}


.logo-symbol {

    width: 62px;

    height: 68px;

    position: relative;

    flex-shrink: 0;

}


.logo-symbol::after {

    content: "";

    position: absolute;

    width: 56px;

    height: 17px;

    left: 1px;

    bottom: 5px;

    border-radius: 50%;

    background: #0d4c9c;

    transform: rotate(-18deg);

}


.logo-symbol span {

    position: absolute;

    bottom: 18px;

    width: 7px;

    display: block;

    border-radius: 2px;

    background: #0b438e;

    z-index: 2;

}


.logo-symbol span:nth-child(1) {

    height: 38px;

    left: 15px;

}


.logo-symbol span:nth-child(2) {

    height: 54px;

    left: 27px;

}


.logo-symbol span:nth-child(3) {

    height: 30px;

    left: 39px;

}


.logo-text {

    display: flex;

    flex-direction: column;

    gap: 2px;

}


.logo-text strong {

    color: #0b3271;

    font-size: 23px;

    line-height: 1;

    letter-spacing: 1px;

}



/* =========================================================
   SEARCH
========================================================= */

.search-area {

    height: 46px;

    flex: 1;

    max-width: 710px;

    display: flex;

    border: 1px solid #dddddd;

    border-radius: 2px;

    overflow: hidden;

}


.search-area input {

    flex: 1;

    min-width: 0;

    height: 100%;

    padding: 0 15px;

    border: 0;

    outline: 0;

    color: #333333;

    font-size: 13px;

}


.search-area input::placeholder {
    color: #777777;
}


.search-area select {

    width: 145px;

    height: 100%;

    padding: 0 10px;

    border: 0;

    border-left: 1px solid #eeeeee;

    outline: 0;

    background: #ffffff;

    color: #222222;

    font-size: 12px;

}


.search-area button {

    width: 54px;

    height: 100%;

    border: 0;

    background: var(--primary-blue);

    color: #ffffff;

    cursor: pointer;

    font-size: 17px;

    transition: background .2s ease;

}


.search-area button:hover {

    background: #041e50;

}



/* =========================================================
   ACCOUNT
========================================================= */

.header-account {

    display: flex;

    align-items: center;

    gap: 11px;

    padding-right: 22px;

    border-right: 1px solid #dddddd;

    white-space: nowrap;

}


.header-account > i {

    font-size: 27px;

    color: #111111;

}


.header-item-text {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.header-item-text strong {

    font-size: 13px;

    font-weight: 600;

}


.header-item-text small {

    font-size: 10px;

    color: #777777;

}



/* =========================================================
   CART
========================================================= */

.header-cart {

    display: flex;

    align-items: center;

    gap: 11px;

    white-space: nowrap;

}


.cart-icon-wrapper {

    position: relative;

}


.cart-icon-wrapper > i {

    font-size: 27px;

    color: #111111;

}


.cart-count {

    position: absolute;

    top: -9px;

    right: -11px;

    width: 18px;

    height: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--primary-blue);

    color: #ffffff;

    font-size: 9px;

    font-weight: 700;

}



/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-button {

    display: none;

    width: 40px;

    height: 40px;

    border: 0;

    background: transparent;

    color: var(--primary-blue);

    font-size: 24px;

    cursor: pointer;

}



/* =========================================================
   NAVIGATION
========================================================= */

.navigation {

    width: 100%;

    height: 59px;

    padding: 0 3%;

    display: flex;

    align-items: center;

    gap: 40px;

    background: #ffffff;

    border-bottom: 1px solid #e5e5e5;

}


.navigation a {

    height: 100%;

    position: relative;

    display: flex;

    align-items: center;

    gap: 8px;

    color: #111111;

    font-size: 12px;

    font-weight: 700;

}


.navigation a i {

    font-size: 8px;

}


.navigation a.active {

    color: var(--primary-blue);

}


.navigation a.active::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 3px;

    background: var(--primary-blue);

}



/* =========================================================
   HERO
========================================================= */

.hero {

    width: 100%;

    min-height: 405px;

    padding-left: 5%;

    display: flex;

    overflow: hidden;

    position: relative;

    background:
        radial-gradient(
            circle at 75% 50%,
            #ffffff 0%,
            #f7f8fa 48%,
            #edf0f4 100%
        );

}


.hero-content {

    width: 55%;

    position: relative;

    z-index: 5;

    padding-top: 25px;

    padding-bottom: 18px;

}


.promotion-label {

    display: inline-block;

    margin-bottom: 9px;

    padding: 5px 14px;

    background: var(--yellow);

    color: #000000;

    font-size: 15px;

    font-weight: 900;

    font-style: italic;

    transform: skewX(-10deg);

}


.hero h1 {

    color: #071d46;

    font-size: clamp(34px, 4vw, 53px);

    line-height: .98;

    letter-spacing: -1.7px;

    font-weight: 900;

}


.hero h1 span {

    color: #0750ae;

}


.yellow-line {

    width: 470px;

    max-width: 85%;

    height: 3px;

    margin: 10px 0 9px;

    background: #e1bd00;

}


.hero-description {

    max-width: 520px;

    color: #222222;

    font-size: 16px;

    line-height: 1.4;

}


.hero-description strong {

    color: #0b3d91;

}



/* =========================================================
   HERO BENEFITS
========================================================= */

.hero-benefits {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 16px;

}


.hero-benefit {

    display: flex;

    align-items: center;

    gap: 9px;

}


.round-icon {

    width: 39px;

    height: 39px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #084495;

    color: #ffffff;

    font-size: 16px;

}


.benefit-text {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.benefit-text strong {

    font-size: 11px;

}


.benefit-text small {

    color: #333333;

    font-size: 9px;

}



/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    gap: 15px;

    margin-top: 16px;

}


.shop-button,
.contact-button {

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

    font-weight: 700;

}


.shop-button {

    min-width: 155px;

    padding: 0 22px;

    gap: 38px;

    background: var(--primary-blue);

    color: #ffffff;

}


.shop-button:hover {

    background: #041e50;

}


.contact-button {

    min-width: 145px;

    padding: 0 22px;

    border: 1px solid var(--primary-blue);

    background: #ffffff;

    color: var(--primary-blue);

}


.contact-button:hover {

    background: #f2f6fc;

}



/* =========================================================
   HERO DISCLAIMER
========================================================= */

.hero-disclaimer {

    margin-top: 8px;

    color: #333333;

    font-size: 9px;

    line-height: 1.45;

}



/* =========================================================
   HERO IMAGE
========================================================= */

.hero-visual {

    width: 45%;

    min-height: 405px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


.iphone-hero-image {

    width: 100%;

    max-width: 650px;

    height: auto;

    display: block;

    object-fit: contain;

}



/* =========================================================
   FEATURES
========================================================= */

.features {

    width: 100%;

    min-height: 105px;

    padding: 17px 5%;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: #ffffff;

    border-bottom: 1px solid #e5e5e5;

}


.feature {

    min-width: 0;

    padding: 5px 30px;

    display: flex;

    align-items: center;

    gap: 17px;

    border-right: 1px solid #e2e2e2;

}


.feature:first-child {

    padding-left: 0;

}


.feature:last-child {

    border-right: none;

}


.feature-icon {

    width: 50px;

    flex-shrink: 0;

    color: #06317d;

    text-align: center;

    font-size: 34px;

}


.feature-content {

    min-width: 0;

}


.feature-content h3 {

    margin-bottom: 6px;

    color: #111111;

    font-size: 11px;

    font-weight: 800;

}


.feature-content p {

    max-width: 170px;

    color: #666666;

    font-size: 9px;

    line-height: 1.4;

}



/* =========================================================
   FEATURED PRODUCTS
========================================================= */

.featured {

    width: 100%;

    padding: 22px 5% 50px;

    background: #ffffff;

}


.section-heading {

    margin-bottom: 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.section-heading h2 {

    color: #111111;

    font-size: 15px;

    font-weight: 800;

}


.view-products {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #063a91;

    font-size: 11px;

    font-weight: 700;

}


.products {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 12px;

}


.product-card {

    min-width: 0;

    min-height: 170px;

    padding: 12px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 4px;

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.product-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .08);

}


.product-image-container {

    width: 100%;

    height: 110px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.cable-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

}


.product-card h3 {

    margin-top: 9px;

    color: #333333;

    font-size: 12px;

    font-weight: 600;

    text-align: center;

}



/* =========================================================
   FOOTER
========================================================= */

footer {

    width: 100%;

    padding: 20px 5%;

    background: #061b42;

    color: #ffffff;

}


.footer-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 12px;

}


.footer-inner strong {

    letter-spacing: .5px;

}



/* =========================================================
   LARGE TABLETS / SMALL LAPTOPS
========================================================= */

@media (max-width: 1200px) {


    .main-header {

        gap: 18px;

        padding-left: 2.5%;

        padding-right: 2.5%;

    }


    .logo {

        width: 215px;

    }


    .logo-text strong {

        font-size: 19px;

    }


    .search-area {

        max-width: 500px;

    }


    .header-account {

        padding-right: 15px;

    }


    .navigation {

        gap: 28px;

    }


    .hero {

        padding-left: 4%;

    }


    .hero-content {

        width: 57%;

    }


    .hero-visual {

        width: 43%;

    }


    .hero h1 {

        font-size: 40px;

    }


    .hero-benefits {

        gap: 15px;

    }


    .feature {

        padding-left: 15px;

        padding-right: 15px;

    }

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {


    .top-bar {

        padding-left: 2%;

        padding-right: 2%;

    }


    .top-left {

        gap: 15px;

    }


    .top-right {

        gap: 15px;

    }


    .main-header {

        min-height: 90px;

    }


    .logo {

        width: 190px;

    }


    .logo-symbol {

        width: 48px;

        height: 55px;

    }


    .logo-text strong {

        font-size: 16px;

    }


    .header-account {

        display: none;

    }


    .search-area {

        max-width: none;

    }


    .navigation {

        gap: 20px;

    }


    .navigation a {

        font-size: 11px;

    }


    .hero {

        min-height: 370px;

    }


    .hero-content {

        width: 57%;

    }


    .hero-visual {

        width: 43%;

        min-height: 370px;

    }


    .hero h1 {

        font-size: 34px;

    }


    .hero-description {

        font-size: 14px;

    }


    .hero-benefits {

        gap: 10px;

    }


    .benefit-text strong {

        font-size: 9px;

    }


    .benefit-text small {

        font-size: 7px;

    }


    .round-icon {

        width: 34px;

        height: 34px;

        font-size: 14px;

    }


    .features {

        padding-left: 3%;

        padding-right: 3%;

    }


    .feature {

        gap: 8px;

    }


    .feature-icon {

        width: 38px;

        font-size: 27px;

    }


    .feature-content h3 {

        font-size: 9px;

    }


    .feature-content p {

        font-size: 8px;

    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {


    /* TOP BAR */

    .top-bar {

        min-height: 35px;

        padding: 7px 15px;

        font-size: 10px;

    }


    .top-left,
    .top-right {

        gap: 10px;

    }


    .delivery-text {

        display: none;

    }


    .social-icons {

        display: none;

    }


    .top-contact {

        gap: 6px;

    }


    /* MAIN HEADER */

    .main-header {

        min-height: 80px;

        padding: 12px 15px;

        flex-wrap: wrap;

        gap: 12px;

    }


    .logo {

        width: auto;

        flex: 1;

    }


    .logo-symbol {

        width: 45px;

        height: 48px;

    }


    .logo-symbol::after {

        width: 42px;

        height: 13px;

        bottom: 4px;

    }


    .logo-symbol span:nth-child(1) {

        height: 28px;

        left: 11px;

        bottom: 16px;

    }


    .logo-symbol span:nth-child(2) {

        height: 39px;

        left: 19px;

        bottom: 16px;

    }


    .logo-symbol span:nth-child(3) {

        height: 24px;

        left: 27px;

        bottom: 16px;

    }


    .logo-text strong {

        font-size: 15px;

        letter-spacing: .4px;

    }


    .mobile-menu-button {

        display: block;

    }


    .header-account,
    .header-cart {

        display: none;

    }


    /* SEARCH */

    .search-area {

        order: 3;

        flex-basis: 100%;

        width: 100%;

        max-width: none;

        height: 42px;

    }


    .search-area input {

        font-size: 12px;

    }


    .search-area select {

        width: 105px;

        font-size: 10px;

    }


    .search-area button {

        width: 45px;

    }


    /* NAVIGATION */

    .navigation {

        display: none;

        height: auto;

        padding: 0;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

    }


    .navigation.mobile-open {

        display: flex;

    }


    .navigation a {

        height: 48px;

        padding: 0 20px;

        border-bottom: 1px solid #eeeeee;

        font-size: 12px;

    }


    .navigation a.active::after {

        display: none;

    }


    /* HERO */

    .hero {

        min-height: auto;

        padding: 30px 20px 0;

        display: flex;

        flex-direction: column;

    }


    .hero-content {

        width: 100%;

        padding-top: 0;

        padding-bottom: 0;

    }


    .promotion-label {

        margin-bottom: 8px;

        padding: 5px 10px;

        font-size: 12px;

    }


    .hero h1 {

        font-size: 33px;

        line-height: 1;

        letter-spacing: -.8px;

    }


    .yellow-line {

        width: 90%;

        max-width: none;

        margin-top: 10px;

    }


    .hero-description {

        max-width: 100%;

        font-size: 14px;

        line-height: 1.45;

    }


    /* BENEFITS */

    .hero-benefits {

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

        margin-top: 17px;

    }


    .hero-benefit {

        gap: 10px;

    }


    .round-icon {

        width: 36px;

        height: 36px;

        font-size: 14px;

    }


    .benefit-text strong {

        font-size: 10px;

    }


    .benefit-text small {

        font-size: 8px;

    }


    /* BUTTONS */

    .hero-buttons {

        width: 100%;

        margin-top: 18px;

    }


    .shop-button,
    .contact-button {

        flex: 1;

        min-width: 0;

        padding-left: 10px;

        padding-right: 10px;

    }


    .shop-button {

        gap: 15px;

    }


    /* DISCLAIMER */

    .hero-disclaimer {

        margin-top: 10px;

        font-size: 8px;

    }


    /* HERO IMAGE */

    .hero-visual {

        width: 100%;

        min-height: auto;

        margin-top: 20px;

        display: flex;

        align-items: center;

        justify-content: center;

    }


    .iphone-hero-image {

        width: 100%;

        max-width: 520px;

        height: auto;

        object-fit: contain;

    }


    /* FEATURES */

    .features {

        grid-template-columns: 1fr 1fr;

        padding: 0;

    }


    .feature {

        min-height: 100px;

        padding: 15px;

        gap: 10px;

        border-right: 1px solid #e5e5e5;

        border-bottom: 1px solid #e5e5e5;

    }


    .feature:nth-child(2) {

        border-right: none;

    }


    .feature:nth-child(3) {

        border-right: 1px solid #e5e5e5;

    }


    .feature:nth-child(4) {

        border-right: none;

    }


    .feature-icon {

        width: 35px;

        font-size: 27px;

    }


    .feature-content h3 {

        font-size: 9px;

        margin-bottom: 5px;

    }


    .feature-content p {

        max-width: 130px;

        font-size: 8px;

    }


    /* FEATURED PRODUCTS */

    .featured {

        padding: 22px 15px 35px;

    }


    .section-heading h2 {

        font-size: 14px;

    }


    .view-products {

        font-size: 9px;

    }


    .products {

        grid-template-columns: 1fr 1fr;

        gap: 10px;

    }


    .product-card {

        min-height: 140px;

        padding: 10px;

    }


    .product-image-container {

        height: 90px;

    }


    .product-card h3 {

        margin-top: 7px;

        font-size: 10px;

    }


    /* FOOTER */

    footer {

        padding: 20px 15px;

    }


    .footer-inner {

        flex-direction: column;

        gap: 7px;

        text-align: center;

        font-size: 10px;

    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .top-contact:first-child span:last-child {

        font-size: 9px;

    }


    .top-contact:nth-child(2) {

        display: none;

    }


    .logo-text strong {

        font-size: 14px;

    }


    .hero {

        padding-left: 15px;

        padding-right: 15px;

    }


    .hero h1 {

        font-size: 29px;

    }


    .hero-description {

        font-size: 13px;

    }


    .hero-buttons {

        gap: 8px;

    }


    .shop-button,
    .contact-button {

        height: 40px;

        font-size: 11px;

    }


    .shop-button {

        gap: 10px;

    }


    .hero-visual {

        margin-top: 15px;

    }


    .iphone-hero-image {

        width: 110%;

        max-width: none;

        margin-left: -5%;

    }


    .features {

        grid-template-columns: 1fr;

    }


    .feature,
    .feature:nth-child(2),
    .feature:nth-child(3),
    .feature:nth-child(4) {

        min-height: 85px;

        padding: 14px 20px;

        border-right: none;

        border-bottom: 1px solid #e5e5e5;

    }


    .feature:last-child {

        border-bottom: none;

    }


    .products {

        grid-template-columns: 1fr 1fr;

    }


    .product-card {

        min-height: 130px;

    }


    .product-image-container {

        height: 80px;

    }


    .product-card h3 {

        font-size: 9px;

    }

}



/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {


    .logo-text strong {

        font-size: 12px;

    }


    .hero h1 {

        font-size: 26px;

    }


    .promotion-label {

        font-size: 10px;

    }


    .hero-description {

        font-size: 12px;

    }


    .shop-button,
    .contact-button {

        font-size: 10px;

    }


    .view-products span {

        display: none;

    }

}