@font-face {
    font-family: kinkolf;
    src: url(fonts/FontsFree-Net-Kinfolk_Reg.ttf);
    font-display: swap;
}

@font-face {
    font-family: montserrat-light;
    src: url(fonts/Montserrat-Light.otf);
    font-display: swap;
}

@font-face {
    font-family: montserrat-bold;
    src: url(fonts/Montserrat-Bold.otf);
    font-display: swap;
}

@font-face {
    font-family: montserrat-regular;
    src: url(fonts/MontserratAlternates-Regular.otf);
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

html {
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

:root {
    --primary-color: #804e33;
    --secondary-color: #f0e1d9;
    --tertiary-color: black;
    --paragraph-text-family: 'montserrat-light', serif;
    --list-text-family: 'montserrat-bold', serif;
    --heading-text-family: 'kinkolf', serif;
}

::selection {
    background-color: var(--primary-color);
    color: pink;
}

.header {
    z-index: 100000000;
    background-color: inherit;
    width: 100%;
    height: 145px;
    transition: background-color 0.2s linear;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--secondary-color);
}

.navigation-bar {
    max-width: 1440px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 20px;
    margin-inline: auto;
    position: relative;
    z-index: 20;
    background-color: inherit;
}

.sub-links {
    display: none;
    position: absolute;
    bottom: -87px;
    left: -20px;
    text-align: center;
    font-family: var(--paragraph-text-family);
    font-size: 14px;
    min-width: 175px;
    border: 2px solid var(--primary-color);
    z-index: 999999;
    background-color: var(--primary-color);
    border-radius: 5px;
}

.desk-list-hidden {
    display: none;
}

.sub-links hr {
    height: 1px;
    outline: none;
    border: none;
    background: var(--secondary-color);
}

.sub-links .header-products-link a,
.header-products-link a {
    text-decoration: none;
    display: inline-block;
    padding: 5px;
    height: 100%;
    width: 100%;
    font-weight: 600;
    color: var(--secondary-color);
    transition: background-color 0.1s linear, color 0.1s linear,
        border-radius 0.1s linear;
    text-transform: capitalize;
}

.sub-links .header-products-link a:hover,
.header-products-link a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.our-product-list:hover .sub-links {
    display: block;
}

.about-us-page {
    position: relative;
}

.about-us-page .sub-links {
    position: absolute;
    min-width: 175px;
    bottom: -57px;
    left: -43px;
}

.about-us-page:hover .sub-links {
    display: block;
}

.company-name-logo {
    display: none;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 30px;
    position: relative;
}

.anjum-logo-main {
    width: 160px;
    height: 105px;
}

.anjum-logo-name {
    width: 500px;
}

.name-logo-container {
    text-decoration: none;
    margin-top: 40px;
}

.slogan {
    font-family: 'montserrat-regular';
    text-transform: uppercase;
    color: var(--primary-color);
    text-align: center;
    font-size: 20px;
}

.navigation-links {
    display: flex;
    gap: 14px;
    list-style-type: none;
}

.navigation-list {
    height: 50px;
    position: relative;
    font-family: var(--list-text-family);
}

.navigation-list::before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid var(--primary-color);
    position: absolute;
    bottom: 6px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity, transform 0.2s linear;
}

.navigation-list:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.navigation-list a,
.navigation-list p {
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-family: var(--text-family);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.menu-icons {
    display: none;
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;
    background-color: var(--primary-color);
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.phone-screen-visible {
    display: none;
}

/* about company */

.company-intro-information {
    margin-top: 180px;
    max-width: 1440px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    column-gap: 50px;
    padding-inline: 20px;
}

.company-detailed-information {
    max-width: 650px;
}

.body-sticky .company-intro-information {
    margin-top: 180px;
}

.company-image-container {
    max-width: 700px;
    min-width: 250px;
    margin-inline: auto;
}

.company-intro-information .company-image-container img {
    width: 100%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.company-intro-heading {
    color: var(--primary-color);
    font-family: var(--heading-text-family);
}

.heading-text-size {
    font-size: 32px;
    line-height: 46px;
}

.paragraph-text-size {
    font-size: 16px;
    line-height: 26px;
}

.company-paragraph {
    text-align: justify;
    margin-inline: auto;
    margin-top: 10px;
    font-family: var(--paragraph-text-family);
}

/* about us */

.about-us {
    max-width: 1440px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    column-gap: 50px;
    padding-inline: 20px;
}

.about-image-container {
    max-width: 700px;
    min-width: 250px;
    margin-inline: auto;
}

.about-image-container img {
    width: 100%;
    height: 100%;
}

.image-caption{
    text-align: center;
    font-family: var(--paragraph-text-family);
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 10px;
}

/* mission and vision */

.miss-vis {
    max-width: 100%;
    margin-inline: auto;
    margin-top: 20px;
    background-image: url('/images/about-images/mission-vission.webp');
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.miss-vis-heading {
    text-align: center;
    color: var(--secondary-color);
    font-family: var(--heading-text-family);
    margin-top: 20px;
}

.mission-and-vision {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    padding-inline: 20px;
    margin-block: auto;
    gap: 10%;
    margin-inline: auto;
}

.mission,
.vision {
    -webkit-backdrop-filter: blur(22px); /* Safari fix */
    backdrop-filter: blur(22px);
    background: rgba(255, 255, 255, 0.1); /* Ensure transparency */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: var(--secondary-color);
    font-family: var(--paragraph-text-family);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    max-width: 600px;
    min-height: 200px;
    height: 230px;
}

/* Fallback for older iOS versions */
@supports not (backdrop-filter: blur(10px)) {
    .mission, .vision {
        background: rgba(255, 255, 255, 0.3); /* Slight white fallback */
    }
}


.mission-vision-paragraph {
    text-align: center;
}

/* why choose section */
.why-choose {
    max-width: 1440px;
    margin-inline: auto;
    margin-top: 50px;
    padding-inline: 20px;
}

.why-choose-heading {
    text-align: center;
}

.why-choose-content-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.description-choosing {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 800px;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.choose-card {
    width: 288px;
    height: 200px;
}

.why-choose-images {
    width: 300px;
    display: flex;
}

.choose-card-heading {
    font-size: 20px;
    line-height: 40px;
    font-family: var(--heading-text-family);
    color: var(--primary-color);
}

.choose-card-paragraph {
    font-family: var(--paragraph-text-family);
    text-align: start;
}

.left-side-images {
    margin-top: 50px;
}

.why-choose-images {
    display: flex;
    column-gap: 20px;
}

.left-side-images,
.right-side-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left-side-images,
.left-side-images img,
.right-side-images,
.right-side-images img {
    width: 100%;
}

.border-frame {
    border: 2px solid var(--primary-color);
}

/* foooter */

footer {
    background-color: var(--primary-color);
    flex-direction: column;
    width: 100%;
    margin-inline: auto;
}

.footer-container {
    max-width: 1440px;
    margin-inline: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.upper-footer-div {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 43px;
    width: 100%;
}

.footer-logo-heading {
    text-align: center;
}

.footer-logo {
    display: inline-block;
    height: 80px;
    width: 120px;
}

.footer-logo img {
    height: 100%;
    width: 100%;
}

.company-name-specific {
    margin-top: 20px;
    font-size: 32px;
    font-family: var(--heading-text-family);
    color: var(--secondary-color);
    text-align: center;
}

.mobile-view-visible {
    display: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 10px;
}

.footer-links li {
    list-style-type: none;
}

.footer-links li a {
    color: var(--secondary-color);
    font-family: var(--paragraph-text-family);
    font-size: 18px;
    text-decoration: none;
}

.footer-links-list {
    position: relative;
}

.footer-links-list::before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.3s linear, transform 0.3s linear;
}

.footer-links-list:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.social-icons {
    margin-top: 15px;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    transition: opacity 0.6s linear;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
}

.social-icons a img {
    width: 100%;
    height: 100%;
}

.social-icons a:hover {
    opacity: 0.6;
}

.trusted-seller {
    display: block;
    margin-top: 20px;
    text-align: center;
}

.list-seller-button {
    display: none;
}

.horizontal-line {
    width: 100%;
    margin-top: 25px;
    outline: none;
    border: none;
    height: 2px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.reserved-rights {
    margin-top: 10px;
    max-width: 1440px;
    margin-inline: auto;
}

.rights-title {
    color: var(--secondary-color);
    font-size: 16px;
    font-family: var(--paragraph-text-family);
    margin-bottom: 10px;
}

/* media queries */

@media only screen and (min-width: 1080px) and (max-width: 1300px) {
    .header {
        height: 160px;
    }
    .anjum-logo-main {
        height: 70px;
        width: 130px;
    }

    .anjum-logo-name {
        width: 397px;
    }

    .name-logo-container {
        margin-top: 16px;
    }

    .slogan {
        font-size: 18px;
        margin-top: -9px;
    }

    .sub-links {
        min-width: 168px;
    }

    .about-us-page .sub-links {
        left: -43px;
        min-width: 168px;
    }

    .company-detailed-information {
        max-width: max-content;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

@media only screen and (min-width: 900px) and (max-width: 1079px) {
    /* navbar */
    .header {
        height: 150px;
    }

    .anjum-logo-main {
        width: 110px;
        height: 50px;
    }

    .anjum-logo-name {
        width: 336px;
    }

    .name-logo-container {
        margin-top: -2px;
    }

    .slogan {
        font-size: 18px;
        margin-top: -9px;
    }

    .navigation-list a,
    .navigation-list p {
        font-size: 12px;
    }

    .sub-links {
        min-width: 145px;
        bottom: -76px;
    }

    .about-us-page .sub-links-small-devices {
        bottom: -50px;
        min-width: 145px;
        left: -40px;
    }

    .company-intro-information {
        flex-direction: column;
    }

    .company-intro-information {
        row-gap: 15px;
    }

    .about-us {
        flex-direction: column-reverse;
        padding-inline: 20px;
        margin-top: 30px;
    }

    .company-intro-heading {
        text-align: center;
        margin-top: 10px;
    }

    .company-detailed-information {
        max-width: max-content;
    }

    .about-us-content {
        max-width: 100%;
    }

    .miss-vis {
        height: 350px;
    }

    .why-choose-content-container {
        margin-top: 15px;
    }

    .why-choose-images {
        display: none;
    }

    /* footer */
    .upper-footer-div {
        min-width: 800px;
    }
}

/* this is only for responsive for tablet & greater than that */
@media only screen and (min-width: 850px) and (max-width: 900px) {
    /* navbar */
    .header {
        height: 130px;
    }
    .anjum-logo-main {
        width: 90px;
        height: 30px;
    }

    .anjum-logo-name {
        width: 284.256px;
    }

    .name-logo-container {
        margin-top: 0px;
    }

    .slogan {
        margin-top: -7px;
        font-size: 12px;
    }

    .navigation-list a,
    .navigation-list p {
        font-size: 14px;
    }

    /* company */
    .company-intro-information {
        flex-direction: column;
    }

    .company-intro-information {
        row-gap: 20px;
    }

    .company-detailed-information {
        max-width: max-content;
    }

    .about-us {
        flex-direction: column-reverse;
        padding-inline: 20px;
        margin-top: 30px;
    }

    .company-intro-heading {
        text-align: center;
        margin-top: 10px;
    }

    .about-us-content {
        max-width: 100%;
    }

    .miss-vis {
        height: 350px;
    }

    .why-choose-images {
        display: none;
    }

    .heading-text-size {
        font-size: 32px;
        line-height: 38px;
    }

    /* footer */
    .upper-footer-div {
        min-width: 820px;
    }
}

/* for tablets */
@media only screen and (max-width: 850px) {
    .header {
        height: 155px;
    }
    .navigation-bar {
        position: relative;
    }

    .navigation-container {
        display: none;
        position: absolute;
        right: 18px;
        background-color: var(--primary-color);
        bottom: -75px;
        z-index: 99999;
        width: 185px;
        padding: 5px 0;
        border-radius: 5px;
        width: 145px;
        bottom: -79px;
    }

    .anjum-logo-main {
        width: 130px;
        height: 70px;
    }

    .name-logo-container {
        margin-top: 16px;
    }

    .anjum-logo-name {
        width: 397px;
    }

    .slogan {
        font-size: 18px;
        margin-top: -9px;
    }

    .navigation-list {
        height: 25px;
        color: var(--secondary-color);
    }

    .navigation-list a {
        color: var(--secondary-color);
        font-size: 15px;
    }

    .phone-screen-visible {
        display: block;
    }

    .navigation-links {
        flex-direction: column;
        gap: 2px;
    }

    .menu-icons {
        display: block;
        cursor: pointer;
    }

    .bar1,
    .bar2,
    .bar3 {
        margin: 5px 0;
    }

    .change .bar1 {
        transform: translate(0, 9px) rotate(-45deg);
    }

    .header-products-link {
        display: block;
    }

    .about-us-page .sub-links {
        bottom: -34.5px;
        left: -175px;
    }

    .sub-links {
        z-index: 999999;
        position: absolute;
        bottom: -65px;
        left: -177px;
    }

    .navigation-list::before {
        display: none;
    }

    .our-product-list:hover .sub-links {
        display: block;
    }

    .sandalwood-links:hover .super-links-sandalwood-oil {
        display: none;
    }

    .mobile-view-left-list-hidden {
        display: none;
    }

    .desk-list-hidden {
        display: block;
    }

    .why-choose-images {
        display: none;
    }

    .company-name-logo {
        display: block;
        margin-top: 13px;
    }

    .tablet-view-disable {
        display: none;
    }

    .company-intro-information {
        flex-direction: column;
    }

    .company-intro-information {
        row-gap: 10px;
    }

    .about-us {
        flex-direction: column-reverse;
        padding-inline: 20px;
        margin-top: 30px;
    }

    .company-intro-heading {
        text-align: center;
        margin-top: 10px;
    }

    .company-detailed-information {
        max-width: max-content;
    }

    .about-us-content {
        max-width: 100%;
    }

    .miss-vis {
        height: 350px;
    }

    .mission,
    .vision {
        height: 210px;
    }

    .paragraph-text-size {
        font-size: 14px;
        line-height: 23px;
    }

    .choose-card-heading {
        text-align: start;
    }

    /* footer */

    .horizontal-line {
        margin-top: 18px;
    }

    .company-name-specific {
        margin-top: 18px;
        font-size: 23px;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
    }

    .footer-links li a {
        font-size: 14px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 730px) {
    /* header */
    .header {
        height: 120px;
    }
    .anjum-logo-main {
        width: 110px;
        height: 50px;
    }

    .anjum-logo-name {
        width: 336px;
    }

    .name-logo-container {
        margin-top: 16px;
    }

    .slogan {
        font-size: 18px;
        margin-top: -9px;
    }

    .bar1,
    .bar2,
    .bar3 {
        margin: 4px 0;
    }

    .change .bar1 {
        transform: translate(0, 7px) rotate(-45deg);
    }

    .navigation-container {
        width: 130px;
        max-width: 140px;
        bottom: -88px;
    }

    .navigation-list a {
        color: var(--secondary-color);
        font-size: 14px;
    }

    .about-us-page .sub-links {
        bottom: -33.5px;
    }

    .sub-links {
        bottom: -63px;
        left: -175px;
    }

    /* mission and vision */

    .miss-vis {
        height: 325px;
    }

    .paragraph-text-size {
        font-size: 12px;
        line-height: 19px;
    }

    /* why choose */

    .choose-card {
        max-width: 250px;
        height: 123px;
    }

    /* footer */

    .upper-footer-div {
        min-width: 579px;
    }

    .company-name-specific {
        margin-top: 11px;
        font-size: 18px;
    }

    .list-heading h3 {
        display: none;
    }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
    /* header */
    .header {
        height: 90px;
    }

    .navigation-bar {
        height: 100%;
    }

    .navigation-container {
        z-index: 99999;
        padding: 2px 0;
        font-size: 12px;
        max-width: 140px;
        bottom: -106px;
        width: 152px;
    }

    .sub-links .header-products-link a,
    .super-links-sandalwood-oil .header-products-link a {
        padding: 6px;
        font-size: 13px;
    }

    .about-us-page .sub-links {
        left: -175px;
        bottom: -35px;
    }

    .sub-links {
        z-index: 999999;
        padding: 2px;
        bottom: -64px;
        left: -175px;
    }

    .anjum-logo-main {
        width: 77px;
        height: 49px;
    }

    .anjum-logo-name {
        width: 220px;
    }

    .company-name-logo {
        margin-top: 7px;
        display: block;
    }

    .slogan {
        margin-top: -4px;
        font-size: 9px;
    }

    .bar1,
    .bar2,
    .bar3 {
        margin: 4px 0;
    }

    .change .bar1 {
        transform: translate(0, 7px) rotate(-45deg);
    }

    .navigation-list a {
        color: var(--secondary-color);
        font-size: 14px;
    }

    /* content upper */

    .company-intro-information {
        margin-top: 125px;
    }

    /* compoany data */

    .miss-vis {
        height: 320px;
    }

    .paragraph-text-size {
        font-size: 10px;
        line-height: 17px;
    }

    .choose-card {
        max-width: 100%;
        height: auto;
    }

    /* footer */

    footer {
        margin-top: 20px;
    }

    .upper-footer-div {
        margin-top: 10px;
    }

    .company-name-specific {
        margin-top: 18px;
        font-size: 20px;
    }

    .mobile-view-visible {
        display: flex;
    }

    .trusted-seller-social-icons {
        display: none;
    }

    .mobile-view-visible {
        margin-top: 15px;
        align-items: center;
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 20px;
        transition: opacity 0.6s linear;
    }

    .mobile-view-visible a {
        display: inline-block;
        width: 30px;
        height: 30px;
    }

    .mobile-view-visible a img {
        width: 100%;
        height: 100%;
    }

    .mobile-view-visible a:hover {
        opacity: 0.6;
    }

    .list-seller-button {
        margin-top: 10px;
        display: block;
        width: 80px;
    }

    .list-seller-button .list-trusted-seller img {
        width: 100%;
    }
}

/* design for mobile */
@media only screen and (min-width: 200px) and (max-width: 400px) {
    .header {
        height: 91px;
    }

    .navigation-bar {
        height: 100%;
    }

    .bar1,
    .bar2,
    .bar3 {
        width: 23px;
        height: 4px;
        margin: 3px 0;
    }

    .change .bar1 {
        transform: translate(0, 4px) rotate(-45deg);
    }

    .change .bar3 {
        transform: translate(0, -10px) rotate(45deg);
    }

    .about-us-page .sub-links {
        left: -150px;
        bottom: -34px;
    }

    .navigation-container,
    .mobile-view-left-list-hidden {
        bottom: -95px;
        z-index: 99999;
        width: 116px;
        padding: 2px 0;
        font-size: 10px;
    }

    .about-us-page .sub-links {
        left: -175px;
        bottom: -34px;
    }

    .sub-links {
        bottom: -64px;
        left: -150px;
        z-index: 999999;
        padding: 2px;
        display: none;
        font-size: 10px;
        min-width: 150px;
    }

    .sub-links .header-products-link a,
    .header-products-link a {
        padding: 7px;
        font-size: 10px;
        z-index: 999999;
    }

    .anjum-logo-main {
        width: 60px;
        height: 40px;
    }

    .anjum-logo-name {
        width: 195px;
    }

    .company-name-logo {
        margin-top: 1px;
        display: block;
    }

    .slogan {
        margin-top: -4px;
        font-size: 8px;
    }

    .navigation-container {
        max-width: 140px;
        bottom: -79px;
        width: 130px;
    }

    .navigation-list a {
        color: var(--secondary-color);
        font-size: 14px;
    }

    .navigation-container {
        width: 126px;
        max-width: 140px;
        bottom: -102px;
    }

    .navigation-list a {
        color: var(--secondary-color);
        font-size: 10px;
    }

    .miss-vis {
        height: 260px;
    }

    .mission,
    .vision {
        min-height: 131px;
        height: 180px;
    }

    .paragraph-text-size {
        margin-top: 2px;
        font-size: 8px;
        line-height: 12px;
    }

    .heading-text-size {
        font-size: 24px;
        line-height: 26px;
    }

    .mission-vision-paragraph {
        text-align: center;
    }

    .why-choose {
        margin-top: 33px;
    }

    .choose-card {
        max-width: 100%;
        height: auto;
    }

    .choose-card-heading {
        font-size: 17px;
        line-height: 27px;
    }

    /* company container */

    .company-intro-information {
        margin-top: 125px;
    }

    /* footer */

    footer {
        margin-top: 20px;
    }

    .footer-logo {
        height: 62px;
        width: 100px;
    }
    .list-heading {
        margin-top: 20px;
    }

    .list-heading h3 {
        display: none;
    }

    .upper-footer-div {
        margin-top: 10px;
    }

    .company-name-specific {
        margin-top: 18px;
        font-size: 16px;
    }

    .mobile-view-visible {
        display: flex;
    }

    .trusted-seller-social-icons {
        display: none;
    }

    .mobile-view-visible {
        margin-top: 15px;
        align-items: center;
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 20px;
        transition: opacity 0.6s linear;
    }

    .mobile-view-visible a {
        display: inline-block;
        width: 25px;
        height: 25px;
    }

    .mobile-view-visible a img {
        width: 100%;
        height: 100%;
    }

    .mobile-view-visible a:hover {
        opacity: 0.6;
    }

    .list-seller-button {
        margin-top: 10px;
        display: block;
        width: 80px;
    }

    .list-seller-button .list-trusted-seller img {
        width: 100%;
    }

    .trusted-seller-social-icons {
        display: none;
    }

    .footer-links li a {
        font-size: 11px;
    }

    .reserved-rights {
        margin-top: 10px;
    }

    .rights-title {
        font-size: 10px;
        line-height: 18px;
    }

    .social-icons {
        margin-top: 6px;
    }
}
