@charset "utf-8";

/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
/* font-family: "Playfair Display", serif; */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* font-family: "Poppins", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
/* font-family: "DM Sans", sans-serif; */

/* 	-----------------------------------------------------
    ------------------- General Styles ------------------
    ----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: #000000;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    overflow-x: hidden;
    background-color: #f8f4f3;
}

a {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #000000;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #770302;
    text-decoration: none;
}

[contenteditable="true"]:focus {
    outline: none;
}

*:focus {
    outline: none;
}

img {
    margin: 0;
    padding: 0;
    outline-style: none;
    outline-width: 0;
    max-width: 100%;
    height: auto;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-start {
    justify-content: flex-start !important;
    gap: 20px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container-fluid {
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1320px;
    padding: 0 20px;
}

/* 	-----------------------------------------------------
    -------------------- Header Styles ------------------
    ----------------------------------------------------- */
.header-top-section {
    padding: 10px 0;
    background: linear-gradient(180deg, #61000c 0%, #41020a 100%);
    min-height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-top-section i {
    color: #fbd577;
    margin-right: 5px;
}

.header-top-section strong {
    font-weight: 700;
    color: #fbd577;
}

.header-top-section a {
    color: #fbd577;
    border-bottom: 1px solid #fbd577;
}

@media only screen and (max-width: 760px) {
    .header-top-section {
        font-size: 10px;
        line-height: 1;
    }
}

.header-mid-section {
    padding: 10px 0;
    width: 100%;
    background-color: #000d1e;
    transition: all 0.4s ease-in-out;
}

.header-mid-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-mid-section figure {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.header-mid-section aside {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0%;
    color: #ffffff;
}

.header-mid-section aside span {
    display: block;
    font-weight: 400;
    font-size: 14px;
}

.header-mid-section aside a {
    color: #ffffff;
}

.header-mid-section aside .shipping {
    padding-right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.header-mid-section aside .account {
    padding-right: 30px;
    padding-left: 30px;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.header-mid-section aside .cart {
    padding-left: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    position: relative;
}

.header-mid-section aside .cart span {
    position: absolute;
    left: 42px;
    top: -12px;
    width: 20px;
    height: 20px;
    background-color: #e5b55a;
    border: 1px solid #000b1d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
}

@media only screen and (max-width: 760px) {
    .header-mid-section .container {
        flex-wrap: wrap;
    }

    .header-mid-section figure {
        width: 80%;
        justify-content: flex-start;
        gap: 10px;
    }

    .header-mid-section figure img {
        width: 130px;
    }

    .header-mid-section aside {
        padding: 10px 0;
        width: 100%;
        font-size: 12px;
    }

    .header-mid-section aside span {
        font-size: 10px;
    }

    .header-mid-section aside .shipping {
        padding-right: 15px;
        gap: 15px;
    }

    .header-mid-section aside .account {
        padding-right: 15px;
        padding-left: 15px;
    }

    .header-mid-section aside .cart {
        padding-left: 15px;
    }

    .header-mid-section aside .cart span {
        left: 30px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .header-mid-section .container {
        flex-wrap: wrap;
    }

    .header-mid-section figure {
        width: 80%;
        justify-content: flex-start;
    }

    .header-mid-section figure img {
        width: 100%;
    }

    .header-mid-section aside {
        padding: 10px 0;
        width: 100%;
        justify-content: flex-end;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    .header-mid-section figure {
        width: 50%;
        justify-content: flex-start;
        gap: 20px;
    }

    .header-mid-section figure img {
        width: 100%;
    }
}

.header-section.sticky {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all 0.4s ease-in-out;
}

.header-nav-section {
    background-color: #000d1e;
    border-top: 1px solid #e5b55a;
    border-bottom: 1px solid #e5b55a;
    position: relative;
}

.header-nav-section::before {
    content: "";
    width: 120px;
    height: 22px;
    background: #000d1e url(../img/star-3.svg) no-repeat center;
    position: absolute;
    left: 50%;
    top: -11px;
    margin-left: -60px;
    z-index: 9;
}

.menu-bar {
    list-style: none;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    width: 300px;
    height: 100%;
    background: #000d1e;
    opacity: 0;
    transition: 0.4s;
    padding: 20px;
    margin: 0;
}

.menu-bar.show {
    left: 0;
    opacity: 1;
    box-shadow: 0px 10px 25px -3px #0000000d;
}

.menu-bar li {
    margin: 0;
}

.menu-bar li a {
    font-size: 16px;
    font-weight: 600;
    line-height: 58px;
    color: #ffffff;
    white-space: nowrap;
    display: flex;
    transition: 0.5s;
}

.menu-bar.show li a {
    color: #ffffff;
    display: block;
}

.menu-bar.show li a.active {
    color: #e4ac61;
    position: relative;
}

.menu-bar.show li a svg path {
    fill: #ffffff;
}

.dropDown-list {
    position: relative;
}

.dropDown-list a.active {
    color: #e4ac61;
}

.dropDown-list a span svg {
    width: 12px;
}

.dropDown-list a span svg path {
    transition: 0.4s;
}

.dropDown-list a.active span svg path {
    fill: #e4ac61;
}

.dropDown-list a.active span svg {
    transform: rotate(180deg);
}

.dropDown_menu {
    display: none;
    position: relative;
    box-shadow: 0px 4px 44px 0px #00000026;
    list-style: none;
}

.menu-bar.show .dropDown_menu {
    box-shadow: none;
    padding: 0;
}

.dropDown_menu li {
    line-height: 1;
    margin-top: 15px;
    margin-bottom: 0;
}

.dropDown_menu li a {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #e4ac61;
    padding: 5px 0;
    white-space: nowrap;
    display: inline-block;
}

.toggle-btn {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 24px;
    font-size: 24px;
    padding: 0;
    color: #e4ac61;
    position: absolute;
    right: 20px;
    top: -120px;
    z-index: 99;
    cursor: pointer;
}

.nav-cta {
    padding: 0 20px;
    background-color: #e4ac61;
    border: none;
    border-radius: 50px;
    color: #ffffff !important;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-cta i {
    font-size: 12px;
    transition: transform 0.25s;
}

.nav-cta:hover {
    background-color: #a52914;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -10px rgba(200, 50, 30, 0.5);
}

.nav-cta:hover i {
    transform: translateX(4px);
    transition: transform 0.25s;
}

@media (min-width: 1024px) {
    .menu-bar {
        width: 300px;
    }

    .dropDown-list:hover .dropDown_menu {
        display: block !important;
    }
}

@media (min-width: 1024px) {
    .toggle-btn {
        display: none;
    }

    .menu-bar {
        position: relative;
        top: unset;
        left: unset;
        width: unset;
        opacity: 1;
        background: transparent;
        display: flex;
        justify-content: space-between;
        gap: 20px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .menu-bar li a:hover {
        color: #e4ac61;
        transition: 0.5s;
    }

    .menu-bar li a.active {
        color: #e4ac61;
        transition: 0.5s;
        position: relative;
    }

    .dropDown-list a.active {
        color: #e4ac61;
    }

    .dropDown-list a.active span svg path,
    .dropDown-list a:hover span svg path {
        fill: #e4ac61;
    }

    .dropDown_menu {
        list-style: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        min-width: 300px;
        background: #1a1a1a;
        border-radius: 0;
        padding: 10px 20px;
    }

    .dropDown_menu li {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .dropDown_menu li a {
        font-size: 16px;
        font-weight: 500;
    }

    .dropDown_menu li a:hover {
        color: #e4ac61;
    }
}

@media only screen and (max-width: 1024px) {
    .header-section nav {
        width: auto;
    }

    .nav-cta {
        margin-left: 0 !important;
    }

    .header-nav-section::before {
        display: none;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1170px) {
    .menu-bar {
        gap: 15px;
    }
}

/* 	-----------------------------------------------------
    -------------------- Banner Styles ------------------
    ----------------------------------------------------- */
.banner-section {
    background-color: #000d1e;
    position: relative;
    z-index: 1;
}

.banner-section .container {
    padding: 100px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 660px;
}

.banner-section article {
    width: 50%;
}

.banner-section h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    color: #E5B55A;
}

.banner-section h1 span {
    display: block;
    font-size: 46px;
    color: #ffffff;
}

.banner-section h6 {
    font-size: 20px;
    color: #C9973A;
    position: relative;
    padding: 10px 0 10px 70px;
}

.banner-section h6::before {
    content: "";
    width: 60px;
    height: 3px;
    background-color: #C9973A;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.banner-section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    padding: 10px 0;
    max-width: 530px;
}

.banner-section .btn-group {
    margin-top: 15px;
    justify-content: flex-start;
}

@media only screen and (max-width: 760px) {
    .banner-section .container {
        padding: 50px 20px;
        min-height: 360px;
    }

    .banner-section article {
        width: 100%;
    }

    .banner-section h1 {
        font-size: 32px;
    }

    .banner-section h1 span {
        font-size: 28px;
    }

    .banner-section h6 {
        font-size: 16px;
        padding: 10px 0 10px 50px;
    }

    .banner-section h6::before {
        width: 40px;
        height: 2px;
    }

    .banner-section p {
        font-size: 14px;
        max-width: 100%;
    }

    .banner-section .btn-group {
        margin-top: 15px;
        justify-content: flex-start;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1280px) {
    .banner-section article {
        width: 100%;
    }
}

.inner-banner-section {
    padding: 50px 0;
    background: #000d1e url(../img/inner-banner.png) no-repeat right;
}

.inner-banner-section h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    padding: 10px 0 0 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #D8BE8C;
}

.breadcrumb a,
.breadcrumb span {
    color: #D8BE8C;
    text-decoration: none;
}

.breadcrumb a+a::before,
.breadcrumb a+span::before {
    content: "/";
    margin: 0 10px;
    color: #D8BE8C;
}

.breadcrumb .active {
    color: #D8BE8C;
}

@media only screen and (max-width: 760px) {
    .inner-banner-section {
        padding: 20px 0;
    }

    .inner-banner-section h1 {
        font-size: 24px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .breadcrumb a+a::before,
    .breadcrumb a+span::before {
        content: "/";
        margin: 0 5px;
    }
}

/* 	-----------------------------------------------------
    ------------------- Content Styles ------------------
    ----------------------------------------------------- */
.content-section {
    min-height: 400px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    padding: 10px 0;
}

.content-section h1 {
    font-size: 54px;
}

.content-section h2 {
    font-size: 48px;
}

.content-section h3 {
    font-size: 36px;
}

.content-section h4 {
    font-size: 32px;
}

.content-section h5 {
    font-size: 28px;
}

.content-section h6 {
    font-size: 24px;
}

.content-section p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    padding: 10px 0;
}

.content-section ul {
    margin: 0;
    padding: 0 0 0 15px;
    list-style: disc;
}

.content-section ul li {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    margin: 5px 0;
}

.content-section ul ul {
    list-style: circle;
}

.content-section ol {
    margin: 0;
    padding: 10px 18px;
    list-style: decimal;
}

.content-section ol li {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    margin: 5px 0;
}

.content-section ol ol {
    list-style: lower-roman;
}

.btn-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.btn-01 a {
    margin: 15px 0;
    padding: 10px 25px;
    width: auto;
    height: 56px;
    background: linear-gradient(90deg, #770302 0%, #490103 100%);
    border: 2px solid #E5B55ABF;
    border-radius: 5px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.btn-02 a {
    margin: 15px 0;
    padding: 10px 25px;
    width: auto;
    height: 56px;
    background: #00020C00;
    border: 2px solid #E5B55ABF;
    border-radius: 5px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.btn {
    font-family: "Playfair Display", serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 20px;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(159.66deg, #B8161A 12.25%, #520A0C 66.76%);
    color: #ffffff !important;
}

.btn-secondary {
    background: transparent;
    color: #000000 !important;
    border-color: #000000;
}

.btn-lg {
    padding: 16px 26px;
    font-size: 16px;
}

@media only screen and (max-width: 760px) {
    .content-section h1 {
        font-size: 32px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .content-section h3 {
        font-size: 24px;
    }

    .content-section h4 {
        font-size: 22px;
    }

    .content-section h5 {
        font-size: 20px;
    }

    .content-section h6 {
        font-size: 18px;
    }

    .content-section p {
        font-size: 16px;
    }

    .content-section ul li {
        font-size: 16px;
    }

    .content-section ol li {
        font-size: 16px;
    }

    .btn-01 a,
    .btn-02 a {
        margin: 5px 0;
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* 	-----------------------------------------------------
    -------------------- Footer Styles ------------------
    ----------------------------------------------------- */
.footer-section {
    background-color: #000f24;
}

.footer-top-section {
    padding: 40px 0;
    background-color: #000f24;
}

.footer-top-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-top-section .container figure {
    width: 250px;
}

.footer-top-section .container aside {
    width: calc(100% - 250px);
}

.footer-top-section .btn-shop-new a {
    margin: 0;
    padding: 10px 15px;
    width: 210px;
    height: 66px;
    background: linear-gradient(180deg, #61000c 0%, #41020a 100%);
    border: 1px solid #ffffff75;
    border-radius: 6px;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.footer-top-section .btn-best-seller a {
    margin: 0;
    padding: 10px 15px;
    width: 210px;
    height: 66px;
    background: transparent;
    border: 1px solid #ffffff75;
    border-radius: 6px;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.footer-top-section .top-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-top-section .top-panel h3 {
    font-family: "Playfair Display", serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.2;
    color: #fbd577;
    text-transform: uppercase;
    padding: 0 0 5px 0;
}

.footer-top-section .top-panel h6 {
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    padding: 5px 0 0 0;
    max-width: 480px;
}

.footer-top-section .bot-panel {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding-top: 30px;
}

.footer-top-section .bot-panel h4 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #fbd577;
    padding: 0 0 10px 0;
}

.footer-top-section .follow {
    width: 100%;
    max-width: 324px;
}

.footer-top-section ul.social {
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-top-section ul.social li {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    letter-spacing: -3%;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-top-section ul.social li a {
    width: 22px;
    height: 22px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #ffffff;
    transition: 0.5s;
}

.footer-top-section ul.social li a:hover {
    border: 1px solid #e4ac61;
    color: #e4ac61;
    transition: 0.5s;
}

.footer-top-section ul.links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-top-section ul.links li {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #ffffff;
    white-space: nowrap;
}

.footer-top-section ul.links li a {
    color: #ffffff;
    transition: 0.5s;
}

.footer-top-section ul.links li a:hover {
    color: #fbd577;
    transition: 0.5s;
}

.footer-top-section .shop ul.links {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer-top-section .shop ul.links li {
    width: 50%;
}

.footer-bot-section {
    padding: 25px 0;
    background: linear-gradient(180deg, #61000c 0%, #41020a 100%);
    font-family: "Times New Roman", Times, serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    text-align: center;
}

@media only screen and (max-width: 760px) {
    .footer-top-section {
        padding: 20px 0;
    }

    .footer-top-section .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-top-section .container figure {
        width: 100%;
        text-align: center;
    }

    .footer-top-section .container figure img {
        width: 35%;
    }

    .footer-top-section .container aside {
        width: 100%;
    }

    .footer-top-section .btn-shop-new a {
        width: auto;
        height: 46px;
        font-size: 15px;
    }

    .footer-top-section .btn-best-seller a {
        width: auto;
        height: 46px;
        font-size: 15px;
    }

    .footer-top-section .top-panel {
        flex-wrap: wrap;
        gap: 20px;
        text-align: center;
    }

    .footer-top-section .top-panel article,
    .footer-top-section .top-panel .btn-group {
        width: 100%;
    }

    .footer-top-section .top-panel h3 {
        font-size: 19px;
    }

    .footer-top-section .top-panel h6 {
        font-size: 15px;
        max-width: 100%;
    }

    .footer-top-section .bot-panel {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-top-section .bot-panel h4 {
        font-size: 16px;
    }

    .footer-top-section .follow {
        width: 100%;
        max-width: 100%;
    }

    .footer-top-section .shop {
        width: 100%;
    }

    .footer-top-section .company,
    .footer-top-section .customer {
        width: 47%;
    }

    .footer-top-section ul.social li {
        font-size: 13px;
    }

    .footer-top-section ul.links {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .footer-top-section ul.links li {
        font-size: 14px;
    }

    .footer-bot-section {
        padding: 15px 0;
        font-size: 16px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .footer-top-section .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-top-section .container figure {
        width: 100%;
        text-align: center;
    }

    .footer-top-section .container aside {
        width: 100%;
    }

    .footer-top-section .top-panel {
        flex-wrap: wrap;
        gap: 20px;
        text-align: center;
    }

    .footer-top-section .top-panel h6 {
        max-width: 100%;
    }

    .footer-top-section .top-panel article,
    .footer-top-section .top-panel .btn-group {
        width: 100%;
    }

    .footer-top-section .bot-panel {
        flex-wrap: wrap;
        gap: 0;
    }

    .footer-top-section .follow {
        max-width: 100%;
        text-align: center;
        padding-bottom: 20px;
    }

    .footer-top-section .shop {
        width: 50%;
    }

    .footer-top-section .company,
    .footer-top-section .customer {
        width: 25%;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    .footer-top-section .top-panel {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-top-section .top-panel h6 {
        max-width: 100%;
    }

    .footer-top-section .bot-panel {
        flex-wrap: wrap;
        gap: 0;
    }

    .footer-top-section .follow {
        max-width: 100%;
        padding-bottom: 20px;
    }

    .footer-top-section .shop {
        width: 50%;
    }

    .footer-top-section .company,
    .footer-top-section .customer {
        width: 25%;
    }

    .footer-top-section ul.social {
        justify-content: flex-start;
    }
}

/* 	-----------------------------------------------------
    --------------------- Join Styles -------------------
    ----------------------------------------------------- */

.join-the-legacy-section {
    padding: 20px 0;
    background-color: #e4dad0;
}

.join-the-legacy-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.join-the-legacy-section article {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.join-the-legacy-section figure {
    width: 72px;
    height: 72px;
}

.join-the-legacy-section figcaption {
    width: calc(100% - 102px);
}

.join-the-legacy-section h5 {
    font-size: 26px;
    font-weight: 500;
    padding: 0 0 5px 0;
}

.join-the-legacy-section h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    padding: 5px 0 0 0;
}

.join-the-legacy-section aside {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.join-the-legacy-section input[type="email"] {
    margin: 0;
    padding: 10px 20px 10px 56px;
    width: calc(100% - 220px);
    height: 56px;
    background: #FFFFFF70 url(../img/input-email.svg) no-repeat left;
    border: 1px solid #D4D3D0;
    border-radius: 6px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    color: #000000;
}

.join-the-legacy-section input[type="submit"] {
    margin: 0;
    padding: 10px 20px;
    width: 210px;
    height: 56px;
    background: linear-gradient(180deg, #61000C 0%, #41020A 100%);
    border: none;
    border-radius: 6px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 36px;
    color: #ffffff;
    cursor: pointer;
}

@media only screen and (max-width: 760px) {
    .join-the-legacy-section .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .join-the-legacy-section article {
        width: 100%;
        gap: 20px;
    }

    .join-the-legacy-section figcaption {
        width: calc(100% - 92px);
    }

    .join-the-legacy-section h5 {
        font-size: 20px;
    }

    .join-the-legacy-section h6 {
        font-size: 14px;
    }

    .join-the-legacy-section aside {
        width: 100%;
        flex-wrap: wrap;
    }

    .join-the-legacy-section input[type="email"] {
        margin: 0;
        padding: 10px 20px 10px 56px;
        width: 100%;
        height: 50px;
        font-size: 16px;
        line-height: 34px;
    }

    .join-the-legacy-section input[type="submit"] {
        width: 100%;
        height: 50px;
        font-size: 16px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .join-the-legacy-section .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .join-the-legacy-section article {
        width: 100%;
    }

    .join-the-legacy-section aside {
        width: 100%;
    }
}

/* 	-----------------------------------------------------
    --------------------- Body Styles -------------------
    ----------------------------------------------------- */

.more-than-section {
    padding: 20px 0;
    background-color: #e4dad0;
}

.more-than-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.more-than-section figure {
    width: 234px;
}

.more-than-section article {
    width: calc(100% - 234px);
    text-align: center;
}

.more-than-section article h6 {
    font-weight: 400;
    margin: 0 auto;
    max-width: 840px;
}

.fancy-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.fancy-divider::before,
.fancy-divider::after {
    content: "";
    flex: 1;
    height: 2px;
}

.fancy-divider::before {
    background: linear-gradient(90deg, rgba(127, 100, 50, 0) 30%, #B8161A 100%);
}

.fancy-divider::after {
    background: linear-gradient(90deg, #B8161A 0.25%, rgba(127, 100, 50, 0) 70%);
}

.star {
    color: #9c0317;
    font-size: 30px;
    line-height: 1;
}

@media only screen and (max-width: 760px) {
    .more-than-section .container {
        flex-wrap: wrap;
        text-align: center;
    }

    .more-than-section figure {
        width: 100%;
    }

    .more-than-section article {
        width: 100%;
    }
}

.history-meets-section {
    background-color: #e9e5e2;
    display: flex;
    justify-content: space-between;
}

.history-meets-section figure {
    width: 30%;
    display: flex;
}

.history-meets-section article {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 20px;
}

.history-meets-section article img {
    margin: 0 0 10px 0;
}

.history-meets-section article h4 {
    font-size: 30px;
}

.history-meets-section article p {
    font-family: "Playfair Display", serif;
}

.history-meets-section aside {
    width: 40%;
    background: linear-gradient(358.13deg, #860B1A 1.28%, #41020A 91.5%);
    padding: 20px;
    display: flex;
}

.history-meets-section .content {
    padding: 10px 40px;
    width: 100%;
    border: 2px solid #FBD577;
    text-align: center;
    position: relative;
}

.history-meets-section .content::before {
    content: "";
    width: 2px;
    height: 100%;
    background: url(../img/grdn-border.png) no-repeat center;
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translate(0, -50%);
}

.history-meets-section .content::after {
    content: "";
    width: 2px;
    height: 100%;
    background: url(../img/grdn-border.png) no-repeat center;
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translate(0, -50%);
}

.history-meets-section .content h4 {
    font-size: 30px;
    font-weight: 500;
    color: #FBD577;
}

.history-meets-section .content h6 {
    color: #FBD577;
    padding: 0;
}

.history-meets-section .content p {
    font-size: 16px;
    color: #ffffff;
}

.history-meets-section .content .fancy-divider::before {
    background: linear-gradient(90deg, rgba(251, 213, 119, 0) 35.76%, #FBD577 100%);
}

.history-meets-section .content .fancy-divider::after {
    background: linear-gradient(270deg, rgba(251, 213, 119, 0) 53.47%, #FBD577 97.34%);
}

.history-meets-section .content .star {
    color: #E49F2A;
}

.history-meets-section .donated {
    margin: 10px auto;
    padding: 5px;
    background: linear-gradient(186.09deg, #7C0716 4.71%, #41020A 95.18%);
    border: 5px solid #C77F07;
    border-radius: 17px;
}

.history-meets-section .donated .box {
    border: 1px solid #C77F07;
    border-radius: 9px;
    padding: 10px;
}

.history-meets-section .donated .box h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 64px;
    color: #E49F2A;
    padding: 0;
}

.history-meets-section .donated .box h6 {
    color: #ffffff;
    padding: 0;
}

.history-meets-section .donated .box p {
    padding: 0;
}

@media only screen and (max-width: 760px) {
    .history-meets-section {
        flex-wrap: wrap;
    }

    .history-meets-section figure {
        width: 100%;
    }

    .history-meets-section article {
        width: 100%;
    }

    .history-meets-section aside {
        width: 100%;
    }

    .history-meets-section .content {
        padding: 10px;
    }

    .history-meets-section .content h4 {
        font-size: 22px;
    }

    .history-meets-section .donated .box h2 {
        font-size: 54px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1170px) {
    .history-meets-section {
        flex-wrap: wrap;
    }

    .history-meets-section figure {
        width: 50%;
    }

    .history-meets-section article {
        width: 50%;
    }

    .history-meets-section aside {
        width: 100%;
    }
}

.why-collectors-section {
    padding: 30px 0;
    background-color: #010e1f;
    text-align: center;
}

.why-collectors-section h2 {
    color: #D58533;
}

.why-collectors-section .fancy-divider {
    margin: 0 auto;
    max-width: 600px;
}

.why-collectors-section .fancy-divider::before {
    background: linear-gradient(90deg, rgba(251, 213, 119, 0) 35.76%, #FBD577 100%);
}

.why-collectors-section .fancy-divider::after {
    background: linear-gradient(270deg, rgba(251, 213, 119, 0) 53.47%, #FBD577 97.34%);
}

.why-collectors-section .star {
    color: #E49F2A;
}

.why-collectors-section .grid-container {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.why-collectors-section .grid-item {
    padding: 20px;
    text-align: center;
    position: relative;
}

.why-collectors-section .grid-item::after {
    content: "";
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.why-collectors-section .grid-item:last-child::after {
    display: none;
}

.why-collectors-section h6 {
    font-size: 22px;
    font-weight: 400;
    color: #E5B55A;
}

.why-collectors-section p {
    font-family: "Playfair Display", serif;
    color: #ffffff;
}

@media only screen and (max-width: 760px) {
    .why-collectors-section .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .why-collectors-section .grid-item::after {
        content: "";
        width: 100%;
        height: 2px;
        background-image: none;
        background: linear-gradient(90deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
        position: absolute;
        right: auto;
        top: auto;
        left: 0;
        bottom: 0;
    }

    .why-collectors-section h6 {
        font-size: 18px;
    }
}

.shop-by-category-section {
    padding: 30px 0;
    background-color: #eae5e2;
    text-align: center;
}

.shop-by-category-section .fancy-divider {
    margin: 0 auto;
    max-width: 500px;
}

.shop-by-category-section .grid-container {
    margin: 20px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.shop-by-category-section .grid-item {
    background: #FFFFFF70;
    border: 1px solid #D4D3D0;
}

.shop-by-category-section .grid-item figure {
    display: flex;
}

.shop-by-category-section .grid-item article {
    padding: 20px;
    text-align: left;
}

.shop-by-category-section .tag {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 1.4;
    text-transform: uppercase;
    color: #696969;
}

.shop-by-category-section .title {
    margin: 10px 0;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #0B1D3A;
    min-height: 58px;
}

.shop-by-category-section .excerpt {
    margin: 10px 0;
    font-family: "Playfair Display", serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #000000;
}

.shop-by-category-section .btn-01 a {
    margin: 0;
    width: 100%;
    height: 46px;
    font-size: 16px;
    line-height: 26px;
    border: none;
}

@media only screen and (max-width: 760px) {
    .shop-by-category-section .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .shop-by-category-section .title {
        font-size: 20px;
        min-height: inherit;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .shop-by-category-section .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-by-category-section .title {
        min-height: inherit;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    .shop-by-category-section .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonials-section {
    padding: 30px 0;
    background-color: #010e21;
}

.testimonials-section .grid-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonials-section .grid-item {
    padding: 24px;
    border: 1px solid #D99D08;
    border-radius: 11px;
}

.testimonials-section p {
    font-family: "Playfair Display", serif;
    color: #ffffff;
}

.testimonials-section .d-flex {
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonials-section .star-rating {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2px;
}

.testimonials-section .star-rating .star {
    font-size: 24px;
    color: #E49F2A;
}

.testimonials-section .bot-flex {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.testimonials-section .author-details {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    width: calc(100% - 130px);
    position: relative;
}

.testimonials-section .author-details::after {
    content: "";
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.testimonials-section .author-details .avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(180deg, #94071A 0%, #2E0208 100%);
    border: 1px solid #D39703;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0%;
    text-align: center;
    color: #E5B55A;
}

.testimonials-section .author-details .detail {
    width: calc(100% - 80px);
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0%;
    color: #FBD577;
    white-space: nowrap;
}

.testimonials-section .author-details .detail span {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    color: #9A9588;
}

@media only screen and (max-width: 760px) {
    .testimonials-section .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .testimonials-section .grid-item {
        padding: 20px;
    }

    .testimonials-section .author-details .avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .testimonials-section .author-details .detail {
        width: calc(100% - 60px);
        font-size: 16px;
    }

    .testimonials-section .author-details .detail span {
        font-size: 13px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1280px) {
    .testimonials-section .bot-flex {
        flex-wrap: wrap;
    }

    .testimonials-section .author-details {
        width: 100%;
    }

    .testimonials-section .author-details .avatar {
        width: 54px;
        height: 54px;
        font-size: 16px;
    }

    .testimonials-section .author-details .detail {
        width: calc(100% - 70px);
        font-size: 16px;
    }

    .testimonials-section .author-details .detail span {
        font-size: 13px;
    }
}

.about-section01 .container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.about-section01 .left-panel {
    width: 50%;
}

.about-section01 .right-panel {
    width: 50%;
    padding: 50px 0;
    text-align: center;
}

.subheading-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.subheading-divider::before,
.subheading-divider::after {
    content: "";
    flex: 1;
    height: 2px;
}

.subheading-divider::before {
    background: linear-gradient(90deg, rgba(127, 100, 50, 0) 30%, #B8161A 100%);
}

.subheading-divider::after {
    background: linear-gradient(90deg, #B8161A 0.25%, rgba(127, 100, 50, 0) 70%);
}

.subheading {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: #B8161A;
    text-transform: uppercase;
}

.about-section01 .right-panel h6 {
    margin: 0 auto;
    max-width: 460px;
    font-weight: 500;
    color: #1C1C1C;
    padding: 0 0 10px 0;
}

.about-section01 p strong {
    font-weight: 600;
    color: #B8161A;
}

.about-section01 .left-panel .grid-container {
    margin: 20px auto 30px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-section01 .left-panel .grid-item {
    text-align: center;
}

.about-section01 .left-panel h6 {
    font-size: 18px;
    padding: 0 0 10px 0;
    position: relative;
}

.about-section01 .left-panel h6::after {
    content: "";
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(229, 181, 90, 0) 0%, #B8161A 48.08%, rgba(127, 100, 50, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-section01 .left-panel p {
    font-size: 15px;
    margin-top: 5px;
}

@media only screen and (max-width: 760px) {
    .about-section01 .container {
        flex-wrap: wrap;
        gap: 0;
    }

    .about-section01 .left-panel {
        width: 100%;
    }

    .about-section01 .left-panel figure {
        margin: 0 -20px;
    }

    .about-section01 .right-panel {
        width: 100%;
        padding: 20px 0;
    }

    .subheading {
        font-size: 14px;
    }


    .about-section01 .left-panel .grid-container {
        margin: 10px auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .about-section01 .container {
        flex-wrap: wrap;
        gap: 0;
    }

    .about-section01 .left-panel {
        width: 100%;
    }

    .about-section01 .left-panel figure {
        margin: 0 -20px;
    }

    .about-section01 .right-panel {
        width: 100%;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    .about-section01 .container {
        gap: 20px;
    }
}

.about-section02 {
    padding: 50px 0;
    background-color: #01112B;
    text-align: center;
}

.about-section02 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.about-section02 .left-panel {
    width: 60%;
    background: url(../img/bg-01.png) no-repeat center;
}

.about-section02 .right-panel {
    width: 40%;
    padding: 20px;
    background: linear-gradient(358.13deg, #860B1A 1.28%, #41020A 91.5%);
    border: 1px solid #FBD577;
    border-radius: 10px;
}

.about-section02 h2,
.about-section02 h4 {
    font-weight: 500;
    color: #FBD577;
}

.about-section02 p {
    color: #ffffff;
}

.about-section02 .fancy-divider {
    margin: 0 auto 20px auto;
    max-width: 600px;
}

.about-section02 .fancy-divider::before {
    background: linear-gradient(90deg, rgba(251, 213, 119, 0) 35.76%, #FBD577 100%);
}

.about-section02 .fancy-divider::after {
    background: linear-gradient(270deg, rgba(251, 213, 119, 0) 53.47%, #FBD577 97.34%);
}

.about-section02 .star {
    color: #E49F2A;
}

.about-section02 .box {
    margin: 10px auto;
    padding: 10px;
    background: linear-gradient(186.09deg, #7C0716 4.71%, #41020A 95.18%);
    border: 5px solid #C77F07;
    border-radius: 17px;
}

.about-section02 .box .btn-01 a {
    margin: 0;
    padding: 0;
    width: 100%;
    background: transparent;
    border: 1px solid #C77F07;
    border-radius: 9px;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    text-transform: none;
    color: #E49F2A;
}

@media only screen and (max-width: 760px) {
    .about-section02 {
        padding: 30px 0;
    }

    .about-section02 .container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .about-section02 .left-panel {
        width: 100%;
    }

    .about-section02 .right-panel {
        width: 100%;
    }

    .about-section02 .box .btn-01 a {
        font-size: 16px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .about-section02 .container {
        flex-wrap: wrap;
    }

    .about-section02 .left-panel {
        width: 100%;
    }

    .about-section02 .right-panel {
        width: 100%;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    .about-section02 .container {
        gap: 30px;
    }

    .about-section02 .left-panel {
        width: 50%;
    }

    .about-section02 .right-panel {
        width: 50%;
    }
}

.contact-section {
    padding: 50px 0;
    background-color: #01112B;
}

.contact-section section {
    width: 100%;
    background: #EEE7DF;
    border: 2px solid #FBD577;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
}

.contact-section .info-box {
    padding: 30px;
    width: 40%;
    text-align: center;
}

.contact-section .info-box figure img {
    height: 140px;
}

.contact-section .info {
    margin: 15px 0;
    padding: 20px;
    border: 1px solid #D7C8BE;
    border-radius: 8px;
    box-shadow: 0px 4px 44px 0px #0000001C;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

.contact-section .info figure {
    width: 54px;
    height: 54px;
    background: linear-gradient(180deg, #69010A 0%, #8B0110 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #ffffff;
}

.contact-section .info article {
    width: calc(100% - 70px);
    text-align: left;
}

.contact-section .info article h6 {
    padding: 0 0 5px 0;
}

.contact-section .info article p {
    font-family: "Playfair Display", serif;
    padding: 0;
}

.contact-section .info-black {
    margin: 15px 0;
    padding: 20px;
    background: #000E28;
    border: 1px solid #D7C8BE;
    border-radius: 8px;
    box-shadow: 0px 4px 44px 0px #0000001C;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

.contact-section .info-black figure {
    padding: 0 12px;
    width: 54px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-section .info-black article {
    width: calc(100% - 70px);
    text-align: left;
}

.contact-section .info-black article h6 {
    padding: 0 0 5px 0;
    color: #FBD577;
}

.contact-section .info-black article p {
    font-family: "Playfair Display", serif;
    color: #ffffff;
    padding: 0;
}

.contact-section .form-box {
    padding: 50px;
    width: 60%;
    background-color: #4A0309;
    border-radius: 0 10px 10px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.contact-section .form-box h2 {
    color: #ffffff;
}

.contact-section .form-box .fancy-divider {
    margin: 0 auto 20px auto;
    max-width: 600px;
}

.contact-section .form-box .fancy-divider::before {
    background: linear-gradient(90deg, rgba(251, 213, 119, 0) 35.76%, #FBD577 100%);
}

.contact-section .form-box .fancy-divider::after {
    background: linear-gradient(270deg, rgba(251, 213, 119, 0) 53.47%, #FBD577 97.34%);
}

.contact-section .form-box .star {
    color: #E49F2A;
}

.contact-section .form-box p {
    color: #ffffff;
}

.contact-section .form-box p.d-flex {
    justify-content: center;
    gap: 10px;
}

.contact-section form {
    width: 100%;
}

.row {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.col-half {
    width: 50%;
}

.col-one-third {
    width: 33.333%;
}

.col-full {
    width: 100%;
}

.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section input[type="tel"],
.contact-section textarea {
    margin: 0;
    padding: 15px;
    width: 100%;
    height: 66px;
    background: #3D0609;
    border: 1px solid #FBD577;
    border-radius: 3px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
    color: #ffffff;
}

.contact-section input[type="text"] {
    background: #3D0609 url(../img/input-name.png) no-repeat right;
}

.contact-section input[type="email"] {
    background: #3D0609 url(../img/input-email.png) no-repeat right;
}

.contact-section input[type="tel"] {
    background: #3D0609 url(../img/input-phone.png) no-repeat right;
}

.contact-section textarea {
    background: #3D0609 url(../img/input-message.png) no-repeat 100% 0;
    height: 180px;
    overflow: auto;
    resize: none;
}

.contact-section ::placeholder {
    color: #ffffff;
}

.contact-section input[type="submit"] {
    margin: 0 auto;
    padding: 15px;
    width: 100%;
    max-width: 340px;
    height: 66px;
    background: linear-gradient(169.94deg, #E7A954 6.96%, #B2701C 91.98%);
    border: none;
    border-radius: 3px;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 34px;
    color: #ffffff;
    cursor: pointer;
}

.map-section {
    display: flex;
}

@media only screen and (max-width: 760px) {
    .contact-section {
        padding: 20px 0;
    }

    .contact-section section {
        flex-wrap: wrap;
    }

    .contact-section .info-box {
        padding: 15px;
        width: 100%;
    }

    .contact-section .info-box figure img {
        height: 100px;
    }

    .contact-section .info {
        padding: 15px;
    }

    .contact-section .info figure {
        width: 44px;
        height: 44px;
    }

    .contact-section .info article {
        width: calc(100% - 60px);
    }

    .contact-section .info-black {
        padding: 15px;
    }

    .contact-section .info-black figure {
        padding: 0 7px;
        width: 44px;
    }

    .contact-section .info-black article {
        width: calc(100% - 60px);
    }

    .contact-section .form-box {
        padding: 15px;
        width: 100%;
        border-radius: 0 0 10px 10px;
    }

    .row {
        padding: 5px 0;
        flex-wrap: wrap;
        gap: 10px;
    }

    .col-half,
    .col-one-third {
        width: 100%;
    }

    .contact-section input[type="text"],
    .contact-section input[type="email"],
    .contact-section input[type="tel"],
    .contact-section textarea {
        height: 56px;
        font-size: 16px;
        line-height: 24px;
    }

    .contact-section input[type="submit"] {
        height: 56px;
        font-size: 16px;
        line-height: 24px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .contact-section section {
        flex-wrap: wrap;
    }

    .contact-section .info-box,
    .contact-section .form-box {
        width: 100%;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1170px) {
    .contact-section .info-box {
        width: 45%;
    }

    .contact-section .form-box {
        width: 55%;
        padding: 30px;
    }

    .row {
        flex-wrap: wrap;
    }

    .col-half,
    .col-one-third {
        width: 100%;
    }
}

.products-section {
    padding: 50px 0;
}

.products-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.filter-panel {
    width: 310px;
    background-color: #00081B;
    border-radius: 8px;
}

.filter-panel .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    border-bottom: 1px solid #B08D5759;
}

.filter-panel .filter-header h2 {
    font-size: 18px;
    color: #ffffff;
    padding: 0;
}

.filter-panel .filter-header button {
    background: none;
    border: none;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    cursor: pointer;
}

.filter-panel .filter-group {
    padding: 0 20px 20px 20px;
}

.filter-panel .filter-group h4 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
}

.filter-panel .search-box {
    display: flex;
    align-items: center;
    background: #FBF8F1;
    border: 1px solid #B08D5759;
    border-radius: 3px;
    padding: 12px;
}

.filter-panel .search-box span {
    color: #6B6255;
}

.filter-panel .search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: none;
    padding-left: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #000000;
}

.filter-panel input[type="range"] {
    width: 100%;
    background: transparent;
    accent-color: #FBD577;
}

.filter-panel input[type="range"]::-moz-range-track {
    height: 4px;
    background: #FBD577;
    border-radius: 0;
}

.filter-panel input[type="range"]::-moz-range-progress {
    height: 4px;
    background: #FBD577;
    border-radius: 10px;
}

.filter-panel input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FBD577;
    border: none;
    cursor: pointer;
}

.filter-panel #priceValue {
    width: 100%;
    margin-top: 10px;
    background: #FBF8F1;
    border: 1px solid #B08D5759;
    border-radius: 3px;
    padding: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #000000;
}

.filter-panel .accordion {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 5px 0;
    margin-top: 10px;
    background: none;
    border: none;
    border-bottom: 1px solid #3E3730;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
}

.filter-panel .accordion i {
    font-size: 14px;
    transition: .3s;
}

.filter-panel .accordion-content {
    display: block;
    margin-top: 20px;
}

@media only screen and (max-width: 760px) {
    .filter-panel .accordion-content {
        display: none;
    }
}

.filter-panel #categoryList {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.filter-panel #categoryList li {
    margin-top: 15px;
}

.filter-panel .checkbox {
    display: grid;
    grid-template-columns: 20px 1fr auto;
    align-items: start;
    gap: 10px;
    cursor: pointer;
    width: 100%;
}

.filter-panel .checkbox input {
    display: none;
}

.filter-panel .checkbox span {
    width: 16px;
    height: 16px;
    border: 1px solid #FFFFFF;
    border-radius: 3px;
    display: block;
    position: relative;
}

.filter-panel .checkbox input:checked+span {
    border-color: #FBD577;
}

.filter-panel .checkbox input:checked+span:after {
    content: "✓";
    position: absolute;
    left: 2px;
    top: -2px;
    color: #FBD577;
    font-size: 14px;
}

.filter-panel .checkbox .text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
}

.filter-panel .checkbox b {
    font-size: 14px;
    font-weight: 400;
    color: #FBD577;
}

@media only screen and (max-width: 760px) {
    .products-section {
        padding: 20px 0;
    }

    .products-section .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .filter-panel {
        width: 100%;
    }
}

.products-panel {
    width: calc(100% - 340px);
    text-align: center;
}

.products-panel .fancy-divider {
    margin: 0 auto 20px auto;
    max-width: 500px;
}

.products-panel .showing,
.products-panel .sortby {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
}

.products-panel .sortby {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.products-panel .sortby select {
    margin: 0;
    padding: 5px 35px 5px 10px;
    width: auto;
    min-width: 200px;
    height: 36px;
    background: #ffffff url(../img/dd-arrow.png) no-repeat right;
    border: 1px solid #000000;
    border-radius: 3px;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.product-container {
    margin: 20px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-container .product-item {
    background: #FFFFFF70;
    border: 1px solid #D4D3D0;
    position: relative;
}

.product-container .product-item .best-seller {
    padding: 5px 10px;
    background: linear-gradient(159.66deg, rgba(184, 22, 26, 0.82) 12.25%, rgba(82, 10, 12, 0.82) 66.76%);
    border-radius: 4px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
    position: absolute;
    left: 20px;
    top: 20px;
}

.product-container .product-item figure {
    display: flex;
}

.product-container .product-item article {
    padding: 20px;
    text-align: left;
}

.product-container .product-item .tag {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 1.4;
    text-transform: uppercase;
    color: #696969;
}

.product-container .product-item .title {
    margin: 10px 0;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #0B1D3A;
    min-height: 58px;
}

.product-container .product-item .excerpt {
    margin: 10px 0;
    font-family: "Playfair Display", serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #000000;
}

.product-container .product-item .star-rating {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2px;
}

.product-container .product-item .star-rating .star {
    font-size: 24px;
    color: #E49F2A;
}

.product-container .product-item .star-rating .text {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 500;
    color: #6B6255;
}

.product-container .product-item .price {
    margin: 10px 0 15px 0;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #1B2530;
    text-transform: uppercase;
}

.product-container .product-item .price span {
    font-weight: 400;
    font-size: 14px;
    color: #6B6255;
    text-decoration: line-through;
}

.product-container .product-item .btn-01 a {
    margin: 0;
    width: 100%;
    height: 46px;
    background: linear-gradient(180deg, #B8161A 0%, #520A0C 100%) !important;
    border: none !important;
    font-size: 16px;
    line-height: 26px;
    border: none;
}

ul.pagination {
    margin: 30px auto 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

ul.pagination li {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: #202020;
    width: 40px;
    height: 40px;
    border: 1px solid #DFE3E8;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #202020;
}

ul.pagination li a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #202020;
}

ul.pagination li.active {
    border: 1px solid #241B02;
}

ul.pagination li:first-child a,
ul.pagination li:last-child a {
    background: linear-gradient(186.09deg, #7C0716 4.71%, #41020A 95.18%);
    border-radius: 4px;
    color: #ffffff;
}

@media only screen and (max-width: 760px) {
    .products-panel {
        width: 100%;
    }

    .products-panel .d-flex {
        flex-wrap: wrap;
        text-align: center;
        gap: 10px;
    }

    .products-panel .showing,
    .products-panel .sortby {
        width: 100%;
        font-size: 14px;
    }

    .product-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .product-container .product-item {
        background: #FFFFFF70;
        border: 1px solid #D4D3D0;
    }

    .product-container .product-item .title {
        font-size: 20px;
        min-height: inherit;
    }
}

@media only screen and (min-width: 481px) and (max-width: 760px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .products-panel .d-flex {
        flex-wrap: wrap;
        text-align: center;
        gap: 10px;
    }

    .products-panel .showing,
    .products-panel .sortby {
        width: 100%;
    }

    .product-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media only screen and (min-width: 901px) and (max-width: 1023px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.inspired-section {
    padding: 0 0 30px 0;
    text-align: center;
}

.inspired-section .fancy-divider {
    margin: 0 auto 20px auto;
    max-width: 700px;
}

@media only screen and (max-width: 760px) {
    .inspired-section {
        padding: 0 0 10px 0;
    }

    .inspired-section .fancy-divider {
        margin: 0 auto 0 auto;
    }
}

.related-products-section {
    padding: 30px 0;
    text-align: center;
}

.related-products-section .fancy-divider {
    margin: 0 auto 20px auto;
    max-width: 700px;
}

.related-products-section .product-container {
    grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 760px) {
    .related-products-section .product-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media only screen and (min-width: 481px) and (max-width: 760px) {
    .related-products-section .product-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .related-products-section .product-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-all-details-section {
    padding: 50px 0 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.product-all-details-section .pslider {
    width: 50%;
}

.product-all-details-section .details {
    width: 50%;
}

.product-all-details-section .limited-edition {
    padding: 5px 10px;
    width: auto;
    background: linear-gradient(159.66deg, rgba(184, 22, 26, 0.82) 12.25%, rgba(82, 10, 12, 0.82) 66.76%);
    border-radius: 4px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
    display: inline;
}

.product-all-details-section h5 {
    font-weight: 500;
}

.product-all-details-section .star-rating {
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2px;
}

.product-all-details-section .star-rating .star {
    font-size: 20px;
    color: #E49F2A;
}

.product-all-details-section .star-rating .text {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 600;
    color: #242424;
    margin: 0 10px;
}

.product-all-details-section .star-rating .out-of-stock {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 600;
    color: #B8161A;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.product-all-details-section .price {
    margin: 10px 0;
    font-family: "Playfair Display", sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.5;
    color: #B8161A;
    text-transform: uppercase;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.product-all-details-section .price span {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #6B6255;
    text-decoration: line-through;
}

.product-all-details-section .price .save {
    padding: 5px 10px;
    width: auto;
    background: #B8161A;
    border-radius: 4px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
    display: inline;
}

.product-all-details-section h6 {
    font-weight: 400;
}

.quantity {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #000;
    overflow: hidden;
    width: fit-content;
}

.quantity button,
.quantity input {
    width: 42px;
    height: 42px;
    border: none;
    background: #ffffff;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
}

.quantity button {
    cursor: pointer;
    transition: 0.2s;
}

.quantity button:hover {
    background: #f3f3f3;
}

.quantity input {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    font-size: 26px;
    font-weight: 600;
    outline: none;
    -moz-appearance: textfield;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-all-details-section .note {
    margin: 20px 0;
    padding: 15px;
    background: #FFFAED;
    border: 1px solid #D4D3D0;
    border-radius: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    font-family: "Playfair Display", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #000000;
}

@media only screen and (max-width: 760px) {
    .product-all-details-section {
        padding: 20px 0;
        flex-wrap: wrap;
        gap: 20px;
    }

    .product-all-details-section .pslider {
        width: 100%;
    }

    .product-all-details-section .details {
        width: 100%;
    }

    .product-all-details-section .limited-edition {
        font-size: 12px;
    }

    .product-all-details-section .star-rating .star {
        font-size: 16px;
    }

    .product-all-details-section .star-rating .text {
        font-size: 14px;
        margin: 0 5px;
    }

    .product-all-details-section .star-rating .out-of-stock {
        font-size: 16px;
    }

    .product-all-details-section .note {
        margin: 10px 0;
        font-size: 14px;
    }

    .quantity input {
        font-size: 20px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .product-all-details-section {
        flex-wrap: wrap;
        gap: 20px;
    }

    .product-all-details-section .pslider {
        width: 100%;
    }

    .product-all-details-section .details {
        width: 100%;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    .product-all-details-section {
        gap: 20px;
    }
}

.product-promise-section {
    margin: 20px auto;
    padding: 10px;
    background: #F5F1EE;
    border: 1px solid #E4E0DC;
    border-radius: 3px;
    box-shadow: 0px 4px 44px 0px #0000000F;
}

.product-promise-section .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.product-promise-section .grid-item {
    padding: 20px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.product-promise-section .grid-item::after {
    content: "";
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.product-promise-section .grid-item:last-child::after {
    display: none;
}

.product-promise-section .grid-item figure {
    width: 34px;
    height: 34px;
}

.product-promise-section .grid-item article {
    width: calc(100% - 44px);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    white-space: nowrap;
}

.product-promise-section .grid-item article strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 700;
}

@media only screen and (max-width: 760px) {
    .product-promise-section {
        padding: 0;
    }

    .product-promise-section .grid-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .product-promise-section .grid-item::after {
        content: "";
        width: 100%;
        height: 2px;
        background-image: none;
        background: linear-gradient(90deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
        position: absolute;
        right: auto;
        top: auto;
        left: 0;
        bottom: 0;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1280px) {
    .product-promise-section .grid-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .product-promise-section .grid-item:nth-child(2)::after {
        display: none;
    }
}

.product-details-section {
    margin: 20px auto;
    padding: 20px 30px;
    background: #F5F1EE;
    border: 1px solid #E4E0DC;
    border-radius: 3px;
    box-shadow: 0px 4px 44px 0px #0000000F;
}

.product-details-section section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.product-details-section .panel-40 {
    width: 40%;
}

.product-details-section .panel-40 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-details-section .panel-40 ul li {
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #CFCFCF;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 400;
    color: #262525;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-details-section .panel-40 ul li:last-child {
    border: none;
}

.product-details-section .panel-40 ul li strong {
    font-weight: 700;
}

.product-details-section .panel-20 {
    width: 20%;
    text-align: right;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 700;
    color: #B8161A;
}

.product-details-section .panel-20 a {
    color: #B8161A;
}

@media only screen and (max-width: 760px) {
    .product-details-section {
        padding: 10px 20px;
    }

    .product-details-section section {
        flex-wrap: wrap;
        gap: 0;
    }

    .product-details-section .panel-40 {
        width: 100%;
    }

    .product-details-section .panel-40 ul li:last-child {
        border-bottom: 1px solid #CFCFCF;
    }

    .product-details-section .panel-20 {
        width: 100%;
        padding: 10px 0;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1280px) {
    .product-details-section section {
        gap: 30px;
    }
}

.product-description-section {
    margin: 20px auto;
    background: #F5F1EE;
    border: 1px solid #E4E0DC;
    border-radius: 3px;
    box-shadow: 0px 4px 44px 0px #0000000F;
}

.product-description-section h6 {
    padding: 10px 30px;
    background-color: #021639;
    border-radius: 3px 3px 0 0;
    color: #ffffff;
    text-transform: uppercase;
}

.product-description-section section {
    display: flex;
    justify-content: space-between;
}

.product-description-section section aside {
    padding: 30px;
    width: 30%;
    position: relative;
}

.product-description-section section aside::after {
    content: "";
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.product-description-section section aside .item {
    padding: 10px 0;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.product-description-section section aside .item figure {
    width: 50px;
    height: 50px;
}

.product-description-section section aside .item figcaption {
    width: calc(100% - 70px);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
}

.product-description-section section aside .item figcaption strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
}

.product-description-section section article {
    padding: 30px;
    width: 70%;
}

ul.star-list {
    margin: 10px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

ul.star-list li {
    margin: 0;
    padding-left: 30px;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    background: url(../img/star-bullet.svg) no-repeat 0 0;
}

@media only screen and (max-width: 760px) {
    .product-description-section h6 {
        padding: 10px 20px;
    }

    .product-description-section section {
        flex-wrap: wrap;
    }

    .product-description-section section aside {
        padding: 20px;
        width: 100%;
    }

    .product-description-section section aside::after {
        content: "";
        width: 100%;
        height: 2px;
        background-image: none;
        background: linear-gradient(90deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
        position: absolute;
        right: auto;
        top: auto;
        left: 0;
        bottom: 0;
    }

    .product-description-section section article {
        padding: 20px;
        width: 100%;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .product-description-section section {
        flex-wrap: wrap;
    }

    .product-description-section section aside {
        width: 100%;
    }

    .product-description-section section aside::after {
        content: "";
        width: 100%;
        height: 2px;
        background-image: none;
        background: linear-gradient(90deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
        position: absolute;
        right: auto;
        top: auto;
        left: 0;
        bottom: 0;
    }

    .product-description-section section article {
        width: 100%;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    .product-description-section section aside {
        width: 40%;
    }

    .product-description-section section article {
        width: 60%;
    }
}

.blog-section {
    padding: 50px 0;
}

.blog-section .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.blog-section .blog-content,
.blog-section .blog-details {
    width: calc(100% - 330px);
}

.blog-section .grid-blog {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-section .blog-card {
    background: #F8F4F3;
    border: 1px solid #B9B9B9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.blog-section .blog-card .date {
    padding: 10px 15px;
    background-color: #8A010A;
    border-radius: 0 0 5px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    color: #FFFFFF;
    position: absolute;
    left: 20px;
    top: 0;
}

.blog-section .blog-card .date strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.blog-section .blog-card figure {
    overflow: hidden;
}

.blog-section .blog-card figure img {
    width: 100%;
    max-width: auto;
    height: 250px;
    object-fit: cover;
}

.blog-section .blog-card article {
    padding: 20px;
}

.blog-section .category {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #B8161A;
    text-transform: uppercase;
}

.blog-section .blog-card h6 {
    font-size: 20px;
}

.blog-section ul.author-comments {
    margin: 10px 0 0 0;
    padding: 20px 0 0 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #D2D2D2;
}

.blog-section ul.author-comments li {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0%;
    color: #383838;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.blog-section ul.author-comments li a {
    color: #383838;
}

.blog-section ul.author-comments li i {
    color: #B8161A;
}

.blog-section .blog-sidebar {
    width: 300px;
}

.blog-section .blog-sidebar h6 {
    font-weight: 600;
}

.blog-section .blog-sidebar .search-box {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.blog-section .blog-sidebar .search-box input[type="search"] {
    margin: 0;
    padding: 15px;
    width: calc(100% - 60px);
    height: 50px;
    background: #F8F4F3;
    border: 1px solid #E8DCD4;
    box-shadow: 0px 4px 44px 0px #0000000D;
    border-radius: 5px;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.blog-section .blog-sidebar .search-box button[type="submit"] {
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    background: #4A0309;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.blog-section .blog-sidebar .categories-box {
    margin-bottom: 30px;
    padding: 10px 20px;
    background: #F8F4F3;
    border: 1px solid #E8DCD4;
    border-radius: 5px;
}

.blog-section .blog-sidebar .categories-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-section .blog-sidebar .categories-box ul li {
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid #E8DCD4;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
}

.blog-section .blog-sidebar .categories-box ul li a {
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.blog-section .blog-sidebar .categories-box ul li a span {
    width: 20px;
    height: 20px;
    background: #B8161A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #ffffff;
}

.blog-section .blog-sidebar .popular-box {
    margin-bottom: 30px;
    padding: 10px 20px;
    background: #F8F4F3;
    border: 1px solid #E8DCD4;
    border-radius: 5px;
}

.blog-section .blog-sidebar .post {
    padding: 10px 0;
    border-top: 1px solid #E8DCD4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.blog-section .blog-sidebar .post figure {
    width: 80px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
}

.blog-section .blog-sidebar .post figure img {
    width: 100%;
    max-width: auto;
    height: 70px;
    object-fit: cover;
}

.blog-section .blog-sidebar .post article {
    width: calc(100% - 95px);
}

.blog-section .blog-sidebar .post h6 {
    font-size: 14px;
    font-weight: 600;
    padding: 0;
}

.blog-section .blog-sidebar .post p {
    font-size: 14px;
    padding: 0;
}

.blog-section .blog-sidebar .subscribe-box {
    margin-bottom: 30px;
    padding: 20px;
    background: #00102A;
    border: 1px solid #E8DCD4;
    border-radius: 5px;
    text-align: center;
}

.blog-section .blog-sidebar .subscribe-box h6,
.blog-section .blog-sidebar .subscribe-box p {
    color: #ffffff;
}

.blog-section .blog-sidebar .subscribe-box p {
    font-size: 16px;
}

.blog-section .blog-sidebar .subscribe-box .d-flex {
    justify-content: center;
    gap: 10px;
}

.blog-section .blog-sidebar .subscribe-box .fancy-divider::before {
    background: linear-gradient(90deg, rgba(251, 213, 119, 0) 35.76%, #FBD577 100%);
}

.blog-section .blog-sidebar .subscribe-box .fancy-divider::after {
    background: linear-gradient(270deg, rgba(251, 213, 119, 0) 53.47%, #FBD577 97.34%);
}

.blog-section .blog-sidebar .subscribe-box .star {
    color: #E49F2A;
}

.blog-section .blog-sidebar .subscribe-box input[type="email"] {
    margin: 5px 0;
    padding: 10px 20px 10px 56px;
    width: 100%;
    height: 42px;
    background: #FFFFFF url(../img/input-email.svg) no-repeat left;
    border: 1px solid #E8DCD4;
    border-radius: 5px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.blog-section .blog-sidebar .subscribe-box input[type="submit"] {
    margin: 5px 0;
    padding: 10px 20px;
    width: 100%;
    height: 42px;
    background: linear-gradient(180deg, #61000C 0%, #41020A 100%);
    border: 1px solid #7C2C37;
    border-radius: 5px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    letter-spacing: 1px;
    cursor: pointer;
}

.blog-section .blog-sidebar .tags-box {
    margin-bottom: 30px;
}

.blog-section .blog-sidebar .tags-box ul {
    margin: 10px 0 0 0;
    padding: 20px 0 0 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid #D2D2D2;
}

.blog-section .blog-sidebar .tags-box ul li {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0%;
    color: #383838;
}

.blog-section .blog-sidebar .tags-box ul a {
    color: #383838;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #B9B9B9;
    border-radius: 50px;
    padding: 10px 15px;
    transition: .5s;
}

.blog-section .blog-sidebar .tags-box ul a:hover {
    color: #FFFFFF;
    background: #520A0C;
    border: 1px solid #520A0C;
    transition: .5s;
}

.blog-section .blog-details figure {
    margin: 15px 0;
    border-radius: 10px;
    overflow: hidden;
}

.blog-section .blog-details .breadcrumb {
    color: #000000;
}

.blog-section .blog-details .breadcrumb a,
.blog-section .blog-details .breadcrumb span {
    color: #000000;
}

.blog-section .blog-details .breadcrumb a+a::before,
.blog-section .blog-details .breadcrumb a+span::before {
    content: ">";
    color: #000000;
}

.blog-section .blog-details .breadcrumb .active {
    color: #B8161A;
}

ul.icon-text {
    margin: 10px 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-content: center;
}

ul.icon-text li {
    margin: 0;
    padding: 0;
    width: 25%;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0%;
    color: #383838;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

ul.icon-text li i {
    color: #B8161A;
}

.content-image img {
    width: 280px;
    float: right;
    margin-left: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.blog-section .blog-details hr {
    margin: 10px 0;
    border-color: #E9D4C2;
}

.blog-section blockquote {
    margin: 10px auto;
    padding: 20px 50px;
    max-width: 780px;
    background: #EDE8E2;
    border-radius: 6px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 24px;
    font-style: italic;
    line-height: 1.4;
    color: #000000;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

ul.share-post {
    margin: 30px 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

ul.share-post li {
    margin: 0;
    padding: 0;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 24px;
    font-style: italic;
    line-height: 1.4;
    color: #000000;
}

ul.share-post li a {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #ffffff;
}

ul.share-post li.facebook a {
    background-color: #3b5998;
}

ul.share-post li.twitter a {
    background-color: #03a9f4;
}

ul.share-post li.pinterest a {
    background-color: #cb2027;
}

ul.share-post li.linkedin a {
    background-color: #007ab9;
}

.prev-next {
    background: #F8F4F3;
    border: 1px solid #E9D4C2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prev-next h6 {
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
}

.prev-next p {
    padding: 0 0 5px 0;
    font-size: 13px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.prev-next p i {
    color: #E5B55A;
}

.prev-next .prev {
    padding: 20px;
    width: 50%;
    border-right: 1px solid #E9D4C2;
}

.prev-next .prev a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.prev-next .prev figure {
    margin: 0;
    width: 100px;
    height: 74px;
    border-radius: 5px;
    overflow: hidden;
}

.prev-next .prev figure img {
    width: 100%;
    max-width: auto;
    height: 74px;
    object-fit: cover;
}

.prev-next .prev article {
    width: calc(100% - 120px);
}

.prev-next .next {
    padding: 20px;
    width: 50%;
    border-left: 1px solid #E9D4C2;
}

.prev-next .next a {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.prev-next .next figure {
    margin: 0;
    width: 100px;
    height: 74px;
    border-radius: 5px;
    overflow: hidden;
    order: 2;
}

.prev-next .next figure img {
    width: 100%;
    max-width: auto;
    height: 74px;
    object-fit: cover;
}

.prev-next .next article {
    width: calc(100% - 120px);
    text-align: right;
}

.prev-next .next article p {
    justify-content: flex-end;
}

.prev-next .next article p i {
    order: 2;
}

@media only screen and (max-width: 760px) {
    .blog-section {
        padding: 20px 0;
    }

    .blog-section .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .blog-section .blog-content,
    .blog-section .blog-details {
        width: 100%;
    }

    .blog-section .grid-blog {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .blog-section .blog-sidebar {
        width: 100%;
    }

    ul.icon-text {
        flex-wrap: wrap;
    }

    ul.icon-text li {
        width: 50%;
        font-size: 14px;
    }

    .content-image img {
        width: auto;
        float: none;
        margin-left: 0;
        margin-bottom: 0;
    }

    .blog-section blockquote {
        padding: 20px;
        font-size: 20px;
    }

    ul.share-post li {
        font-size: 20px;
    }

    .prev-next {
        flex-wrap: wrap;
    }

    .prev-next .prev {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #E9D4C2;
    }

    .prev-next .next {
        width: 100%;
        border-left: none;
        border-top: 1px solid #E9D4C2;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1100px) {
    .blog-section .grid-blog {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    ul.icon-text {
        flex-wrap: wrap;
    }

    ul.icon-text li {
        width: 50%;
    }

    .blog-section blockquote {
        padding: 20px;
    }

    .prev-next {
        flex-wrap: wrap;
    }

    .prev-next .prev {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #E9D4C2;
    }

    .prev-next .next {
        width: 100%;
        border-left: none;
        border-top: 1px solid #E9D4C2;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    .blog-section .grid-blog {
        gap: 20px;
    }
}

.our-story-section {
    padding: 50px 0;
}

.our-story-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.our-story-section figure {
    width: 50%;
    display: flex;
}

.our-story-section figure img {
    border-radius: 30px;
}

.our-story-section article {
    width: 50%;
}

.our-story-section article .subheading-divider {
    max-width: 200px;
}

.our-story-section article .fancy-divider {
    max-width: 250px;
}

@media only screen and (max-width: 760px) {
    .our-story-section {
        padding: 20px 0;
    }

    .our-story-section .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .our-story-section figure {
        width: 100%;
    }

    .our-story-section figure img {
        border-radius: 20px;
    }

    .our-story-section article {
        width: 100%;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .our-story-section .container {
        flex-wrap: wrap;
    }

    .our-story-section figure {
        width: 100%;
    }

    .our-story-section article {
        width: 100%;
    }
}

.mission-value-section {
    padding: 30px 0;
    background-color: #ECE9E3;
}

.mission-value-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.mission-value-section h6 {
    color: #61000C;
}

.mission-value-section aside {
    width: 35%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.mission-value-section aside figure {
    margin-top: 15px;
    width: 90px;
    height: 90px;
}

.mission-value-section aside figure img {
    width: 90px;
}

.mission-value-section aside article {
    width: calc(100% - 110px);
}

.mission-value-section aside .fancy-divider {
    max-width: 200px;
    gap: 5px;
}

.mission-value-section aside .star {
    font-size: 24px;
}

.mission-value-section section {
    width: 65%;
    text-align: center;
}

.mission-value-section section .fancy-divider {
    margin: 0 auto;
    max-width: 200px;
    gap: 5px;
}

.mission-value-section section .star {
    font-size: 24px;
}

.mission-value-section section .grid-container {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.mission-value-section section .grid-item {
    padding: 20px;
    text-align: center;
    position: relative;
}

.mission-value-section section .grid-item::after {
    content: "";
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.mission-value-section section .grid-item:last-child::after {
    display: none;
}

.mission-value-section section .grid-item h6 {
    font-size: 22px;
    color: #000000;
}

.mission-value-section section .grid-item p {
    font-size: 14px;
    padding: 0;
}

@media only screen and (max-width: 760px) {
    .mission-value-section {
        padding: 20px 0;
    }

    .mission-value-section .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .mission-value-section aside {
        width: 100%;
        flex-wrap: wrap;
        gap: 0;
        text-align: center;
    }

    .mission-value-section aside figure {
        margin: 0 auto;
        width: 100%;
        height: auto;
    }

    .mission-value-section aside figure img {
        width: 64px;
    }

    .mission-value-section aside article {
        width: 100%;
    }

    .mission-value-section aside .fancy-divider {
        margin: 0 auto;
    }

    .mission-value-section section {
        width: 100%;
    }

    .mission-value-section section .grid-container {
        margin: 0;
        grid-template-columns: repeat(1, 1fr);
    }

    .mission-value-section section .grid-item::after {
        content: "";
        width: 100%;
        height: 2px;
        background-image: none;
        background: linear-gradient(90deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
        position: absolute;
        right: auto;
        top: auto;
        left: 0;
        bottom: 0;
    }

    .mission-value-section section .grid-item h6 {
        font-size: 16px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1170px) {
    .mission-value-section .container {
        flex-wrap: wrap;
    }

    .mission-value-section aside {
        width: 100%;
        flex-wrap: wrap;
        gap: 0;
        text-align: center;
    }

    .mission-value-section aside figure {
        margin: 0 auto;
        width: 100%;
    }

    .mission-value-section aside article {
        width: 100%;
    }

    .mission-value-section aside .fancy-divider {
        margin: 0 auto;
    }

    .mission-value-section section {
        width: 100%;
    }
}

.what-different-section {
    padding: 30px 0;
    background: #010F21 url(../img/img-04.png) no-repeat right;
}

.what-different-section h4 {
    color: #FBD577;
}

.what-different-section h5 {
    color: #ffffff;
}

.what-different-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.what-different-section ul li {
    color: #ffffff;
    padding-left: 30px;
    background: url(../img/check-bullet.svg) no-repeat 0 3px;
}

.what-different-section .fancy-divider {
    width: 350px;
}

.what-different-section .fancy-divider::before {
    background: linear-gradient(90deg, rgba(251, 213, 119, 0) 35.76%, #FBD577 100%);
}

.what-different-section .fancy-divider::after {
    background: linear-gradient(270deg, rgba(251, 213, 119, 0) 53.47%, #FBD577 97.34%);
}

.what-different-section .star {
    color: #E49F2A;
    font-size: 20px;
}

@media only screen and (max-width: 760px) {
    .what-different-section {
        padding: 20px 0;
    }
}

.counter-section {
    padding: 20px 0;
    background: linear-gradient(358.13deg, #860B1A 1.28%, #41020A 91.5%);
}

.counter-section .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.counter-section .grid-item {
    padding: 20px;
    text-align: center;
    position: relative;
}

.counter-section .grid-item::after {
    content: "";
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.counter-section .grid-item:last-child::after {
    display: none;
}

.counter-section h4 {
    color: #ffffff;
    padding: 0;
}

.counter-section h6 {
    color: #ffffff;
    font-weight: 400;
    padding: 0;
}

.counter-section p {
    font-family: "Playfair Display", serif;
    color: #ffffff;
    padding: 0;
}

@media only screen and (max-width: 760px) {
    .counter-section .grid-container {
        margin: 0;
        grid-template-columns: repeat(1, 1fr);
    }

    .counter-section .grid-item::after {
        content: "";
        width: 100%;
        height: 2px;
        background-image: none;
        background: linear-gradient(90deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
        position: absolute;
        right: auto;
        top: auto;
        left: 0;
        bottom: 0;
    }
}

.faq-section {
    padding: 50px 0;
}

.faq-section .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.faq-section section {
    width: calc(100% - 430px);
}

.faq-section .search-box {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.faq-section .search-box input[type="search"] {
    margin: 0;
    padding: 15px;
    width: calc(100% - 60px);
    height: 50px;
    background: #F8F4F3;
    border: 1px solid #E8DCD4;
    box-shadow: 0px 4px 44px 0px #0000000D;
    border-radius: 5px;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.faq-section .search-box button[type="submit"] {
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    background: #4A0309;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    background: #F8F4F3;
    border: 1px solid #E8DCD4;
    border-radius: 5px;
    box-shadow: 0px 4px 44px 0px #0000000D;
    overflow: hidden;
    margin-bottom: 25px;
}

.faqtab {
    flex: auto;
    padding: 20px 10px;
    background: #F8F4F3;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    transition: 0.3s;
}

.faqtab::after {
    content: "";
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
    position: absolute;
    right: -1px;
    top: 0;
}

.faqtab:last-child::after {
    display: none;
}

.faqtab:first-child {
    font-family: "Playfair Display", serif;
}

.faqtab.active {
    background: linear-gradient(159.66deg, #B8161A 12.25%, #520A0C 66.76%);
    color: #ffffff;
}

.faqtab.active img {
    filter: brightness(0) invert(1);
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    margin-bottom: 15px;
    overflow: hidden;
    display: none;
}

.faq-item.show {
    display: block;
}

.faq-question {
    padding: 22px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.faq-question h6 {
    flex: 1;
    font-size: 22px;
    font-weight: 600;
    padding: 0 15px;
}

.faq-section .icon {
    width: 26px;
    height: 26px;
    background: #8b0b0b;
    border-radius: 50%;
    position: relative;
}

.faq-section .icon::before,
.faq-section .icon::after {
    content: "";
    position: absolute;
    background: #fff;
}

.faq-section .icon::before {
    width: 12px;
    height: 2px;
    top: 12px;
    left: 7px;
}

.faq-section .icon::after {
    width: 2px;
    height: 12px;
    top: 7px;
    left: 12px;
}

.faq-item.active .icon::after {
    display: none;
}

.faq-section .arrow {
    transition: 0.3s;
    color: #7b0e0e;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.35s;
    padding: 0 60px;
}

.faq-item.active {
    background: #efe8e2;
}

.faq-item.active .faq-answer {
    padding: 0 60px 15px;
    max-height: 300px;
}

.faq-answer p {
    font-size: 17px;
    padding: 0 0 1rem 0;
}

@media (max-width: 768px) {
    .faq-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .tab {
        padding: 15px;
    }

    .faq-question h6 {
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 5px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

.faq-section aside {
    width: 400px;
}

.assist-panel {
    margin-bottom: 30px;
    padding: 30px;
    background: #F2F1EF;
    border: 1px solid #DFDBD8;
    border-radius: 10px;
    text-align: center;
}

.assist-panel h6 {
    font-size: 18px;
    font-weight: 600;
}

.assist-panel ul {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    max-width: 320px;
}

.assist-panel ul li {
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    font-weight: 500;
}

.assist-panel ul li strong {
    font-family: "Playfair Display", serif;
    display: block;
}

.assist-panel ul li figure {
    width: 30px;
}

.assist-panel ul li article {
    width: calc(100% - 50px);
    text-align: left;
}

.secure-panel {
    margin-bottom: 30px;
    padding: 30px;
    background: #010E21;
    border: 1px solid #DFDBD8;
    border-radius: 10px;
    text-align: center;
}

.secure-panel h6 {
    color: #ffffff;
}

.secure-panel .fancy-divider::before {
    background: linear-gradient(90deg, rgba(251, 213, 119, 0) 35.76%, #FBD577 100%);
}

.secure-panel .fancy-divider::after {
    background: linear-gradient(270deg, rgba(251, 213, 119, 0) 53.47%, #FBD577 97.34%);
}

.secure-panel .star {
    color: #E49F2A;
}

.secure-panel ul {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    max-width: 320px;
}

.secure-panel ul li {
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: #ffffff;
}

.assist-panel ul li img {
    width: 34px;
}

.explore-panel {
    padding: 30px;
    background: #F2F1EF;
    border: 1px solid #DFDBD8;
    border-radius: 10px;
    text-align: center;
}

.explore-panel h6 {
    font-size: 18px;
    font-weight: 500;
}

@media only screen and (max-width: 760px) {
    .faq-section {
        padding: 20px 0;
    }

    .faq-section .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .faq-section section {
        width: 100%;
    }

    .faq-section aside {
        width: 100%;
    }

    .assist-panel {
        margin-bottom: 20px;
        padding: 20px;
    }

    .secure-panel {
        margin-bottom: 20px;
        padding: 20px;
    }

    .explore-panel {
        padding: 20px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1100px) {
    .faq-section .container {
        flex-wrap: wrap;
    }

    .faq-section section {
        width: 100%;
    }

    .faq-section aside {
        width: 100%;
    }
}

.sign-section {
    padding: 50px 0;
    background: #f7f7f6 url(../img/sign-bg.png) no-repeat bottom right;
    text-align: center;
}

.sign-section .fancy-divider {
    margin: 0 auto;
    max-width: 500px;
}

.sign-section .fancy-divider::before {
    background: linear-gradient(90deg, rgba(251, 213, 119, 0) 35.76%, #FBD577 100%);
}

.sign-section .fancy-divider::after {
    background: linear-gradient(270deg, rgba(251, 213, 119, 0) 53.47%, #FBD577 97.34%);
}

.sign-section .star {
    color: #E49F2A;
}

.sign-section section {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.sign-section section::after {
    content: "OR";
    width: 46px;
    height: 46px;
    background: #FFFFFF;
    border: 3px solid #E5B55A;
    border-radius: 50%;
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sign-section section .left-panel {
    padding-right: 50px;
    width: 50%;
    border-right: 1px solid #E1DFE0;
}

.sign-section section .right-panel {
    padding-left: 50px;
    width: 50%;
    border-left: 1px solid #E1DFE0;
}

.sign-section .form-box {
    padding: 30px;
    background: #FCFCFC;
    border: 1px solid #E1DFE0;
    border-radius: 12px;
    box-shadow: 0px 4px 44px 0px #00000014;
}

.sign-section .form-box h6 {
    font-weight: 600;
}

.sign-section .form-box .fancy-divider {
    margin: 0 auto;
    max-width: 200px;
    gap: 5px;
}

.sign-section .form-box .star {
    font-size: 24px;
}

.sign-section .form-box p {
    font-size: 16px;
}

.sign-section .form-box p strong {
    color: #680813;
}

.or-divider {
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.or-divider::before,
.or-divider::after {
    content: "";
    flex: 1;
    height: 2px;
}

.or-divider::before {
    background: #D5D5D5;
}

.or-divider::after {
    background: #D5D5D5;
}

.or {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
}

.sign-section form {
    width: 100%;
}

.sign-section label {
    margin: 0 0 10px 0;
    padding: 0;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #000000;
    text-align: left;
    display: block;
}

.sign-section .forgot a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #B8161A;
}

.sign-section input[type="text"],
.sign-section input[type="email"],
.sign-section input[type="tel"],
.sign-section input[type="password"],
.sign-section textarea {
    margin: 0;
    padding: 15px 15px 15px 50px;
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #E1DFE0;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 34px;
    color: #000000;
}

.sign-section input[type="text"] {
    background: #FFFFFF url(../img/icon-user.png) no-repeat left;
}

.sign-section input[type="email"] {
    background: #FFFFFF url(../img/icon-email.png) no-repeat left;
}

.sign-section input[type="password"] {
    background: #FFFFFF url(../img/icon-password.png) no-repeat left;
}

.sign-section input[type="submit"] {
    margin: 0 auto;
    padding: 10px;
    width: 100%;
    height: 50px;
    background: linear-gradient(180deg, #61000C 0%, #41020A 100%);
    border: none;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.password-field {
    position: relative;
    width: 100%;
}

.password-field input {
    margin: 0;
    padding: 15px 50px;
    width: 100%;
    height: 50px;
    background: #FFFFFF url(../img/icon-password.png) no-repeat left !important;
    border: 1px solid #E1DFE0;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 34px;
    color: #000000;
    outline: none;
    box-sizing: border-box;
}

.password-field .toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    color: #666;
    font-size: 16px;
    line-height: 1;
}

.password-field .toggle-password:hover {
    color: #61000c;
}

.styled-checkbox {
    position: absolute;
    opacity: 0;
}

.styled-checkbox+label {
    position: relative;
    cursor: pointer;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.styled-checkbox+label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: #E4DAD0;
}

.styled-checkbox:hover+label:before {
    background: #B8161A;
}

.styled-checkbox:checked+label:before {
    background: #B8161A;
}

.styled-checkbox:checked+label:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 9px;
    background: #ffffff;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}

.styled-radio {
    position: absolute;
    opacity: 0;
}

.styled-radio+label {
    position: relative;
    cursor: pointer;
    margin: 0 !important;
    padding: 0;
    padding-left: 30px !important;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 22px !important;
}

.styled-radio+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border: 1px solid #7E7E7E;
    border-radius: 50%;
    transition: all .3s ease;
}

.styled-radio:hover+label:before {
    background: #680813;
}

.styled-radio:checked+label:before {
    background: #680813;
}

.styled-radio:checked+label:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 7px;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.login-with-social {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.login-with-social .social {
    width: 33.333%;
}

.login-with-social .social a {
    width: 100%;
    height: 40px;
    background-color: #ffffff;
    border: 2px solid #E5B55A;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #000000;
    transition: .5s;
}

.login-with-social .social a:hover {
    background: linear-gradient(180deg, #61000C 0%, #41020A 100%);
    color: #ffffff;
    transition: .5s;
}

.sign-section .icon-text {
    margin-bottom: 20px;
    padding: 20px 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.sign-section .icon-text::before {
    content: "";
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(251, 213, 119, 0) 2.03%, #FBD577 49.13%, rgba(251, 213, 119, 0) 94.79%);
    position: absolute;
    left: 0;
    top: 0;
}

.sign-section .icon-text::after {
    content: "";
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(251, 213, 119, 0) 2.03%, #FBD577 49.13%, rgba(251, 213, 119, 0) 94.79%);
    position: absolute;
    left: 0;
    bottom: 0;
}

.sign-section .icon-text .tab {
    flex: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    text-align: left;
    position: relative;
    transition: 0.3s;
}

.sign-section .icon-text .tab img {
    width: 18px;
    height: 18px;
}

@media only screen and (max-width: 760px) {
    .sign-section {
        padding: 20px 0;
    }

    .sign-section section {
        flex-wrap: wrap;
    }

    .sign-section section::after {
        transform: translate(-50%, -306%);
    }

    .sign-section section .left-panel {
        padding-right: 0;
        padding-bottom: 50px;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #E1DFE0;
    }

    .sign-section section .right-panel {
        padding-left: 0;
        padding-top: 50px;
        width: 100%;
        border-left: none;
        border-top: 1px solid #E1DFE0;
    }

    .sign-section .form-box {
        padding: 20px;
    }

    .sign-section .form-box p {
        font-size: 14px;
    }

    .or {
        font-size: 14px;
    }

    .sign-section label {
        margin: 0 0 5px 0;
        font-size: 14px;
    }

    .sign-section .forgot a {
        font-size: 14px;
    }

    .sign-section .row {
        flex-wrap: wrap;
    }

    .sign-section .col-half {
        width: 100%;
    }

    .sign-section .col-full {
        width: 100%;
    }

    .login-with-social {
        gap: 5px;
    }

    .login-with-social .social a {
        font-size: 12px;
    }

    .sign-section .icon-text {
        margin-bottom: 10px;
        padding: 10px 0;
    }

    .sign-section .icon-text .tab {
        width: 50%;
        padding: 5px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .sign-section section {
        flex-wrap: wrap;
    }

    .sign-section section::after {
        transform: translate(-50%, -230%);
    }

    .sign-section section .left-panel {
        padding-right: 0;
        padding-bottom: 50px;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #E1DFE0;
    }

    .sign-section section .right-panel {
        padding-left: 0;
        padding-top: 50px;
        width: 100%;
        border-left: none;
        border-top: 1px solid #E1DFE0;
    }
}

.shopping-cart-section {
    padding: 30px 0 50px 0;
}

.shopping-cart-section .fancy-divider {
    max-width: 330px;
}

.shopping-cart-section .fancy-divider::before {
    background: linear-gradient(90deg, rgba(251, 213, 119, 0) 35.76%, #FBD577 100%);
}

.shopping-cart-section .fancy-divider::after {
    background: linear-gradient(270deg, rgba(251, 213, 119, 0) 53.47%, #FBD577 97.34%);
}

.shopping-cart-section .star {
    color: #E49F2A;
}

.shopping-cart-section section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.shopping-cart-section .left-panel {
    width: calc(100% - 430px);
}

.shopping-cart-section .left-panel .btn-secondary {
    border-color: #680813;
    color: #680813 !important;
    font-family: "Poppins", sans-serif;
}

.shopping-cart-section .right-panel {
    width: 400px;
}

.shopping-cart-section .order-summary {
    padding: 30px;
    text-align: center;
    background: #F7F6F4;
    border: 1px solid #DFDBD8;
    border-radius: 10px;
}

.shopping-cart-section .right-panel .fancy-divider {
    margin: 0 auto;
    max-width: 200px;
    gap: 5px;
}

.shopping-cart-section .right-panel .star {
    font-size: 24px;
}

.shopping-cart-section .right-panel .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
    background: linear-gradient(159.66deg, #5C010B 12.25%, #5C010B 66.76%);
    font-family: "Poppins", sans-serif;
}

.shopping-cart-section .order-summary .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
    background: #FCBC34;
    color: #000000 !important;
    border-color: #FCBC34;
}

.summery-table {
    padding: 10px 0;
}

.summery-table table {
    width: 100%;
}

.summery-table table td {
    padding: 5px 0;
    font-size: 14px;
    white-space: nowrap;
}

.summery-table table th {
    padding: 10px 0;
    font-size: 14px;
    border-top: 1px solid #DFDBD8;
}

.summery-table table th strong {
    font-size: 18px;
    color: #680813;
}

.summery-table table td:first-child,
.summery-table table th:first-child {
    text-align: left;
}

.summery-table table td:last-child,
.summery-table table th:last-child {
    text-align: right;
}

.cart-table {
    margin: 20px 0;
    width: 100%;
    background: #F8F8F6;
    border: 1px solid #E2E1DF;
    border-radius: 5px;
    overflow: hidden;
}

.cart-head {
    display: grid;
    grid-template-columns: 2.8fr 1fr 1.2fr 1fr 50px;
    gap: 20px;
    background: #000D20;
    border-radius: 5px 5px 0 0;
    padding: 15px 20px;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

.cart-row {
    display: grid;
    grid-template-columns: 2.8fr 1fr 1.2fr 1fr 50px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #E2E1DF;
    gap: 20px;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 500;
}

.stock {
    color: #0AA238;
    font-size: 14px;
}

.cart-qty .quantity {
    margin: 0;
}

.cart-price,
.cart-total {
    font-size: 18px;
}

.cart-total {
    color: #680813;
    font-weight: 700;
}

.cart-remove {
    text-align: center;
    cursor: pointer;
    font-size: 18px;
}

@media only screen and (max-width: 760px) {
    .shopping-cart-section {
        padding: 20px 0;
    }

    .shopping-cart-section section {
        flex-wrap: wrap;
        gap: 20px;
    }

    .shopping-cart-section .left-panel {
        width: 100%;
    }

    .shopping-cart-section .left-panel .d-flex {
        flex-wrap: wrap;
        gap: 10px;
    }

    .shopping-cart-section .right-panel {
        width: 100%;
    }

    .shopping-cart-section .order-summary {
        padding: 20px;
    }

    .cart-head {
        display: none;
    }

    .cart-row {
        display: block;
        position: relative;
        padding: 20px;
    }

    .cart-product {
        margin-bottom: 10px;
        align-items: flex-start;
    }

    .cart-product img {
        width: 90px;
        height: 90px;
    }

    .product-info h3 {
        font-size: 16px;
        padding-right: 20px;
    }

    .cart-price,
    .cart-qty,
    .cart-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
        border-top: 1px solid #E2E1DF;
    }

    .cart-price::before,
    .cart-qty::before,
    .cart-total::before {
        content: attr(data-title);
        font-size: 16px;
        font-weight: 600;
        color: #555;
    }

    .cart-remove {
        position: absolute;
        top: 20px;
        right: 20px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .shopping-cart-section section {
        flex-wrap: wrap;
    }

    .shopping-cart-section .left-panel {
        width: 100%;
    }

    .shopping-cart-section .right-panel {
        width: 100%;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    .shopping-cart-section section {
        flex-wrap: wrap;
        gap: 20px;
    }

    .shopping-cart-section .left-panel {
        width: calc(100% - 320px);
    }

    .shopping-cart-section .right-panel {
        width: 300px;
        padding: 20px;
    }

    .cart-head,
    .cart-row {
        gap: 10px;
        padding: 15px;
    }

    .shopping-cart-section .order-summary {
        padding: 20px;
    }
}

.cart-summery {
    padding: 10px 0;
    display: grid;
    grid-template-columns: 2.8fr 1fr;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #EDEAE5;
}

.cart-summery .cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    position: relative;
}

.cart-summery .cart-product .qnt {
    width: 20px;
    height: 20px;
    background: #969898;
    border-radius: 50%;
    font-size: 10px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -10px;
    left: 60px;
}

.cart-summery .cart-product img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-summery .product-info h3 {
    font-size: 14px;
    font-weight: 600;
    padding: 0;
}

.cart-summery .product-info p {
    font-size: 14px;
    padding: 0;
}

.cart-summery .cart-price {
    text-align: right;
    font-weight: 600;
}

.thank-you-section {
    text-align: center;
}

.thank-you-section h5 {
    font-weight: 500;
}

.thank-you-section h4 {
    font-weight: 600;
}

.thank-you-section p strong {
    font-family: "Playfair Display", serif;
}

.thank-you-section .fancy-divider {
    margin: 0 auto;
}

.thank-you-section hr {
    margin: 10px auto;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(251, 213, 119, 0) 2.03%, #FBD577 49.13%, rgba(251, 213, 119, 0) 94.79%);
    border: none;
}

.thank-you-section .order-panel {
    margin: 15px auto;
    background: #F8F4EE;
    border: 1px solid #DFD8D2;
    border-radius: 5px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.thank-you-section .order-panel .grid-item {
    padding: 20px;
    text-align: center;
    position: relative;
}

.thank-you-section .order-panel .grid-item::after {
    content: "";
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.thank-you-section .order-panel .grid-item:last-child::after {
    display: none;
}

.thank-you-section .order-panel h6 {
    padding: 0;
    font-weight: 600;
}

.thank-you-section .order-panel p {
    padding: 0;
    font-size: 14px;
}

.thank-you-section .note {
    margin: 15px 0;
    padding: 20px;
    background: #F2F2F2;
    border: 1px solid #DFD8D2;
    border-radius: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    font-family: "Playfair Display", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: #000000;
    text-align: left;
}

.thank-you-section .note img {
    width: 30px;
}

.thank-you-section .note strong {
    color: #B8161A;
}

.thank-you-section .d-flex {
    margin: 15px 0;
    gap: 30px;
}

.thank-you-section .d-flex .btn-primary,
.thank-you-section .d-flex .btn-secondary {
    font-family: "Playfair Display", serif;
    width: 50%;
    justify-content: center;
    font-size: 20px;
}

@media only screen and (max-width: 760px) {
    .thank-you-section .order-panel {
        grid-template-columns: repeat(1, 1fr);
    }

    .thank-you-section .order-panel .grid-item::after {
        content: "";
        width: 100%;
        height: 2px;
        background-image: none;
        background: linear-gradient(90deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
        position: absolute;
        right: auto;
        top: auto;
        left: 0;
        bottom: 0;
    }

    .thank-you-section .d-flex {
        flex-wrap: wrap;
        gap: 10px;
    }

    .thank-you-section .d-flex .btn-primary,
    .thank-you-section .d-flex .btn-secondary {
        width: 100%;
        font-size: 16px;
    }
}

.concierge-support {
    margin-top: 30px;
    padding: 30px;
    background: #F7F6F4;
    border: 1px solid #DFDBD8;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.concierge-support figure {
    width: 50px;
    height: 50px;
}

.concierge-support article {
    width: calc(100% - 70px);
}

.concierge-support article h6 {
    padding: 0;
}

.concierge-support article .btn-secondary {
    width: 100%;
    padding: 12px 20px 12px 50px;
    background: transparent url(../img/icon-email.png) no-repeat left;
    justify-content: space-between;
}

@media only screen and (max-width: 760px) {
    .concierge-support {
        margin-top: 20px;
        padding: 20px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    .concierge-support {
        flex-wrap: wrap;
        padding: 20px;
    }

    .concierge-support figure {
        width: 50px;
        height: 50px;
    }

    .concierge-support article {
        width: 100%;
    }

    .concierge-support article h6 {
        padding: 0;
    }

    .concierge-support article .btn-secondary {
        width: 100%;
    }
}

.checkout-cart-section {
    padding: 30px 0 50px 0;
}

.checkout-cart-section .fancy-divider {
    max-width: 330px;
}

.checkout-cart-section .fancy-divider::before {
    background: linear-gradient(90deg, rgba(251, 213, 119, 0) 35.76%, #FBD577 100%);
}

.checkout-cart-section .fancy-divider::after {
    background: linear-gradient(270deg, rgba(251, 213, 119, 0) 53.47%, #FBD577 97.34%);
}

.checkout-cart-section .star {
    color: #E49F2A;
}

.checkout-cart-section section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.checkout-cart-section .left-panel {
    width: calc(100% - 370px);
}

.checkout-cart-section .right-panel {
    width: 350px;
}

.place-order {
    background: #F7F6F4;
    border: 1px solid #DFDBD8;
    border-radius: 10px;
}

.place-order p a {
    font-size: 16px;
    font-weight: 600;
    color: #B8161A;
}

.order-title {
    background: #000D20;
    border-radius: 10px 10px 0 0;
    padding: 15px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

.order-title span {
    width: 24px;
    height: 24px;
    background-color: #444756;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0px;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout-steps {
    margin: 20px auto;
    max-width: 800px;
    display: flex;
    align-items: center;
}

.checkout-steps .step {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.checkout-steps .number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #B2B2B5;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-steps .title {
    font-size: 16px;
    font-weight: 400;
    color: #b00000;
}

.checkout-steps .active .number {
    background: #7B0009;
}

.checkout-steps .line {
    flex: 1;
    height: 2px;
    background: #000000;
    margin: 0 25px;
}

@media (max-width:768px) {
    .checkout-steps {
        gap: 10px;
    }

    .checkout-steps .title {
        font-size: 18px;
    }

    .checkout-steps .number {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .checkout-steps .line {
        margin: 0 10px;
    }
}

@media (max-width:576px) {
    .checkout-steps .title {
        display: none;
    }

    .checkout-steps .line {
        margin: 0 8px;
    }
}

.shipping-payment {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.shipping-information {
    width: 50%;
    background: #F7F6F4;
    border: 1px solid #DFDBD8;
    border-radius: 10px;
}

.payment-method {
    width: 50%;
    background: #F7F6F4;
    border: 1px solid #DFDBD8;
    border-radius: 10px;
}

.payment-method p {
    font-size: 16px;
}

.order-content {
    padding: 20px;
}

.order-content .row {
    gap: 10px;
}

.order-content label {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #000000;
    text-align: left;
    display: block;
}

.order-content label span {
    color: #B8161A;
}

.order-content input[type="text"],
.order-content input[type="email"],
.order-content input[type="tel"],
.order-content input[type="password"],
.order-content textarea,
.order-content select {
    margin: 0;
    padding: 15px;
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #E1DFE0;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 34px;
    color: #000000;
}

.order-content select {
    background: #ffffff url(../img/dd-arrow.png) no-repeat right;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.order-content input[type="submit"] {
    margin: 0 auto;
    padding: 10px;
    width: 100%;
    height: 50px;
    background: linear-gradient(180deg, #61000C 0%, #41020A 100%);
    border: none;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.payment-method .card {
    margin-bottom: 10px;
    padding: 15px;
    background: #FEFEFE;
    border: 1px solid #EEEEEE;
    border-radius: 5px;
}

.payment-method .gateway {
    padding: 15px;
    background: #FEFEFE;
    border: 1px solid #EEEEEE;
    border-radius: 5px;
}

.gold {
    color: #D48E09 !important;
}

@media only screen and (max-width: 760px) {
    .checkout-cart-section {
        padding: 20px 0;
    }

    .checkout-cart-section section {
        flex-wrap: wrap;
        gap: 20px;
    }

    .checkout-cart-section .left-panel {
        width: 100%;
    }

    .checkout-cart-section .right-panel {
        width: 100%;
    }

    .shipping-payment {
        flex-wrap: wrap;
        gap: 20px;
    }

    .shipping-information {
        width: 100%;
    }

    .payment-method {
        width: 100%;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .checkout-cart-section section {
        flex-wrap: wrap;
    }

    .checkout-cart-section .left-panel {
        width: 100%;
    }

    .checkout-cart-section .right-panel {
        width: 100%;
    }
}

.dashboard-section {
    padding: 30px 0 50px 0;
    background: url(../img/dashboard-bg.png) no-repeat center/cover;
}

.dashboard-section .fancy-divider::before {
    background: linear-gradient(90deg, rgba(251, 213, 119, 0) 35.76%, #FBD577 100%);
}

.dashboard-section .fancy-divider::after {
    background: linear-gradient(270deg, rgba(251, 213, 119, 0) 53.47%, #FBD577 97.34%);
}

.dashboard-section .star {
    color: #E49F2A;
}

.dashboard-section .profile {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    position: relative;
}

.dashboard-section .profile figure {
    width: 74px;
    height: 74px;
    background-color: #ffffff;
    border: 2px solid #E5B55A;
    border-radius: 50%;
    overflow: hidden;
}

.dashboard-section .profile article {
    width: 250px;
}

.dashboard-section .profile article p {
    padding: 0;
    font-size: 13px;
}

.dashboard-section .profile article h6 {
    padding: 0;
}

.dashboard-section .profile .edit {
    width: 22px;
    height: 22px;
    position: absolute;
    left: 50px;
    bottom: 0;
}

@media only screen and (max-width: 760px) {
    .dashboard-section {
        padding: 20px 0;
    }

    .dashboard-section .d-flex {
        flex-wrap: wrap;
        gap: 10px;
    }

    .dashboard-section .title {
        width: 100%;
        text-align: center;
    }

    .dashboard-section .profile {
        width: 100%;
    }
}

.dashboard-panel {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.dashboard-panel aside {
    width: 260px;
}

.dashboard-panel section {
    width: calc(100% - 280px);
}

.dashboard-links {
    margin-bottom: 20px;
    background: #F9F9F9;
    border: 1px solid #E5B55A;
    border-radius: 7px;
    overflow: hidden;
}

.links-title {
    background: #000D20;
    border-radius: 7px 7px 0 0;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0;
    color: #ffffff;
    text-transform: uppercase;
}

.links-title .title-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.links-title i {
    transition: .3s;
    display: none;
}

@media (max-width: 760px) {
    .links-title i {
        display: block;
    }

    .dashboard-links ul {
        display: none;
    }

    .dashboard-links.active ul {
        display: block;
    }

    .dashboard-links.active .links-title i {
        transform: rotate(180deg);
    }
}

@media (min-width: 761px) {
    .dashboard-links ul {
        display: block !important;
    }

    .links-title i {
        display: none;
    }
}

.dashboard-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dashboard-links ul li {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
}

.dashboard-links ul li a {
    padding: 10px 40px 10px 18px;
    background: url(../img/link-arrow.png) no-repeat right;
    color: #000000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    transition: .5s;
}

.dashboard-links ul li a img {
    width: 20px;
    height: 20px;
}

.dashboard-links ul li a:hover,
.dashboard-links ul li a.active {
    color: #61000C;
    background-color: #F6F2EF;
    transition: .5s;
}

.dashboard-links ul li a.active img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(100%) saturate(7497%) hue-rotate(358deg) brightness(99%) contrast(118%);
}

.dashboard-panel .need-help {
    padding: 20px;
    background: #F9F9F9;
    border: 1px solid #E5B55A;
    border-radius: 7px;
}

.dashboard-panel .need-help .d-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.dashboard-panel .need-help figure {
    width: 34px;
    height: 34px;
}

.dashboard-panel .need-help article {
    width: calc(100% - 50px);
}

.dashboard-panel .need-help article h6 {
    padding: 0;
    font-size: 18px;
}

.dashboard-panel .need-help p {
    padding: 5px 0;
    font-size: 14px;
}

.dashboard-panel .need-help .btn-secondary {
    width: 100%;
    justify-content: space-between;
}

@media only screen and (max-width: 760px) {
    .dashboard-panel {
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .dashboard-panel aside {
        width: 100%;
    }

    .dashboard-panel section {
        width: 100%;
    }
}

.top-panel {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.top-panel .grid-item {
    padding: 20px;
    background: #F9F9F9;
    border: 1px solid #E5B55A;
    border-radius: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.top-panel .grid-item figure {
    width: 58px;
    height: 58px;
}

.top-panel .grid-item article {
    width: calc(100% - 70px);
}

.top-panel .grid-item article p {
    padding: 0;
    font-size: 14px;
}

.top-panel .grid-item article h6 {
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

.bottom-panel {
    display: grid;
    grid-template-columns: 3.08fr 1fr;
    gap: 10px;
    align-items: flex-start;
}

.bottom-panel .left {
    background: #F9F9F9;
    border: 1px solid #E5B55A;
    border-radius: 7px;
}

.bottom-panel .d-flex-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #E5B55A;
}

.order-item-title {
    display: grid;
    grid-template-columns: 2fr 1.2fr .8fr 1fr 120px;
    align-items: center;
    gap: 0;
    padding: 10px;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}

.order-item-title div {
    padding: 0 10px;
}

.order-item {
    display: grid;
    grid-template-columns: 2fr 1.2fr .8fr 1fr 120px;
    align-items: center;
    gap: 0;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.orders-list .product {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
}

.orders-list .product img {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.orders-list .product h4 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.orders-list .product h4 strong {
    display: block;
    font-weight: 600;
}

.orders-list .date,
.orders-list .price {
    font-size: 14px;
    color: #454545;
    padding: 0 10px;
}

.orders-list .date span,
.orders-list .price span {
    display: none;
}

.orders-list .status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 0 10px;
}

.delivered {
    color: #00c853;
}

.shipped {
    color: #1976d2;
}

.processing {
    color: #f9a825;
}

.cancelled {
    color: #9e9e9e;
}

.in-stock {
    color: #0AA238;
}

.low-stock {
    color: #E49F2A;
}

.orders-list .action {
    padding: 0 10px;
}

.orders-list .btn {
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 100px;
    height: 36px;
    border: 1px solid #d60000;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #d60000;
    text-decoration: none;
    transition: .3s;
}

@media(max-width:991px) {
    .order-item-title {
        display: none;
    }

    .order-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .orders-list .product {
        align-items: flex-start;
    }

    .orders-list .date,
    .orders-list .price {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .orders-list .date span,
    .orders-list .price span {
        display: block;
        font-weight: 600;
        color: #000;
    }

    .orders-list .status {
        justify-content: flex-start;
    }

    .orders-list .action {
        width: 100%;
    }

    .orders-list .btn {
        width: 100%;
    }
}

.bottom-panel .right {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.bottom-panel .account-details {
    padding: 10px;
    width: 100%;
    background: #F9F9F9;
    border: 1px solid #E5B55A;
    border-radius: 7px;
}

.bottom-panel .manage-addresses {
    padding: 10px;
    width: 100%;
    background: #F9F9F9;
    border: 1px solid #E5B55A;
    border-radius: 7px;
}

.bottom-panel h6 {
    font-size: 16px;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.bottom-panel p {
    font-size: 12px;
    padding: 0;
}

.bottom-panel p a {
    color: #B8161A;
    font-weight: 600;
}

.bottom-panel .account-details hr,
.bottom-panel .manage-addresses hr {
    margin: 10px auto;
    border-color: #EBE7E8;
}

.bottom-panel .account-details .content,
.bottom-panel .manage-addresses .content {
    padding: 10px;
}

.m-t-b-10 {
    margin: 10px 0;
}

.bottom-panel .account-details .fa-circle-check,
.bottom-panel .manage-addresses .fa-circle-check {
    color: #09932E;
}

.bottom-panel .manage-addresses .btn-secondary {
    background: transparent;
    color: #B8161A !important;
    border-color: #B8161A;
    width: 100%;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0;
}

@media only screen and (max-width: 760px) {
    .top-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-panel .grid-item {
        padding: 10px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 12px;
    }

    .top-panel .grid-item figure {
        width: 58px;
        height: 58px;
    }

    .top-panel .grid-item article {
        width: 100%;
        text-align: center;
    }

    .bottom-panel {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media only screen and (min-width: 761px) and (max-width: 1170px) {
    .top-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom-panel {
        grid-template-columns: repeat(1, 1fr);
    }

    .bottom-panel .account-details,
    .bottom-panel .manage-addresses {
        width: calc(50% - 10px);
    }
}

.edit-form .btn {
    padding: 12px 50px;
}

.edit-form .btn-secondary {
    background: transparent;
    color: #B8161A !important;
    border-color: #680813;
    font-size: 20px;
}

.edit-form .btn-primary {
    background: linear-gradient(180deg, #61000C 0%, #41020A 100%) !important;
    border: none;
    font-size: 20px;
}

.edit-personal-information {
    background: #F9F9F9;
    border: 1px solid #E5B55A;
    border-radius: 7px;
    min-height: 150px;
}

.edit-personal-information .form {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.edit-personal-information .lbox {
    width: 67.5%;
}

.edit-personal-information .rbox {
    width: 32.5%;
}

.edit-change-password {
    margin: 20px auto;
    background: #F9F9F9;
    border: 1px solid #E5B55A;
    border-radius: 7px;
}

.edit-change-password .form {
    padding: 10px 20px;
}

.edit-form label {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    text-align: left;
    display: block;
}

.edit-form label span {
    color: #B8161A;
}

.edit-form input[type="text"],
.edit-form input[type="email"],
.edit-form input[type="tel"],
.edit-form input[type="password"],
.edit-form textarea,
.edit-form select {
    margin: 0;
    padding: 15px;
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #E1DFE0;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 34px;
    color: #000000;
}

.edit-form select {
    background: #ffffff url(../img/dd-arrow.png) no-repeat right;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.edit-form .password-field input {
    background: none !important;
}

.profile-upload {
    text-align: center;
}

.profile-image {
    width: 160px;
    height: 160px;
    margin: auto;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E5B55A;
    display: block;
}

.camera-btn {
    margin: 0 !important;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #000000;
    border: 2px solid #E5B55A;
    position: absolute;
    right: 0;
    bottom: 0px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.camera-btn img {
    width: 20px;
    height: 20px;
    border-radius: 0 !important;
    object-fit: none !important;
    border: none !important;
    display: block;
}

.upload-text {
    margin-bottom: 0 !important;
    margin-top: 18px !important;
    display: inline-block !important;
    color: #000000 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer;
}

@media only screen and (max-width: 760px) {
    .edit-personal-information .form {
        padding: 20px;
        flex-wrap: wrap;
    }

    .edit-personal-information .lbox {
        width: 100%;
    }

    .edit-personal-information .rbox {
        width: 100%;
    }

    .edit-form .btn {
        padding: 12px 20px;
    }

    .edit-form .btn-secondary {
        font-size: 16px;
    }

    .edit-form .btn-primary {
        font-size: 16px;
    }

    .edit-form label {
        font-size: 14px;
    }
}

@media only screen and (min-width: 761px) and (max-width: 1023px) {
    .edit-form .row {
        flex-wrap: wrap;
    }

    .edit-form .col-half,
    .edit-form .col-one-third {
        width: 100% !important;
    }
}

.download-files-panel {
    margin-bottom: 20px;
    background: #F9F9F9;
    border: 1px solid #E5B55A;
    border-radius: 7px;
    min-height: 150px;
}

.how-download-panel {
    padding: 20px;
    background: #F9F9F9;
    border: 1px solid #E5B55A;
    border-radius: 7px;
}

.how-download-panel h6 {
    padding: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
}

.how-download-panel .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.how-download-panel .grid-item {
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #000000;
    position: relative;
}

.how-download-panel .grid-item::after {
    content: "";
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(229, 181, 90, 0) 0%, #680813 48.08%, rgba(127, 100, 50, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.how-download-panel .grid-item:last-child::after {
    display: none;
}

.how-download-panel .grid-item img {
    width: 25px;
}

.how-download-panel .grid-item:nth-child(1) {
    padding: 0 20px 0 0;
}

.how-download-panel .grid-item:nth-child(2) {
    padding: 0 20px;
}

.how-download-panel .grid-item:nth-child(3) {
    padding: 0 0 0 20px;
}

.download-item-title {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 170px;
    align-items: center;
    gap: 0;
    padding: 10px;
    background: #000D20;
    border-radius: 7px 7px 0 0;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
}

.download-item-title div {
    padding: 0 10px;
    text-align: center;
}

.download-item-title div:first-child {
    text-align: left;
}

.download-list {
    padding: 10px 0;
}

.download-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 170px;
    align-items: center;
    gap: 0;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.download-list .product {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
}

.download-list .product img {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.download-list .product h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #0AA238;
}

.download-list .product h4 strong {
    display: block;
    font-weight: 600;
    color: #000000;
}

.download-list .order,
.download-list .date,
.download-list .expires,
.download-list .downloads {
    font-size: 14px;
    color: #454545;
    padding: 0 10px;
    text-align: center;
}

.download-list .order {
    font-weight: 500;
    color: #680813;
}

.download-list .order span,
.download-list .date span,
.download-list .expires span,
.download-list .downloads span {
    display: none;
}

.download-list .action {
    padding: 0 10px;
}

.download-list .btn {
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
    height: 36px;
    border: 1px solid #d60000;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #d60000;
    text-decoration: none;
    transition: .3s;
}

@media(max-width:991px) {
    .download-item-title {
        display: none;
    }

    .download-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .download-list .product {
        align-items: flex-start;
    }

    .download-list .order,
    .download-list .date,
    .download-list .expires,
    .download-list .downloads {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .download-list .order span,
    .download-list .date span,
    .download-list .expires span,
    .download-list .downloads span {
        display: block;
        font-weight: 600;
        color: #000;
    }

    .download-list .action {
        width: 100%;
    }

    .download-list .btn {
        width: 100%;
    }
}

@media only screen and (max-width: 1023px) {
    .how-download-panel .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .how-download-panel .grid-item::after {
        content: "";
        width: 100%;
        height: 2px;
        background-image: none;
        background: linear-gradient(90deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
        position: absolute;
        right: auto;
        top: auto;
        left: 0;
        bottom: 0;
    }

    .how-download-panel .grid-item:nth-child(1) {
        padding: 0 0 20px 0;
    }

    .how-download-panel .grid-item:nth-child(2) {
        padding: 20px 0;
    }

    .how-download-panel .grid-item:nth-child(3) {
        padding: 20px 0 0 0;
    }
}

.wishlist-files-panel {
    margin-bottom: 20px;
    background: #F9F9F9;
    border: 1px solid #E5B55A;
    border-radius: 7px;
    min-height: 150px;
}

.wishlist-item-title {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    align-items: center;
    gap: 0;
    padding: 10px;
    background: #000D20;
    border-radius: 7px 7px 0 0;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
}

.wishlist-item-title div {
    padding: 0 10px;
    text-align: center;
}

.wishlist-item-title div:first-child {
    text-align: left;
}

.wishlist-list {
    padding: 10px 0;
}

.wishlist-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    align-items: center;
    gap: 0;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.wishlist-list .product {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
}

.wishlist-list .product img {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.wishlist-list .product h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.wishlist-list .product ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.wishlist-list .product ul li {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.wishlist-list .price {
    font-size: 14px;
    color: #454545;
    padding: 0 10px;
    text-align: center;
}

.wishlist-list .price span {
    display: none;
}

.wishlist-list .status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 0 10px;
}

.wishlist-list .action {
    padding: 0 10px;
    text-align: center;
}

.wishlist-list .action .btn {
    padding: 12px;
}

.wishlist-list .action .btn-primary {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    padding: 12px 20px;
}

@media(max-width:991px) {
    .wishlist-item-title {
        display: none;
    }

    .wishlist-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .wishlist-list .product {
        align-items: flex-start;
    }

    .wishlist-list .date,
    .wishlist-list .price {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .wishlist-list .date span,
    .wishlist-list .price span {
        display: block;
        font-weight: 600;
        color: #000;
    }

    .wishlist-list .status {
        justify-content: flex-start;
    }

    .wishlist-list .action {
        width: 100%;
    }
}

.d-flex-button {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.d-flex-button .btn-primary {
    background: #F5EFE3;
    color: #B8161A !important;
    border-color: #680813;
    font-size: 20px;
}

.d-flex-button .btn-secondary {
    background: transparent;
    color: #680813 !important;
    border-color: #680813;
    font-size: 20px;
}

@media only screen and (max-width: 760px) {
    .d-flex-button {
        flex-wrap: wrap;
        gap: 10px;
    }

    .d-flex-button .btn-primary {
        width: 100%;
        font-size: 16px;
        justify-content: center;
    }

    .d-flex-button .btn-secondary {
        width: 100%;
        font-size: 16px;
        justify-content: center;
    }
}

.bottom-panel .order-summery {
    width: 100%;
    padding: 20px;
    background: #F9F9F9;
    border: 1px solid #E5B55A;
    border-radius: 7px;
}

.bottom-panel .order-summery hr {
    margin: 15px 0;
    border-color: #D7D4D480;
}

.bottom-panel .order-summery .order-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 5px 0;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    color: #000000;
}

.bottom-panel .order-summery .order-list div:last-child {
    text-align: right;
}

.bottom-panel .order-summery p {
    padding: 5px 0;
    font-size: 14px;
}

.bottom-panel .order-summery .btn-secondary {
    width: 100%;
    justify-content: center;
    border-color: #B8161A;
    color: #B8161A !important;
}

.order-detail-01 {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-detail-01 .id-box h6 {
    padding: 0;
    font-size: 24px;
}

.order-detail-01 .id-box p {
    padding: 5px 0;
    font-size: 15px;
}

@media only screen and (max-width: 760px) {
    .order-detail-01 {
        flex-wrap: wrap;
    }
}

.order-detail-02 {
    border-top: 2px solid #F4EBE1;
    border-bottom: 2px solid #F4EBE1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.order-detail-02 .grid-item {
    padding: 20px;
    text-align: center;
    position: relative;
}

.order-detail-02 .grid-item::after {
    content: "";
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.order-detail-02 .grid-item:last-child::after {
    display: none;
}

.order-detail-02 p {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

.order-detail-02 p span {
    display: block;
    text-transform: uppercase;
}

.order-detail-02 p strong {
    display: block;
    font-weight: 600;
}

@media only screen and (max-width: 760px) {
    .order-detail-02 {
        grid-template-columns: repeat(1, 1fr);
    }

    .order-detail-02 .grid-item::after {
        content: "";
        width: 100%;
        height: 2px;
        background-image: none;
        background: linear-gradient(90deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
        position: absolute;
        right: auto;
        top: auto;
        left: 0;
        bottom: 0;
    }
}

.order-detail-03 {
    padding: 20px;
}

.order-detail-03 h6 {
    font-size: 24px;
}

.order-detail-04 {
    padding: 20px;
    border-top: 2px solid #F4EBE1;
    border-bottom: 2px solid #F4EBE1;
}

.order-detail-title {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 10px;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}

.order-detail-title div {
    padding: 0 10px;
    text-align: center;
}

.order-detail-title div:first-child {
    text-align: left;
}

.order-detail-title div:last-child {
    text-align: right;
}

.order-detail-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.orders-detail-list .product {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
}

.orders-detail-list .product img {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.orders-detail-list .product h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.orders-detail-list .product h4 strong {
    display: block;
    font-weight: 600;
}

.orders-detail-list .qty,
.orders-detail-list .price,
.orders-detail-list .total {
    font-size: 14px;
    color: #454545;
    padding: 0 10px;
    text-align: center;
}

.orders-detail-list .total {
    text-align: right;
}

.orders-detail-list .qty span,
.orders-detail-list .price span,
.orders-detail-list .total span {
    display: none;
}

@media(max-width:991px) {
    .order-detail-title {
        display: none;
    }

    .order-detail-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .orders-detail-list .product {
        align-items: flex-start;
    }

    .orders-detail-list .qty,
    .orders-detail-list .price,
    .orders-detail-list .total {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .orders-detail-list .qty span,
    .orders-detail-list .price span,
    .orders-detail-list .total span {
        display: block;
        font-weight: 600;
        color: #000;
    }
}

.d-flex-end {
    display: flex;
    justify-content: flex-end;
}

.order-total-table {
    width: 100%;
    max-width: 300px;
    padding: 20px;
    background: #F7F7F7;
    border: 1px solid #E7E7E7;
    border-radius: 6px;
}

.order-total-table .order-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 5px 0;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    color: #000000;
}

.order-total-table .order-list div:last-child {
    text-align: right;
}

.order-total-table p {
    padding: 5px 0;
    font-size: 16px;
}

.order-total-table hr {
    margin: 15px 0;
    border-color: #D7D4D480;
}

.order-detail-05 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.order-detail-05 .grid-item {
    padding: 20px;
    text-align: left;
    position: relative;
}

.order-detail-05 .grid-item::after {
    content: "";
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.order-detail-05 .grid-item:last-child::after {
    display: none;
}

.order-detail-05 p {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

.order-detail-05 h6 {
    font-size: 24px;
    padding: 0 0 10px 0;
}

@media only screen and (max-width: 760px) {
    .order-detail-05 {
        grid-template-columns: repeat(1, 1fr);
    }

    .order-detail-05 .grid-item::after {
        content: "";
        width: 100%;
        height: 2px;
        background-image: none;
        background: linear-gradient(90deg, rgba(229, 181, 90, 0) 0%, #E5B55A 48.08%, rgba(127, 100, 50, 0) 100%);
        position: absolute;
        right: auto;
        top: auto;
        left: 0;
        bottom: 0;
    }
}






@media only screen and (max-width: 760px) {}

@media only screen and (min-width: 761px) and (max-width: 1023px) {}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {}