@import url('https://fonts.cdnfonts.com/css/din-condensed');

:root {
    --primary: #346739;
    --dark: #000200;
    --white: #FFFFFF;
    --light: #f7f7f7;
    --gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DIN Condensed', sans-serif;
    background: #fff;
    overflow-x: hidden;
}

/* ===========================================
   HERO
=========================================== */
.fx_hero {
    width: 100%;
    height: 82vh;
    position: relative;
}

.fx_slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.fx_slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 38% 62%;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
}

.fx_slide.active {
    opacity: 1;
    visibility: visible;
}

.fx_content {
    background: #fff;
    position: relative;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    z-index: 10;
    width: 100%;
    height: 100%;
}

.fx_content>* {
    position: relative;
    z-index: 11;
}

.fx_content::after {
    content: '';
    position: absolute;
    top: 0;
    right: -5vw;
    width: 15vw;
    height: 100%;
    background: #fff;
    transform: skewX(-14deg);
    z-index: 1;
}

.fx_discount {
    color: var(--dark);
    font-size: 1.8vw;
    font-weight: 700;
    margin-bottom: .2vw;
    text-transform: uppercase;
}

.fx_content h1 {
    font-size: 3.5vw;
    font-weight: 300;
    line-height: .9;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1vw;
}

.fx_content p {
    color: var(--gray);
    font-size: 1.2vw;
    line-height: 1.5;
    max-width: 420px;
    margin-bottom: 20px !important;
}

.fx_buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.fx_buttons a {
    text-decoration: none;
    color: var(--dark);
    border: 2px solid var(--dark);
    padding: 12px 40px;
    font-size: 20px;
    letter-spacing: 1px;
    transition: .35s ease;
}

.fx_buttons a:hover,
.fx_buttons a:focus {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.fx_newsletter {
    /* margin-top: auto; */
    background: #fff;
    border-left: 6px solid var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    padding: 20px;
    position:relative;
}

.fx_newsletter h3 {
    font-size: 42px;
    color: var(--dark);
    /*margin-bottom: 5px;*/
}

.fx_newsletter p {
    color: var(--primary);
    font-size: 25px;
    margin-bottom: 10px;
}

.fx_newsletter form {
    display: flex;
    align-items: center;
    margin-top: -10px;
    border-bottom: 2px solid #ccc;
}

.fx_newsletter input {
    flex: 1;
    border: none;
    outline: none;
    background: none;
    padding: 15px 0;
    font-size: 18px;
}

.fx_newsletter button {
    border: none;
    background: none;
    color:var(--primary);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.fx_visual {
    position: relative;
    overflow: visible;
    height: 100vh;
}

.fx_visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position:center top;
}

.fx_diagonal {
    position: absolute;
    top: 0;
    right: 2%;
    width: 8vw;
    height: 100%;
    background: rgba(52, 103, 57, .45);
    transform: skewX(-14deg);
    z-index: 2;
}

.fx_next_preview {
    position: absolute;
    right: -14vw;
    top: 9vw;
    width: 300px;
    height: 100%;
    overflow: hidden;
    z-index: 4;
    transform: skewX(-14deg);
}

.fx_next_preview img {
    width: 100%;
    height: 100%;
}

.fx_tag {
    position: absolute;
    left: -40px;
    bottom: 45%;
    z-index: 15;
}

.fx_tag span {
    display: block;
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(52, 103, 57, .35);
    padding: 22px 80px;
    font-size: 42px;
    font-weight: 700;
    transform: skewX(-15deg);
}

.fx_tag a{
    display:inline-block;
    margin-left:100px;
    margin-top:-15px;
    text-decoration:none;
    background:var(--dark);
    color:var(--white);
    padding:14px 50px;
    font-size:18px;
    transform:skewX(-15deg);
    transition: 0.5s ease-in-out;
}

.fx_tag a:hover,
.fx_tag a:focus {
    transform: scale(1.1);
}

.fx_controls {
    position: absolute;
    right: 70px;
    bottom: -35px;
    display: flex;
    gap: 15px;
    z-index: 30;
}

.fx_controls button {
    width: 80px;
    height: 80px;
    border: none;
    background: var(--white);
    color: var(--primary);
    font-size: 22px;
    cursor: pointer;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.fx_controls button:hover,
.fx_controls button:focus,
.fx_controls button.active-nav {
    background: var(--primary);
    color: var(--white);
}

.fx_dots {
    display: none;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    /*display: flex;*/
    gap: 12px;
    z-index: 20;
}

.fx_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: .3s;
}

.fx_dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ===========================================
   SHARED SECTION HELPERS
=========================================== */
.fx_section {
    padding: 60px 70px;
}

.fx_section_head {
    margin-bottom: 50px;
}

.fx_split_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.fx_kicker {
    display: inline-block;
    color: var(--primary);
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fx_section_head h2,
.fx_split_head h2 {
    font-size: 3.2vw;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 10px !important;
}

.woocommerce-js h2 {
    margin-bottom: 0;
}

.fx_section_head p,
.fx_split_head p {
    color: rgb(0, 0, 0, 0.6);
    font-size: 1.2vw;
    letter-spacing: .1vw;
}

.fx_section_cta {
    text-align: center;
    margin-top: 50px;
}

.fx_outline_btn {
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    color: var(--dark);
    border: 2px solid var(--dark);
    padding: 14px 45px;
    font-size: 18px;
    letter-spacing: 2px;
    transition: .3s ease;
}

.fx_outline_btn:hover,
.fx_outline_btn:focus {
    background: var(--dark);
    color: var(--white);
}

.fx_solid_btn {
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    background: var(--primary);
    padding: 16px 45px;
    font-size: 18px;
    letter-spacing: 2px;
    transition: .3s ease;
}

.fx_solid_btn:hover,
.fx_solid_btn:focus {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: none;
    /*transform: translateY(-3px);*/
}

/* ===========================================
   BRAND STRIP — CONTINUOUS LOGO SLIDER
=========================================== */
.fx_brandstrip {
    width: 100%;
    background: #f4faf5;
    border-top: 1px solid #e7efe8;
    border-bottom: 1px solid #e7efe8;
    overflow: hidden;
    padding: 36px 0;
}

.fx_brandstrip_track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: fx-scroll 28s linear infinite;
}

.fx_brandstrip:hover .fx_brandstrip_track {
    animation-play-state: paused;
}

.fx_brand_item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--dark);
    opacity: .7;
    transition: .3s;
    flex-shrink: 0;
}

.fx_brand_item:hover,
.fx_brand_item:focus {
    opacity: 1;
    color: var(--primary);
}

.fx_brand_item svg {
    width:8rem;
    height:8rem;
    flex-shrink: 0;
}

.fx_brand_item span {
    font-size: 26px;
    letter-spacing: 1px;
    white-space: nowrap;
}

@keyframes fx-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===========================================
   BEST SELLERS
=========================================== */
.fx_bestsellers {
    background: var(--white);
}

.fx_product_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fx_product_card {
    position: relative;
    background: var(--light);
}

.fx_badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    letter-spacing: 1px;
    padding: 6px 14px;
    z-index: 5;
    transform: skewX(-10deg);
}

.fx_product_img {
    position: relative;
    overflow: hidden;
    height: 380px;
}

.fx_product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.fx_product_card:hover .fx_product_img img {
    transform: scale(1.07);
}

.fx_quick_add {
    position: absolute;
    left: 0;
    bottom: -60px;
    width: 100%;
    border: none;
    background: var(--dark);
    color: var(--white);
    padding: 16px 0;
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: .35s ease;
}

.fx_product_card:hover .fx_quick_add {
    bottom: 0;
}

.fx_quick_add:hover,
.fx_quick_add:focus {
    background: var(--primary);
}

.fx_product_info {
    padding: 18px 5px 0;
}

.fx_product_info h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.fx_price span {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    margin-right: 10px;
}

.fx_price s {
    color: #aaa;
    font-size: 15px;
}

/* ===========================================
   SHARED SLIDER NAV
=========================================== */
.fx_slider_nav {
    display: flex;
    gap: 12px;
}

.fx_slider_nav button {
    width: 50px;
    height: 50px;
    border: 2px solid var(--dark);
    background: var(--white);
    color: var(--dark);
    font-size: 16px;
    cursor: pointer;
    transition: .3s;
    flex-shrink: 0;
    padding: 0;
}

.fx_slider_nav button:hover,
.fx_slider_nav button:focus {
    background: var(--dark);
    color: var(--white);
}

/* ===========================================
   WATCH AND BUY
=========================================== */
.fx_watchbuy {
    background: var(--light);
}

.fx_wb_track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.fx_wb_track:active {
    cursor: grabbing;
}

.fx_wb_track::-webkit-scrollbar {
    display: none;
}

/* Desktop: natural card width */
.fx_wb_card {
    flex: 0 0 18.6%;
    scroll-snap-align: start;
}

.fx_wb_media {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: #e7e7e7;
}

.fx_wb_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.fx_wb_card:hover .fx_wb_media img {
    transform: scale(1.08);
}

.fx_wb_play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.85);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--dark);
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    transition: .3s ease;
    padding: 0;
}

.fx_wb_play:hover,
.fx_wb_play:focus {
    background: var(--white);
    color: var(--dark);
}

.fx_wb_card:hover .fx_wb_play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.fx_wb_pin {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(52, 103, 57, .35);
}

.fx_wb_card p {
    margin-top: 16px;
    font-size: 17px;
    color: var(--dark);
}

.fx_wb_card strong {
    display: block;
    color: var(--primary);
    font-size: 17px;
    margin-top: 4px;
}

/* ===========================================
   TOP CATEGORIES — BUTTON WITH SWIPE HOVER
=========================================== */
.fx_categories {
    background: var(--white);
}

.fx_category_row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.fx_category_card {
    position: relative;
    display: block;
    height: 420px;
    overflow: hidden;
    text-decoration: none;
}

.fx_category_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.fx_category_card:hover img {
    transform: scale(1.08);
}

.fx_category_card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 2, 0, .75) 0%, rgba(0, 2, 0, 0) 55%);
}

/* BUTTON with swipe-fill from left */
.fx_category_btn {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 3;
    color: var(--white);
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 12px 22px;
    overflow: hidden;
    cursor: pointer;
    font-family: 'DIN Condensed', sans-serif;
}

.fx_category_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
    transition: width .4s ease;
    z-index: -1;
}

.fx_category_card:hover .fx_category_btn::before {
    width: 100%;
}

/* ===========================================
   PROMO BANNER
=========================================== */
.fx_promo {
    background: var(--dark);
    padding: 90px 70px;
}

.fx_promo_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.fx_eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 16px;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 10px;
}

.fx_promo_text h2 {
    color: var(--white);
    font-size: 4vw;
    font-weight: 300;
    line-height: .95;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fx_promo_text p {
    color: rgb(255, 255, 255, 0.5);
    font-size: 1.2vw;
    letter-spacing: .1vw;
    margin-bottom: 20px !important;
}

.fx_promo_stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*gap: 50px;*/
    margin-bottom: 35px;
}

.fx_promo_stats strong {
    display: block;
    color: var(--primary);
    font-size: 42px;
}

.fx_promo_stats p {
    color: #aaa;
    font-size: 13px;
    letter-spacing: 1px;
}

.fx_promo_visual {
    position: relative;
    height: 420px;
}

.fx_promo_visual::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    z-index: 1;
}

.fx_promo_visual img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

/* ===========================================
   NEW ARRIVALS
=========================================== */
.fx_arrivals_grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 25px;
}

.fx_arrival_card {
    position: relative;
    overflow: hidden;
    height: 480px;
}

.fx_arrival_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.fx_arrival_card:hover img {
    transform: scale(1.06);
}

.fx_arrival_overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(0deg, rgba(0, 2, 0, .8) 10%, rgba(0, 2, 0, 0) 70%);
}

.fx_arrival_overlay span {
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
}

.fx_arrival_overlay h3 {
    color: var(--white);
    font-size: 28px;
    font-weight: 500;
    margin: 8px 0 14px;
}

.fx_arrival_overlay a {
    display: inline-block;
    color: var(--dark);
    background: var(--white);
    text-decoration: none;
    padding: 10px 26px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: .3s;
}

.fx_arrival_overlay a:hover,
.fx_arrival_overlay a:focus {
    background: var(--primary);
    color: var(--white);
}

/* ===========================================
   FEATURES STRIP
=========================================== */
.fx_features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--primary);
    padding: 0 70px;
}

.fx_feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--white);
    padding: 40px 30px;
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.fx_feature:last-child {
    border-right: none;
}

.fx_feature i {
    font-size: 28px;
    flex-shrink: 0;
}

.fx_feature h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.fx_feature p {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
}

/* ===========================================
   ABOUT US
=========================================== */
.fx_about {
    background: var(--light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding-bottom: 100px;
}

.fx_about_visual {
    position: relative;
    height: 480px;
}

.fx_about_img_main {
    width: 85%;
    height: 100%;
    object-fit: cover;
}

.fx_about_img_small {
    position: absolute;
    right: 0;
    bottom: -40px;
    width: 55%;
    height: 65%;
    object-fit: cover;
    border: 8px solid var(--white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.fx_about_text h2 {
    font-size: 3vw;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.05;
    margin: 10px 0 25px;
}

.fx_about_text p {
    color: var(--gray);
    font-size: 18px;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 35px;
}

/* ===========================================
   EXPLORE MORE BLOGS
=========================================== */

.fx_blogs {
    background: var(--white);
}

.fx_blog_track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 0;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.fx_blog_track:active {
    cursor: grabbing;
}

.fx_blog_track::-webkit-scrollbar {
    display: none;
}

/* Desktop: natural card width */
.fx_blog_card {
    flex: 0 0 23.3%;
    scroll-snap-align: start;
    text-decoration: none;
    display: block;
    background: var(--white);
    border: 1px solid #ececec;
    transition: .35s ease;
}

.fx_blog_card:hover,
.fx_blog_card:focus {
    transform: translateY(-6px);
    border: 1.5px solid var(--primary);
    /* box-shadow: 0 25px 50px rgba(0, 0, 0, .08); */
}

.fx_blog_img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.fx_blog_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.fx_blog_card:hover .fx_blog_img img {
    transform: scale(1.07);
}

.fx_blog_date {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: var(--dark);
    color: var(--white);
    font-size: 12px;
    letter-spacing: 1px;
    padding: 7px 14px;
}

.fx_blog_body {
    padding: 24px;
}

.fx_blog_tag {
    color: var(--primary);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
}

.fx_blog_body h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--dark);
    margin: 10px 0 12px;
    line-height: 1.2;
}

.fx_blog_body p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.fx_blog_link {
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fx_blog_card:hover .fx_blog_link {
    color: var(--primary);
}

/* ===========================================
   NEWSLETTER BAND
=========================================== */
.fx_newsband {
    background: var(--light);
    padding: 70px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.fx_newsband_inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.fx_newsband_inner h3 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 8px;
}

.fx_newsband_inner p {
    color: var(--gray);
    font-size: 16px;
}

.fx_newsband_form {
    display: flex;
    flex: 1;
    min-width: 280px;
    max-width: 480px;
}

.fx_newsband_form input {
    flex: 1;
    border: 2px solid var(--dark);
    border-right: none;
    padding: 16px 20px;
    font-size: 16px;
    outline: none;
    font-family: inherit;
    border-radius: 0%;
}

.fx_newsband_form button {
    border: none;
    background: var(--dark);
    color: var(--white);
    padding: 0 30px;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .3s;
    font-family: inherit;
    white-space: nowrap;
    border-radius: 0%;
}

.fx_newsband_form button:hover,
.fx_newsband_form button:focus {
    background: var(--primary);
}

/* ===========================================
   RESPONSIVE — TABLET 992–1199
=========================================== */
@media (max-width: 1199px) {

    /* Hero */
    .fx_content h1 {
        font-size: 60px;
    }

    .fx_discount {
        font-size: 40px;
    }

    .fx_tag span {
        font-size: 28px;
        padding: 16px 50px;
    }

    .fx_next_preview {
        width: 200px;
        right: -120px;
    }

    /* Sections */
    .fx_section_head h2,
    .fx_split_head h2 {
        font-size: 36px;
    }

    .fx_about_text h2 {
        font-size: 36px;
    }

    .fx_promo_text h2 {
        font-size: 44px;
    }

    /* Product grid 2 cols */
    .fx_product_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Category grid 2 cols on tablet */
    .fx_category_row {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Watch & Buy: 3 cards on tablet */
    .fx_wb_card {
        flex: 0 0 calc((100% - 48px) / 3);
    }

    /* Blog: 2 cards on tablet */
    .fx_blog_card {
        flex: 0 0 calc((100% - 28px) / 2);
    }

    /* Arrivals */
    .fx_arrivals_grid {
        grid-template-columns: 1fr 1fr;
    }

    .fx_arrival_card_large {
        grid-column: span 2;
    }

    .fx_feature {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
    }

    .fx_feature:nth-child(4) {
        border-bottom: none;
    }

    /* Promo & About single col */
    .fx_promo_inner {
        grid-template-columns: 1fr;
    }

    .fx_promo_visual {
        order: -1;
        max-height: 320px;
    }

    .fx_about_img_small {
        display: none;
    }

    .fx_about_img_main {
        width: 100%;
    }


    .fx_section_head p, 
    .fx_split_head p,
    .fx_promo_text p {
        font-size: 18px;
    }
}

/* ===========================================
   RESPONSIVE — MOBILE ≤991 (nav + hero)
=========================================== */
@media (max-width: 991px) {

    /* Hero single column */
    .fx_hero {
        height: auto;
        min-height: 100svh;
    }

    .fx_slide {
        position: relative;
        grid-template-columns: 1fr;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        transition: opacity .6s;
    }

    .fx_slide.active {
        opacity: 1;
        visibility: visible;
        height: auto;
        overflow: visible;
    }

    .fx_visual {
        height: 52vw;
        min-height: 240px;
        order: 1;
    }

    .fx_visual img {
        object-fit: cover;
    }

    .fx_content {
        order: 2;
        padding: 36px 24px 60px;
        height: auto;
    }

    .fx_content::after {
        display: none;
    }

    .fx_content h1 {
        font-size: 48px;
    }

    .fx_discount {
        font-size: 30px;
    }

    .fx_content p {
        font-size: 16px;
    }

    .fx_newsletter {
        display: none;
    }

    .fx_next_preview {
        display: none;
    }

    .fx_diagonal {
        display: none;
    }

    .fx_tag {
        left: 16px;
        bottom: 16px;
    }

    .fx_tag span {
        font-size: 18px;
        padding: 10px 20px;
    }

    .fx_tag a {
        margin-left: 30px;
        padding: 8px 16px;
        font-size: 13px;
    }

    .fx_controls {
        right: 50%;
        transform: translateX(50%);
        bottom: 16px;
    }

    .fx_controls button {
        width: 54px;
        height: 54px;
    }

    .fx_dots {
        /* bottom: 16px; */
        display: none;
    }

    /* Section padding */
    .fx_section {
        padding: 60px 24px;
    }

    .fx_section_head h2,
    .fx_split_head h2 {
        font-size: 30px;
    }

    .fx_promo {
        padding: 60px 24px;
    }

    .fx_newsband {
        padding: 50px 24px;
    }

}

/* ===========================================
   RESPONSIVE — MOBILE ≤768 (sections)
=========================================== */
@media (max-width: 768px) {

    /* Product grid 2 cols */
    .fx_product_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .fx_product_img {
        height: 240px;
    }

    /* Categories: 2 cols on mobile too */
    .fx_category_row {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .fx_category_card {
        height: 220px;
    }

    .fx_category_btn {
        font-size: 15px;
        padding: 8px 14px;
        left: 14px;
        bottom: 14px;
    }

    .fx_wb_card {
        flex: 0 0 49%;
    }

    .fx_wb_media {
        height: 280px;
    }

    .fx_blog_card {
        flex: 0 0 48%;
    }

    /* Arrivals single col */
    .fx_arrivals_grid {
        grid-template-columns: 1fr;
    }

    .fx_arrival_card_large {
        grid-column: span 1;
    }

    .fx_arrival_card {
        height: 300px;
    }

    /* Features 2 cols */
    .fx_features {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }

    .fx_feature {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
        padding: 28px 24px;
    }

    .fx_feature:last-child {
        border-bottom: none;
    }

    /* Newsletter */
    .fx_newsband_inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .fx_newsband_form {
        width: 100%;
        max-width: 100%;
    }

    .fx_newsband_form input {
        min-width: 0;
    }

    /* Brand strip */
    .fx_brandstrip {
        padding: 22px 0;
    }

    .fx_brand_item svg {
        width: 6rem;
        height: 6rem;
    }

    .fx_brand_item span {
        font-size: 20px;
    }

    .fx_brandstrip_track {
        gap: 50px;
    }

    /* Promo */
    .fx_promo_text h2 {
        font-size: 34px;
    }

    .fx_promo_stats {
        gap: 30px;
    }

    .fx_promo_stats strong {
        font-size: 32px;
    }

    .fx_promo_visual {
        max-height: 260px;
    }

    /* Slider nav buttons smaller */
    .fx_slider_nav button {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .fx_about {
        gap: 30px;
    }
}

/* ===========================================
   RESPONSIVE — MOBILE ≤480
=========================================== */
@media (max-width: 480px) {
    .fx_logo {
        height: 28px;
    }

    .fx_content h1 {
        font-size: 38px;
    }

    .fx_discount {
        font-size: 22px;
    }

    .fx_buttons {
        flex-direction: column;
    }

    .fx_buttons a {
        text-align: center;
        padding: 12px 20px;
    }

    .fx_product_grid {
        grid-template-columns: 1fr;
    }

    .fx_category_row {
        grid-template-columns: 1fr;
    }

    .fx_category_card {
        height: 200px;
    }

    .fx_split_head {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Watch & Buy: 1 card mobile */
    .fx_wb_card {
        flex: 0 0 100%;
    }

    /* Blog: 1 card mobile */
    .fx_blog_card {
        flex: 0 0 100%;
    }

    /* Features 2 cols */
    .fx_features {
        grid-template-columns: 1fr;
    }

    .fx_feature {
        justify-content: center;
    }

    .fx_about {
        grid-template-columns: 1fr;
    }

    .fx_about_visual {
        height: 350px;
    }
}


.site-content .ast-container{
    max-width:100% !important;
    width:100% !important;
    padding:0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.site-content{
    padding:0 !important;
    margin:0 !important;
}

p {
    margin-bottom: 0% !important;
}
