:root {
    --first-font: 'Nunito Sans';
    --h2: normal 700 18px/1.2 var(--first-font);
    --common-text: normal 600 14px/1.4 var(--first-font);
    --primary-color: #397EF6;
    --secondary-color: #F8F8F8;
    --border-color: #E5EBF0;
    --text-color: #6C7A95;
    --red-color: #EB5757;
    --black: #121F3E;
    --white: #FFFFFF;
}

*,
:after,
:before {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    text-decoration: inherit;
    vertical-align: inherit;
}
html {
    outline: none;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

h1,
.h1 {
    font: var(--h1);
}

h2,
.h2 {
    font: var(--h2);
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

p,
li,
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
    font: var(--common-text);
}

a {
    text-decoration: none;
    color: inherit;
}

.d-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.align-items-start {
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-end {
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-items-center {
    -ms-flex-align: center;
    align-items: center;
}

.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.justify-content-between {
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-content-start {
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-content-center {
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-end {
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.row-reverse {
    flex-direction: row-reverse;
}

.direction-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.no-wrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

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

body {
    font: var(--common-text);
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    color: var(--black);
}

.business-card {
    padding-bottom: 15px;
    max-width: 570px;
    width: 100%;
    margin: 0 15px;
    box-shadow: rgba(100, 100, 111, 0.4) 0px 7px 29px 0px;
}

.card-btn {
    position: relative;
    text-align: center;
    padding: 10px 12px;
    font-weight: 600;
    color: var(--white);
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    appearance: none;
    outline: none;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    gap: 10px;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.card-btn svg path {
    fill: var(--white);
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
}

.card-btn:hover,
.card-btn:focus{
    background: transparent;
    color: var(--primary-color) !important;
}

.card-btn:hover svg path,
.card-btn:focus svg path {
    fill: var(--primary-color);
}

.card-btn-transparent {
    background: transparent;
    color: var(--primary-color);
}

.card-btn-transparent svg path {
    fill: var(--primary-color);
}

.card-btn-transparent:hover,
.card-btn-transparent:focus{
    background-color: var(--primary-color);
    color: var(--white) !important;
}

.card-btn-transparent:hover svg path,
.card-btn-transparent:focus svg path {
    fill: var(--white);
}

.card-btn.is-disabled,
.app-wrp a.is-disabled {
    cursor: default;
}

.card-btn.is-disabled {
    opacity: 0.9;
}

/* top-header-sec css */
.top-header-sec {
    background-color: var(--secondary-color);
}

.top-header-sec .header-wrapper {
    gap: 15px;
    padding: 15px;
}

.top-header-sec .header-logo-wrp {
    gap: 15px;
    flex: 1;
}

.top-header-sec .header-logo {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 110px;
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.top-header-sec .header-logo a {
    height: 100%;
    width: 100%;
}
.top-header-sec .header-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.top-header-sec .header-content {
    flex: 1;
}

.top-header-sec .wishlist-icon {
    height: 32px;
    width: 32px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* video-sec css */
.video-sec video {
    height: 100%;
    width: 100%;
    object-fit: fill;
}

/* about-sec css */
.about-sec {
    padding: 15px;
    background-color: var(--white);
    position: relative;
    margin-top: -18px;
    border-radius: 15px 15px 0 0;
    -webkit-border-radius: 15px 15px 0 0;
    -moz-border-radius: 15px 15px 0 0;
    -ms-border-radius: 15px 15px 0 0;
    -o-border-radius: 15px 15px 0 0;
}

.about-sec .about-wrp {
    gap: 0 20px;
    margin-bottom: 30px;
}
.about-sec .about-wrp .about-content a{
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}
.about-sec .about-wrp .about-content a:hover {
    color: var(--black);
}
.about-sec .about-wrp.details {
    gap: 40px;
}

.about-sec .about-image {
    height: 70px;
    width: 70px;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.about-sec .about-image img {
    height: 100%;
    width: 100%;
    object-fit: fill;
}

.about-sec .about-content {
    flex: 1;
}

.about-sec .about-content .location {
    gap: 10px;
    margin-bottom: 15px;
}

.about-sec .about-content p,
.about-sec .about-content .website {
    color: var(--text-color);
}

.about-sec .about-content h2 {
    margin-bottom: 10px;
}

.about-sec .about-wrp .btn-wrp {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    gap: 10px;
    width: 100%;
    padding-left: 92px;
}

.about-sec .about-wrp .btn-wrp a {
    max-width: 170px;
    width: 100%;
    font-size: 16px;
}

.about-sec .about-icon {
    height: 50px;
    width: 50px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(57, 126, 246, 0.13);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.about-sec .social-icons {
    gap: 20px;
}

.about-sec .social-icons a {
    display: block;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.about-sec .social-icons a:hover {
    transform: scale(1.1);
}

/* description-sec css */
.description-sec {
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.description-sec .container {
    padding: 0 15px;
}

.description-sec h2 {
    margin-bottom: 15px;
}

.description-sec .description {
    margin-bottom: 20px;
}

.description-sec .description p {
    color: var(--text-color);
    line-height: 26px;
}

.features ul li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.features ul li:not(:last-of-type) {
    margin-bottom: 10px;
}

.features ul li .icon {
    height: 24px;
    width: 24px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    background: rgba(111, 207, 151, 0.2);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* opening-hrs-sec css */
.opening-hrs-sec {
    padding: 20px 15px;
}

.opening-hrs-sec h2 {
    margin-bottom: 15px;
}

.opening-hrs-sec ul li {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
}

.opening-hrs-sec ul li:not(:last-of-type) {
    margin-bottom: 15px;
}

.opening-hrs-sec ul li p {
    max-width: 58%;
    width: 100%;
}

.direction .map {
    height: 320px;
    width: 100%;
    overflow: hidden;
    outline: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* download-sec css */
.download-sec {
    padding: 15px;
}
.direction {
    padding: 0 15px;
}
.download-sec h2,
.direction h2  {
    margin-bottom: 15px;
}
.download-sec .app-wrp {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    gap: 10px;
}

/* contact-icons css */
.contact-icons {
    position: sticky;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    gap: 10px;
    z-index: 3;
    padding: 0 15px;
}
.contact-icons .card-btn {
    flex: 1;
}
.contact-icons .card-btn-transparent {
    background-color: var(--white);
}
.contact-icons .card-btn-transparent:hover {
    background-color: var(--primary-color);
}
.features {
    padding: 0 15px;
}
.features h2 {
    margin-bottom: 15px;
}

/* RESPONSIVE CSS */
@media screen and (max-width: 600px) {
    .contact-icons {
        max-width: calc(100% - 60px);
    }
}
@media screen and (max-width: 330px) {
    .contact-icons {
        max-width: calc(100% - 40px);
    }
}

/* Theme22 production polish */
body {
    background: #f4f7fb;
}

.business-card-layout {
    min-height: 100vh;
    padding: 32px 12px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef3fa 100%);
}

.business-card {
    padding-bottom: 0;
    margin: 0;
    background: var(--white);
    border: 1px solid rgba(57, 126, 246, 0.12);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 22px 70px rgba(18, 31, 62, 0.16);
}

.top-header-sec {
    background: var(--white);
    border-bottom: 1px solid rgba(229, 235, 240, 0.9);
}

.top-header-sec .header-wrapper {
    padding: 18px 20px;
    gap: 14px;
}

.top-header-sec .header-logo-wrp {
    gap: 14px;
    min-width: 0;
}

.top-header-sec .header-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 8px;
    background: #f8fafc;
    box-shadow: inset 0 0 0 1px rgba(229, 235, 240, 0.7);
}

.top-header-sec .header-logo img,
.about-sec .about-image img {
    object-fit: contain;
}

.top-header-sec .header-content {
    min-width: 0;
}

.top-header-sec .header-content p {
    color: var(--black);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
}

.top-header-sec .wishlist-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    background: #e45b5b;
    box-shadow: 0 10px 24px rgba(228, 91, 91, 0.28);
}

.video-sec {
    background: #eef4ff;
}

.video-sec .play-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-sec video,
.video-sec .theme22-cover-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-sec {
    margin-top: -22px;
    padding: 18px 20px 20px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -10px 30px rgba(18, 31, 62, 0.05);
}

.about-sec.no-media {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
}

.about-sec .about-wrp {
    align-items: flex-start;
    gap: 0 16px;
    margin-bottom: 24px;
}

.about-sec .about-image {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    padding: 6px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(18, 31, 62, 0.08);
}

.about-sec .about-content h2 {
    margin: 4px 0 8px;
    color: var(--black);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.22;
}

.about-sec .about-content .location {
    margin-bottom: 0;
}

.about-sec .about-wrp .btn-wrp {
    padding-left: 92px;
}

.card-btn {
    min-height: 46px;
    border-radius: 8px;
    font-size: 15px;
    box-shadow: 0 10px 24px rgba(57, 126, 246, 0.18);
}

.card-btn-transparent {
    box-shadow: none;
}

.about-sec .about-wrp .btn-wrp a {
    max-width: 180px;
}

.about-sec .about-wrp.details {
    gap: 18px;
    margin: 0 -20px;
    padding: 18px 20px;
    border-top: 1px solid var(--border-color);
}

.about-sec .about-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    background: #eaf2ff;
}

.about-sec .social-icons {
    margin-top: 6px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.description-sec,
.opening-hrs-sec,
.features,
.direction,
.download-sec {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.description-sec .container {
    padding: 0;
}

.description-sec .description {
    margin-bottom: 0;
}

.description-sec .description p,
.opening-hrs-sec ul li,
.about-sec .about-content p {
    color: var(--text-color);
}

.features ul li .icon {
    flex: 0 0 26px;
}

.direction .map {
    border: 1px solid var(--border-color);
}

.download-sec .app-wrp img {
    display: block;
    max-height: 44px;
}

.contact-icons {
    padding: 12px 20px 14px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -10px 30px rgba(18, 31, 62, 0.08);
    backdrop-filter: blur(10px);
}

@media screen and (max-width: 600px) {
    .business-card-layout {
        padding: 0;
        background: var(--white);
    }

    .business-card {
        max-width: none;
        min-height: 100vh;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .top-header-sec .header-wrapper {
        padding: 14px 15px;
    }

    .top-header-sec .header-content p {
        font-size: 16px;
    }

    .about-sec {
        padding: 16px 15px 18px;
    }

    .about-sec .about-image {
        width: 70px;
        height: 70px;
        flex-basis: 70px;
    }

    .about-sec .about-content h2 {
        font-size: 20px;
    }

    .about-sec .about-wrp .btn-wrp {
        padding: 18px 0 0;
    }

    .about-sec .about-wrp .btn-wrp a {
        flex: 1;
        max-width: none;
    }

    .about-sec .about-wrp.details {
        margin: 0 -15px;
        padding: 16px 15px;
    }

    .description-sec,
    .opening-hrs-sec,
    .features,
    .direction,
    .download-sec {
        padding: 18px 15px;
    }

    .contact-icons {
        max-width: none;
        padding: 10px 15px 12px;
    }
}

@media screen and (max-width: 360px) {
    .top-header-sec .header-logo {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .card-btn {
        font-size: 14px;
        gap: 8px;
        padding: 10px 8px;
    }
}

/* Full vCard demo polish */
.video-sec {
    position: relative;
}

.video-sec .play-video {
    position: relative;
}

.video-sec.demo-hero .theme22-cover-image {
    filter: saturate(0.9) contrast(1.02) brightness(0.72);
}

.theme22-play-button {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border: 12px solid rgba(255, 255, 255, 0.62);
    border-radius: 50%;
    color: var(--primary-color);
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 38px rgba(18, 31, 62, 0.28);
}

.theme22-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 46px;
    border: 0;
    color: var(--white);
    background: transparent;
    font-size: 42px;
    line-height: 1;
    cursor: default;
}

.theme22-hero-prev {
    left: 10px;
}

.theme22-hero-next {
    right: 10px;
}

.about-sec .location {
    min-height: 24px;
}

.about-sec .about-wrp.details .about-content h2 {
    font-size: 18px;
    margin: 0 0 8px;
}

.about-sec .about-wrp.details .about-content p,
.about-sec .about-wrp.details .about-content a {
    color: #687797;
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.about-sec .social-icons {
    justify-content: space-between;
    gap: 12px;
}

.about-sec .social-icons li {
    line-height: 0;
}

.about-sec .social-icons img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.description-sec .description p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.8;
}

.features ul {
    display: grid;
    gap: 12px;
}

.features ul li:not(:last-of-type) {
    margin-bottom: 0;
}

.features ul li span {
    color: var(--black);
    font-size: 15px;
    font-weight: 700;
}

.opening-hrs-sec ul {
    display: grid;
    gap: 16px;
}

.opening-hrs-sec ul li {
    justify-content: space-between;
    margin-bottom: 0 !important;
}

.opening-hrs-sec ul li p {
    max-width: none;
    width: auto;
}

.opening-hrs-sec ul li span {
    color: #536381;
    font: var(--common-text);
}

.theme22-map-placeholder {
    position: relative;
    height: 100%;
    min-height: 320px;
    background:
        linear-gradient(38deg, rgba(168, 206, 170, 0.24) 0 18%, transparent 18% 100%),
        linear-gradient(135deg, transparent 0 42%, rgba(57, 126, 246, 0.12) 42% 45%, transparent 45% 100%),
        linear-gradient(84deg, transparent 0 52%, rgba(244, 190, 88, 0.28) 52% 55%, transparent 55% 100%),
        #f4f7fb;
}

.theme22-map-placeholder:before,
.theme22-map-placeholder:after {
    content: "";
    position: absolute;
    background: rgba(148, 163, 184, 0.34);
    border-radius: 999px;
}

.theme22-map-placeholder:before {
    width: 82%;
    height: 2px;
    left: 8%;
    top: 36%;
    transform: rotate(-11deg);
}

.theme22-map-placeholder:after {
    width: 2px;
    height: 82%;
    left: 58%;
    top: 8%;
    transform: rotate(18deg);
}

.theme22-map-pin {
    position: absolute;
    left: 49%;
    top: 48%;
    width: 18px;
    height: 18px;
    border-radius: 50% 50% 50% 0;
    background: #df4b3f;
    transform: rotate(-45deg);
    z-index: 1;
}

.theme22-map-pin:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    left: 5px;
    top: 5px;
    border-radius: 50%;
    background: var(--white);
}

.theme22-map-button {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    color: var(--white);
    background: var(--primary-color);
    border-radius: 8px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(57, 126, 246, 0.28);
    z-index: 1;
}

.app-wrp a.is-disabled,
.fb-icon.is-disabled,
.theme22-map-button.is-disabled {
    pointer-events: none;
}

@media screen and (max-width: 600px) {
    .video-sec .play-video {
        aspect-ratio: 1.42 / 1;
    }

    .about-sec {
        margin-top: -10px;
        border-radius: 10px 10px 0 0;
    }

    .theme22-play-button {
        width: 68px;
        height: 68px;
        border-width: 10px;
    }

    .direction .map,
    .theme22-map-placeholder {
        min-height: 220px;
        height: 220px;
    }
}
