/* =========================================================
   AKKUMANIA.HU
   BANNER AKKUMULÁTOR
   CSS5
   ========================================================= */


/* =========================================================
   ALAP
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;

    min-width: 320px;

    background:
        linear-gradient(
            rgba(255,255,255,.25),
            rgba(255,255,255,.25)
        ),
        url("../../background.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: #222;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;
    line-height: 1.5;
}


/* =========================================================
   FEJLÉC
   ========================================================= */

.site-header {
    width: 100%;

    background:
        linear-gradient(
            135deg,
            #111111 0%,
            #292929 50%,
            #111111 100%
        );

    border-bottom: 4px solid #d11523;

    box-shadow:
        0 3px 12px rgba(0,0,0,.30);
}


.header-inner {
    width: 100%;
    max-width: 1200px;

    min-height: 105px;

    margin: 0 auto;
    padding: 18px 24px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* =========================================================
   LOGÓ / MÁRKA
   ========================================================= */

.brand {
    min-width: 0;
}


.brand-name {
    font-family:
        "Arial Black",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 46px;
    font-weight: 900;

    letter-spacing: 2px;
    line-height: 1;

    color: #d11523;

    text-transform: uppercase;

    text-shadow:
        1px 1px 0 #ffffff;
}


.brand-subtitle {
    margin-top: 7px;

    color: #dddddd;

    font-size: 14px;
    font-weight: 500;

    letter-spacing: .4px;
}


/* =========================================================
   TELEFON
   ========================================================= */

.header-contact {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 16px;

    border: 1px solid #555;
    border-radius: 9px;

    background: rgba(255,255,255,.06);

    color: #ffffff;
}


.phone-icon {
    color: #fff200;

    font-size: 26px;

    line-height: 1;
}


.header-contact small {
    display: block;

    margin-bottom: 2px;

    color: #bbbbbb;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.header-contact strong {
    display: block;

    color: #ffffff;

    font-size: 17px;
}


/* =========================================================
   FELSŐ NAVIGÁCIÓ
   ========================================================= */

.top-nav {
    width: 100%;

    background: #d11523;

    border-bottom: 1px solid #990b16;

    box-shadow:
        0 2px 6px rgba(0,0,0,.20);
}


.top-nav-inner {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    align-items: stretch;
    justify-content: center;

    flex-wrap: wrap;
}


.top-nav a {
    display: block;

    padding: 11px 13px;

    color: #ffffff;

    font-size: 13px;
    font-weight: bold;

    text-decoration: none;

    border-right:
        1px solid rgba(0,0,0,.18);

    transition:
        background .15s ease,
        color .15s ease;
}


.top-nav a:first-child {
    border-left:
        1px solid rgba(0,0,0,.18);
}


.top-nav a:hover {
    background: #000000;

    color: #fff200;
}


.top-nav a:active {
    background: #a50e19;

    color: #ffffff;
}


/* =========================================================
   FŐ OLDAL KONTÉNER
   ========================================================= */

.site-container {
    width: 100%;
    max-width: 1200px;

    margin: 20px auto 30px;

    padding: 0 15px;
}


/* =========================================================
   HERO / BANNER
   ========================================================= */

.hero {
    position: relative;

    width: 100%;

    min-height: 230px;

    overflow: hidden;

    border: 2px solid #deb56b;

    border-radius: 13px;

    background: #777777;

    box-shadow:
        0 5px 20px rgba(0,0,0,.25);
}


.hero > img {
    display: block;

    width: 100%;
    height: 250px;

    object-fit: cover;

    object-position: center;

    background: #777777;
}


.hero-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 25px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.90),
            rgba(0,0,0,.55),
            rgba(0,0,0,0)
        );

    color: #ffffff;
}


.hero-text {
    max-width: 650px;
}


.hero-text > span {
    display: inline-block;

    margin-bottom: 5px;

    color: #fff200;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 2px;
}


.hero-text h1 {
    margin: 0;

    color: #ffffff;

    font-size: 30px;

    line-height: 1.2;
}


.hero-text p {
    margin: 6px 0 0;

    color: #eeeeee;

    font-size: 15px;
}


/* =========================================================
   HÁROM OSZLOP
   ========================================================= */

.layout {
    display: grid;

    grid-template-columns:
        220px
        minmax(0,1fr)
        220px;

    gap: 16px;

    margin-top: 18px;

    align-items: stretch;
}


.layout > .sidebar,
.layout > .content {
    align-self: stretch;

    height: 100%;
}


/* =========================================================
   OLDALSÁV
   ========================================================= */

.sidebar {
    display: flex;

    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    border: 1px solid #8f0914;

    border-radius: 11px;

    background: #d11523;

    color: #ffffff;

    box-shadow:
        0 5px 16px rgba(0,0,0,.22);
}


/* =========================================================
   OLDALSÁV FEJLÉC
   ========================================================= */

.sidebar-title {
    flex: 0 0 auto;

    padding: 12px 10px;

    background:
        linear-gradient(
            to bottom,
            #e51b2b,
            #b90d19
        );

    border-bottom:
        2px solid #8d0913;

    color: #ffffff;

    text-align: center;

    font-size: 15px;
    font-weight: bold;

    line-height: 1.3;
}


/* =========================================================
   OLDALSÓ MENÜ
   ========================================================= */

.side-menu {
    width: 100%;

    margin: 0;
    padding: 0;

    background: #d11523;
}


.side-menu a {
    display: flex;

    align-items: center;

    width: 100%;

    min-height: 36px;

    padding: 7px 9px;

    border-bottom:
        1px solid #a90d18;

    color: #ffffff;

    background: #d11523;

    font-family:
        Verdana,
        Arial,
        sans-serif;

    font-size: 12px;
    font-weight: bold;

    line-height: 1.35;

    text-decoration: none;

    transition:
        background .12s ease,
        color .12s ease,
        padding-left .12s ease;
}


.side-menu a:last-child {
    border-bottom: 0;
}


.side-menu a span {
    flex: 0 0 18px;

    color: #fff200;

    font-size: 19px;
    font-weight: bold;

    line-height: 1;

    text-align: center;
}


.side-menu a:hover {
    padding-left: 13px;

    background: #000000;

    color: #fff200;
}


.side-menu a:hover span {
    color: #fff200;
}


.side-menu a:active {
    background: #a30d18;

    color: #ffffff;
}


/* =========================================================
   OLDALSÁV KÁRTYÁK
   ========================================================= */

.sidebar-card {
    margin: 12px;

    padding: 10px;

    border:
        1px solid rgba(255,255,255,.28);

    border-radius: 8px;

    background:
        rgba(0,0,0,.20);

    color: #ffffff;

    text-align: center;
}


/* =========================================================
   KÁRTYA CÍM
   ========================================================= */

.card-title {
    margin-bottom: 8px;

    color: #fff200;

    font-size: 12px;
    font-weight: bold;

    text-transform: uppercase;

    letter-spacing: .7px;
}


/* =========================================================
   VIDEÓ
   ========================================================= */

.sidebar-card video {
    display: block;

    width: 100%;
    max-width: 160px;

    height: auto;

    margin: 0 auto;

    border-radius: 5px;

    background: #000000;
}


/* =========================================================
   KATALÓGUS GOMB
   ========================================================= */

.catalog-button {
    display: block;

    padding: 9px 8px;

    border-radius: 6px;

    background: #000000;

    color: #ffffff;

    font-size: 12px;
    font-weight: bold;

    text-decoration: none;
}


.catalog-button:hover {
    background: #ffffff;

    color: #d11523;
}


/* =========================================================
   KAPCSOLAT
   ========================================================= */

.contact-card a {
    display: block;

    margin-top: 8px;

    padding: 7px;

    border-radius: 5px;

    background: #000000;

    color: #ffffff;

    font-size: 12px;
    font-weight: bold;

    text-decoration: none;
}


.contact-card a:hover {
    background: #ffffff;

    color: #d11523;
}


.contact-phone {
    color: #ffffff;

    font-size: 16px;
    font-weight: bold;
}


/* =========================================================
   ÓRA
   ========================================================= */

.clock-card {
    margin-top: auto;
}


.clock {
    padding: 8px;

    border-radius: 5px;

    background: #000000;

    color: #fff200;

    font-family:
        "Courier New",
        monospace;

    font-size: 18px;
    font-weight: bold;

    letter-spacing: 1px;
}


/* =========================================================
   KÖZÉPSŐ TARTALOM
   ========================================================= */

.content {
    min-width: 0;

    overflow: hidden;

    border: 1px solid #d2d2d2;

    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 5px 16px rgba(0,0,0,.18);
}


/* =========================================================
   MEGLEPETÉS
   ========================================================= */

.announcement {
    padding: 10px;

    border-bottom:
        1px solid #dddddd;

    background: #ffffff;

    text-align: center;
}


.announcement img {
    display: inline-block;

    max-width: 100%;
    height: auto;

    vertical-align: middle;
}


/* =========================================================
   SZEKCIÓ FEJLÉC
   ========================================================= */

.section-heading {
    padding: 15px 18px 12px;

    border-bottom:
        1px solid #dddddd;

    text-align: center;
}


.heading-label {
    display: inline-block;

    margin-bottom: 5px;

    color: #999999;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 1.5px;
}


.section-heading h2 {
    margin: 0;

    color: #d11523;

    font-family:
        Verdana,
        Arial,
        sans-serif;

    font-size: 21px;

    line-height: 1.3;
}


.section-heading p {
    margin: 5px 0 0;

    color: #666666;

    font-size: 13px;
}


/* =========================================================
   SEO BEVEZETŐ
   ========================================================= */

.seo-intro {
    padding: 18px;

    background: #ffffff;

    color: #333333;

    font-family:
        Tahoma,
        Arial,
        sans-serif;

    font-size: 14px;

    line-height: 1.65;

    text-align: justify;
}


.seo-intro p {
    margin: 10px 0 15px;

    padding: 0;
}


/* =========================================================
   TERMÉKEK
   KOMPAKT PIROS ÁRCÍMKÉVEL
   ========================================================= */

.products {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 12px;

    padding: 15px;
}


/* =========================================================
   TERMÉKKÁRTYA
   ========================================================= */

.product {
    position: relative;

    min-width: 0;

    padding: 13px;

    border:
        1px solid #d8d8d8;

    border-radius: 8px;

    background: #ffffff;

    box-shadow:
        0 2px 6px rgba(0,0,0,.07);

    transition:
        transform .15s ease,
        box-shadow .15s ease,
        border-color .15s ease;
}


.product:hover {
    transform: translateY(-1px);

    border-color: #d11523;

    box-shadow:
        0 4px 10px rgba(209,21,35,.16);
}


/* =========================================================
   KIEMELT TERMÉK
   ========================================================= */

.product.featured {
    border:
        2px solid #d11523;

    background: #fffdf5;

    box-shadow:
        0 3px 10px rgba(209,21,35,.14);
}


/* =========================================================
   AJÁNLOTT JELÖLÉS
   ========================================================= */

.product-badge {
    position: absolute;

    top: 7px;
    right: 7px;

    padding: 3px 7px;

    border-radius: 4px;

    background: #d11523;

    color: #ffffff;

    font-size: 9px;
    font-weight: bold;

    letter-spacing: .4px;

    box-shadow:
        0 1px 3px rgba(0,0,0,.15);
}


/* =========================================================
   TERMÉK NÉV
   ========================================================= */

.product-name {
    min-height: 20px;

    padding-right: 65px;

    color: #222222;

    font-size: 14px;
    font-weight: bold;

    line-height: 1.3;
}


.product-name a {
    color: #b30e1c;

    text-decoration: none;
}


.product-name a:hover {
    color: #000000;

    text-decoration: underline;
}


/* =========================================================
   MŰSZAKI ADATOK
   ========================================================= */

.product-spec {
    margin-top: 5px;

    padding-bottom: 8px;

    border-bottom:
        1px solid #e5e5e5;

    color: #555555;

    font-size: 12px;
    font-weight: normal;

    line-height: 1.3;
}


/* =========================================================
   KOMPAKT PIROS ÁRCÍMKE
   ========================================================= */

.price-box {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 38px;

    margin-top: 8px;

    padding: 5px 8px;

    border: 0;

    border-radius: 5px;

    background:
        linear-gradient(
            to right,
            #c40f1e 0%,
            #d11523 50%,
            #c40f1e 100%
        );

    color: #ffffff;

    box-shadow:
        0 2px 5px rgba(209,21,35,.20);

    overflow: hidden;
}


/* =========================================================
   ÁRCÍMKE DEKORÁCIÓ
   ========================================================= */

.price-box::before {
    content: "";

    position: absolute;

    top: -20px;
    left: -30px;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

    pointer-events: none;
}


/* =========================================================
   ÁR TARTALOM
   ========================================================= */

.price {
    position: relative;

    z-index: 1;

    width: 100%;

    text-align: center;
}


/* =========================================================
   AKTUÁLIS ÁR
   ========================================================= */

.termek-ar {
    display: block;

    margin: 0;

    color: #ffffff;

    font-size: 15px;
    font-weight: bold;

    line-height: 1.15;

    text-align: center;

    text-shadow:
        0 1px 1px rgba(0,0,0,.25);
}


/* =========================================================
   JAVASCRIPT ÁR
   ========================================================= */

.price-box .termek-ar {
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}


/* =========================================================
   .PRODUCT-PRICE
   ========================================================= */

.product-price {
    margin-top: 8px;

    padding: 6px 8px;

    border-radius: 5px;

    background: #d11523;

    color: #ffffff;

    font-size: 16px;
    font-weight: bold;

    line-height: 1.2;

    text-align: center;

    box-shadow:
        0 2px 5px rgba(209,21,35,.20);
}


/* =========================================================
   BANNER TÖRTÉNET
   ========================================================= */

.story {
    padding: 18px;

    border-top:
        1px solid #eeeeee;
}


.story-title {
    margin-bottom: 15px;

    color: #d11523;

    font-family:
        Verdana,
        Arial,
        sans-serif;

    font-size: 21px;
    font-weight: bold;

    line-height: 1.3;
}


.story p {
    margin: 10px 0 15px;

    color: #333333;

    font-family:
        Tahoma,
        Arial,
        sans-serif;

    font-size: 14px;

    line-height: 1.65;

    text-align: justify;
}


/* =========================================================
   KIEMELT BOX
   ========================================================= */

.highlight-box {
    margin: 12px 0;

    padding: 9px 11px;

    border-left:
        4px solid #d11523;

    border-radius: 4px;

    background: #ffffcc;

    color: #222222;

    font-family:
        Tahoma,
        Arial,
        sans-serif;

    font-size: 14px;
}


.highlight-box strong {
    color: #222222;
}


/* =========================================================
   ÁRFOLYAM KÉP
   ========================================================= */

.exchange-image {
    display: block;

    width: 380px;
    max-width: 100%;

    height: auto;

    margin: 15px auto;

    border: 0;

    border-radius: 6px;

    box-shadow:
        0 2px 8px rgba(0,0,0,.12);
}


/* =========================================================
   KÖZÉPSŐ LINK
   ========================================================= */

.content a {
    color: #b30e1c;
}


.content a:hover {
    color: #000000;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    width: 100%;

    background: #222222;

    border-top:
        4px solid #d11523;

    color: #ffffff;
}


.footer-inner {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 18px 20px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    font-size: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .header-inner {
        padding: 15px 18px;
    }


    .brand-name {
        font-size: 34px;
    }


    .layout {
        grid-template-columns:
            190px
            minmax(0,1fr)
            190px;

        gap: 12px;
    }


    .side-menu a {
        font-size: 11px;

        padding: 7px;
    }


    .site-container {
        padding: 0 10px;
    }

}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 760px) {

    .header-inner {
        min-height: auto;

        padding: 15px;

        flex-direction: column;

        align-items: flex-start;
    }


    .brand-name {
        font-size: 32px;
    }


    .header-contact {
        width: 100%;
    }


    .top-nav-inner {
        justify-content: flex-start;
    }


    .top-nav a {
        flex: 1 1 auto;

        text-align: center;

        font-size: 12px;
    }


    .site-container {
        margin-top: 12px;

        padding: 0 8px;
    }


    .hero > img {
        height: 210px;
    }


    .hero-overlay {
        padding: 15px;
    }


    .hero-text h1 {
        font-size: 24px;
    }


    .layout {
        grid-template-columns: 1fr;

        gap: 12px;

        align-items: stretch;
    }


    .layout > .sidebar,
    .layout > .content {
        height: auto;

        min-height: 0;
    }


    /* =============================================
       TERMÉKEK MOBILON
       ============================================= */

    .products {
        grid-template-columns: 1fr;

        gap: 10px;

        padding: 12px;
    }


    .product {
        padding: 12px;
    }


    .product-name {
        font-size: 14px;
    }


    .product-spec {
        padding-bottom: 7px;
    }


    .price-box {
        min-height: 36px;

        margin-top: 7px;

        padding: 5px 7px;
    }


    .price-box .termek-ar {
        font-size: 15px;
    }


    .product-price {
        padding: 6px 8px;

        font-size: 15px;
    }


    .footer-inner {
        flex-direction: column;

        text-align: center;
    }

}


/* =========================================================
   KIS MOBIL
   ========================================================= */

@media (max-width: 480px) {

    .brand-name {
        font-size: 27px;

        letter-spacing: 3px;
    }


    .brand-subtitle {
        font-size: 12px;
    }


    .header-contact strong {
        font-size: 15px;
    }


    .top-nav a {
        flex-basis: 50%;

        border-bottom:
            1px solid rgba(0,0,0,.15);
    }


    .hero {
        min-height: 190px;
    }


    .hero > img {
        height: 190px;
    }


    .hero-text h1 {
        font-size: 20px;
    }


    .hero-text p {
        font-size: 13px;
    }


    .section-heading h2 {
        font-size: 18px;
    }


    .story {
        padding: 13px;
    }


    .seo-intro {
        padding: 13px;
    }


    .story-title {
        font-size: 18px;
    }


    /* =============================================
       KIS MOBIL - ÁRCÍMKE
       ============================================= */

    .products {
        padding: 10px;

        gap: 9px;
    }


    .product {
        padding: 11px;
    }


    .product-badge {
        top: 6px;
        right: 6px;

        padding: 3px 6px;
    }


    .price-box {
        min-height: 34px;

        margin-top: 6px;

        padding: 4px 6px;
    }


    .price-box .termek-ar {
        font-size: 14px;
    }

}