:root {
    /* Brand Colors */
    --color-primary: #e52e06;
    --color-secondary: #212529;
    --color-accent: #ffa500;
    --bs-red: #dc3545;
    --bs-white: #fff;

    /* Text Colors */
    --light: #ececec;
    --dark: #212529;
    --lighter: #757575;
    --link-color: #0d6efd;
    --link-hover-color: #0a58ca;

    /* Font Sizes */
    --font-xs-size: 12px;
    --font-sm-size: 14px;
    --font-base-size: 16px;
    --font-lg-size: 18px;
    --font-xl-size: 1.25rem; /* 20px */
    --font-xxl-size: 24px;
    --font-3x-size: 28px;
    --bs-card-title-spacer-y: 0.5rem;
    --font-4x-size: 34px;

    /* Font Weights */
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;

    /* Shared */
    --font-family-base: "Albert Sans", sans-serif;

    /* Border */
    --border-color: #dee2e6;
    --border-color-translucent: rgba(0, 0, 0, 0.175);

    /* Background */
    --light-background: #f8f9fa;
    --bs-dark-rgb: 33, 37, 41;
    --bs-bg-opacity: 1;

    --bs-btn-color: #fff;
    --bs-btn-bg: #212529;
    --bs-btn-border-color: #212529;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #424649;
    --bs-btn-hover-border-color: #373b3e;
    --bs-btn-focus-shadow-rgb: 66, 70, 73;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #4d5154;
    --bs-btn-active-border-color: #373b3e;
}

/* FONTS */
/* Regular */
@font-face {
    font-family: "Albert Sans";
    src: url("../../fonts/albert-sans/static/AlbertSans-Regular.ttf")
            format("truetype"),
        url("../../fonts/albert-sans/static/AlbertSans-Regular.ttf")
            format("truetype");
    font-weight: 400;
    font-style: normal;
}

/* Medium */
@font-face {
    font-family: "Albert Sans";
    src: url("../../fonts/albert-sans/static/AlbertSans-Medium.ttf")
            format("truetype"),
        url("../../fonts/albert-sans/static/AlbertSans-Medium.ttf")
            format("truetype");
    font-weight: 500;
    font-style: medium;
}

/* Semi Bold */
@font-face {
    font-family: "Albert Sans";
    src: url("../../fonts/albert-sans/static/AlbertSans-SemiBold.ttf")
            format("truetype"),
        url("../../fonts/albert-sans/static/AlbertSans-SemiBold.ttf")
            format("truetype");
    font-weight: 600;
    font-style: semi-bold;
}

/* Bold */
@font-face {
    font-family: "Albert Sans";
    src: url("../../fonts/albert-sans/static/AlbertSans-Bold.ttf")
            format("truetype"),
        url("../../fonts/albert-sans/static/AlbertSans-Bold.ttf")
            format("truetype");
    font-weight: 700;
    font-style: bold;
}
/* END FONTS */

body {
    padding: 0;
    margin: 0;
    font-family: "Albert Sans", sans-serif;
}

.hide {
    display: none;
}

.w-full {
    width: 100%;
}

.p-highlighted {
    color: var(--color-accent);
    font-size: var(--font-sm-size);
}

/* BUTTON */

button,
button a {
    width: fit-content;
    padding: 6px 12px;
    background-color: var(--dark);
    color: white;
    text-transform: uppercase;
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-sm-size);
    gap: 4px;
    cursor: pointer;
    text-decoration: none;
}

button a {
    padding: 0;
}

button.light,
button.light a {
    background-color: var(--light-background);
    color: var(--dark);
}

button.transparent {
    background-color: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
}

button.transparent a {
    background-color: transparent;
    color: var(--dark);
}

/* END OF BUTTON */

/* FLASH MESSAGE */

.flash_messages {
    position: fixed;
    top: 0;
    width: 100%;
}

.flash_messages .alert {
    box-sizing: border-box;
    padding: 10px 20px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.flash_messages .alert ul {
    margin: 0;
}

/* Success message */
.flash_messages .success {
    color: #155724; /* Dark green text */
    background-color: #d4edda; /* Light green background */
    border-color: #c3e6cb; /* Green border */
}

/* Error/Danger message */
.flash_messages .error {
    color: #721c24; /* Dark red text */
    background-color: #f8d7da; /* Light red background */
    border-color: #f5c6cb; /* Red border */
}

/* Warning message */
.flash_messages .warning {
    color: #856404; /* Dark yellow/orange text */
    background-color: #fff3cd; /* Light yellow background */
    border-color: #ffeeba; /* Yellow border */
}

/* Info message */
.flash_messages .info {
    color: #004085; /* Dark blue text */
    background-color: #cce5ff; /* Light blue background */
    border-color: #b8daff; /* Blue border */
}

.flash_messages button {
    background-color: transparent;
    color: inherit;
    padding: 10px;
    margin: 0;
}

/* END OF FLASH MESSAGE */

/* TABS */

.tabs {
    width: 100%;
}

.tabs .tab-headers {
    width: 100%;
    list-style: none;
    display: inline-flex;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
}
.tabs .tab-headers li {
    display: inline-block;
    text-transform: uppercase;
    color: var(--dark);
    font-weight: var(--font-weight-semi-bold);
    padding: 8px 16px;
    text-decoration: none;
    cursor: pointer;
}

.tabs .tab-headers .active {
    border: 1px solid var(--border-color);
    border-bottom-color: white;
    border-radius: 6px 6px 0 0;
    margin-bottom: -1px;
    background-color: white;
}

.tabs .tab-info {
    display: none;
    font-size: var(--font-sm-size);
    color: var(--lighter);
}

.tabs .tab-info.active {
    display: block;
}

/* END OF TABS */

/* ACCORDION */

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    display: flex;
    flex-direction: column;
    background-color: #eee;
    color: var(--color-secondary);
    cursor: pointer;
    /* padding: 18px; */
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
    /* background-color: #ccc; */
}

.accordion h4 {
    color: var(--dark);
    margin: 10px;
}

/* Style the accordion panel. Note: hidden by default */
.accordion > .panel {
    padding: 10px 18px;
    background-color: white;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.accordion > .panel li {
    text-transform: none;
    color: var(--dark);
    padding-bottom: 4px;
    font-weight: lighter;
    letter-spacing: 0.5px;
}

.accordion > .panel li strong {
    font-weight: bold;
}

/* Style for visible panel */
.accordion > .panel.show {
    max-height: 500px; /* Set this to a suitable max height for your content */
    opacity: 1;
}

/* END OF ACCORDION */

/* STEPPER */

/* body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #f9f9f9;
} */

.stepper-wrapper {
    width: 100%;
    /* background: white; */
    padding: 30px 0 0;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 100%;
    width: 100%;
    /* padding: 0 5%; */
}

.step {
    text-align: center;
    position: relative;
    flex: 1;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15px;
    right: -50%;
    width: 100%;
    border-top: 2px dashed #ccc;
    z-index: 1;
}

.step.active:not(:last-child)::after {
    border-color: var(--dark);
}

.step .circle {
    width: 30px;
    height: 30px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 auto 10px;
    line-height: 30px;
    color: white;
    font-weight: bold;
    z-index: 2;
    position: relative;
    transition: background 0.3s ease;
}

.step.active .circle {
    background: var(--dark);
}

.step .label {
    font-size: 14px;
    color: var(--lighter);
}

.step.active .label {
    color: var(--lighter);
    font-weight: 600;
}

.step-content {
    padding: 50px 0;
    /* text-align: center; */
}

.step-pane {
    display: none;
}

.step-pane.active {
    display: block;
}

.stepper.controls {
    text-align: center;
    padding-bottom: 40px;
}

button {
    /* background: #4caf50; */
    border: none;
    /* color: white; */
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* END OF STEPPER */

/* FORM */

form .form-group {
    margin-top: 16px;
}

form label {
    display: inline-block;
    color: var(--lighter);
    margin-bottom: 8px;
    font-size: var(--font-sm-size);
}

form input[type="text"],
form input[type="tel"],
form input[type="email"],
form textarea,
form select {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

form input[type="text"],
form input[type="tel"],
form input[type="email"],
form textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

form .switch-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

form .switch-checkbox {
    width: 28px !important;
    height: 14px !important;
}

form .switch-checkbox::before {
    display: block;
    content: "";
    margin-top: -5px;
    margin-left: -10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
}

form .switch-checkbox::after {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--lighter);
    margin-top: -10px;
    margin-left: 2px;
    background-color: white;
    transition: background-position 0.15s ease-in-out;
}

form .switch-checkbox:checked {
    background-color: var(--link-color);
    border-color: var(--link-color);
    transition: background-position 0.15s ease-in-out;
    border-radius: 2em;
}

form .switch-checkbox:checked::before {
    background-color: var(--link-color);
}

form input:read-only {
    color: var(--lighter);
    outline: none;
}

form input[type="radio"] {
    width: 15px;
    height: 15px;
    padding: 0;
    margin: 0;
    vertical-align: middle;
    display: inline-block;
}

form input[type="radio"]:checked {
    background-color: var(--link-color);
}

/* END OF FORM */

/* TABLE */

table {
    color: var(--dark);
}

table.default-table {
    width: 100%;
    table-layout: auto;
}

table.default-table th {
    color: var(--dark);
}

table.default-table td {
    box-sizing: border-box;
    padding: 8px;
    border-bottom: 1px solid var(--border-color);
}

table.default-table td,
table.default-table td a {
    font-size: var(--font-base-size);
    color: var(--dark);
    text-underline-offset: 2px;
    text-decoration-color: var(--lighter);
    text-decoration-thickness: 0.5px;
}

table.default-table td > span {
    display: block;
}

table.default-table td .title {
    display: inline-block;
    margin-bottom: 8px;
}

table.default-table td .more-info {
    color: var(--lighter);
    font-size: var(--font-sm-size);
}

table.default-table td .label {
    color: var(--lighter);
    font-size: var(--font-sm-size);
}

@media screen and (max-width: 1000px) {
    table.default-table td {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        border: none;
    }

    table.default-table td:last-child {
        border-bottom: 1px solid var(--border-color);
        padding: 1em 8px;
    }
}

/* END OF TABLE */

/* BADGE */

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lighter);
    color: var(--light);
    border-radius: 50rem;
    padding: 4px 8px;
}

.badge.sm {
    padding: 2px 2px;
    min-width: 18px;
    max-width: fit-content;
    height: 18px;
    box-sizing: border-box;
    font-size: var(--font-xs-size);
}

.badge.top {
    position: absolute;
    top: 3px;
    left: 26px;
}

.status-dark {
    background-color: var(--dark); /* gray-100 */
    color: white !important; /* gray-500 */
}

.status-muted {
    background-color: #f3f4f6; /* gray-100 */
    color: #6b7280; /* gray-500 */
}

.status-warning {
    background-color: #fef3c7; /* amber-100 */
    color: #f59e0b; /* amber-500 */
}

.status-info {
    background-color: #dbeafe; /* blue-100 */
    color: #3b82f6; /* blue-500 */
}

.status-primary {
    background-color: #e0e7ff; /* indigo-100 */
    color: #6366f1; /* indigo-500 */
}

.status-success {
    background-color: #d1fae5; /* green-100 */
    color: #10b981; /* green-500 */
}

.status-danger {
    background-color: #fee2e2; /* red-100 */
    color: #ef4444; /* red-500 */
}

/* END OF BADGE */

/* NAVBAR */

nav {
    width: 100vw;
    /* overflow-x: hidden; */
    overflow: visible;
}

nav .top-menu {
    width: 100%;
    background-color: var(--color-secondary);
    display: flex;
    justify-content: center;
}

/* nav .top-menu .container {
    width: 100%;
    max-width: 960px;
    color: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 42px;
    box-sizing: border-box;
} */

nav .nav-gif-banner {
    max-height: 52px;
    max-width: 100%;
}

nav h6 {
    font-size: var(--font-sm-size);
    font-weight: var(--font-weight-medium);
    color: var(--light);
    margin: 0;
    padding: 0 8px;
}

nav ul {
    list-style: none;
    display: inline-block;
    margin: 0;
}

nav ul li {
    display: inline-block;
    padding: 8px;
}

nav ul li a {
    text-decoration: none;
    color: inherit;
}

nav .socials svg {
    fill: var(--light);
    width: 16px;
    height: 16px;
}

nav .header-content {
    width: 100%;
    display: flex;
    justify-content: center;
    /* background-color: var(--color-accent); */
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}

/* nav .header-content .container {
    width: 100%;
    max-width: 960px;
    display: flex;
    justify-content: space-between;
    padding: 8px 42px;
    color: var(--dark);
    box-sizing: border-box;
    gap: 8px;
} */

nav .header-logo {
    margin-top: auto;
    margin-bottom: auto;
    display: inline-flex;
    justify-content: center;
    gap: 12px;
    padding: 8px;
}

nav .header-logo .responsive-menu-button {
    display: none;
}

nav .header-logo a {
    display: flex;
    align-items: center;
    width: 110px;
    height: auto;
}

nav .header-logo img {
    width: 100%;
    height: auto;
}

nav .header-content form.search {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
}

nav .header-content form.search input {
    box-sizing: border-box;
    border: 2px solid var(--dark);
    width: 90%;
    height: 35px;
    border-radius: 50px;
    padding: 0 24px;
    line-height: 1.5;
    font-size: var(--font-base-size);
}

nav .header-content form.search button {
    text-transform: uppercase;
    border-radius: 50%;
    background-color: var(--dark);
    color: var(--bs-white);
    font-size: var(--font-sm-size);
    font-weight: var(--font-weight-medium);
    display: inline-flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    margin-left: 4px;
    width: 35px;
    height: 35px;
    border: 3px solid var(--dark);
    line-height: 1.5;
}

nav .cta-call-us {
    display: inline-flex;
    justify-content: center;
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
    gap: 16px;
    color: var(--dark);
}

nav .cta-call-us svg {
    fill: var(--light);
}

nav .cta-call-us p {
    margin: 0;
    padding: 0;
}

nav .header-content ul {
    padding: 8px 0;
}

nav .header-content ul li {
    position: relative;
}

nav .primary-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: white;
    box-sizing: border-box;
}

nav .primary-menu ul {
    width: 100%;
    padding: 0;
    margin: auto;
    box-sizing: border-box;
}

nav .primary-menu ul li {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-size: var(--font-sm-size);
    font-weight: var(--font-weight-semi-bold);
    color: var(--dark);
    padding: 8px 10px;
    height: 65px;
    box-sizing: border-box;
    cursor: pointer;
}

nav .primary-menu ul li:first-child {
    padding-left: 8px;
}

#side-menu {
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: white;
    width: 300px;
    height: 100vh;
}

#side-menu .header-logo {
    width: calc(100% - 32px);
    padding: 16px;
    border-bottom: 1px solid var(--border-color-translucent);
}

#side-menu .header-logo img {
    width: 50%;
    height: auto;
}

#side-menu .header-logo #close-menu {
    position: absolute;
    right: 20px;
}

#side-menu .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

#side-menu .nav-links li {
    width: 100%;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color-translucent);
    text-transform: uppercase;
    margin-bottom: 4px;
    font-size: var(--font-sm-size);
    font-weight: var(--font-weight-semi-bold);
    box-sizing: border-box;
}

#side-menu .nav-links li a {
    text-decoration: none;
    color: var(--dark);
}

#view-cart-card {
    position: relative;
}

#view-cart-card a,
#view-cart-card {
    pointer-events: auto;
}

#view-cart-card .remove_item_from_cart {
    pointer-events: all;
}

#cart-card {
    position: absolute;
    width: 340px;
    z-index: 100;
    right: 0;
    top: 45px;
    background-color: white;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 500;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

#cart-card .triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent; /* Left side of the triangle, transparent */
    border-right: 10px solid transparent; /* Right side of the triangle, transparent */
    border-bottom: 10px solid var(--dark); /* Bottom side of the triangle, visible color */
    position: absolute;
    top: -9px;
    right: 11px;
}

#cart-card .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid rgb(237 237 237 / 20%);
    background-clip: border-box;
    background: var(--color-secondary);
    text-align: left;
    color: rgb(255 255 255 / 85%);
}

#cart-card ul {
    width: 100%;
}

#cart-card ul #cart-items {
    max-height: 50vh;
    overflow-y: scroll;
}

#cart-card ul li {
    display: inline-flex;
    justify-content: space-between;
    padding: 8px 20.8px;
    width: 100%;
    box-sizing: border-box;
}

#cart-card ul li h6 {
    font-size: var(--font-base-size);
    margin: 0;
    padding: 0;
    margin-bottom: 8px;
    color: var(--dark);
}

#cart-card ul li p {
    font-size: var(--font-sm-size);
    margin: 0;
    padding: 0;
    color: var(--dark);
    font-weight: lighter;
}

#cart-card ul .img {
    position: relative;
    width: fit-content;
}

#cart-card ul img {
    width: 50px;
    height: 50px;
    padding: 4px;
    border: 1px solid var(--border-color);
}

#cart-card .img .close {
    position: absolute;
    top: -5px;
    right: -5px;
    padding-bottom: 4px;
    color: var(--dark);
    background-color: var(--bs-white);
    cursor: pointer;
}

#cart-card hr {
    border: none;
    height: 1px;
    background-color: rgb(0 0 0 / 10%);
    margin: 0;
}

#cart-card ul .total {
    padding: 1em;
}

#cart-card ul h5 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-size: var(--font-xl-size);
    font-weight: 500;
    line-height: 1.2;
}

#cart-card button {
    margin: 1rem;
    width: calc(100% - 2rem);
}

#cart-card .no-products-in-cart {
    padding: 1em;
    text-align: center;
    font-weight: lighter;
}

@media screen and (max-width: 1200px) {
    nav .header-content .container {
        flex-wrap: wrap;
    }

    nav .header-content form.search {
        order: 3;
        width: 100%;
        /* margin-top: 16px; */
        margin-bottom: 16px;
    }

    nav .cta-call-us {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    nav .top-menu .container,
    nav .header-content .container {
        padding: 8px 12px;
        width: 100%;
    }
    nav .top-menu .nav-links,
    nav .primary-menu {
        display: none;
    }

    nav .header-logo #menu-button {
        display: block;
    }

    nav .top-menu .container {
        padding: 0;
        max-width: 100%;
    }

    nav .nav-gif-banner {
        width: 100%;
    }

    nav .top-menu .right {
        display: none;
    }
}

@media screen and (max-width: 425px) {
    nav .header-logo a {
        width: 70px;
    }
}

/* END OF NAVBAR */

/* CONTAINERS */
.container {
    width: 100%;
    color: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 12px;
    box-sizing: border-box;
}
@media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 720px;
        padding: 0px 24px;
    }
}
@media (min-width: 992px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

/* END OD CONTAINERS */

/* ICONS */

.icon.xs {
    width: 10px;
    height: 10px;
}
.icon.sm {
    width: 16px;
    height: 16px;
}
.icon.md {
    width: 20px;
    height: 20px;
}
.icon.lg {
    width: 30px;
    height: 30px;
}
.icon.xl {
    width: 40px;
    height: 40px;
}
.icon.as-img {
    width: 120px;
    height: 120px;
}
.icon.dark {
    stroke: var(--dark);
}
.icon.light {
    stroke: var(--light);
}
.icon.no-fill {
    fill: none;
}
.icon.dark-fill {
    fill: var(--dark);
}
.icon.light-fill {
    fill: var(--light);
}

@media screen and (max-width: 480px) {
    .icon.lg {
        width: 26px;
        height: 26px;
    }
}
/* END OF ICONS */

/* HERO SECTION */

.hero-section {
    position: relative;
    width: 100%;
    aspect-ratio: 2.82/1;
    /* height: 700px; */
    overflow: hidden;
}

.hero-section .slides-wrapper {
    display: flex;
    width: 100%; /* 3 slides */
    height: 100%;
    transition: transform 1s cubic-bezier(0.27, 0.4, 0.85, 1); /* soft ease */
}

.hero-section .slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-section .slide img {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    object-fit: cover;
}

.hero-section .slide-info {
    position: absolute;
    top: 40%;
    left: 20%;
    z-index: 10;
}

.hero-section .slide-info h1,
.hero-section .slide-info h2,
.hero-section .slide-info h5 {
    margin: 0;
}

.hero-section .slide-info h1 {
    font-size: var(--font-4x-size);
    margin-bottom: 8px;
}

.hero-section .slide-info h2 {
    font-size: var(--font-xxl-size);
    margin-bottom: 8px;
}

.hero-section .slide-info h5 {
    font-size: var(--font-sm-size);
    margin-bottom: 16px;
}

/* fade-in effect for wrapper when resetting */
.hero-section.fade-reset .slides-wrapper {
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.hero-section .slide-info button {
    margin: 0;
}

@media screen and (max-width: 1300px) {
    .hero-section .slide-info {
        top: 30%;
    }
}

@media screen and (max-width: 768px) {
    .hero-section .slide-info {
        top: 30%;
    }

    .hero-section .slide-info h2,
    .hero-section .slide-info h5 {
        display: none;
    }

    .hero-section .slide-info h1 {
        font-size: var(--font-3x-size);
    }
}

@media screen and (max-width: 425px) {
    .hero-section .slide-info {
        top: 20%;
        left: 0;
        padding: 0 12px;
    }
}

/* END OF HERO SECTION */

/* INFO CARDS */

.info-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 24px 0;
}

.info-cards .container {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.info-cards .card {
    color: var(--dark);
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.info-cards .card .content .title {
    font-size: var(--font-base-size);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.info-cards .card .content .desc {
    color: var(--lighter);
    font-size: var(--font-sm-size);
}

@media screen and (max-width: 992px) {
    .info-cards .container {
        flex-wrap: wrap;
    }
    .info-cards .card {
        width: 100%;
    }
}

/* END OF INFO CARDS */

/* PRODUCT LIST */
.products-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-section .section-heading {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1rem; /* space between line and text */
}

.products-section .section-heading::before,
.products-section .section-heading::after {
    content: "";
    flex: 1;
    display: block;
    height: 1px;
    background-color: var(
        --border-color
    ); /* or any color you want for the line */
}

.products-section h5 {
    text-transform: uppercase;
    /* width: 100%; */
    text-align: center;
    font-size: var(--font-lg-size);
    color: var(--dark);
    white-space: nowrap;
}

section.product-items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    box-sizing: border-box;
    gap: 24px;
}
.product-item {
    min-width: 100px;
    max-width: 270px;
}
.product-item .product-thumb {
    width: 100%;
    position: relative;
}
.product-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}
.product-item .cart-button {
    width: fit-content;
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    margin-top: 16px;
    margin-right: 16px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 300ms, opacity 300ms;
}
.product-item .quick-view-link {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: inline-block;
    padding: 10px;
    background-color: var(--color-secondary);
    z-index: 5;
    font-size: var(--font-sm-size);
    text-transform: uppercase;
    border-radius: 0%;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 300ms, opacity 300ms;
    box-sizing: border-box;
}

.product-item:hover .quick-view-link,
.product-item:hover .cart-button,
.product-item:focus .quick-view-link,
.product-item:focus .cart-button {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 300ms;
}

.product-item .add-to-cart {
    font-size: 20px;
    width: 40px;
    height: 40px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid var(--light);
    box-sizing: border-box;
    border: none;
}

.product-item .added-item-to-cart {
    background-color: green;
}

.product-item .added-item-to-cart svg {
    fill: white;
}

.product-item .product-info {
    padding: 16px 0;
}

.product-item .product-info .product-title {
    display: flex;
    justify-content: space-between;
}
.product-item .product-info .product-category {
    padding: 0;
    margin: 0 0 4px;
    font-size: var(--font-sm-size);
    color: var(--lighter);
}
.product-item .product-info .product-name {
    font-size: var(--font-base-size);
    font-weight: var(--font-weight-bold);
    color: var(--dark);
    margin: 0;
}
.product-item .wishlist-button {
    width: fit-content;
}
.product-item .add-to-wishlist {
    width: 20px;
    height: 20px;
}

.product-item .product-price {
    font-size: var(--font-base-size);
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
    line-height: 1.2;
    color: var(--dark);
}

.product-item .product-price.discounted {
    color: var(--lighter);
}

@media screen and (max-width: 1400px) {
    section.product-items {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        /* box-sizing: content-box; */
    }
}
@media screen and (max-width: 1010px) {
    section.product-items {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        /* box-sizing: content-box; */
    }
}

@media screen and (max-width: 768px) {
    section.product-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        /* box-sizing: content-box; */
    }

    .product-details button {
        font-size: var(--font-xs-size) !important;
        padding: 6px 12px;
    }
}

@media screen and (max-width: 425px) {
    section.product-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        /* box-sizing: content-box; */
    }
}

/* END OF PRODUCT LIST */

/* STAR RATING */

.star-rating {
    white-space: nowrap;
    line-height: 100%;
    display: block;
    font-size: 0;
    position: relative;
    overflow: hidden;
    width: 90px;
    letter-spacing: 5px;
}
.star-rating::before,
.star-rating span::before {
    font-family: "FontAwesome", sans-serif;
    font-weight: normal;
    font-size: 15px;
    line-height: 22px;
}
.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    line-height: 100%;
}
.star-rating::before {
    content: "\f006\f006\f006\f006\f006";
    color: var(--lighter);
}
.star-rating > span::before {
    content: "\f005\f005\f005\f005\f005";
    color: #eebe19;
}
.rating-wapper .star-rating {
    display: inline-block;
    vertical-align: top;
}
.rating-wapper .review {
    vertical-align: top;
    display: inline-block;
    line-height: 22px;
    font-size: 14px;
    padding-left: 4px;
    color: #999999;
    display: none;
}

/*comment star*/
p.stars {
    margin-top: 5px;
    line-height: 18px;
    display: inline-block;
}
p.stars span {
    display: block;
    height: 18px;
}
p.stars,
p.stars a {
    display: inline-block;
}
p.stars a {
    font-weight: 400;
    height: 1em;
}
p.stars a:before,
p.stars a:hover ~ a:before {
    content: "\f006";
    color: #adadad;
}
p.stars a {
    font-size: 18px;
    position: relative;
    width: 1em;
    text-indent: -999em;
    margin-right: 2px;
}
p.stars a:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-family: "FontAwesome", sans-serif;
    font-weight: normal;
    text-indent: 0;
}
p.stars:hover a:before,
p.stars.selected:not(:hover) a:before {
    content: "\f006";
    color: #eebe19;
}
p.stars a:hover ~ a:before,
p.stars.selected:not(:hover) a.active ~ a:before {
    content: "\f006";
    color: #adadad;
}

/* END OF STAR RATING */

/* BREADCRUMB */

.breadcrumb-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--light-background);
    padding: 16px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.breadcrumb-section .breadcrumb-title {
    font-size: var(--font-xxl-size);
    font-weight: var(--font-weight-medium);
    color: var(--dark);
    padding-right: 16px;
    width: fit-content;
    padding: 0 10px;
    margin: 0;
}

.breadcrumb-section nav {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb-section nav a {
    color: var(--dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb-section nav span {
    color: var(--lighter);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media screen and (max-width: 768px) {
    .breadcrumb-section {
        display: none;
    }
}

/* END OF BREADCRUMB */

/* PRODUCT DETAILS */
.product-details {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 24px 0;
}
.product-details .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    box-sizing: border-box;
}
.product-details .product-gallery {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.product-details .product-gallery .selected {
    width: 90%;
    aspect-ratio: 1/1;
    padding: 16px;
    border: 1px solid var(--border-color);
}

.product-details .product-gallery .selected img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-details .product-gallery ol {
    width: 100%;
    list-style: none;
    display: flex;
    overflow-x: auto;
    padding: 0 10px;
    gap: 8px;
    box-sizing: border-box;
}

.product-details .product-gallery ol img {
    width: 74px;
    aspect-ratio: 1/1;
    object-fit: contain;
    padding: 2px;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
}

.product-details .summary {
    width: 60%;
    padding: 1em;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: var(--dark);
    align-items: flex-start;
}

.product-details .summary .product-title {
    font-size: var(--font-3x-size);
    margin: 0;
    font-weight: var(--font-weight-medium);
    line-height: 1.2;
}

.product-details .summary .price {
    margin-top: 16px;
    color: var(--dark);
    font-size: var(--font-xxl-size);
    font-weight: var(--font-weight-medium) !important;
}

.product-details .summary .price del {
    font-size: var(--font-xl-size);
    margin-right: 8px;
}

.product-details .summary .stock,
.product-details .summary .description .categories span {
    color: var(--lighter);
    margin: 0;
    margin-bottom: 16px;
}

.product-details .summary .stock span {
    padding: 4px;
    background-color: green;
    color: var(--light);
    border-radius: 2px;
}

.product-details .summary .quantity input {
    width: 60px;
}

.product-details .summary .actions {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 16px;
}

.product-details .summary .actions .add-to-wishlist {
}

.product-details .summary .description {
    margin: 0;
    margin-bottom: 16px;
}
.product-details .summary .description h6 {
    color: var(--dark);
    font-size: var(--font-base-size);
    margin: 0;
    margin-bottom: 8px;
}
.product-details .summary .description p {
    font-size: var(--font-sm-size);
    color: var(--lighter);
    margin: 0;
}

.product-details .summary .categories {
    padding: 16px 0;
}

.product-details .summary .categories span {
    display: inline-block;
    margin-bottom: 8px;
}

.product-details .summary .categories .category {
    width: fit-content;
    padding: 6px 12px;
    background-color: transparent;
    color: var(--dark);
    text-transform: uppercase;
    border: 1px solid var(--dark);
    display: inline-flex;
    align-items: center;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-sm-size);
    gap: 4px;
    text-decoration: none;
}

.product-details #reviews {
    display: flex;
}

.product-details #reviews {
    width: 100%;
}

.product-details #reviews #reviews-container {
    width: 67%;
    padding: 0 12px;
    flex-grow: 1;
    overflow-y: auto;
}

.product-details #reviews #review-form-wrapper {
    margin: 0 12px;
    padding: 16px;
    border: 1px solid var(--border-color);
    height: fit-content;
}

.product-details #reviews #review-form-wrapper h4,
.product-details #reviews #reviews-container h4 {
    font-size: var(--font-xxl-size);
    font-weight: var(--font-weight-medium);
    line-height: 1.2;
    margin: 0;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.product-details #reviews #reviews-container h4 {
    font-size: var(--font-xl-size);
}

.product-details #reviews #review-form-wrapper button {
    width: 100%;
    justify-content: center;
}

@media screen and (max-width: 480px) {
    .product-details #reviews {
        flex-wrap: wrap;
    }
    .product-details #reviews #reviews-container,
    .product-details #reviews #review-form-wrapper,
    .product-details .summary,
    .product-details .product-gallery {
        width: 100%;
    }

    .product-details #reviews #review-form-wrapper {
        margin: 0;
    }
    .product-details #reviews #reviews-container {
        padding-left: 0;
        padding-right: 0;
    }
}

/* END OF PRODUCT DETAILS */

/* FEATURE CARDS */

.feature-cards {
    width: 100%;
    display: flex;
    justify-content: center;
}

.feature-cards .container {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.feature-cards .card {
    position: relative;
    display: inline-flex;
    align-items: center;
    max-width: 416px;
    min-width: 296px;
    border-radius: 4px;
}

.feature-cards .card a {
    width: 50%;
    height: fit-content;
    aspect-ratio: 1/1;
    text-decoration: none;
}

.feature-cards .card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-cards a .banner-info {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

.feature-cards a .banner-info h6 {
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
    margin: 0;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: var(--font-xl-size);
    line-height: 1.2;
}

.feature-cards a .banner-info p {
    text-transform: uppercase;
    margin: 0;
    color: var(--lighter);
    font-size: var(--font-sm-size);
}

.feature-cards .banner-info button {
    margin-top: 1rem;
}

.feature-cards .card .no-info {
    width: 100%;
}

@media screen and (max-width: 1399px) {
    .feature-cards .card {
        box-sizing: border-box;
        max-width: 356px;
    }
}

@media screen and (max-width: 1199px) {
    .feature-cards .container {
        gap: 1.5rem;
    }

    .feature-cards .card {
        box-sizing: border-box;
        max-width: 444px;
    }
}

@media screen and (max-width: 991px) {
    .feature-cards .card {
        box-sizing: border-box;
        width: 100% !important;
        max-width: 720px;
    }
}

@media screen and (max-width: 425px) {
    .feature-cards .banner-info button {
        font-size: var(--font-xs-size);
    }
}

@media screen and (max-width: 375px) {
    .feature-cards a .banner-info h6 {
        font-size: var(--font-lg-size);
        line-height: 1.1;
    }

    .feature-cards .banner-info button {
        padding: 6px 12px;
        margin-left: 0;
    }
}

/* END OF FEATURE CARDS */

/* SIGN IN SECTION */

.signin-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.signin-section .container {
    display: flex;
    justify-content: center;
}

.signin-section .container .card {
    width: 50%;
    border: 0px solid rgb(0 0 0 / 0%);
    box-shadow: 0 0.3rem 0.8rem rgb(0 0 0 / 12%);
    padding: 1rem;
    box-sizing: border-box;
}

.signin-section .container .card article {
    border-radius: 0.375rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
}

.signin-section .card .header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signin-section .card .header h3 {
    color: var(--dark);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-3x-size);
    line-height: 1.2;
    margin: 0;
    margin-bottom: 0.5rem;
    text-align: center;
}

.signin-section .card .header p {
    color: var(--lighter);
    font-size: var(--font-sm-size);
    margin: 0;
    margin-bottom: 16px;
    text-align: left;
}

.signin-section .card a {
    text-decoration: none;
    color: var(--link-color);
}

.signin-section .card a:hover {
    color: var(--link-hover-color);
}

.signin-actions {
    font-size: var(--font-sm-size);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.signin-section p {
    color: var(--dark);
    font-size: var(--font-sm-size);
}

.signin-section button[type="submit"] {
    margin-top: 1em;
    text-transform: none;
    font-size: var(--font-base-size);
}

@media screen and (max-width: 1192px) {
    .signin-section .container .card {
        width: 100%;
    }
}

/* END OF SIGN IN SECTION */

/* ACCOUNT SECTION */

.account-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    box-sizing: border-box;
}

.account-section .container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border: 0px solid rgb(0 0 0 / 0%);
    box-shadow: 0 0.3rem 0.8rem rgb(0 0 0 / 12%);
    padding: 1rem;
    box-sizing: border-box;
}

.account-section .account-menu {
    position: sticky;
    top: 0;
    box-sizing: border-box;
    width: 32%;
    margin: 0 12px;
}

.account-section .account-menu ol {
    list-style: none;
    padding: 1em;
    border: 1px solid var(--border-color);
    border-radius: 0.5em;
    display: flex;
    flex-direction: column;
}

.account-section .account-menu ol ul {
    box-sizing: border-box;
    padding: 0;
    width: 100%;
}

.account-section .account-menu ol ul a {
    display: inline-flex;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    padding: 8px 16px;
    background-color: transparent;
    color: var(--dark);
    text-decoration: none;
    border: none;
    border-bottom: 1px solid var(--border-color);
    font-size: var(--font-sm-size);
}

.account-section .account-menu ol ul:last-child a {
    border: none;
}

.account-section .account-menu ol ul a.active {
    color: white;
    background-color: var(--dark);
}

.account-section .section-info {
    width: 65%;
    padding: 1em;
}

.account-section .section-info p {
    color: var(--lighter);
    font-size: var(--font-sm-size);
}

.account-section .section-info a {
    text-decoration: none;
    color: var(--link-color);
}

.account-section .section-info a:hover {
    color: var(--link-hover-color);
}

.account-section .section-info form {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 0.5em;
    padding: 0 1em;
    box-sizing: border-box;
}

.account-section .section-info ul {
    color: var(--lighter);
}

.account-section .wishlist-section.section-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.account-section .wishlist-section.section-info .product-item {
    width: 30%;
}

.account-section .wishlist-section.section-info a {
    color: white;
}

.account-section .wishlist-section.section-info a:hover {
    color: white;
}

.account-section .wishlist-section.section-info .actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.account-section .addresses-section.section-info {
    color: var(--dark);
}

.account-section .addresses-section.section-info h5 {
    font-size: var(--font-xl-size);
    line-height: 1.2;
    font-weight: var(--font-weight-medium);
    margin: 0 0 1em;
}

.account-section .addresses-section.section-info .address-card {
    margin-bottom: 1em;
}

.account-section .addresses-section.section-info .address-card p {
    margin: 0 0 8px;
    padding: 0;
}

.account-section
    .addresses-section.section-info
    .address-list
    .all-addresses
    .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media screen and (max-width: 991px) {
    .account-section .container {
        flex-wrap: wrap;
    }

    .account-section .account-menu,
    .account-section .section-info {
        width: 100%;
    }

    .account-section .account-menu {
        position: relative;
    }
}

@media screen and (max-width: 768px) {
    .account-section .wishlist-section.section-info .product-item {
        width: 43%;
    }
}

@media screen and (max-width: 480px) {
    .account-section .wishlist-section.section-info {
        justify-content: center;
    }
    .account-section .wishlist-section.section-info .product-item {
        width: 100%;
    }
}

/* END OF ACCOUNT SECTION */

/* CART SECTION */

.cart-section {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.cart-section .container {
    color: var(--dark);
    padding: 1em;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
}

.cart-section .cart-form,
.cart-section #customer_details {
    box-sizing: border-box;
    width: 66%;
}

.cart-section .cart_totals {
    position: sticky;
    top: 0;
    background-color: var(--light-background);
    padding: 1em;
    box-sizing: border-box;
    width: 33%;
}

.cart-section table {
    width: 100%;
}

.cart-section thead {
    display: none;
}

.cart-section table td:first-child {
    width: 150px;
}

.cart-section table img {
    width: 130px;
    height: 130px;
}

.cart-section table .product-name .product-subtotal {
    margin-top: 1em;
}
.cart-section table .product-subtotal,
.cart-section table .product-name .title {
    font-weight: var(--font-weight-semi-bold);
    line-height: 1.2;
}

.cart-section table .input-qty {
    width: 50px;
}

.cart-section .cart_totals .info {
    border: 1px solid var(--border-color);
    padding: 16px;
}

.cart-section .cart_totals h2 {
    color: var(--lighter);
    font-size: var(--font-xl-size);
    line-height: 1.2;
    margin: 0 0 16px;
}

.cart-section .cart_totals tr {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.cart-section .cart_totals th,
.cart-section .cart_totals td {
    color: var(--lighter);
    font-size: var(--font-sm-size);
    font-weight: var(--font-weight-regular);
    color: var(--lighter);
}

.cart-section .cart_totals td {
    border: none;
    font-weight: var(--font-weight-bold) !important;
    padding: 8px;
}

.cart-section .cart_totals tr.order-total {
    color: var(--dark);
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid var(--border-color);
    font-size: var(--font-base-size) !important;
}

.cart-section .cart_totals button {
    margin-top: 16px;
}

@media screen and (max-width: 1200px) {
    .cart-section .container {
        flex-wrap: wrap;
    }
    .cart-section .cart-form,
    .cart-section form {
        width: 100%;
    }

    .cart-section .cart_totals {
        position: relative;
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .cart-section .cart_totals td {
        width: fit-content !important;
    }
}

/* END OF CART SECTION */

/* CHECKOUT SECTION */

.checkout-section .contact-info-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.checkout-section .contact-info-fields > div {
    width: 45%;
}

.checkout-section #payment-method-selection li {
    list-style: none;
}

@media screen and (max-width: 520px) {
    .checkout-section .contact-info-fields > div {
        width: 100%;
    }
}

/* END OF CHECKOUT SECTION */

/* ORDER SECTION */

.order-section {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.order-section .container form {
    color: var(--dark);
    padding: 1em;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    gap: 1em;
}

.order-section form .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.order-section form .row > div {
    min-width: 250px;
}

.order-section input {
    width: 100%;
}

.order-section #customer_details {
    box-sizing: border-box;
    width: 66%;
}

.order-section .order-totals {
    position: sticky;
    top: 0;
    background-color: var(--light-background);
    padding: 1em;
    box-sizing: border-box;
    width: 33%;
}

.order-section .table-responsive {
    width: 100%;
    overflow-x: auto;
}

.order-section table {
    width: 100%;
}

/* .order-section table td:first-child {
    width: 10px;
} */

.order-section .order-totals .info {
    border: 1px solid var(--border-color);
    padding: 16px;
}

.order-section h3,
.order-section .order-totals h2 {
    color: var(--lighter);
    font-size: var(--font-xl-size);
    line-height: 1.2;
    margin: 0 0 16px;
}

.order-section h3 {
    margin-top: 1.2em;
    font-size: var(--font-xxl-size);
}

.order-section .order-totals tr {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.order-section .order-totals th,
.order-section .order-totals td {
    color: var(--lighter);
    font-size: var(--font-sm-size);
    font-weight: var(--font-weight-regular);
    color: var(--lighter);
}

.order-section .order-totals td {
    border: none;
    font-weight: var(--font-weight-bold) !important;
    padding: 8px;
}

.order-section .order-totals tr.order-total {
    color: var(--dark);
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid var(--border-color);
    font-size: var(--font-base-size) !important;
}

.order-section .order-totals button {
    margin-top: 16px;
}

.order-section .actions {
    display: inline-flex;
    gap: 8px;
}

.order-section .actions button a {
    color: white;
}

@media screen and (max-width: 1200px) {
    .order-section .container {
        flex-wrap: wrap;
    }
    .order-section form {
        width: 100%;
    }

    .order-section .order-totals {
        position: relative;
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .order-section .order-totals td {
        width: fit-content !important;
    }
}

/* END OF ORDER SECTION */

/* SHOP SECTION */

.shop-section {
    display: flex;
    justify-content: center;
}

.shop-section .container {
    align-items: flex-start;
    justify-content: center;
    color: var(--dark);
    padding-top: 24px;
}

.shop-section .side-filters {
    position: sticky;
    top: 24px;
    min-width: 280px;
    border: 1px solid var(--border-color);
}

.shop-section .side-filters > .title {
    margin: 0;
    padding: 8px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: var(--font-xl-size);
    box-sizing: border-box;
}

.shop-section .side-filters > .filter-by {
    margin: 0;
    padding: 16px;
    box-sizing: border-box;
}

.shop-section .side-filters .filter-by .title {
    margin: 0 0 8px 0;
    padding: 4px;
    font-size: var(--font-base-size);
    background-color: var(--light-background);
}

.shop-section .side-filters .filter-by ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--lighter);
}

.shop-section .side-filters .filter-by ul li {
    font-size: var(--font-sm-size);
}

.shop-section hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid var(--border-color);
    opacity: 0.5;
}

.shop-section .filter-by .price-range {
    display: inline-flex;
    box-sizing: border-box;
}

.shop-section .filter-by .price-range input {
    box-sizing: border-box;
    width: 45%;
    border: 1px solid var(--border-color);
    border-right: none;
    padding: 6px 12px;
}

.shop-section .filter-by .price-range .separator {
    background-color: var(--light);
    padding: 6px 12px;
    display: inline-block;
}

.shop-section .filter-by .price-range input[type="submit"] {
    width: fit-content;
    padding: 6px 12px;
    cursor: pointer;
    border-right: 1px solid var(--border-color);
}

.shop-section .top-filters {
    box-sizing: border-box;
    width: calc(100% - 24px);
    display: inline-flex;
    justify-content: space-between;
    margin-left: 24px;
    border: 1px solid var(--border-color);
    padding: 16px;
}

.shop-section .top-filters .form-group {
    margin: 0;
}

.shop-section .top-filters .form-group select {
    display: inline-block;
    width: fit-content;
}

.shop-section .side-filters > .title {
    display: flex;
    justify-content: space-between;
}

.shop-section .side-filters > .title .actions {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 4px;
    cursor: pointer;
}

.shop-section .side-filters > .title .actions > span {
    font-size: var(--font-sm-size);
    text-decoration: underline;
    text-underline-offset: 2px;
    width: fit-content;
}

.shop-section .filters-btn,
.shop-section .side-filters > .title .close {
    display: none;
}

@media screen and (max-width: 768px) {
    .shop-section .filters-btn {
        position: fixed;
        top: 55%;
        left: 0;
        z-index: 10;
        display: inline-flex;
        align-items: center;
        font-size: var(--font-sm-size);
        font-weight: var(--font-weight-medium);
        margin: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .shop-section .filters-btn svg {
        padding-bottom: 1px;
    }

    .shop-section .side-filters {
        top: 0;
        position: fixed;
        overflow-y: scroll;
        background-color: var(--bs-white);
        z-index: 100;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        height: 100%;
        display: none;
        box-sizing: border-box;
        border: none;
    }

    .shop-section .side-filters > .title .close {
        display: block;
    }

    .shop-section .top-filters {
        /* display: flex; */
        width: 100%;
        margin-left: 0;
        gap: 5px;
        padding: 12px;
    }
}

/* END SHOP SECTION */

/* ORDER CONFIRMATION SECTION */

/* .payment-instructions {
    width: 90%;
} */

/* END OF ORDER CONFIRMATION SECTION */

/* CONTACT SECTION */

.contact-section {
    display: flex;
    justify-content: center;
}

.contact-section .container {
    display: flex;
    flex-direction: column;
    color: var(--dark);
}

.contact-section .container iframe {
    margin: 24px 0;
    padding: 16px;
    background-color: var(--light-background);
    width: 100%;
    height: 40vh;
    box-sizing: border-box;
}

.contact-section .container .contact-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.contact-section .container .contact-info .contact-form {
    width: 65%;
    margin: 0;
    padding: 1em;
    background-color: var(--light-background);
}

.contact-section .container .contact-info .contact-form h3 {
    text-transform: uppercase;
    font-size: var(--font-base-size);
    border-bottom: 1px solid var(--border-color);
    font-weight: var(--font-weight-medium);
    line-height: 1.2;
    padding-bottom: 1em;
    margin-bottom: 1em;
}

.contact-section .container .contact-info .contact-form form {
    width: 100%;
}

.contact-section .container .contact-info .card {
    width: 30%;
    height: fit-content;
    margin: 0;
    padding: 1em;
    background-color: var(--light-background);
    box-sizing: border-box;
}

.contact-section .container .contact-info .card h4 {
    font-size: var(--font-base-size);
    line-height: 1.8;
    text-transform: uppercase;
    margin: 0;
}

.contact-section .container .contact-info .card p {
    color: var(--lighter);
    font-size: var(--font-sm-size);
    margin: 0;
    margin-bottom: 1em;
    line-height: 1.3;
}

.contact-section .container .contact-form form button {
    margin-top: 1em;
}

@media screen and (max-width: 991px) {
    .contact-section .container .contact-info {
        flex-wrap: wrap;
        gap: 24px;
    }

    .contact-section .container .contact-info .contact-form,
    .contact-section .container .contact-info .card {
        width: 100%;
    }
}

/* END OF CONTACT SECTION */

/* FOOTER */

footer {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: var(--light-background);
    border: 1px solid var(--border-color);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .container .card {
    width: 25%;
    height: fit-content;
    margin: 0;
    padding: 1em;
    color: var(--dark);
    box-sizing: border-box;
}

footer .container .card h3 {
    font-size: var(--font-xl-size);
    text-transform: uppercase;
    font-weight: var(--font-weight-medium);
}

footer .container .card h4 {
    font-weight: var(--font-weight-medium);
    font-size: var(--font-base-size);
    line-height: 1.8;
    text-transform: uppercase;
    margin: 0;
}

footer .container .card p,
footer .card li {
    color: var(--lighter);
    font-size: var(--font-sm-size);
    margin: 0;
    margin-bottom: 1em;
    line-height: 1.3;
}

footer .card ul {
    display: flex;
    flex-direction: column;
    height: fit-content;
    list-style: none;
    padding: 0;
}

footer .card li {
    display: inline-flex;
    align-items: center;
    padding: 0 0 4px;
    margin: 3px;
    font-size: var(--font-base-size);
}

footer .card li a {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--dark);
}

footer .card li .icon {
    stroke: var(--lighter);
    padding-bottom: 2px;
    margin-right: 5px;
}

footer .card button {
    margin: 1em 0;
}

.copyright {
    color: var(--lighter);
    text-align: center;
    font-size: var(--font-sm-size);
}

.copyright a {
    color: var(--dark);
    text-decoration: none;
}

@media screen and (max-width: 1200px) {
    footer .container {
        flex-wrap: wrap;
    }
    footer .container .card {
        width: 50%;
    }
}

@media screen and (max-width: 991px) {
    footer .container .card {
        width: 100%;
    }
}

/* END OF FOOTER */

/* WHATSAPP BUTTON */

.whatsapp-btn {
    width: 150px;
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 10;
}

.whatsapp-btn img {
    width: 100%;
}

.whatsapp-btn:hover {
    scale: 1.3;
    transition: all 250ms ease;
}

/* END OF WHATSAPP BUTTON */

/* BACK TO TOP */

a.backtotop {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    background-color: #e52e06;
    position: fixed;
    bottom: 65px;
    right: 25px;
    text-align: center;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    z-index: 999;
    overflow: hidden;
    border-radius: 50%;
}
a.backtotop:not(.active) {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
a.backtotop i {
    color: #fff;
}
a.backtotop::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(
        left,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    -webkit-transform: skewX(-45deg);
    -moz-transform: skewX(-45deg);
    -o-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
}
a.backtotop:hover::before {
    -webkit-animation: shine 0.75s;
    animation: shine 0.75s;
}
@media (max-width: 767px) {
    a.backtotop {
        display: none;
    }
}

/* END OF BACK TO TOP */

/* BROWSE PRODUCT CATEGORY */
.products-category-carousel .category-carousel-container {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
}

.products-category-carousel .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-category-carousel .carousel-arrow-left {
    left: -60px;
}

.products-category-carousel .carousel-arrow-right {
    right: -60px;
}

.products-category-carousel .carousel-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--dark);
}

.products-category-carousel .carousel-arrow:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.products-category-carousel .carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.products-category-carousel .category-carousel-wrapper {
    overflow: hidden;
    width: 1272px; /* Exactly 5 cards: 5 * 240px + 4 * 18px */
    margin: 0 auto;
    padding: 0;
    /* cursor: grab; */
}

.products-category-carousel .category-carousel-wrapper:active {
    /* cursor: grabbing; */
}

.products-category-carousel .category-carousel {
    display: flex;
    gap: 18px;
    transition: transform 0.3s ease;
    width: max-content;
    margin: 0;
    padding: 0;
}

.products-category-carousel .category-carousel.dragging {
    transition: none; /* Disable transition while dragging */
}

.products-category-carousel .category-card {
    box-sizing: border-box;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0;
    width: calc(240px - 2px);
    user-select: none; /* Prevent text selection while dragging */
}

.products-category-carousel .category-card-content {
    background-color: transparent;
    padding: 0;
    width: 240px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-category-carousel .category-card-link {
    text-decoration: none;
    display: block;
    margin: 0;
    padding: 0;
}

.products-category-carousel .category-image {
    width: 240px;
    aspect-ratio: 1/1;
    object-fit: contain;
    flex-shrink: 0;
    pointer-events: none; /* Prevent image drag */
}

.products-category-carousel .category-info {
    background-color: white !important;
    width: 240px;
    height: 59.2px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.products-category-carousel .category-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0.25rem !important;
    margin-top: 0;
    text-decoration: none;
}

.products-category-carousel .category-product-count {
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    text-decoration: none;
}

/* Responsive Media Queries */
@media (min-width: 576px) {
    .products-category-carousel .category-carousel-wrapper {
        width: 240px; /* 1 card */
    }
    .products-category-carousel .carousel-arrow-left {
        left: -30px;
    }
    .products-category-carousel .carousel-arrow-right {
        right: -30px;
    }
}

@media (min-width: 768px) {
    .products-category-carousel .category-carousel-wrapper {
        width: 498px; /* 2 cards: 240*2 + 18*1 */
    }
    .products-category-carousel .carousel-arrow-left {
        left: -40px;
    }
    .products-category-carousel .carousel-arrow-right {
        right: -40px;
    }
}

@media (min-width: 992px) {
    .products-category-carousel .category-carousel-wrapper {
        width: 756px; /* 3 cards: 240*3 + 18*2 */
    }
    .products-category-carousel .carousel-arrow-left {
        left: -50px;
    }
    .products-category-carousel .carousel-arrow-right {
        right: -50px;
    }
}

@media (min-width: 1200px) {
    .products-category-carousel .category-carousel-wrapper {
        width: 1014px; /* 4 cards: 240*4 + 18*3 */
    }
    .products-category-carousel .carousel-arrow-left {
        left: -60px;
    }
    .products-category-carousel .carousel-arrow-right {
        right: -60px;
    }
}

@media (min-width: 1400px) {
    .products-category-carousel .category-carousel-wrapper {
        width: 1272px; /* 5 cards: 240*5 + 18*4 */
    }
}

/* Small screens adjustments - HIDE ARROWS ON MOBILE */
@media (max-width: 991px) {
    .products-category-carousel .carousel-arrow {
        padding: 6px;
        width: 30px;
        height: 30px;
    }
    .products-category-carousel .category-carousel-container {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .products-category-carousel .category-carousel-wrapper {
        width: 240px; /* 1 card */
    }
}
/* BROWSE PRODUCT CATEGORY END */

/** ADVERT BANNERS SECTION */
.advert-section {
    padding: 40px 0;
    background-color: rgba(var(--bs-dark-rgb), 1);
    color: #fff;
    font-family: var(--font-family-base);
}

.advert-section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.advert-section .advert-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Mobile default */
    gap: 24px;
}

.advert-section .advert-card {
    background-color: var(--bs-white);
    color: #000;
    position: relative;
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advert-section .advert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.advert-section .advert-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.advert-section .advert-info {
    padding: 20px;
    text-align: center;
}

.advert-section .advert-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.advert-section .ad-banner-4 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2rem;
}

.advert-section .ad-banner-desc {
    text-transform: uppercase;
    line-height: 1;
    font-size: 1.25rem !important;
    margin-bottom: 0.5rem !important;
    margin-top: 0;
    box-sizing: border-box;
}

.advert-section .advert-description {
    color: #757575;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

/* Discount bubble */
.advert-section .discount-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--bs-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Button styling */
.advert-section .shop-advert-btn {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem;
    color: #fff;
    background-color: #212529;
    border: 1px solid #212529;
    border-radius: 0;
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s;
}

.advert-section .shop-advert-btn:hover {
    background-color: #424649;
    border-color: #373b3e;
}

/* Overlay-style card */
.advert-section .overlay-style {
    position: relative;
    display: flex;
    color: #fff;
    background-color: #000;
    min-height: 300px;
}

.advert-section .overlay-style .advert-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
}

.advert-section .advert-overlay {
    position: absolute;
    top: 5%;
    left: 50%;
    right: 50%;
    transform: translateX(-50%); /* Center horizontally */
    z-index: 1;
    width: calc(100% - 3rem); /* Leave some margin on sides */
    max-width: 90%;
}

.advert-section .advert-overlay-content {
    border: 2px solid #fff;
    padding: 1.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.65);
    text-align: center;
}

.advert-section .overlay-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.advert-section .overlay-subtitle {
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    margin: 0.75rem 0 0.5rem 0;
    text-transform: uppercase;
    font-weight: bold;
}

.advert-section .overlay-description {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Make all cards same height */
.advert-section .advert-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 1fr;
    gap: 24px;
}

.advert-section .advert-card {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.advert-section .shop-advert-btn.white {
    background-color: var(--bs-white);
    color: #000;
    border-color: var(--bs-white);
    font-weight: 600;
}

.advert-section .shop-advert-btn.white:hover {
    background-color: transparent;
    border-color: var(--bs-white);
    color: var(--bs-white);
}

/* Responsive tweaks */
/* Tablets */
@media (min-width: 768px) {
    .advert-section .advert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .advert-section .overlay-style {
        min-height: 350px;
    }
}
/* Desktops */
@media (min-width: 992px) {
    .advert-section .advert-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .advert-section .overlay-style {
        min-height: 400px;
    }
}
/* Large desktops */
@media (min-width: 1200px) {
    .advert-section .advert-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* END ADVERT BANNERS SECTION */
