:root {
    --green:#00CFBA;
    --green-dark:#00B8A5;
    --green-soft:#E8FFFC;
    --text: #07111f;
    --muted: #657386;
    --line: #e6edf5;
    --shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: Poppins, Arial, sans-serif;
    background: #fff;
    color: var(--text);
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
}
.top-bar {
    background: #f8fafc;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
}
.top-bar i {
    color: var(--green);
    margin-right: 6px;
}
.site-header {
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    z-index: 40;
}
.navbar {
    padding: 22px 0;
}
.navbar-brand {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1.6px;
    color: #030712;
}
.navbar-brand span,
.footer-logo span {
    color: var(--green);
}
.header-search {
    width: min(560px, 44vw);
    display: flex;
}
.header-search .form-control {
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 12px 0 0 12px;
    padding: 0 22px;
    background: #fff;
}
.header-search .btn {
    height: 52px;
    width: 58px;
    border-radius: 0 12px 12px 0;
    background: var(--green);
    border-color: var(--green);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-actions a {
    display: flex;
    gap: 9px;
    align-items: center;
    font-weight: 700;
    font-size: 13px;
}
.header-actions i {
    font-size: 27px;
}
.header-actions small {
    display: block;
    color: #111827;
    font-weight: 500;
    font-size: 12px;
}
.cart-link {
    position: relative;
}
.cart-link b {
    position: absolute;
    top: -9px;
    left: 20px;
    width: 19px;
    height: 19px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 10px;
}
.nav-row {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.nav-row ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}
.nav-row a {
    display: block;
    padding: 14px 15px;
    font-size: 14px;
    font-weight: 600;
}
.nav-row i {
    font-size: 11px;
}
.deal-link {
    color: #ef233c !important;
}
.mobile-link {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
}
.hero-white {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 35%, rgba(0, 168, 62, 0.16), transparent 24%),
        linear-gradient(180deg, #fff, #f8fafc);
    padding: 56px 0 42px;
}
.eyebrow {
    display: inline-block;
    background: var(--green);
    color: #fff;
    border-radius: 8px;
    padding: 8px 13px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-white h1 {
    font-size: clamp(44px, 5vw, 76px);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -3px;
    margin: 0;
}
.hero-white h1 span {
    color: var(--green);
}
.hero-white .lead {
    font-size: 18px;
    line-height: 1.7;
    max-width: 540px;
    margin: 18px 0 28px;
    color: #263241;
}
.hero-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
    max-width: 600px;
    margin-bottom: 30px;
}
.hero-icons div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 9px;
    align-items: center;
}
.hero-icons i {
    grid-row: span 2;
    font-size: 25px;
}
.hero-icons strong {
    font-size: 12px;
}
.hero-icons small {
    font-size: 11px;
    color: #334155;
}
.hero-buttons {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.hero-buttons .btn {
    min-width: 180px;
    border-radius: 7px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    padding: 14px 24px;
}
.btn-success {
    background: var(--green);
    border-color: var(--green);
}
.btn-success:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}
.hero-product-stage {
    height: 430px;
    position: relative;
}
.hero-product-stage:before {
    content: "";
    position: absolute;
    left: 3%;
    right: 3%;
    bottom: 75px;
    height: 74px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
    z-index: 0;
}
.hero-product-stage:after {
    content: "";
    position: absolute;
    right: 6%;
    top: 8%;
    width: 360px;
    height: 360px;
    /* border: 3px solid rgba(0, 168, 62, 0.22); */
    border-radius: 50%;
    z-index: 0;
}
.hero-product {
    position: absolute;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 18px 18px rgba(15, 23, 42, 0.18));
}
.hp-1 {
    height: 500px;
    left: 100px;
    bottom: -22px;
}
.hp-2 {
    height: 245px;
    left: 170px;
    bottom: 90px;
}
.hp-3 {
    height: 285px;
    left: 285px;
    bottom: 90px;
}
.hp-4 {
    height: 270px;
    right: 118px;
    bottom: 90px;
}
.hp-5 {
    height: 278px;
    right: 0;
    bottom: 90px;
}
.product-labels {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    text-align: center;
    z-index: 3;
}
.product-labels strong {
    display: block;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 900;
    font-size: 14px;
}
.product-labels span {
    display: block;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
}
.product-labels b {
    display: inline-block;
    margin-top: 6px;
    background: #b7f8ce;
    color: var(--green-dark);
    border-radius: 999px;
    padding: 4px 10px;
    text-transform: uppercase;
    font-size: 10px;
}
.trust-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    transform: translateY(-18px);
    overflow: hidden;
}
.trust-item {
    padding: 20px 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2px 13px;
    align-items: center;
    border-right: 1px solid var(--line);
}
.trust-item:last-child {
    border-right: 0;
}
.trust-item i {
    font-size: 30px;
    grid-row: span 2;
}
.trust-item strong {
    font-size: 13px;
}
.trust-item span {
    font-size: 12px;
    color: var(--muted);
}
.section-block {
    padding: 42px 0;
}
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.section-head h2 {
    font-size: 23px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}
.section-head a {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}
.cat-card {
    /* height: 190px; */
    border-radius: 14px;
    position: relative;
    padding: 18px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.25s;
}
.cat-card:hover {
    transform: translateY(-5px);
}
.cat-card img {
    height: 84px;
    object-fit: contain;
}
.cat-card h3 {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    margin: 6px 0;
}
.cat-card span {
    display: inline-block;
    background: #fff;
    color: #111827;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}
.cat-purple {
    background: linear-gradient(140deg, #d8b4fe, #7e22ce);
}
.cat-green {
    background: linear-gradient(140deg, #bbf7d0, #15803d);
}
.cat-yellow {
    background: linear-gradient(140deg, #fde68a, #b45309);
}
.cat-blue {
    background: linear-gradient(140deg, #bae6fd, #0369a1);
}
.cat-violet {
    background: linear-gradient(140deg, #ddd6fe, #6d28d9);
}
.cat-pink {
    background: linear-gradient(140deg, #fecdd3, #be123c);
}
.product-scroll {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.product-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 15px;
    box-shadow: 0 7px 22px rgba(15, 23, 42, 0.05);
    min-height: 250px;
}
.product-card img {
    height: 106px;
    width: 100%;
    object-fit: contain;
    margin: 12px 0;
}
.product-card h3 {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
    min-height: 34px;
    margin: 0 0 5px;
}
.stars {
    color: #f59e0b;
    font-size: 12px;
}
.product-card strong {
    font-size: 18px;
}
.product-card button {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
}
.tag {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #fff;
    border-radius: 5px;
    padding: 4px 7px;
    font-size: 9px;
    text-transform: uppercase;
}
.tag-orange {
    background: #f59e0b;
}
.tag-green {
    background: #16a34a;
}
.tag-red {
    background: #ef4444;
}
.brand-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 11px;
}
.brand-grid a {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 10px;
    height: 58px;
    display: grid;
    place-items: center;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.04);
}
.flavour-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.flavour-card {
    min-height: 76px;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}
.flavour-card strong {
    display: block;
}
.flavour-card span {
    display: inline-block;
    margin-top: 8px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
}
.fruity {
    background: linear-gradient(135deg, #fee2e2, #fff);
}
.menthol {
    background: linear-gradient(135deg, #dbeafe, #fff);
}
.candy {
    background: linear-gradient(135deg, #fce7f3, #fff);
}
.tropical {
    background: linear-gradient(135deg, #fef3c7, #fff);
}
.sweet {
    background: linear-gradient(135deg, #ffe4e6, #fff);
}
.tobacco {
    background: linear-gradient(135deg, #fed7aa, #fff);
}
.deals-panel {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 16px;
    padding: 30px 50px;
    overflow: hidden;
}
.deals-panel h2 {
    font-size: 39px;
    font-weight: 900;
    margin: 4px 0 0;
}
.deals-panel span {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
}
.deals-panel p {
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 14px;
}
.deals-panel a {
    display: inline-block;
    background: var(--green);
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
}
.mix-match {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #31c464;
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
}
.new-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 13px;
}
.new-grid a {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 15px;
    box-shadow: 0 7px 20px rgba(15, 23, 42, 0.04);
}
.new-grid img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}
.new-grid strong {
    display: block;
    min-height: 38px;
    font-size: 12px;
}
.new-grid span {
    font-weight: 800;
}
.bottom-panels {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 22px;
    margin-bottom: 32px;
}
.reviews-panel,
.newsletter-panel {
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    background: #f5fff8;
    padding: 26px;
}
.reviews-panel {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
}
.review-stars {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 2px;
}
.reviews-panel blockquote {
    font-size: 14px;
    margin: 0;
    line-height: 1.8;
}
.newsletter-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    background: #fff;
}
.newsletter-panel h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 900;
}
.newsletter-panel form {
    display: flex;
    gap: 10px;
}
.newsletter-panel input {
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 14px;
    flex: 1;
}
.newsletter-panel button {
    height: 48px;
    border: 0;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    padding: 0 18px;
}
.gift-box {
    font-size: 86px;
    color: var(--green);
    align-self: center;
}
.footer-white {
    background: #fff;
    border-top: 1px solid var(--line);
}
.footer-trust {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}
.footer-trust span {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3px 10px;
    align-items: center;
}
.footer-trust i {
    font-size: 26px;
    color: var(--green);
    grid-row: span 2;
}
.footer-trust strong {
    font-size: 13px;
}
.footer-trust small {
    color: var(--muted);
    font-size: 12px;
}
.footer-logo {
    font-size: 32px;
    font-weight: 900;
}
.footer-white h4 {
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}
.footer-white a {
    display: block;
    margin: 8px 0;
    color: #334155;
    font-size: 14px;
}
.footer-white p {
    color: #475569;
    font-size: 14px;
}
.copyright {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: #64748b;
}
.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 30px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
    z-index: 50;
}
@media (max-width: 1199px) {
    .hero-product-stage {
        height: 380px;
    }
    .hp-1 {
        height: 245px;
    }
    .hp-2 {
        height: 220px;
        left: 140px;
    }
    .hp-3 {
        height: 250px;
        left: 240px;
    }
    .hp-4 {
        height: 235px;
        right: 100px;
    }
    .hp-5 {
        height: 240px;
    }
    .category-grid,
    .product-scroll {
        grid-template-columns: repeat(3, 1fr);
    }
    .brand-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .flavour-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 991px) {
    .top-bar-inner {
        justify-content: center;
        text-align: center;
    }
    .top-bar-inner span:nth-child(2) {
        display: none;
    }
    .hero-white {
        padding-top: 38px;
    }
    .hero-product-stage {
        height: 450px;
    }
    .hero-product-stage:before {
        bottom: 90px;
    }
    .hp-1 {
        left: 0;
    }
    .hp-2 {
        left: 20%;
    }
    .hp-3 {
        left: 37%;
    }
    .hp-4 {
        right: 17%;
    }
    .hp-5 {
        right: 0;
    }
    .trust-panel {
        grid-template-columns: repeat(2, 1fr);
        transform: none;
        margin-top: 10px;
    }
    .trust-item {
        border-bottom: 1px solid var(--line);
    }
    .product-labels {
        display: none;
    }
    .bottom-panels,
    .deals-panel {
        grid-template-columns: 1fr;
    }
    .mix-match {
        margin: auto;
    }
    .footer-trust {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .hero-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-white h1 {
        letter-spacing: -1.5px;
    }
    .hero-product-stage {
        height: 360px;
    }
    .hp-1 {
        height: 210px;
    }
    .hp-2 {
        height: 185px;
    }
    .hp-3 {
        height: 215px;
    }
    .hp-4 {
        height: 200px;
    }
    .hp-5 {
        height: 205px;
    }
    .section-head {
        display: block;
    }
    .section-head a {
        display: inline-block;
        margin-top: 8px;
    }
    .category-grid,
    .product-scroll,
    .new-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-grid,
    .flavour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-panel {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 575px) {
    .top-bar-inner span:nth-child(3) {
        display: none;
    }
    .navbar {
        padding: 14px 0;
    }
    .navbar-brand {
        font-size: 28px;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .hero-icons {
        gap: 12px;
    }
    .hero-product-stage {
        height: 315px;
        margin-top: 10px;
    }
    .hero-product-stage:after {
        width: 240px;
        height: 240px;
    }
    .hp-1 {
        height: 360px;
        left: 52px;
        bottom:16px;
    }
    .hp-2 {
        height: 155px;
        left: 21%;
    }
    .hp-3 {
        height: 180px;
        left: 38%;
    }
    .hp-4 {
        height: 165px;
        right: 14%;
    }
    .hp-5 {
        height: 170px;
        right: -4px;
    }
    .trust-panel {
        grid-template-columns: 1fr;
    }
    .trust-item {
        border-right: 0;
    }
    .cat-card {
        /* height: 150px; */
    }
    .deals-panel {
        padding: 24px;
    }
    .newsletter-panel {
        grid-template-columns: 1fr;
    }
    .newsletter-panel form {
        display: block;
    }
    .newsletter-panel input,
    .newsletter-panel button {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 10px;
    }
    .gift-box {
        display: none;
    }
    .footer-trust {
        grid-template-columns: 1fr;
    }
}

/*sliders */
.product-slider{
    position:relative;
}

.product-slide-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:16px;
}

.product-card{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:16px;
    padding:16px;
    position:relative;
    transition:.3s;
    box-shadow:0 4px 18px rgba(0,0,0,.04);
}

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

.product-card img{
    width:100%;
    height:140px;
    object-fit:contain;
}

.product-card h3{
    font-size:14px;
    font-weight:600;
    margin-top:10px;
    min-height:42px;
}

.rating{
    color:#FFB400;
    font-size:13px;
}

.price{
    font-size:20px;
    font-weight:700;
    margin-top:6px;
}

.product-card button{
    position:absolute;
    right:15px;
    bottom:15px;
    width:36px;
    height:36px;
    border:none;
    border-radius:8px;
    background:#00CFBA;
    color:#fff;
}

.badge{
    position:absolute;
    top:10px;
    left:10px;
    font-size:10px;
    padding:5px 8px;
    border-radius:5px;
    color:#fff;
}

.badge-orange{
    background:#F59E0B;
}

.badge-green{
    background:#00CFBA;
}

.badge-red{
    background:#EF4444;
}

.slider-btn{
    width:42px;
    height:42px;
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:50%;
    opacity:1;
    top:50%;
    transform:translateY(-50%);
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.slider-btn i{
    color:#111827;
    font-size:22px;
}

.carousel-control-prev{
    left:-20px;
}

.carousel-control-next{
    right:-20px;
}


@media(max-width:1200px){

.product-slide-grid{
    grid-template-columns:repeat(4,1fr);
}

}

@media(max-width:768px){

.product-slide-grid{
    grid-template-columns:repeat(2,1fr);
}

.carousel-control-prev{
    left:-8px;
}

.carousel-control-next{
    right:-8px;
}

}


.badge-new{
    background:#00CFBA;
    color:#fff;
}


.mega-dropdown{
    position:static;
}

.mega-menu{
    width:100%;
    left:0;
    right:0;
    top:100%;
    border:none;
    border-radius:0 0 18px 18px;
    padding:30px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.mega-menu h6{
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    margin-bottom:15px;
    color:#00CFBA;
}

.mega-menu a{
    display:block;
    padding:7px 0;
    color:#334155;
    font-size:14px;
}

.mega-menu a:hover{
    color:#00CFBA;
}

.menu-banner{
    background:#F8FAFC;
    border-radius:14px;
    padding:20px;
    text-align:center;
}

.menu-banner img{
    width:100%;
    max-height:140px;
    object-fit:contain;
}

.menu-banner span{
    font-size:11px;
    font-weight:700;
    color:#00CFBA;
}

.menu-banner h5{
    margin-top:10px;
    font-weight:800;
}

.deal-banner{
    background:linear-gradient(
        135deg,
        #00CFBA,
        #00B8A5
    );

    color:white;
    min-height:160px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.menu-price{
    margin-top:12px;
    font-size:18px;
    font-weight:800;
    color:#00CFBA;
}

.deal-wrapper{
    position:relative;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:0;
}

.deal-card{
    background:#fff;
    min-height:180px;
    border:1px solid #E5E7EB;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:30px;
}

.deal-left h2{
    font-size:56px;
    font-weight:900;
    line-height:1;
}

.deal-left h3{
    font-size:32px;
    font-weight:800;
}

.deal-image{
    width:320px;
}

.deal-image img{
    width:100%;
    display:block;
}

.mix-circle{
    width:100px;
    height:100px;
    background:#00CFBA;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    text-align:center;
    margin:0 -30px;
    z-index:5;
}

.deal-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.deal-arrow.left{
    left:-20px;
}

.deal-arrow.right{
    right:-20px;
}