:root {
    --z-dropdown: 1000;
    --z-overlay: 1100;
    --z-modal: 1200;

    --color-primary: #2D2D2B;
    --color-accent: #CA1717;
    --color-accent-primary: #B40A21;
    --color-bg-light: #FCF8F3;

    --radius-md: 12px;
    --space-md: 16px;
    --space-lg: 24px;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

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

body {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    color: #7B7B7B;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1360px;
    }
}

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

.text--left {
    text-align: left;
}

.text--right {
    text-align: right;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    color: #232324;
    line-height: 1.4;
    font-weight: normal;
}

h1 {
    font-size: clamp(28px, 4vw, 56px);
}

h2 {
    font-size: clamp(24px, 3.5vw, 56px);
}

h3 {
    font-size: clamp(20px, 2.5vw, 40px);
}

h4 {
    font-size: 36px;
}


ul {
    list-style: none;
}

p {
    margin-block-end: 1.5em;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--color-accent-primary);
}

a:focus-visible {
    outline: 1px solid var(--color-accent-primary);
    outline-offset: 1px;
}

button:focus-visible,
input:focus-visible {
    outline: 1px solid var(--color-accent-primary);
    outline-offset: 1px;
}

img {
    height: auto;
    max-width: 100%;
}

@media (hover: hover) {
    a:hover {
        text-decoration: none;
        box-shadow: none;
    }
}

.container--wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
}

/* TOP BAR */
.top-bar {
    background: #e7c56d;
    background: linear-gradient(to right, rgba(246, 208, 111, 1) 0%, rgba(255, 235, 185, 1) 50%, rgba(246, 208, 111, 1) 100%);
    text-align: center;
    padding: 6px 55px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 18px;
}

button {
    touch-action: manipulation;
}

/* HEADER */
.header {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 6px 40px;
    background: #F9F5F0;
}

.search-box {
    flex: 1;
    display: flex;
}

.search-box input {
    flex: 1;
    padding: 8px 0 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-right: none;
    background: #fff;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
}

.search-box button {
    padding: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
}

.filter-bar {
    display: flex;
    gap: 20px;
}

.filter {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter--label {
    display: block;
    font-size: 14px;
    color: #303030;
    margin-bottom: 0;
}

.filter .filter-trigger {
    background: none;
    padding: 8px 14px;
    min-height: 48px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #303030;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.filter .filter-trigger span img,
.filter .dropdown li span img {
    vertical-align: middle;
}

/* DROPDOWN */
.filter .dropdown,
.account--dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    margin-top: 6px;
    box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.25);
    display: none;
    overflow: hidden;
    min-width: 150px;
    z-index: var(--z-dropdown);
}

.filter .dropdown li {
    padding: 10px;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter .dropdown li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filter .dropdown li:hover {
    background: #f0f0f0;
}

/* ACTIVE */
.filter .dropdown.open {
    display: block;
}

/* main-navigation (STICKY + BLUR) */
.main--navigation {
    position: sticky;
    top: 0;
    z-index: var(--z-dropdown);
    backdrop-filter: blur(10px);
    background: var(--color-primary);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    transition: all 0.3s ease;
}

.main--navigation.scrolled {
    background: rgba(31, 31, 31, 0.95);
}

.nav--links {
    display: flex;
    gap: 50px;
    gap: clamp(20px, 4vw, 50px);
    margin: 0 auto;
}

.nav--links a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.nav--links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: white;
    transition: all 0.3s ease;
}

.nav--links a:hover::after {
    width: 100%;
}

/* TOGGLE BUTTON (hidden on desktop) */
.nav-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav--links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #000004;
        flex-direction: column;
        padding: 20px 20px;
        gap: 15px;
        transition: transform 0.3s ease;
        z-index: var(--z-dropdown);
        min-width: calc(100vw - 30px);
        display: none;
    }

    .nav--links.open {
       display: block;
    }
}

.main--cart--sctions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.main--cart--sctions button {
    background: none;
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    min-height: 46px;
    font-weight: 500;
}

.main--cart--sctions .cart--btn {
    position: relative;
}

.main--cart--sctions .cart--btn .cart--count {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 12px;
    background: var(--color-accent);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account--dropdown {
    position: relative;
}

.account--dropdown-menu li a {
    padding: 12px 16px;
    color: #000000;
    font-size: 14px;
    display: block;
    font-weight: 500;
}

.account--dropdown-menu li a:hover,
.account--dropdown-menu li a.dropitem--signout {
    color: var(--color-accent);
}

.account--dropdown-menu {
    display: none;
}

/* OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: var(--z-overlay);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* DRAWERS */
.wishlist--modal-content,
.cart--drawer-content {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: var(--z-modal);
    overflow-y: auto;
    padding: 20px;
}

/* OPEN STATE */
.wishlist--modal-content.open,
.cart--drawer-content.open {
    transform: translateX(0);
}

/* LOCK BODY SCROLL */
body.no-scroll {
    overflow: hidden;
}

.account--dropdown-menu.open,
.wishlist--modal-content.open,
.cart--drawer-content.open {
    display: block;
}

/* HERO */
.home--hero {
    position: relative;
    overflow: hidden;
    background: #F6F3EE;
}

.hero--slides {
    display: flex;
    transition: transform 0.6s ease;
    min-height: 710px;
}

.hero--single-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    padding-left: 110px;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.home--hero-text {
    flex: 1 1;
    max-width: 760px;
}

.hero--single-slide img {
    object-fit: contain;
    position: absolute;
    right: 0;
    height: 100%;
    bottom: 0;
}

.home--hero h1 {
    font-size: 56px;
    color: #262626;
    margin-bottom: 0;
}

.home--hero p {
    font-size: 24px;
    color: #8A8A8A;
    margin-bottom: 40px;
}

.hero--btn {
    padding: 18px 22px;
    background: var(--color-primary);
    color: white;
    font-size: 18px;
    font-weight: 500;
    border-radius: 11px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero--btn:hover {
    transform: translateY(-3px);
    background: #262626;
}


/* ARROWS */
.home--hero .arrow,
.slider--pagination button,
.makers--carousel .controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.home--hero .left,
.slider--pagination .btn-left,
.makers--carousel .controls .btn-left {
    left: 20px;
    background: rgba(255, 255, 255, .05) url(../images/icons/chev-left.svg) no-repeat center;
    background-size: 12px;
}

.home--hero .right,
.slider--pagination .btn-right,
.makers--carousel .controls .btn-right {
    right: 20px;
    background: rgba(255, 255, 255, .05) url(../images/icons/chev-right.svg) no-repeat center;
    background-size: 12px;
}

.home--hero .left:hover,
.slider--pagination .btn-left:hover {
    background-color: #F6F3EE;
}

.home--hero .right:hover,
.slider--pagination .btn-right:hover {
    background-color: #F6F3EE;
}

/* DOTS */
.home--hero .dots {
    text-align: center;
    margin: 10px 0;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.home--hero .dot {
    height: 12px;
    width: 20px;
    background: #E3E3E3;
    display: inline-block;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 4px;
    cursor: pointer;
}

.home--hero .dot.active {
    width: 42px;
    background: var(--color-primary);
}

/* PRODUCT GRID */
.product--slider {
    padding: 40px 0 80px;
    overflow: hidden;
}

.title--wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider--pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.slider--pagination button {
    position: relative;
    top: auto;
    transform: none;
}

.slider--pagination .btn-left {
    left: auto;
}

.slider--pagination .btn-right {
    right: auto;
}

.product--slider .title--wrap {
    margin-bottom: 40px;
}

ul.product--tags {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 0 0 40px 0;
}

ul.product--tags li {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    border-radius: 10px;
    padding: 18px 22px;
    cursor: pointer;
    position: relative;
}

ul.product--tags .divider {
    background: rgba(0, 0, 0, 0.16);
    width: 1px;
    height: 21px;
    display: inline-block;
}

ul.product--tags .active--tag,
ul.product--tags li:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.product--grid--slider,
.blog--grid--slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.product--card {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    border: 1px solid #2D190112;
    padding: 16px 12px;
    position: relative;
    overflow: hidden;
    flex: 0 0 calc(20% - 16px);
}

.product--card:hover {
    border: 1px solid #2D1901;
}

@media (max-width: 1024px) {
    .product--card {
        flex: 0 0 calc(25% - 15px);
    }
}

@media (max-width: 600px) {
    .product--card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .product--card {
        flex: 0 0 100%;
    }
}

.product--card .sales--badge {
    position: absolute;
    right: 0;
    top: 0;
    background: var(--color-accent-primary);
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    border-radius: 2px;
    width: 48px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}

.product--image img {
    display: block;
    margin: auto;
}

.product--notes {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 15px 0 12px 0;
    gap: 16px;
}

.product--notes .note--stack {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #7B7B7B;
    font-size: 12px;
}

.note--stack .note--number {
    background: #2D2D2B10;
    border-radius: 100px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B7B7B;
    font-size: 14px;
    font-weight: 500;
}

.product--card h4 {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #222222;
}

.product--card h4 a {
    color: #222222;
}

.product--card h4 a:hover {
    color: var(--color-accent);
}

.product--card h4 .product--region {
    font-size: 12px;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: "Nunito Sans", sans-serif;
}

.product--card p {
    font-size: 12px;
    color: #7B7B7B;
}

.product--price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product--card:hover .product--price {
    opacity: 0;
}

.product--price .del--price {
    color: #8A8A8A;
    font-size: 20px;
}

.product--price .regular--price {
    color: #262626;
    font-size: 24px;
    font-weight: 700;
}

.product--price .regular--price ins {
    text-decoration: none;
}

.add--to--cart {
    display: flex;
    align-items: center;
    opacity: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background: var(--color-bg-light);
    padding: 16px;
    gap: 12px;
}

.product--card:hover .add--to--cart,
.product--card:focus-within .add--to--cart,
.product--card.active .add--to--cart {
    opacity: 1;
}

.quantity {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    flex: 1 1;
}

.quantity button {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    font-size: 22px;
    width: 55px;
    height: 55px;
    text-align: center;
    transition: background-color 0.2s;
}

.quantity button:hover {
    color: rgba(0, 0, 0, 1);
}

.input-box {
    width: 40px;
    text-align: center;
    border: none;
    padding: 8px 10px;
    font-size: 24px;
    outline: none;
    background: none;
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
    flex: 1 1;
}

/* Hide the number input spin buttons */
.input-box::-webkit-inner-spin-button,
.input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-box[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield
}

.add--cart--btn {
    background: var(--color-primary);
    color: #ffffff;
    padding: 18px 22px;
    border: 0;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    flex: 1 1;
    cursor: pointer;
}

.add--cart--btn:hover,
.add--cart--btn:focus {
    background: var(--color-accent);
}

/* RESPONSIVE */
@media(max-width:900px) {
    .slide {
        flex-direction: column;
        text-align: center;
    }
}

.features--cards {
    background: var(--color-primary);
    padding: 72px 0;
    text-align: center;
}

.features--cards .title--wrap {
    margin-bottom: 0;
}

.features--cards h2 {
    color: #ffffff;
    margin-bottom: 40px;
}

.features--cards .features--grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

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

@media (max-width: 600px) {
    .features--cards .features--grid {
        grid-template-columns: 1fr;
    }
}

.features--grid .feature-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
    border-radius: var(--radius-md);
    border: 1px solid #72727210;
    background: #FCF8F308;
    padding: 30px 15px;
}

.feature--icon {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    width: 72px;
    height: 72px;
    display: inline-flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    font-family: "Nunito Sans", sans-serif;
    line-height: 25px;
}

.feature-icon-box p {
    font-size: 12px;
    color: #D6D6D6;
    line-height: 16px;
    margin: 0;
}

.week--cards {
    padding: 40px 0;
    background: #F7F1E8;
}

.week--cards h2 {
    font-size: 40px;
    margin: 40px 0 0;
}

.week--cards h2 a {
    color: #1A1A1A;
}

.week--cards .type--highlight {
    background: #EADCCC;
    border-radius: 16px;
    padding: 18px 36px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
    color: #1A1A1A;
    font-weight: 700;
    font-size: 36px;
}

.flex--wrapper {
    display: flex;
    gap: clamp(20px, 4vw, 200px);
    align-items: center;
    justify-content: space-between;
}

.col-50 {
    flex: 1 1;
}

.wine--maker {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 16px;
}

.small--box {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.small--box h4 {
    font-size: 20px;
    font-weight: 600;
    color: #231F20;
    font-family: "Playfair Display", serif;
    text-transform: uppercase;
}

.week--product {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 40px 80px;
    text-align: center;
    border: 1px solid #2D2D2B10;
}

.week--product h4 {
    color: #231F20;
    font-size: 20px;
    font-family: "Nunito Sans", sans-serif;
}

.week--product h4 small {
    display: block;
    color: #777470;
    font-size: 12px;
}

.p--xlarge {
    padding: 0 160px;
}


.hidden--content {
    overflow: hidden;
}

.blog--grid--slider {
    margin-bottom: 40px;
}

.blog--card {
    background: none;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 0;
    position: relative;
    overflow: hidden;
    flex: 0 0 calc(25% - 16px);
}

.blog--card:hover {
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1);
}

.blog--card img.blog--thumbnail {
    width: 100%;
}

.blog--card h3 {
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    font-family: "Nunito Sans", sans-serif;
    padding: 16px;
    padding-top: 0;
}

.blog--card .blog--meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    padding: 16px;
}

.blog--meta .blog--date {
    font-size: 12px;
    color: #ffffff;
}

.blog--meta .blog--cat {
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 4px 16px;
}

.blog--main a.btn-view-all {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    padding: var(--space-md) var(--space-lg);
    padding-right: 54px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, .1);
    line-height: 22px;
    background-image: url('../images/icons/long--arrow.svg');
    background-position: center right 18px;
    background-repeat: no-repeat;
    background-size: 16px;
}

.blog--main a.btn-view-all:hover {
    color: #ffffff;
    background-color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.blog--main .slider--pagination .btn-right {
    background-color: rgba(255, 255, 255, 1);
}

.pbottom--0 {
    padding-bottom: 0;
}

.makers--carousel .slider {
    position: relative;
    overflow: hidden;
}

.makers--carousel .slides {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.makers--carousel .slide {
    display: flex;
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
}

.makers--carousel .content {
    width: 50%;
    padding: 60px;
    text-align: left;
}

.makers--carousel .content small {
    letter-spacing: 2px;
    color: var(--color-primary);
    font-size: 16px;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
}

.makers--carousel .content h2 {
    font-size: 40px;
    margin: 20px 0;
    font-weight: 500;
    color: #1A1A1A;
}

.makers--carousel .content p {
    color: #494949;
    line-height: 1.6;
    font-size: 20px;
}

.makers--carousel .content .btn--shop {
    margin-top: 20px;
    padding: 16px 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--color-primary);
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
}

.makers--carousel .content .btn--shop:hover {
    background: var(--color-accent);
    color: #fff;
}

.makers--carousel .image {
    width: 50%;
    height: 100%;
}

.image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.makers--carousel .controls {
    position: absolute;
    bottom: 120px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.makers--carousel .controls button {
    position: relative;
}

.makers--carousel .controls .btn-left,
.makers--carousel .controls .btn-right {
    left: auto;
    right: auto;
}

.makers--carousel .dots {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 40px;
}

.makers--carousel .dot {
    width: 20px;
    height: 10px;
    background: #E3E3E3;
    margin: 5px;
    display: inline-block;
    border-radius: 20px;
    cursor: pointer;
}

.makers--carousel .dot.active {
    background: var(--color-primary);
    border: 1px solid #BFBFBE;
    width: 42px;
}

/* MOBILE */
@media (max-width: 768px) {
    .makers--carousel .slide {
        flex-direction: column;
    }

    .makers--carousel .content,
    .makers--carousel .image {
        width: 100%;
        height: auto;
    }

    .makers--carousel .content {
        padding: 16px;
        padding-bottom: 40px;
        order: 1;
    }
}

.faq--main {
    background: #FAF7F2;
}

.faq--main .container--wrapper {
    padding: 0;
}

.faq--main .flex--wrapper {
    align-items: normal;
}

.faq--main .image-section {
    flex: 1;
    overflow: hidden;
    max-width: 55%;
}

.faq--main .image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq--main .content-section {
    flex: 1;
    display: flex;
    max-width: 40%;
    padding: 0 clamp(20px, 5vw, 80px);
    flex-direction: column;
    justify-content: center;
}

.faq--main .subtitle {
    color: #C3841E;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.faq--main h2 {
    font-size: 40px;
    color: #232323;
    margin-bottom: 40px;
}

.faq--main .accordion-item {
    border-bottom: 1px solid #756F6C30;
}

.faq--main .accordion-header {
    width: 100%;
    text-align: left;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 500;
    color: #23232380;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Icon styling */
.faq--main .accordion-header .icon {
    display: inline-block;
    font-size: 18px;
    transition: scale 0.3s ease;
    background: url('../images/icons/angle-down.svg') no-repeat top 10px center;
    background-size: 100%;
    width: 15px;
    height: 20px;
}

/* Rotate when active */
.faq--main .accordion-item.active .icon {
    transform: scale(-1);
}

.faq--main .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq--main .accordion-content p {
    padding: 10px 0 20px;
    color: #666;
    line-height: 1.6;
}

.faq--main .accordion-item.active .accordion-content {
    opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .faq--main .content-section {
        padding: 0px 16px 24px;
    }
}

.main--cta {
    padding: 40px 50px;
}

.main--cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main--cta p {
    font-size: 20px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .6);
}

.subscribe .form--input {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 5px 5px 5px 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
}

.subscribe .form--input input {
    flex: 1 1;
    border: 0;
    background: none;
    padding: 20px 0;
    font-size: 20px;
}

.subscribe .form--input input:focus,
.subscribe .form--input input:focus-visible {
    box-shadow: none;
    outline: 0;
}

.subscribe .btn--submit {
    background: var(--color-primary);
    color: #ffffff;
    padding: 16px 22px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    border: 0;
}

.subscribe .btn--submit:hover {
    background: var(--color-accent);
}

.subscribe label.checkbox {
    font-size: 20px;
    color: rgba(255, 255, 255, .72);
    display: flex;
    align-items: center;
    gap: 12px;
}

.subscribe label.checkbox input {
    width: 24px;
    height: 24px;
    margin: 0;
    border-radius: 6px;
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    cursor: pointer;
}

.subscribe label.checkbox input:checked {
    background-color: #ffffff;
    border-color: #ffffff;
}

.subscribe label.checkbox input:checked::after {
    content: "";
    display: block;
    width: 6px;
    height: 12px;
    border: solid #2D2D2B;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin: 3px auto;
}

.footer {
    background: #F7F1E8;
    padding: 40px 0 20px;
    color: #333;
}

.footer-top {
    display: flex;
    gap: 60px;
}

.footer-card {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    border: 1px solid #2D190112;
    padding: 24px;
    flex: 1 1;
    max-width: 40%;
}

.footer .logo {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer .block {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.footer .block:last-child {
    border-bottom: none;
}

.footer .block h4 {
    margin: 0 0 5px;
    color: #262626;
    font-size: 20px;
    font-weight: 500;
    font-family: "Nunito Sans", sans-serif;
}

.footer .block p {
    margin: 0;
    font-size: 18px;
    color: #262626;
    padding-left: 35px;
}

.footer .block p img {
    margin-right: 5px;
    margin-left: -35px;
    margin-top: 10px;
    vertical-align: bottom;
}

.footer .socials {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer .socials a {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .socials a:hover {
    background: #F7F1E8;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.footer .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 80px;
    flex: 1 1;
}

.footer .footer-links h4 {
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 48px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links li:not(:last-child) {
    margin-bottom: 16px;
}

.footer .footer-links li a {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.footer .footer-links li a:hover {
    color: var(--color-accent);
}

.footer .footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .footer-bottom .left {
    display: flex;
    gap: 20px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.7)
}

.footer .footer-bottom a {
    cursor: pointer;
    color: rgba(0, 0, 0, 0.7);
}

.footer .payments {
    display: flex;
    gap: 10px;
    align-items: center;
}

/*-=-=-=-=
Media CSS-=-=
-=-=-=-*/

@media (min-width:1024px) {
    .desktop--hidden {
        display: none;
    }
}

@media (max-width: 1024px) {
    .container--wrapper {
        padding: 0 24px;
    }

    .header {
        flex-wrap: wrap;
        gap: 8px;
        padding: 6px 15px;
    }

    .filter-bar {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero--single-slide {
        padding: 60px 40px;
    }

    .home--hero h1 {
        font-size: clamp(24px, 4vw, 48px);
        margin-bottom: 8px;
    }

    .home--hero p {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .hero--btn {
        padding: 8px 16px;
    }

    .flex--wrapper {
        gap: 40px;
    }

    .faq--main .flex--wrapper {
        flex-direction: column;
    }

    .faq--main .image-section,
    .faq--main .content-section {
        max-width: 100%;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-card {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .top-bar {
        padding: 3px 55px;
    }

    .main--navigation {
        position: relative;
        background: none;
        padding: 0;
    }

    .mobile--hidden {
        display: none;
    }

    .search-box {
        justify-content: flex-end;
    }

    .search-box button {
        background: none;
        padding: 0;
    }

    .search-box button img, .main--cart--sctions .cart--btn img {
        filter: invert(1);
    }

    .main--cart--sctions .cart--btn {
        border: 0;
        padding: 0 16px 0 8px
    }

    .nav-toggle {
        order: 1;
    }

    .footer .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .subscribe .form--input {
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
    }

    .subscribe .btn--submit {
        width: 100%;
    }

    .flex--wrapper {
        flex-direction: column;
        gap: 24px;
        align-items: normal;
    }

    .hero--single-slide {
        flex-direction: column;
        text-align: left;
        padding: 40px 0px 0;
    }

    .home--hero-text {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero--slides {
        min-height: 460px;
    }

    .hero--single-slide img {
        position: relative;
        height: auto;
        margin-top: 20px;
    }

    .home--hero .dots {
        bottom: 0px;
    }

    .home--hero .dot {
        height: 8px;
    }

    .home--hero .arrow, .slider--pagination button, .makers--carousel .controls button {
        width: 25px;
        height: 25px;
        border-radius: 4px;
    }

    .home--hero .left, .slider--pagination .btn-left, .makers--carousel .controls .btn-left {
        background-size: 8px;
    }

    .home--hero .right, .slider--pagination .btn-right, .makers--carousel .controls .btn-right {
        background-size: 8px;
    }

    ul.product--tags {
        gap: 8px;
        justify-content: flex-start;
        padding-bottom: 10px;
        flex-flow: row wrap;
    }

    ul.product--tags li {
        white-space: nowrap;
        padding: 8px 16px;
        font-size: 16px;
    }

    ul.product--tags .divider {
        display: none;
    }

    .feature--icon {
        width: 40px;
        height: 40px;
        margin-bottom: 14px;
    }

    .feature--icon img {
        max-width: 70%;
    }

    .features--cards {
        padding: 24px 0;
    }

    .week--cards h2 {
        font-size: 20px;
        margin: 10px 0 0;
    }

    .week--product {
        padding: 24px;
    }

    .p--xlarge {
        padding: 0;
    }

    .week--cards .type--highlight {
        padding: 10px 16px;
        font-size: 24px;
    }

    .blog--card {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 600px) {
    .container--wrapper {
        padding: 0 16px;
    }

    .search-box input {
        font-size: 12px;
    }

    .search-box button {
        width: auto;
        height: auto;
    }

    .blog--card {
        flex: 0 0 calc(100% - 0px);
    }

    .blog--main a.btn-view-all {
        font-size: 12px;
        padding: 12px 20px;
        padding-right: 54px;
    }

    .makers--carousel .content small {
        font-size: 12px;
    }

    .makers--carousel .content p {
        font-size: 15px;
    }

    .makers--carousel .content h2 {
        font-size: 20px;
        margin: 8px 0;
    }

    .makers--carousel .content .btn--shop {
        padding: 10px 16px;
        font-size: 12px;
    }

    .makers--carousel .controls {
        bottom: 110px;
        right: 20px;
        left: auto;
    }

    .faq--main .subtitle {
        font-size: 14px;
    }

    .faq--main h2 {
        font-size: 24px;
        color: #232323;
        margin-bottom: 0px;
    }
}