:root {
    --sheetal-red: #e11b22;
    --sheetal-red-dark: #b90f16;
    --sheetal-green: #417541;
    --sheetal-green-dark: #274f2b;
    --sheetal-orange: #f08a13;
    --sheetal-black: #171717;
    --sheetal-charcoal: #242424;
    --sheetal-cream: #fffaf1;
    --sheetal-white: #ffffff;
    --sheetal-border: rgba(23, 23, 23, 0.12);
    --sheetal-heading-font: "Cormorant Garamond", serif;
    --sheetal-body-font: "Montserrat", sans-serif;
    --sheetal-header-height: 108px;
}

*, ::before, ::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
}
body {
    margin: 0px;
    font-family: var(--sheetal-body-font);
    color: var(--sheetal-black);
    background: var(--sheetal-white);
}

body.sheetalMenuLocked {
    overflow: hidden;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

.sheetalPrimeHeader {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000;
    width: 100%;
    background: rgb(255, 255, 255);
    border-bottom: 1px solid transparent;
    transition: background-color 0.4s, box-shadow 0.4s, border-color 0.4s, transform 0.4s;
}

.sheetalPrimeHeader.is-scrolled {
    background: rgba(255, 255, 255, 0.99);
    border-bottom-color: rgba(23, 23, 23, 0.09);
    box-shadow: rgba(25, 22, 18, 0.1) 0px 14px 38px;
}

.sheetalPrimeHeader.is-hidden {
    transform: translateY(-100%);
}

.sheetalPrimeHeader__colourLine {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    height: 4px;
}

.sheetalPrimeHeader__colourLine span {
    display: block;
    height: 100%;
}

.sheetalPrimeHeader__colourRed {
    background: var(--sheetal-red);
}

.sheetalPrimeHeader__colourGreen {
    background: var(--sheetal-green);
}

.sheetalPrimeHeader__colourOrange {
    background: var(--sheetal-orange);
}

.sheetalPrimeHeader__container {
    width: min(100% - 48px, 1380px);
    min-height: calc(var(--sheetal-header-height) - 4px);
    margin-inline: auto; display: grid;
    grid-template-columns: 240px 1fr auto;
    align-items: center;
    gap: 40px;
}

.sheetalPrimeHeader__logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    text-decoration: none;
    transform-origin: left center;
    animation: 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0s 1 normal both running sheetalLogoEntrance;
}

.sheetalPrimeHeader__logo::after {
    content: "";
    position: absolute;
    right: -22px;
    top: 50%;
    width: 1px;
    height: 46px;
    background: rgb(200, 45, 36);
    transform: translateY(-50%);
}

.sheetalPrimeHeader__logo img {
    display: block;
    width: 190px;
    max-height: 100px;
    object-fit: contain;
    transition: transform 0.35s;
}

.sheetalPrimeHeader.is-scrolled .sheetalPrimeHeader__logo img {
    transform: scale(0.92);
}

.sheetalPrimeHeader__desktopNav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(28px, 3.1vw, 54px);
}

.sheetalPrimeHeader__navLink {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: var(--sheetal-charcoal);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.sheetalPrimeHeader__navLink::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 7px;
    width: 100%;
    height: 2px;
    background: rgb(200, 47, 36);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sheetalPrimeHeader__navLink::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgb(200, 47, 36);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, 8px);
    transition: opacity 0.3s, transform 0.3s;
}

.sheetalPrimeHeader__navLink:hover, .sheetalPrimeHeader__navLink.active {
    color: rgb(200, 47, 36);
}

.sheetalPrimeHeader__navLink:hover::before, .sheetalPrimeHeader__navLink.active::before {
    transform: scaleX(1);
    transform-origin: left center;
}

.sheetalPrimeHeader__navLink.active::after {
    opacity: 1;
    transform: translate(-50%, 0px);
}

.sheetalPrimeHeader__orderBtn {
    position: relative;
    isolation: isolate;
    min-width: 180px;
    min-height: 54px;
    padding: 0px 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    color: var(--sheetal-white);
    background: rgb(200, 47, 36);
    border: 1px solid var(--sheetal-red);
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: rgba(225, 27, 34, 0.18) 0px 10px 24px;
    transition: color 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.2s;
    /* border-radius: 10px; */
}

.sheetalPrimeHeader__orderBtn::before {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: -1;
    background: var(--sheetal-green-dark);
    transform: translateX(-102%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.sheetalPrimeHeader__orderBtn:hover {
    border-color: var(--sheetal-green-dark);
    box-shadow: rgba(39, 79, 43, 0.22) 0px 13px 30px;
}

.sheetalPrimeHeader__orderBtn:hover::before {
    transform: translateX(0px);
}

.sheetalPrimeHeader__orderBtn i {
    font-size: 12px;
    transition: transform 0.3s;
}

.sheetalPrimeHeader__orderBtn:hover i {
    transform: translate(3px, -3px);
}

.sheetalPrimeHeader__toggle {
    position: relative;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--sheetal-cream);
    border: 1px solid rgba(225, 27, 34, 0.22);
    border-radius: 3px;
    cursor: pointer;
}

.sheetalPrimeHeader__toggle span {
    position: absolute;
    left: 14px;
    width: 21px;
    height: 2px;
    background: var(--sheetal-red);
    transition: width 0.3s, transform 0.3s;
}

.sheetalPrimeHeader__toggle span:first-child {
    transform: translateY(-4px);
}

.sheetalPrimeHeader__toggle span:last-child {
    width: 15px;
    transform: translate(6px, 4px);
}

.sheetalPrimeHeader__toggle:hover span:last-child {
    width: 21px;
    transform: translate(0px, 4px);
}

.sheetalPrimeMobile {
    position: fixed;
    inset: 0px;
    z-index: 1500;
    visibility: hidden;
    pointer-events: none;
}

.sheetalPrimeMobile.is-open {
    visibility: visible;
    pointer-events: auto;
}

.sheetalPrimeMobile__backdrop {
    position: absolute;
    inset: 0px;
    background: rgba(12, 12, 12, 0.68);
    opacity: 0;
    transition: opacity 0.45s;
}

.sheetalPrimeMobile.is-open .sheetalPrimeMobile__backdrop {
    opacity: 1;
}

.sheetalPrimeMobile__panel {
    position: absolute;
    top: 0px;
    right: 0px;
    width: min(100%, 480px);
    height: 100%;
    overflow-y: auto;
    padding: 22px 26px 28px;
    display: flex;
    flex-direction: column;
    background-color: var(--sheetal-cream);
    background-image: linear-gradient(rgba(240, 138, 19, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(240, 138, 19, 0.055) 1px, transparent 1px);
    background-size: 34px 34px;
    border-left: 4px solid var(--sheetal-red);
    transform: translateX(105%);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.sheetalPrimeMobile.is-open .sheetalPrimeMobile__panel {
    transform: translateX(0px);
}

.sheetalPrimeMobile__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(23, 23, 23, 0.12);
}

.sheetalPrimeMobile__logo {
    display: inline-flex;
}

.sheetalPrimeMobile__logo img {
    display: block;
    width: 150px;
    max-height: 76px;
    object-fit: contain;
}

.sheetalPrimeMobile__close {
    position: relative;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    background: var(--sheetal-red);
    border: 0px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.sheetalPrimeMobile__close:hover {
    background: var(--sheetal-green-dark);
    transform: rotate(5deg);
}

.sheetalPrimeMobile__close span {
    position: absolute;
    left: 13px;
    top: 23px;
    width: 22px;
    height: 2px;
    background: var(--sheetal-white);
}

.sheetalPrimeMobile__close span:first-child {
    transform: rotate(45deg);
}

.sheetalPrimeMobile__close span:last-child {
    transform: rotate(-45deg);
}

.sheetalPrimeMobile__intro {
    padding: 34px 0px 24px;
}

.sheetalPrimeMobile__intro span {
    display: block;
    margin-bottom: 7px;
    color: var(--sheetal-red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sheetalPrimeMobile__intro p {
    margin: 0px;
    color: rgb(89, 89, 89);
    font-size: 13px;
    line-height: 1.7;
}

.sheetalPrimeMobile__nav {
    display: flex;
    flex-direction: column;
}

.sheetalPrimeMobile__link {
    position: relative;
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 15px;
    min-height: 78px;
    color: var(--sheetal-black);
    border-top: 1px solid rgba(23, 23, 23, 0.1);
    text-decoration: none;
    overflow: hidden;
    opacity: 0;
    transform: translateX(35px);
    transition: color 0.35s, padding 0.35s, background-color 0.35s;
}

.sheetalPrimeMobile__link:last-child {
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
}

.sheetalPrimeMobile.is-open .sheetalPrimeMobile__link {
    animation: 0.6s ease 0s 1 normal forwards running sheetalMobileLinkEntrance;
}

.sheetalPrimeMobile.is-open .sheetalPrimeMobile__link:nth-child(1) {
    animation-delay: 0.16s;
}

.sheetalPrimeMobile.is-open .sheetalPrimeMobile__link:nth-child(2) {
    animation-delay: 0.22s;
}

.sheetalPrimeMobile.is-open .sheetalPrimeMobile__link:nth-child(3) {
    animation-delay: 0.28s;
}

.sheetalPrimeMobile.is-open .sheetalPrimeMobile__link:nth-child(4) {
    animation-delay: 0.34s;
}

.sheetalPrimeMobile__link:hover, .sheetalPrimeMobile__link.active {
    padding-inline: 14px; color: var(--sheetal-white);
    background: var(--sheetal-red);
}

.sheetalPrimeMobile__number {
    color: var(--sheetal-orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.sheetalPrimeMobile__link:hover .sheetalPrimeMobile__number, .sheetalPrimeMobile__link.active .sheetalPrimeMobile__number {
    color: rgb(255, 210, 157);
}

.sheetalPrimeMobile__linkText {
    font-family: var(--sheetal-heading-font);
    font-size: clamp(30px, 8vw, 42px);
    font-weight: 600;
    line-height: 1;
}

.sheetalPrimeMobile__link i {
    font-size: 13px;
    transform: rotate(-45deg);
    transition: transform 0.3s;
}

.sheetalPrimeMobile__link:hover i {
    transform: rotate(0deg) translateX(4px);
}

.sheetalPrimeMobile__order {
    width: 100%;
    min-height: 76px;
    margin-top: 28px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--sheetal-white);
    background: var(--sheetal-green-dark);
    border-top: 0px;
    border-right: 0px;
    border-bottom: 0px;
    border-image: none;
    border-left: 5px solid var(--sheetal-orange);
    border-radius: 3px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s, transform 0.3s;
}

.sheetalPrimeMobile__order:hover {
    background: var(--sheetal-red);
    transform: translateY(-3px);
}

.sheetalPrimeMobile__order span {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sheetalPrimeMobile__order small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.sheetalPrimeMobile__order i {
    font-size: 17px;
}

.sheetalPrimeMobile__footer {
    margin-top: auto;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: rgb(104, 104, 104);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sheetalPrimeMobile__spices {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--sheetal-red);
}

.sheetalPrimeMobile__spices i:nth-child(2) {
    color: var(--sheetal-green);
}

.sheetalPrimeMobile__spices i:nth-child(3) {
    color: var(--sheetal-orange);
}

.sheetalBranchPopup {
    position: fixed;
    inset: 0px;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
    visibility: hidden;
    pointer-events: none;
}

.sheetalBranchPopup.is-open {
    visibility: visible;
    pointer-events: auto;
}

.sheetalBranchPopup__backdrop {
    position: absolute;
    inset: 0px;
    background: rgba(14, 14, 14, 0.78);
    opacity: 0;
    transition: opacity 0.4s;
}

.sheetalBranchPopup.is-open .sheetalBranchPopup__backdrop {
    opacity: 1;
}

.sheetalBranchPopup__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 940px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: clamp(28px, 4vw, 54px);
    background-color: var(--sheetal-cream);
    background-image: linear-gradient(rgba(65, 117, 65, 0.043) 1px, transparent 1px), linear-gradient(90deg, rgba(65, 117, 65, 0.043) 1px, transparent 1px);
    background-size: 40px 40px;
    border-top: 5px solid var(--sheetal-red);
    box-shadow: rgba(0, 0, 0, 0.32) 0px 28px 90px;
    opacity: 0;
    transform: translateY(35px) scale(0.96);
    transition: opacity 0.4s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sheetalBranchPopup.is-open .sheetalBranchPopup__dialog {
    opacity: 1;
    transform: translateY(0px) scale(1);
}

.sheetalBranchPopup__dialog::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 120px;
    height: 5px;
    background: var(--sheetal-orange);
}

.sheetalBranchPopup__dialog::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 120px;
    width: 120px;
    height: 5px;
    /* background: var(--sheetal-green); */
}

.sheetalBranchPopup__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--sheetal-white);
    background: var(--sheetal-black);
    border: 0px;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.sheetalBranchPopup__close:hover {
    background: var(--sheetal-red);
    transform: rotate(90deg);
}

.sheetalBranchPopup__heading {
    max-width: 630px;
    margin: 0px auto 34px;
    text-align: center;
}

.sheetalBranchPopup__logo {
    margin: 0px auto 16px;
}

.sheetalBranchPopup__logo img {
    display: block;
    width: 130px;
    max-height: 88px;
    margin: auto;
    object-fit: contain;
}

.sheetalBranchPopup__eyebrow {
    display: block;
    margin-bottom: 9px;
    color: var(--sheetal-red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.sheetalBranchPopup__heading h2 {
    margin: 0px 0px 12px;
    color: var(--sheetal-black);
    font-family: var(--sheetal-heading-font);
    font-size: clamp(37px, 5vw, 58px);
    font-weight: 600;
    line-height: 0.98;
}

.sheetalBranchPopup__heading p {
    max-width: 540px;
    margin: 0px auto;
    color: rgb(102, 97, 91);
    font-size: 13px;
    line-height: 1.8;
}

.sheetalBranchPopup__branches {
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 22px;
}

.sheetalBranchCard {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 24px;
    background: var(--sheetal-white);
    border: 1px solid rgba(23, 23, 23, 0.11);
    box-shadow: rgba(40, 31, 20, 0.07) 0px 12px 36px;
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.sheetalBranchCard:hover {
    transform: translateY(-7px);
    border-color: rgba(225, 27, 34, 0.42);
    box-shadow: rgba(40, 31, 20, 0.12) 0px 20px 44px;
}

.sheetalBranchCard__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sheetalBranchCard__number {
    color: rgba(23, 23, 23, 0.18);
    font-family: var(--sheetal-heading-font);
    font-size: 41px;
    font-weight: 700;
    line-height: 1;
}

.sheetalBranchCard__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--sheetal-white);
    background: var(--sheetal-red);
    border-radius: 2px;
}

.sheetalBranchCard:nth-child(2) .sheetalBranchCard__icon {
    background: var(--sheetal-green-dark);
}

.sheetalBranchCard__content {
    padding: 22px 0px 25px;
}

.sheetalBranchCard__label {
    display: block;
    margin-bottom: 5px;
    color: var(--sheetal-orange);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sheetalBranchCard h3 {
    margin: 0px 0px 14px;
    color: var(--sheetal-black);
    font-family: var(--sheetal-heading-font);
    font-size: 38px;
    font-weight: 600;
    line-height: 1;
}

.sheetalBranchCard address {
    margin: 0px 0px 16px;
    color: rgb(98, 94, 89);
    font-size: 12px;
    font-style: normal;
    line-height: 1.75;
}

.sheetalBranchCard__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sheetal-green-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.sheetalBranchCard__phone:hover {
    color: var(--sheetal-red);
}

.sheetalBranchCard__order {
    width: 100%;
    min-height: 50px;
    margin-top: auto;
    padding: 0px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--sheetal-white);
    background: var(--sheetal-red);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.sheetalBranchCard:nth-child(2) .sheetalBranchCard__order {
    background: var(--sheetal-green-dark);
}

.sheetalBranchCard__order:hover, .sheetalBranchCard:nth-child(2) .sheetalBranchCard__order:hover {
    background: var(--sheetal-orange);
}

.sheetalBranchCard__order i {
    transition: transform 0.3s;
}

.sheetalBranchCard__order:hover i {
    transform: translateX(5px);
}

.sheetalBranchPopup__note {
    margin-top: 22px;
    padding: 15px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    color: rgb(94, 90, 84);
    background: rgba(240, 138, 19, 0.09);
    border: 1px solid rgba(240, 138, 19, 0.18);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.sheetalBranchPopup__note i {
    color: var(--sheetal-orange);
    font-size: 15px;
}

@keyframes sheetalLogoEntrance {
    0% {
        opacity: 0;
        transform: translateY(-15px) scale(0.94);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

@keyframes sheetalMobileLinkEntrance {
    0% {
        opacity: 0;
        transform: translateX(35px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@media (max-width: 1180px) {
    :root {
        --sheetal-header-height: 96px;
    }

    .sheetalPrimeHeader__container {
        width: min(100% - 34px, 1120px);
        grid-template-columns: 205px 1fr auto;
        gap: 24px;
    }

    .sheetalPrimeHeader__logo img {
        width: 164px;
        max-height: 76px;
    }

    .sheetalPrimeHeader__desktopNav {
        gap: 25px;
    }

    .sheetalPrimeHeader__orderBtn {
        min-width: 158px;
        padding-inline: 18px; }
}

@media (max-width: 900px) {
    :root {
        --sheetal-header-height: 86px;
    }

    .sheetalPrimeHeader__container {
        width: min(100% - 30px, 860px);
        grid-template-columns: 1fr auto;
    }

    .sheetalPrimeHeader__logo::after, .sheetalPrimeHeader__desktopNav, .sheetalPrimeHeader__orderBtn {
        display: none;
    }

    .sheetalPrimeHeader__logo img {
        width: 144px;
        max-height: 68px;
    }

    .sheetalPrimeHeader__toggle {
        display: inline-flex;
    }
}

@media (max-width: 700px) {
    .sheetalBranchPopup {
        padding: 14px;
    }

    .sheetalBranchPopup__dialog {
        max-height: calc(100vh - 28px);
        padding: 64px 20px 24px;
    }

    .sheetalBranchPopup__branches {
        grid-template-columns: 1fr;
    }

    .sheetalBranchCard {
        min-height: 310px;
    }
}

@media (max-width: 480px) {
    :root {
        --sheetal-header-height: 78px;
    }

    .sheetalPrimeHeader__container {
        width: calc(100% - 24px);
    }

    .sheetalPrimeHeader__logo img {
        width: 130px;
        max-height: 80px;
    }

    .sheetalPrimeHeader__toggle {
        width: 46px;
        height: 46px;
    }

    .sheetalPrimeHeader__toggle span {
        left: 12px;
    }

    .sheetalPrimeMobile__panel {
        width: 100%;
        padding: 18px 19px 24px;
        border-left: 0px;
        border-top: 4px solid var(--sheetal-red);
    }

    .sheetalPrimeMobile__logo img {
        width: 133px;
    }

    .sheetalPrimeMobile__intro {
        padding-top: 26px;
    }

    .sheetalPrimeMobile__link {
        min-height: 75px;
    }

    .sheetalPrimeMobile__linkText {
        font-size: 32px;
    }

    .sheetalPrimeMobile__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .sheetalBranchPopup__heading h2 {
        font-size: 38px;
    }

    .sheetalBranchPopup__logo img {
        width: 110px;
    }

    .sheetalBranchCard {
        padding: 20px;
    }

    .sheetalBranchCard h3 {
        font-size: 34px;
    }

    .sheetalBranchPopup__note {
        align-items: flex-start;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sheetalPrimeHeader__menuPopupBtn {
    padding: 0px;
    background: transparent;
    border: 0px;
    cursor: pointer;
    font-family: inherit;
}

.sheetalPrimeMobile__menuPopupBtn {
    width: 100%;
    padding: 0px;
    background: transparent;
    border-right: 0px;
    border-left: 0px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.sheetalBranchPopup {
    position: fixed;
    inset: 0px;
    z-index: 2500;
    padding: 20px;
    display: grid;
    place-items: center;
    visibility: hidden;
    pointer-events: none;
}

.sheetalBranchPopup.is-open {
    visibility: visible;
    pointer-events: auto;
}

.sheetalBranchPopup__backdrop {
    position: absolute;
    inset: 0px;
    background: rgba(18, 18, 16, 0.78);
    opacity: 0;
    transition: opacity 0.4s;
}

.sheetalBranchPopup.is-open .sheetalBranchPopup__backdrop {
    opacity: 1;
}

.sheetalBranchPopup__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 720px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 34px;
    background: rgb(255, 255, 255);
    border-top: 5px solid rgb(217, 24, 32);
    border-bottom: 5px solid rgb(63, 113, 63);
    box-shadow: rgba(0, 0, 0, 0.34) 0px 30px 90px;
    opacity: 0;
    transform: translateY(35px) scale(0.95);
    transition: opacity 0.4s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sheetalBranchPopup.is-open .sheetalBranchPopup__dialog {
    opacity: 1;
    transform: translateY(0px) scale(1);
}

.sheetalBranchPopup__dialog::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 0px;
    width: 120px;
    height: 5px;
    background: rgb(239, 139, 23);
}

.sheetalBranchPopup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: rgb(255, 255, 255);
    background: rgb(23, 23, 20);
    border: 0px;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.sheetalBranchPopup__close:hover {
    background: rgb(217, 24, 32);
    transform: rotate(90deg);
}

.sheetalBranchPopup__header {
    padding-right: 55px;
    margin-bottom: 27px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sheetalBranchPopup__logo {
    flex: 0 0 100px;
    width: 100px;
    height: 86px;
    padding: 8px;
    display: grid;
    place-items: center;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(23, 23, 20, 0.1);
}

.sheetalBranchPopup__logo img {
    display: block;
    width: 100%;
    max-height: 72px;
    object-fit: contain;
}

.sheetalBranchPopup__titleWrap > span {
    display: block;
    margin-bottom: 5px;
    color: rgb(217, 24, 32);
    font-family: Manrope, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.sheetalBranchPopup__titleWrap h2 {
    margin: 0px;
    color: rgb(36, 69, 41);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(37px, 5vw, 50px);
    font-weight: 600;
    line-height: 0.95;
}

.sheetalBranchPopup__branches {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sheetalBranchOption {
    position: relative;
    min-height: 112px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 36px 46px 1fr 42px;
    align-items: center;
    gap: 16px;
    color: rgb(23, 23, 20);
    background: rgb(255, 255, 255);
    border: 1px solid rgba(23, 23, 20, 0.11);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.sheetalBranchOption::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 5px;
    height: 100%;
    background: rgb(217, 24, 32);
    transition: width 0.35s;
}

.sheetalBranchOption:nth-child(2)::before {
    background: rgb(63, 113, 63);
}

.sheetalBranchOption:hover {
    transform: translateX(7px);
    border-color: rgba(217, 24, 32, 0.38);
    box-shadow: rgba(33, 26, 18, 0.11) 0px 14px 34px;
}

.sheetalBranchOption:nth-child(2):hover {
    border-color: rgba(63, 113, 63, 0.4);
}

.sheetalBranchOption:hover::before {
    width: 9px;
}

.sheetalBranchOption__number {
    color: rgba(23, 23, 20, 0.27);
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 700;
}

.sheetalBranchOption__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: rgb(255, 255, 255);
    background: rgb(217, 24, 32);
    border-radius: 2px;
}

.sheetalBranchOption:nth-child(2) .sheetalBranchOption__icon {
    background: rgb(63, 113, 63);
}

.sheetalBranchOption__content span {
    display: block;
    margin-bottom: 3px;
    color: rgb(239, 139, 23);
    font-family: Manrope, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sheetalBranchOption__content h3 {
    margin: 0px 0px 4px;
    color: rgb(36, 69, 41);
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    font-weight: 600;
    line-height: 1;
}

.sheetalBranchOption__content p {
    margin: 0px;
    color: rgb(102, 99, 93);
    font-family: Manrope, sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
}

.sheetalBranchOption__arrow {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: rgb(217, 24, 32);
    background: rgb(255, 244, 229);
    border: 1px solid rgba(217, 24, 32, 0.15);
    transition: color 0.3s, background-color 0.3s, transform 0.3s;
}

.sheetalBranchOption:nth-child(2) .sheetalBranchOption__arrow {
    color: rgb(63, 113, 63);
    background: rgb(240, 246, 238);
    border-color: rgba(63, 113, 63, 0.17);
}

.sheetalBranchOption:hover .sheetalBranchOption__arrow {
    color: rgb(255, 255, 255);
    background: rgb(217, 24, 32);
    transform: translateX(4px);
}

.sheetalBranchOption:nth-child(2):hover .sheetalBranchOption__arrow {
    color: rgb(255, 255, 255);
    background: rgb(63, 113, 63);
}

.sheetalBranchPopup__footer {
    margin-top: 20px;
    padding-top: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    color: rgb(105, 100, 94);
    border-top: 1px solid rgba(23, 23, 20, 0.11);
    font-family: Manrope, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sheetalBranchPopup__footer i {
    color: rgb(239, 139, 23);
    font-size: 13px;
}

@media (max-width: 700px) {
    .sheetalBranchPopup {
        padding: 14px;
    }

    .sheetalBranchPopup__dialog {
        max-height: calc(100vh - 28px);
        padding: 26px 20px 22px;
    }

    .sheetalBranchPopup__header {
        padding-right: 45px;
    }

    .sheetalBranchPopup__logo {
        flex-basis: 85px;
        width: 85px;
        height: 75px;
    }

    .sheetalBranchPopup__titleWrap h2 {
        font-size: 38px;
    }

    .sheetalBranchOption {
        grid-template-columns: 30px 42px 1fr 38px;
        gap: 12px;
        padding: 16px;
    }

    .sheetalBranchOption__icon {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .sheetalBranchPopup__dialog {
        padding: 64px 16px 20px;
    }

    .sheetalBranchPopup__header {
        padding-right: 0px;
        margin-bottom: 22px;
        align-items: center;
    }

    .sheetalBranchPopup__logo {
        flex: 0 0 74px;
        width: 74px;
        height: 67px;
    }

    .sheetalBranchPopup__logo img {
        max-height: 58px;
    }

    .sheetalBranchPopup__titleWrap h2 {
        font-size: 32px;
    }

    .sheetalBranchOption {
        min-height: 105px;
        grid-template-columns: 40px 1fr 36px;
        gap: 12px;
        padding: 15px 13px 15px 18px;
    }

    .sheetalBranchOption__number {
        display: none;
    }

    .sheetalBranchOption__icon {
        width: 40px;
        height: 40px;
    }

    .sheetalBranchOption__content h3 {
        font-size: 26px;
    }

    .sheetalBranchOption__content span {
        font-size: 7px;
    }

    .sheetalBranchOption__content p {
        font-size: 9px;
    }

    .sheetalBranchOption__arrow {
        width: 36px;
        height: 36px;
    }

    .sheetalBranchPopup__footer {
        justify-content: flex-start;
        font-size: 8px;
    }
}

:root {
    --sheetal-red: #d81118;
    --sheetal-deep-red: #a7080d;
    --sheetal-green: #49682e;
    --sheetal-orange: #f49a16;
    --sheetal-black: #151512;
    --sheetal-soft-black: #25251f;
    --sheetal-cream: #f6f0e5;
    --sheetal-white: #ffffff;
    --sheetal-border: rgba(255, 255, 255, 0.22);
}

.sheetalHeroX {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: var(--sheetal-black);
    color: var(--sheetal-white);
    isolation: isolate;
}

.sheetalHeroX *, .sheetalHeroX ::before, .sheetalHeroX ::after {
    box-sizing: border-box;
}

.sheetalHeroX__slider {
    position: relative;
    min-height: 100vh;
}

.sheetalHeroX__slide {
    position: absolute;
    inset: 0px;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.9s, visibility 0.9s;
}

.sheetalHeroX__slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sheetalHeroX__background {
    position: absolute;
    inset: 0px;
    z-index: -3;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.04);
    transition: transform 8s linear;
}

.sheetalHeroX__slide.is-active .sheetalHeroX__background {
    transform: scale(1);
}

.sheetalHeroX__slide::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: rgba(21, 21, 18, 0.75);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.sheetalHeroX__slide::after {
    /* content: ""; */
    position: absolute;
    top: 0px;
    right: 0px;
    width: 11px;
    height: 100%;
    z-index: 3;
    background: linear-gradient( to bottom, var(--sheetal-red) 0 33.33%, var(--sheetal-green) 33.33% 66.66%, var(--sheetal-orange) 66.66% 100% );
}

.sheetalHeroX__container {
    position: relative;
    width: min(1440px, 100% - 80px);
    min-height: 100vh;
    margin: 0px auto;
    padding: 140px 10px 120px;
    display: grid;
    grid-template-columns: minmax(0px, 1.08fr) minmax(390px, 0.92fr);
    align-items: center;
    gap: clamp(60px, 7vw, 120px);
}

.sheetalHeroX__content {
    position: relative;
    z-index: 4;
    max-width: 760px;
}

.sheetalHeroX__brand {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: clamp(34px, 5vw, 68px);
    opacity: 0;
    transform: translateY(20px);
}

.sheetalHeroX__slide.is-active .sheetalHeroX__brand {
    animation: 0.8s ease 0.12s 1 normal forwards running sheetalRevealUp;
}

.sheetalHeroX__logo {
    width: 152px;
    max-height: 105px;
    object-fit: contain;
    padding: 8px 10px;
    background: var(--sheetal-white);
}

.sheetalHeroX__brandLine {
    width: 42px;
    height: 1px;
    background: var(--sheetal-orange);
}

.sheetalHeroX__brand p {
    margin: 0px;
    max-width: 205px;
    color: rgba(255, 255, 255, 0.74);
    font-family: Manrope, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sheetalHeroX__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
    color: var(--sheetal-orange);
    font-family: poppins, sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(24px);
}

.sheetalHeroX__eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--sheetal-red);
}

.sheetalHeroX__slide.is-active .sheetalHeroX__eyebrow {
    animation: 0.8s ease 0.24s 1 normal forwards running sheetalRevealUp;
}

.sheetalHeroX h1, .sheetalHeroX h2 {
    margin: 0px;
    max-width: 780px;
    color: var(--sheetal-white);
    font-family: "Cinzel", serif;
    font-size: clamp(62px, 7.7vw, 90px);
    font-weight: 400;
    line-height: 0.83;
    letter-spacing: -0.001em;
    text-wrap: balance;
    text-transform: uppercase;
}

.sheetalHeroX h1 span, .sheetalHeroX h2 span {
    display: block;
    color: var(--sheetal-orange);
    font-weight: 400;
}

.sheetalHeroX h1, .sheetalHeroX h2 {
    opacity: 0;
    transform: translateY(38px);
}

.sheetalHeroX__slide.is-active h1, .sheetalHeroX__slide.is-active h2 {
    animation: 0.95s ease 0.34s 1 normal forwards running sheetalRevealUp;
}

.sheetalHeroX__description {
    max-width: 610px;
    margin: 30px 0px 0px;
    color: rgba(255, 255, 255, 0.75);
    font-family: poppins, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.9;
    opacity: 0;
    transform: translateY(28px);
}

.sheetalHeroX__slide.is-active .sheetalHeroX__description {
    animation: 0.85s ease 0.48s 1 normal forwards running sheetalRevealUp;
}

.sheetalHeroX__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
    opacity: 0;
    transform: translateY(28px);
}

.sheetalHeroX__slide.is-active .sheetalHeroX__actions {
    animation: 0.85s ease 0.58s 1 normal forwards running sheetalRevealUp;
}

.sheetalHeroX__button {
    position: relative;
    min-width: 185px;
    min-height: 58px;
    padding: 16px 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    overflow: hidden;
    border: 1px solid transparent;
    text-decoration: none;
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background-color 0.35s, border-color 0.35s, color 0.35s, transform 0.2s;
    /* border-radius: 10px; */
}

.sheetalHeroX__button span, .sheetalHeroX__button i {
    position: relative;
    z-index: 2;
}

.sheetalHeroX__button i {
    font-size: 18px;
    font-style: normal;
    transition: transform 0.35s;
}

.sheetalHeroX__button:hover i {
    transform: translate(4px, -4px);
}

.sheetalHeroX__button--primary {
    color: var(--sheetal-white);
    background: var(--sheetal-red);
    border-color: var(--sheetal-red);
}

.sheetalHeroX__button--primary:hover {
    background: var(--sheetal-deep-red);
    border-color: var(--sheetal-deep-red);
}

.sheetalHeroX__button--outline {
    color: var(--sheetal-white);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.42);
}

.sheetalHeroX__button--outline:hover {
    color: var(--sheetal-black);
    background: var(--sheetal-white);
    border-color: var(--sheetal-white);
}

.sheetalHeroX__visual {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 560px;
    justify-self: end;
    opacity: 0;
    transform: translateX(65px);
}

.sheetalHeroX__slide.is-active .sheetalHeroX__visual {
    animation: 1.05s ease 0.3s 1 normal forwards running sheetalRevealRight;
}

.sheetalHeroX__imageFrame {
    position: relative;
    width: 100%;
    aspect-ratio: 0.82 / 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    /* box-shadow: rgba(244, 154, 22, 0.14) 24px 24px 0px; */
}

.sheetalHeroX__imageFrame::before {
    /* content: ""; */
    position: absolute;
    inset: 17px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.38);
}

.sheetalHeroX__dishImage {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 0.3s, filter 0.35s;
    will-change: transform;
}

.sheetalHeroX__imageFrame:hover .sheetalHeroX__dishImage {
    filter: saturate(1.08);
}

.sheetalHeroX__imageLabel {
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 4;
    min-width: 205px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--sheetal-black);
    background: var(--sheetal-cream);
}

.sheetalHeroX__imageLabel > span {
    color: var(--sheetal-red);
    font-family: "Cormorant Garamond", serif;
    font-size: 37px;
    font-weight: 700;
    line-height: 1;
}

.sheetalHeroX__imageLabel p {
    margin: 0px;
    color: rgb(103, 103, 93);
    font-family: Manrope, sans-serif;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sheetalHeroX__imageLabel strong {
    display: block;
    margin-top: 3px;
    color: var(--sheetal-black);
    font-size: 11px;
}

.sheetalHeroX__floatingCard {
    position: absolute;
    top: 13%;
    left: -70px;
    z-index: 5;
    min-width: 190px;
    padding: 18px 22px;
    background: var(--sheetal-green);
    border-left: 5px solid var(--sheetal-orange);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 18px 45px;
    animation: 4.5s ease-in-out 0s infinite normal none running sheetalFloat;
}

.sheetalHeroX__floatingCard span, .sheetalHeroX__floatingCard strong {
    display: block;
    font-family: Manrope, sans-serif;
}

.sheetalHeroX__floatingCard span {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sheetalHeroX__floatingCard strong {
    color: var(--sheetal-white);
    font-size: 13px;
    letter-spacing: 0.04em;
}

.sheetalHeroX__sideText {
    position: absolute;
    top: 50%;
    left: 24px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 17px;
    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center center;
    pointer-events: none;
}

.sheetalHeroX__sideText span {
    color: rgba(255, 255, 255, 0.38);
    font-family: Manrope, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.sheetalHeroX__sideText span:nth-child(2) {
    color: var(--sheetal-orange);
}

.sheetalHeroX__bottom {
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 10;
    background: rgba(15, 15, 13, 0.88);
    border-top: 1px solid var(--sheetal-border);
    backdrop-filter: blur(12px);
    display: none;
}

.sheetalHeroX__bottomContainer {
    width: min(1440px, 100% - 80px);
    min-height: 112px;
    margin: 0px auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(145px, 1fr)) auto;
    align-items: center;
    gap: 30px;
}

.sheetalHeroX__feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sheetalHeroX__featureIcon {
    color: var(--sheetal-orange);
    font-family: "Cormorant Garamond", serif;
    font-size: 31px;
    font-weight: 600;
    line-height: 1;
}

.sheetalHeroX__feature p {
    margin: 0px;
    color: var(--sheetal-white);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sheetalHeroX__feature small {
    display: block;
    color: rgba(255, 255, 255, 0.47);
    font-size: 8px;
    letter-spacing: 0.17em;
}

.sheetalHeroX__navigation {
    display: flex;
    align-items: center;
    gap: 18px;
}

.sheetalHeroX__arrow {
    width: 48px;
    height: 48px;
    padding: 0px;
    display: grid;
    place-items: center;
    color: var(--sheetal-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    cursor: pointer;
    font-size: 19px;
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.sheetalHeroX__arrow:hover {
    color: var(--sheetal-black);
    background: var(--sheetal-orange);
    border-color: var(--sheetal-orange);
}

.sheetalHeroX__pagination {
    display: flex;
    align-items: center;
    gap: 9px;
}

.sheetalHeroX__dot {
    width: 7px;
    height: 7px;
    padding: 0px;
    background: rgba(255, 255, 255, 0.35);
    border: 0px;
    border-radius: 0px;
    cursor: pointer;
    transition: width 0.35s, background-color 0.35s;
}

.sheetalHeroX__dot.is-active {
    width: 29px;
    background: var(--sheetal-red);
}

.sheetalHeroX__progress {
    width: 100%;
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.sheetalHeroX__progress span {
    display: block;
    width: 0px;
    height: 100%;
    background: var(--sheetal-orange);
}

.sheetalHeroX__scroll {
    position: absolute;
    right: 24px;
    bottom: 142px;
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-family: Manrope, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: right center;
}

.sheetalHeroX__scroll i {
    position: relative;
    width: 45px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.36);
}

.sheetalHeroX__scroll i::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: var(--sheetal-orange);
    transform: translateX(-100%);
    animation: 2s ease-in-out 0s infinite normal none running sheetalScrollLine;
}

@keyframes sheetalRevealUp {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes sheetalRevealRight {
    0% {
        opacity: 0;
        transform: translateX(70px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes sheetalFloat {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes sheetalScrollLine {
    0% {
        transform: translateX(-100%);
    }

    50%, 100% {
        transform: translateX(100%);
    }
}

@media (max-width: 1280px) {
    .sheetalHeroX__container {
        width: min(1180px, 100% - 60px);
        grid-template-columns: minmax(0px, 1fr) minmax(340px, 0.72fr);
        gap: 70px;
    }

    .sheetalHeroX__bottomContainer {
        width: min(1180px, 100% - 60px);
    }

    .sheetalHeroX h1, .sheetalHeroX h2 {
        font-size: clamp(60px, 6.1vw, 90px);
    }

    .sheetalHeroX__visual {
        max-width: 470px;
    }

    .sheetalHeroX__floatingCard {
        left: -45px;
    }
}

@media (max-width: 991px) {
    .sheetalHeroX, .sheetalHeroX__slider, .sheetalHeroX__slide {
        min-height: auto;
    }

    .sheetalHeroX__slide {
        min-height: 980px;
    }

    .sheetalHeroX__slide::before {
        width: 100%;
        background: rgba(15, 15, 13, 0.66);
    }

    .sheetalHeroX__container {
        width: min(760px, 100% - 50px);
        min-height: 980px;
        padding: 80px 0px 180px;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 54px;
    }

    .sheetalHeroX__content {
        max-width: 700px;
    }

    .sheetalHeroX__brand {
        margin-bottom: 35px;
    }

    .sheetalHeroX h1, .sheetalHeroX h2 {
        max-width: 660px;
        font-size: clamp(62px, 10vw, 88px);
    }

  

    .sheetalHeroX__bottomContainer {
        width: min(760px, 100% - 50px);
        grid-template-columns: repeat(3, 1fr);
        padding: 24px 0px;
    }

    .sheetalHeroX__navigation {
        grid-column: 1 / -1;
        justify-content: center;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .sheetalHeroX__scroll, .sheetalHeroX__sideText {
        display: none;
    }
}
@media (max-width:991px){

.sheetalHeroX__container{
    grid-template-columns:1fr;
    gap:35px;
}

.sheetalHeroX__visual{
    display:block;
    width:100%;
    max-width:420px;
    margin:auto;
    justify-self:center;
}

.sheetalHeroX__imageFrame{
    aspect-ratio:4/5;
}

.sheetalHeroX__floatingCard{
    left:20px;
    top:20px;
}

}
@media (max-width: 767px) {
    .sheetalHeroX__slide {
        min-height: 850px;
    }

    .sheetalHeroX__container {
        width: calc(100% - 34px);
        min-height: 850px;
        padding: 140px 10px 135px;
        align-content: center;
    }

    .sheetalHeroX__slide::after {
        width: 6px;
    }

    .sheetalHeroX__brand {
        gap: 12px;
        margin-bottom: 32px;
    }

    .sheetalHeroX__logo {
        width: 120px;
        max-height: 84px;
    }

    .sheetalHeroX__brandLine {
        width: 25px;
    }

    .sheetalHeroX__brand p {
        max-width: 78px;
        font-size: 7px;
    }

    .sheetalHeroX__eyebrow {
        margin-bottom: 17px;
        font-size: 9px;
        letter-spacing: 0.16em;
    }

    .sheetalHeroX h1, .sheetalHeroX h2 {
        font-size: clamp(48px, 14vw, 67px);
        line-height: 0.88;
    }

    .sheetalHeroX__description {
        margin-top: 23px;
        font-size: 13px;
        line-height: 1.75;
    }

    .sheetalHeroX__actions {
        width: 100%;
        margin-top: 29px;
    }

    .sheetalHeroX__button {
        min-width: 0px;
        min-height: 54px;
        flex: 1 1 150px;
        padding: 14px 16px;
        font-size: 9px;
    }

    .sheetalHeroX__bottomContainer {
        width: calc(100% - 34px);
        min-height: 0px;
        padding: 20px 0px 17px;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 12px;
    }

    .sheetalHeroX__feature:nth-child(3) {
        display: none;
    }

    .sheetalHeroX__feature {
        gap: 9px;
    }

    .sheetalHeroX__featureIcon {
        font-size: 24px;
    }

    .sheetalHeroX__feature p {
        font-size: 8px;
    }

    .sheetalHeroX__feature small {
        font-size: 6px;
    }

    .sheetalHeroX__navigation {
        grid-column: 1 / -1;
        padding-top: 16px;
    }

    .sheetalHeroX__arrow {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 420px) {
    .sheetalHeroX__slide, .sheetalHeroX__container {
        min-height: 880px;
    }

    .sheetalHeroX h1, .sheetalHeroX h2 {
        font-size: clamp(43px, 14.5vw, 57px);
    }

    .sheetalHeroX__brand p, .sheetalHeroX__brandLine {
        display: none;
    }

    .sheetalHeroX__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sheetalHeroX__button {
        width: 100%;
        flex-basis: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sheetalHeroX *, .sheetalHeroX ::before, .sheetalHeroX ::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* =================================
   HERO CENTER BOTTOM SCROLL BUTTON
================================= */

.sheetalHeroX__scroll {
  position: absolute;
  left: 50%;
  bottom: 135px;
  z-index: 20;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;

  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  transform: translateX(-50%);
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.sheetalHeroX__scroll::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;

  width: 28px;
  height: 1px;

  background: var(--sheetal-orange);
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.sheetalHeroX__scroll:hover {
  color: var(--sheetal-orange);
  transform: translateX(-50%) translateY(-4px);
}

.sheetalHeroX__scroll:hover::before {
  width: 45px;
}

/* Mouse Shape */

.sheetalHeroX__scrollMouse {
  position: relative;

  width: 24px;
  height: 38px;

  display: block;

  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;

  transition:
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.sheetalHeroX__scrollMouse::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -17px;

  width: 1px;
  height: 13px;

  background: rgba(255, 255, 255, 0.38);
  transform: translateX(-50%);
}

/* Animated Wheel */

.sheetalHeroX__scrollMouse b {
  position: absolute;
  top: 8px;
  left: 50%;

  width: 3px;
  height: 7px;

  display: block;

  background: var(--sheetal-red);
  border-radius: 5px;

  
  transform: translateX(-50%);
  animation: sheetalHeroScrollWheel 1.8s ease-in-out infinite;
}

.sheetalHeroX__scroll:hover .sheetalHeroX__scrollMouse {
  border-color: var(--sheetal-orange);
  background: rgba(0, 0, 0, 0.18);
}

@keyframes sheetalHeroScrollWheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  25% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}
/* ==============================
   CENTER BOTTOM SCROLL INDICATOR
============================== */

.sheetalHeroX__scrollCue {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.sheetalHeroX__scrollCue:hover {
  color: var(--sheetal-orange);
  transform: translateX(-50%) translateY(4px);
}

/* Vertical track */

.sheetalHeroX__scrollLine {
  position: relative;
  width: 2px;
  height: 48px;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.sheetalHeroX__scrollLine i {
  position: absolute;
  top: -100%;
  left: 0;

  width: 100%;
  height: 55%;

  background: var(--sheetal-orange);
  animation: sheetalScrollDrop 1.8s ease-in-out infinite;
}

/* Bottom arrow */

.sheetalHeroX__scrollArrow {
  display: block;

  color: var(--sheetal-red);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;

  animation: sheetalArrowBounce 1.8s ease-in-out infinite;
}

@keyframes sheetalScrollDrop {
  0% {
    top: -60%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  65% {
    opacity: 1;
  }

  100% {
    top: 110%;
    opacity: 0;
  }
}

@keyframes sheetalArrowBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}
@media (max-width: 991px) {
  .sheetalHeroX__scrollCue {
    bottom: 142px;
  }

  .sheetalHeroX__scrollLine {
    height: 40px;
  }
}
@media (max-width: 767px) {
  .sheetalHeroX__scrollCue {
    bottom: 45px;
    gap: 7px;
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .sheetalHeroX__scrollLine {
    height: 31px;
  }

  .sheetalHeroX__scrollArrow {
    font-size: 13px;
  }
}
/* =====================================================
   SHEETAL SIMPLE ABOUT SECTION
===================================================== */

:root {
  --sheetal-simple-red: #cc171c;
  --sheetal-simple-green: #41652f;
  --sheetal-simple-orange: #ef8708;
  --sheetal-simple-dark: #20201d;
  --sheetal-simple-text: #62605a;
  --sheetal-simple-cream: #fbf7ef;
  --sheetal-simple-white: #ffffff;
  --sheetal-simple-border: #ded8cc;
}



.sheetalSimpleAbout {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
  background-color: #FDF4E5;
  font-family: "Poppins", sans-serif;
}

.sheetalSimpleAbout__container {
  width: min(1240px, 100%);
  margin: 0 auto;
}

/* =====================================================
   SECTION HEADING
===================================================== */

.sheetalSimpleAbout__heading {
  max-width: 820px;
  margin: 0 auto 90px;
  text-align: center;
}

.sheetalSimpleAbout__heading > span {
  display: block;
  margin-bottom: 15px;
  color: var(--sheetal-simple-red);
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sheetalSimpleAbout__heading h2 {
  margin: 0;
  color: var(--sheetal-simple-dark);
  font-family: "Cinzel", serif;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.10;
  letter-spacing: -0.03em;
}

.sheetalSimpleAbout__heading h2 strong {
  display: inline;
  color: var(--sheetal-simple-green);
  font-weight: 400;
}

.sheetalSimpleAbout__heading p {
  max-width: 690px;
  margin: 24px auto 0;
  color: var(--sheetal-simple-text);
  font-size: 1rem;
  line-height: 1.85;
}

/* =====================================================
   BRANCH LAYOUT
===================================================== */

.sheetalSimpleBranch {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(55px, 7vw, 105px);
}

.sheetalSimpleBranch + .sheetalSimpleBranch {
  margin-top: 140px;
}

.sheetalSimpleBranch--second {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

/* =====================================================
   TWO IMAGE GALLERY
===================================================== */

.sheetalSimpleBranch__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(170px, 0.65fr);
  align-items: end;
  gap: 20px;
  min-height: 610px;
}

.sheetalSimpleBranch__image {
  position: relative;
  overflow: hidden;
  background-color: #e8e1d5;
}

.sheetalSimpleBranch__image--large {
  height: 610px;
}

.sheetalSimpleBranch__image--small {
  height: 390px;
  margin-bottom: 34px;
}

.sheetalSimpleBranch__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform 1s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.45s ease;
}

.sheetalSimpleBranch__image:hover img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

/* Thin logo-inspired accent line */

.sheetalSimpleBranch__image--large::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 95px;
  height: 5px;
  background-color: var(--sheetal-simple-red);
}

.sheetalSimpleBranch__image--small::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65px;
  height: 5px;
  background-color: var(--sheetal-simple-orange);
}

/* =====================================================
   BRANCH CONTENT
===================================================== */

.sheetalSimpleBranch__content {
  position: relative;
}

.sheetalSimpleBranch__number {
  display: block;
  margin-bottom: 24px;
  color: rgb(65 101 47 / 10%);
  font-family: "Cinzel", serif;
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 0.8;
}

.sheetalSimpleBranch__label {
  display: block;
  margin-bottom: 15px;
  color: var(--sheetal-simple-red);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sheetalSimpleBranch__content h3 {
  margin: 0 0 28px;
  color: var(--sheetal-simple-dark);
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 3.4vw, 4rem);
  font-weight: 400;
  line-height: 1.10;
  letter-spacing: -0.025em;
}

.sheetalSimpleBranch__content p {
  margin: 0 0 19px;
  color: var(--sheetal-simple-text);
  font-size: 16px;
  line-height: 1.9;
}

.sheetalSimpleBranch__feature {
  margin-top: 30px;
  padding: 20px 0 20px 22px;
  border-left: 3px solid var(--sheetal-simple-orange);
  color: var(--sheetal-simple-green);
  font-family: "poppins", serif;
  font-size: 1.01rem;
  font-weight: 500;
  line-height: 1.65;
}

/* =====================================================
   SCROLL REVEAL
===================================================== */

.sheetalSimpleReveal {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.sheetalSimpleReveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sheetalSimpleBranch__gallery.sheetalSimpleReveal {
  transform: translateX(-55px);
}

.sheetalSimpleBranch--second
  .sheetalSimpleBranch__gallery.sheetalSimpleReveal {
  transform: translateX(55px);
}

.sheetalSimpleBranch__gallery.sheetalSimpleReveal.is-visible {
  transform: translateX(0);
}

/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1199px) {
  .sheetalSimpleAbout {
    padding: 95px 22px;
  }

  .sheetalSimpleBranch {
    gap: 55px;
  }

  .sheetalSimpleBranch__gallery {
    min-height: 540px;
  }

  .sheetalSimpleBranch__image--large {
    height: 540px;
  }

  .sheetalSimpleBranch__image--small {
    height: 340px;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {
  .sheetalSimpleAbout {
    padding: 85px 20px;
  }

  .sheetalSimpleAbout__heading {
    margin-bottom: 65px;
  }

  .sheetalSimpleBranch,
  .sheetalSimpleBranch--second {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .sheetalSimpleBranch + .sheetalSimpleBranch {
    margin-top: 100px;
  }

  .sheetalSimpleBranch--second .sheetalSimpleBranch__content {
    order: 2;
  }

  .sheetalSimpleBranch--second .sheetalSimpleBranch__gallery {
    order: 1;
  }

  .sheetalSimpleBranch__gallery {
    grid-template-columns: 1.3fr 0.7fr;
    min-height: 560px;
  }

  .sheetalSimpleBranch__image--large {
    height: 560px;
  }

  .sheetalSimpleBranch__image--small {
    height: 360px;
  }

  .sheetalSimpleBranch__content {
    max-width: 720px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {
  .sheetalSimpleAbout {
    padding: 72px 15px;
  }

  .sheetalSimpleAbout__heading {
    margin-bottom: 50px;
  }

  .sheetalSimpleAbout__heading p {
    font-size: 0.91rem;
    line-height: 1.75;
  }

  .sheetalSimpleBranch,
  .sheetalSimpleBranch--second {
    gap: 70px;
  }

  .sheetalSimpleBranch + .sheetalSimpleBranch {
    margin-top: 80px;
  }

  .sheetalSimpleBranch__gallery {
    grid-template-columns: minmax(0, 1.15fr) minmax(110px, 0.85fr);
    gap: 11px;
    min-height: 430px;
  }

  .sheetalSimpleBranch__image--large {
    height: 430px;
  }

  .sheetalSimpleBranch__image--small {
    height: 280px;
    margin-bottom: 22px;
  }

  .sheetalSimpleBranch__number {
    margin-bottom: 18px;
    font-size: 4.3rem;
  }

  .sheetalSimpleBranch__content h3 {
    margin-bottom: 22px;
  }

  .sheetalSimpleBranch__content p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .sheetalSimpleBranch__feature {
    margin-top: 24px;
    padding-left: 17px;
    font-size: 0.85rem;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {
  .sheetalSimpleAbout {
    padding-inline: 11px;
  }

  .sheetalSimpleBranch__gallery {
    grid-template-columns: 1fr 0.72fr;
    min-height: 350px;
  }

  .sheetalSimpleBranch__image--large {
    height: 350px;
  }

  .sheetalSimpleBranch__image--small {
    height: 225px;
    margin-bottom: 16px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .sheetalSimpleReveal,
  .sheetalSimpleBranch__image img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* =====================================================
   SHEETAL ROYAL MENU SECTION
===================================================== */

.sheetalRoyalMenu {
  --sheetal-red: #cf1419;
  --sheetal-green: #3e7137;
  --sheetal-orange: #f28a00;
  --sheetal-black: #161616;
  --sheetal-cream: #e7c388;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fdddaf;
  padding: 120px 0 110px;
  isolation: isolate;
}

/* Subtle Indian-inspired background lines */
.sheetalRoyalMenu::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(
      90deg,
      transparent 49.7%,
      rgba(22, 22, 22, 0.16) 50%,
      transparent 50.3%
    ),
    linear-gradient(
      0deg,
      transparent 49.7%,
      rgba(22, 22, 22, 0.1) 50%,
      transparent 50.3%
    );
  background-size: 110px 110px;
}

.sheetalRoyalMenu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 4px;
  /* background-color: var(--sheetal-red); */
  /* box-shadow:
    120px 0 0 var(--sheetal-green),
    240px 0 0 var(--sheetal-orange); */
  z-index: 2;
}

.sheetalRoyalMenu *,
.sheetalRoyalMenu *::before,
.sheetalRoyalMenu *::after {
  box-sizing: border-box;
}

.sheetalRoyalMenu__container {
  width: min(94%, 1560px);
  margin-inline: auto;
}

/* =====================================================
   SECTION HEADING
===================================================== */

.sheetalRoyalMenu__header {
  max-width: 850px;
  margin: 0 auto 64px;
  text-align: center;
}

.sheetalRoyalMenu__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--sheetal-red);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1.5;
  text-transform: uppercase;
}

.sheetalRoyalMenu__eyebrow span {
  display: block;
  width: 36px;
  height: 1px;
  background-color: var(--sheetal-red);
}

.sheetalRoyalMenu__header h2 {
  margin: 0;
  color: var(--sheetal-black);
  font-family: "Cinzel", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.sheetalRoyalMenu__header h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 3px;
  margin: 25px auto 0;
  background-color: var(--sheetal-green);
}

.sheetalRoyalMenu__header p {
  max-width: 720px;
  margin: 25px auto 0;
  color: rgba(22, 22, 22, 0.72);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

/* =====================================================
   FOUR-COLUMN MENU GRID
===================================================== */

.sheetalRoyalMenu__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(18px, 2vw, 34px);
}

/* =====================================================
   MENU CARD
===================================================== */

.sheetalMenuCard {
  position: relative;
  min-width: 0;
  transition:
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 500ms ease;
}

.sheetalMenuCard__imageWrap {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(390px, 32vw, 520px);
  overflow: hidden;
  background-color: #d4aa68;
  text-decoration: none;
  box-shadow: 0 20px 45px rgba(49, 29, 7, 0.16);
  isolation: isolate;
}

.sheetalMenuCard:nth-child(1) .sheetalMenuCard__imageWrap {
  /* border-radius: 3px 3px 60px 3px; */
}

.sheetalMenuCard:nth-child(2) .sheetalMenuCard__imageWrap {
  /* border-radius: 3px 60px 3px 3px; */
}

.sheetalMenuCard:nth-child(3) .sheetalMenuCard__imageWrap {
  /* border-radius: 60px 3px 3px 3px; */
}

.sheetalMenuCard:nth-child(4) .sheetalMenuCard__imageWrap {
  /* border-radius: 3px 3px 3px 60px; */
}

.sheetalMenuCard__imageWrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 450ms ease;
}

.sheetalMenuCard__imageWrap::after {
  /* content: ""; */
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0);
  pointer-events: none;
  transition:
    inset 450ms ease,
    border-color 450ms ease;
}

.sheetalMenuCard__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 500ms ease;
}

.sheetalMenuCard__number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background-color: var(--sheetal-cream);
  color: var(--sheetal-red);
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition:
    background-color 350ms ease,
    color 350ms ease,
    transform 350ms ease;
}

.sheetalMenuCard__view {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 142px;
  padding: 13px 18px;
  background-color: var(--sheetal-red);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(-50%, 25px);
  transition:
    opacity 400ms ease,
    transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 300ms ease;
}

.sheetalMenuCard__view i {
  font-size: 11px;
}

/* Content has no background colour */
.sheetalMenuCard__content {
  position: relative;
  padding: 27px 6px 0;
  background-color: transparent;
}

.sheetalMenuCard__label {
  display: block;
  margin-bottom: 9px;
  color: var(--sheetal-green);
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.3px;
  line-height: 1.5;
  text-transform: uppercase;
}

.sheetalMenuCard__content h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(21px, 1.7vw, 29px);
  font-weight: 400;
  line-height: 1.25;
}

.sheetalMenuCard__content h3 a {
  color: var(--sheetal-black);
  text-decoration: none;
  transition: color 300ms ease;
}

.sheetalMenuCard__content p {
  min-height: 92px;
  margin: 15px 0 19px;
  color: rgba(22, 22, 22, 0.72);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}

.sheetalMenuCard__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  color: var(--sheetal-red);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
}

.sheetalMenuCard__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: var(--sheetal-red);
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 350ms ease;
}

.sheetalMenuCard__link i {
  font-size: 13px;
  transition: transform 350ms ease;
}

/* =====================================================
   CARD HOVER EFFECTS
===================================================== */

@media (hover: hover) {
  .sheetalMenuCard:hover {
    transform: translateY(-10px);
  }

  .sheetalMenuCard:hover .sheetalMenuCard__image {
    transform: scale(1.075);
    filter: saturate(1.08) contrast(1.03);
  }

  .sheetalMenuCard:hover .sheetalMenuCard__imageWrap::before {
    background-color: rgba(13, 13, 13, 0.22);
  }

  .sheetalMenuCard:hover .sheetalMenuCard__imageWrap::after {
    inset: 20px;
    border-color: rgba(255, 255, 255, 0.65);
  }

  .sheetalMenuCard:hover .sheetalMenuCard__number {
    color: #ffffff;
    background-color: var(--sheetal-green);
    transform: translateY(4px);
  }

  .sheetalMenuCard:hover .sheetalMenuCard__view {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .sheetalMenuCard__view:hover {
    background-color: var(--sheetal-green);
  }

  .sheetalMenuCard:hover .sheetalMenuCard__content h3 a {
    color: var(--sheetal-red);
  }

  .sheetalMenuCard__link:hover::after {
    transform: scaleX(1);
  }

  .sheetalMenuCard__link:hover i {
    transform: translateX(6px);
  }
}

/* =====================================================
   BOTTOM BUTTON
===================================================== */

.sheetalRoyalMenu__footer {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.sheetalRoyalMenu__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 250px;
  min-height: 58px;
  padding: 16px 28px;
  overflow: hidden;
  border: 1px solid var(--sheetal-black);
  background-color: transparent;
  color: var(--sheetal-black);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.7px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 350ms ease,
    border-color 350ms ease,
    transform 350ms ease;
  isolation: isolate;
}

.sheetalRoyalMenu__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--sheetal-red);
  transform: translateY(102%);
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sheetalRoyalMenu__button i {
  transition: transform 350ms ease;
}

.sheetalRoyalMenu__button:hover {
  border-color: var(--sheetal-red);
  color: #ffffff;
  transform: translateY(-4px);
}

.sheetalRoyalMenu__button:hover::before {
  transform: translateY(0);
}

.sheetalRoyalMenu__button:hover i {
  transform: translateX(6px);
}

/* =====================================================
   SCROLL REVEAL ANIMATION
===================================================== */

.sheetalMenuReveal {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 850ms ease,
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.sheetalMenuReveal.sheetalMenuVisible {
  opacity: 1;
  transform: translateY(0);
}

.sheetalRoyalMenu__grid .sheetalMenuCard:nth-child(1) {
  transition-delay: 80ms;
}

.sheetalRoyalMenu__grid .sheetalMenuCard:nth-child(2) {
  transition-delay: 160ms;
}

.sheetalRoyalMenu__grid .sheetalMenuCard:nth-child(3) {
  transition-delay: 240ms;
}

.sheetalRoyalMenu__grid .sheetalMenuCard:nth-child(4) {
  transition-delay: 320ms;
}

/* =====================================================
   LARGE LAPTOP
===================================================== */

@media (max-width: 1350px) {
  .sheetalRoyalMenu {
    padding: 105px 0 95px;
  }

  .sheetalRoyalMenu__container {
    width: min(95%, 1280px);
  }

  .sheetalRoyalMenu__grid {
    gap: 21px;
  }

  .sheetalMenuCard__imageWrap {
    height: 430px;
  }

  .sheetalMenuCard__content h3 {
    font-size: 22px;
  }

  .sheetalMenuCard__content p {
    font-size: 12.5px;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {
  .sheetalRoyalMenu {
    padding: 90px 0 85px;
  }

  .sheetalRoyalMenu__header {
    margin-bottom: 48px;
  }

  .sheetalRoyalMenu__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 24px;
  }

  .sheetalMenuCard__imageWrap {
    height: 480px;
  }

  .sheetalMenuCard__content h3 {
    font-size: 26px;
  }

  .sheetalMenuCard__content p {
    min-height: auto;
    font-size: 13px;
  }

  .sheetalRoyalMenu__grid .sheetalMenuCard {
    transition-delay: 100ms;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {
  .sheetalRoyalMenu {
    padding: 75px 0 70px;
  }

  .sheetalRoyalMenu::before {
    background-size: 80px 80px;
  }

  .sheetalRoyalMenu__container {
    width: min(91%, 560px);
  }

  .sheetalRoyalMenu__header {
    margin-bottom: 40px;
  }

  .sheetalRoyalMenu__eyebrow {
    gap: 9px;
    font-size: 10px;
    letter-spacing: 2.3px;
  }

  .sheetalRoyalMenu__eyebrow span {
    width: 20px;
  }

  .sheetalRoyalMenu__header h2 {
    font-size: clamp(34px, 10vw, 47px);
    letter-spacing: -0.8px;
  }

  .sheetalRoyalMenu__header p {
    font-size: 13px;
    line-height: 1.8;
  }

  .sheetalRoyalMenu__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sheetalMenuCard__imageWrap {
    height: clamp(400px, 118vw, 540px);
  }

  .sheetalMenuCard:nth-child(n) .sheetalMenuCard__imageWrap {
    border-radius: 3px 3px 42px 3px;
  }

  .sheetalMenuCard__content {
    padding: 24px 3px 0;
  }

  .sheetalMenuCard__content h3 {
    font-size: 25px;
  }

  .sheetalMenuCard__content p {
    margin-top: 13px;
    font-size: 13px;
  }

  .sheetalMenuCard__view {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .sheetalRoyalMenu__footer {
    margin-top: 55px;
  }

  .sheetalRoyalMenu__button {
    width: 100%;
    min-width: 0;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 430px) {
  .sheetalRoyalMenu {
    padding: 65px 0;
  }

  .sheetalRoyalMenu__header h2 {
    font-size: 34px;
  }

  .sheetalMenuCard__imageWrap {
    height: 410px;
  }

  .sheetalMenuCard__number {
    top: 14px;
    left: 14px;
    width: 47px;
    height: 47px;
    font-size: 12px;
  }

  .sheetalMenuCard__view {
    bottom: 18px;
    min-width: 130px;
    padding: 11px 14px;
    font-size: 10px;
  }

  .sheetalMenuCard__content h3 {
    font-size: 23px;
  }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .sheetalMenuReveal,
  .sheetalMenuCard,
  .sheetalMenuCard__image,
  .sheetalMenuCard__view,
  .sheetalMenuCard__number,
  .sheetalRoyalMenu__button,
  .sheetalRoyalMenu__button::before {
    transition: none !important;
    animation: none !important;
  }

  .sheetalMenuReveal {
    opacity: 1;
    transform: none;
  }
}
.sheetalMenuCard__imageWrap,
.sheetalMenuCard__titleTrigger,
.sheetalMenuCard__link {
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.sheetalMenuCard__imageWrap {
  width: 100%;
  text-align: left;
}

.sheetalMenuCard__titleTrigger {
  display: inline;
  background-color: transparent;
  color: var(--sheetal-black);
  font-family: "Cinzel", serif;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: left;
  transition: color 0.3s ease;
}

.sheetalMenuCard__link {
  background-color: transparent;
}
.pk-gallery-section{

position:relative;

padding: 70px 0;

background: linear-gradient(rgb(111 5 6), rgb(112 5 6));

background-size:cover;

background-position:center;

overflow:hidden;
}

.pk-gallery-container{

    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

/* Heading */

.pk-gallery-heading{

    text-align:center;
    margin-bottom:40px;
}

.pk-gallery-heading h2{

color:#fff;

font-family: "Cinzel", serif;

font-size: 4rem;

font-weight: 400;
}

.pk-gallery-divider{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;

    margin:15px 0;
}

.pk-gallery-divider span{

    width:90px;
    height:1px;
    background:#d4b05c;
}

.pk-gallery-divider i{

    color:#d4b05c;
    font-size:20px;
}

.pk-gallery-heading p{

    color:#f5d9d9;
    font-size:18px;
    line-height:1.8;
}

/* Filter */

.pk-gallery-filter{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;

    margin-bottom:40px;
}

.pk-gallery-filter button{

    background:transparent;
    color:#fff;

    border:1px solid rgba(255,255,255,.25);

    padding:12px 30px;

    border-radius:40px;

    cursor:pointer;

    transition:.4s;
}

.pk-gallery-filter button.active,
.pk-gallery-filter button:hover{

    background:#b80b0b;
    border-color:#b80b0b;
}

/* Gallery */

.pk-gallery-grid{

display:grid;

grid-template-columns: repeat(3,1fr);

gap:15px;
}

.pk-gallery-item{

    position:relative;
    overflow:hidden;

    border-radius:10px;
}

.pk-gallery-item img{

    width:100%;
    height:250px;

    object-fit:cover;

    transition:.6s;
}

.pk-gallery-item:hover img{

    transform:scale(1.1);
}

.pk-gallery-item::before{

    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    transparent,
    rgba(0,0,0,.45)
    );

    opacity:0;
    transition:.4s;

    z-index:1;
}

.pk-gallery-item:hover::before{

    opacity:1;
}

/* CTA */

.pk-gallery-cta{

margin-top:40px;

background: rgb(255 255 255);

border: 1px solid rgb(195 15 15);

backdrop-filter:blur(10px);

border-radius:15px;

padding:25px 30px;

display:flex;

align-items:center;

justify-content:space-between;

gap:20px;
}

.pk-gallery-cta-content{

    display:flex;
    align-items:center;
    gap:20px;
}

.pk-gallery-cta-icon{

width:70px;

height:70px;

border-radius:50%;

border: 1px solid rgb(112 5 6);

display:flex;

align-items:center;

justify-content:center;
}

.pk-gallery-cta-icon i{

color: #c30f0f;

font-size:28px;
}

.pk-gallery-cta-content h4{

color: #6f0506;

font-size:28px;
}

.pk-gallery-cta-content p{

color: #000000;
}

.pk-gallery-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#c30f0f;
    color:#fff;

    padding:16px 35px;

    border-radius:8px;

    text-decoration:none;

    transition:.4s;
}

.pk-gallery-btn:hover{

    background:#a30808;
    transform:translateY(-4px);
}
@media(max-width:1199px){

    .pk-gallery-grid{

        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:991px){

    .pk-gallery-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .pk-gallery-cta{

        flex-direction:column;
        text-align:center;
    }

    .pk-gallery-heading h2{

        font-size:55px;
    }
}

@media(max-width:767px){

    .pk-gallery-section{

        padding:80px 0;
    }

    .pk-gallery-grid{

        grid-template-columns:1fr;
    }

    .pk-gallery-heading h2{

        font-size:42px;
    }

    .pk-gallery-item img{

        height:280px;
    }

    .pk-gallery-cta-content{

        flex-direction:column;
        text-align:center;
    }
}

@media(max-width:480px){

    .pk-gallery-heading h2{

        font-size:36px;
    }

    .pk-gallery-filter button{

        width:100%;
    }

    .pk-gallery-btn{

        width:100%;
        justify-content:center;
    }
}
/* =========================================
   SHEETAL SIMPLE FOOTER
========================================= */

:root {
  --st-footer-red: #d90000;
  --st-footer-green: #385f36;
  --st-footer-orange: #f7941d;
  --st-footer-dark: #151515;
  --st-footer-white: #ffffff;
  --st-footer-cream: #fffaf4;
  --st-footer-text: #555555;
  --st-footer-border: #e9ded2;
}

.stSimpleFooter,
.stSimpleFooter * {
  box-sizing: border-box;
}

.stSimpleFooter {
  position: relative;
  overflow: hidden;
  background-color: var(--st-footer-cream);
  color: var(--st-footer-dark);
  font-family: "Poppins", sans-serif;
}

.stSimpleFooter a {
  color: inherit;
  text-decoration: none;
}

.stSimpleFooter__topBorder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  height: 5px;
}

.stSimpleFooter__topBorder span:nth-child(1) {
  background-color: var(--st-footer-red);
}

.stSimpleFooter__topBorder span:nth-child(2) {
  background-color: var(--st-footer-green);
}

.stSimpleFooter__topBorder span:nth-child(3) {
  background-color: var(--st-footer-orange);
}

.stSimpleFooter__container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
  padding: 75px 0 60px;
}

/* Main footer columns */

.stSimpleFooter__main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr;
  gap: 55px;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--st-footer-border);
}

.stSimpleFooter__brand {
  padding-right: 25px;
}

.stSimpleFooter__logo {
  display: inline-block;
  width: 220px;
  margin-bottom: 24px;
}

.stSimpleFooter__logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.stSimpleFooter__brand p {
  max-width: 340px;
  margin: 0 0 24px;
  color: var(--st-footer-text);
  font-size: 14px;
  line-height: 1.9;
}

.stSimpleFooter__backTop {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--st-footer-red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: gap 0.25s ease;
}

.stSimpleFooter__backTop:hover {
  gap: 14px;
}

/* Branch columns */

.stSimpleFooter__branchNumber {
  display: block;
  margin-bottom: 10px;
  color: var(--st-footer-red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.stSimpleFooter__location h3 {
  min-height: 62px;
  margin: 0 0 27px;
  color: var(--st-footer-green);
  font-family: "Cinzel", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4;
}

.stSimpleFooter__infoList {
  display: grid;
  gap: 21px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stSimpleFooter__infoList li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: flex-start;
}

.stSimpleFooter__infoList li > i {
  margin-top: 4px;
  color: var(--st-footer-orange);
  font-size: 16px;
}

.stSimpleFooter__infoList div {
  display: flex;
  flex-direction: column;
}

.stSimpleFooter__infoList span {
  margin-bottom: 4px;
  color: var(--st-footer-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stSimpleFooter__infoList a,
.stSimpleFooter__infoList p {
  margin: 0;
  color: var(--st-footer-text);
  font-size: 13px;
  line-height: 1.75;
  transition: color 0.25s ease;
}

.stSimpleFooter__infoList a:hover {
  color: var(--st-footer-red);
}

/* Maps */

.stSimpleFooter__maps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  padding-top: 50px;
}

.stSimpleFooter__mapItem {
  min-width: 0;
}

.stSimpleFooter__mapHeading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.stSimpleFooter__mapHeading span {
  display: block;
  margin-bottom: 5px;
  color: var(--st-footer-red);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stSimpleFooter__mapHeading h4 {
  margin: 0;
  color: var(--st-footer-green);
  font-family: "Cinzel", serif;
  font-size: 19px;
  font-weight: 500;
}

.stSimpleFooter__mapHeading a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--st-footer-red);
  color: var(--st-footer-red);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.stSimpleFooter__mapItem iframe {
  display: block;
  width: 100%;
  height: 250px;
  border: 0;
  filter: saturate(0.8);
}

/* Footer bottom */

.stSimpleFooter__bottom {
  background-color: var(--st-footer-green);
  border-top: 4px solid var(--st-footer-orange);
}

.stSimpleFooter__bottomInner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: min(100% - 40px, 1280px);
  min-height: 75px;
  margin-inline: auto;
  padding: 18px 0;
}

.stSimpleFooter__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.7;
}

.stSimpleFooter__bottom a {
  color: var(--st-footer-orange);
  font-weight: 600;
}

/* Scroll reveal */

.stSimpleFooterReveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.stSimpleFooterReveal.stSimpleFooterReveal--active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {
  .stSimpleFooter__container {
    width: min(100% - 32px, 900px);
  }

  .stSimpleFooter__main {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .stSimpleFooter__brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 230px 1fr;
    column-gap: 35px;
    align-items: center;
    padding-right: 0;
  }

  .stSimpleFooter__logo {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .stSimpleFooter__brand p {
    max-width: 550px;
  }

  .stSimpleFooter__bottomInner {
    width: min(100% - 32px, 900px);
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .stSimpleFooter__container {
    width: min(100% - 24px, 620px);
    padding: 55px 0 45px;
  }

  .stSimpleFooter__main {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 42px;
  }

  .stSimpleFooter__brand {
    grid-column: auto;
    display: block;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--st-footer-border);
  }

  .stSimpleFooter__logo {
    width: 195px;
    margin-bottom: 20px;
  }

  .stSimpleFooter__brand p {
    max-width: 100%;
    font-size: 13px;
  }

  .stSimpleFooter__location {
    padding-bottom: 36px;
    border-bottom: 1px solid var(--st-footer-border);
  }

  .stSimpleFooter__location:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .stSimpleFooter__location h3 {
    min-height: auto;
    margin-bottom: 23px;
    font-size: 20px;
  }

  .stSimpleFooter__maps {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 42px;
  }

  .stSimpleFooter__mapItem iframe {
    height: 230px;
  }

  .stSimpleFooter__bottomInner {
    flex-direction: column;
    width: min(100% - 24px, 620px);
    gap: 6px;
    padding: 23px 0;
    text-align: center;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .stSimpleFooter__mapHeading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .stSimpleFooter__mapHeading h4 {
    font-size: 17px;
  }

  .stSimpleFooter__mapItem iframe {
    height: 210px;
  }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
  .stSimpleFooterReveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .stSimpleFooter__backTop {
    transition: none;
  }
}
.sheetalBranchOption {
  display: grid;
  grid-template-columns: 42px 90px 1fr 42px;
  gap: 18px;
  align-items: center;
}

.sheetalBranchOption__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 78px;
  padding: 8px;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid rgba(57, 109, 57, 0.18);
}

.sheetalBranchOption__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sheetalBranchOption:hover .sheetalBranchOption__logo {
  border-color: #d90000;
}
@media (max-width: 600px) {
  .sheetalBranchOption {
    grid-template-columns: 34px 68px 1fr 30px;
    gap: 11px;
  }

  .sheetalBranchOption__logo {
    width: 68px;
    height: 62px;
    padding: 5px;
  }

  .sheetalBranchOption__content span {
    font-size: 9px;
  }

  .sheetalBranchOption__content h3 {
    font-size: 18px;
  }

  .sheetalBranchOption__content p {
    font-size: 11px;
  }
}
a.footer_main {
    color: white;
    text-decoration: none;
}

p.footer-copyright {
    color: white;
    font-family: Oswald;
}

.order-btn{

position:fixed;

bottom:30px;

left:30px;

display:flex;

align-items:center;

gap:10px;

background: #fc6143;

color:white;

padding:12px 10px;

text-decoration:none;

font-weight:bold;

border-radius:6px;

box-shadow:0 6px 15px rgba(0,0,0,0.3);

z-index:999;

animation:pulse 2s infinite;

transition:0.3s;

color: white;

text-transform: uppercase;


}

.order-btn img{

width: 30px;

height: 30px;

object-fit:contain;
}

.order-btn:hover{

background:#fc6143;

}

/* Pulse Animation */

@keyframes pulse{

0%{
box-shadow:0 0 0 0 rgba(252,97,67,0.7);
}

70%{
box-shadow:0 0 0 20px rgba(197,168,106,0);
}

100%{
box-shadow:0 0 0 0 rgba(197,168,106,0);
}

}

/* Mobile */

@media(max-width:600px){

.order-btn{

bottom:20px;
left:20px;
padding:10px 18px;
font-size:14px;

}

.order-btn img{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
}
.order-btn{
   
    z-index:999;

    gap:10px;

    opacity:0;
    visibility:hidden;

    transform:translateY(30px);

    transition:
    opacity .4s ease,
    transform .4s ease,
    visibility .4s ease;
}


/* Show Class */
.order-btn.show-order-btn{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
@media(max-width:768px){

    .pk-premium-about{
        background-attachment:scroll;
    }

}


/* =====================================================
   FINAL LIVE-SITE SAFETY FIXES
===================================================== */
img { max-width: 100%; }
button { appearance: none; -webkit-appearance: none; }

.sheetalMenuCard__imageWrap {
  padding: 0;
  border: 0;
  color: inherit;
  background-color: #d4aa68;
  cursor: pointer;
}

.sheetalPrimeMobile__menuPopupBtn {
  color: var(--sheetal-black);
}

.sheetalBranchOption {
  grid-template-columns: 42px 90px minmax(0, 1fr) 42px;
}

.sheetalBranchOption__content { min-width: 0; }
.sheetalBranchOption__content span,
.sheetalBranchOption__content h3,
.sheetalBranchOption__content p { overflow-wrap: anywhere; }

.order-btn {
  border: 0;
  cursor: pointer;
}

@media (max-width: 600px) {
  .sheetalBranchPopup {
    padding: 12px;
    overflow-y: auto;
  }

  .sheetalBranchPopup__dialog {
    width: 100%;
    max-width: 430px;
    max-height: calc(100dvh - 24px);
    padding: 58px 14px 18px;
    overscroll-behavior: contain;
  }

  .sheetalBranchPopup__header {
    display: block;
    padding: 0 44px 0 0;
    margin-bottom: 18px;
  }

  .sheetalBranchPopup__titleWrap h2 {
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1.08;
  }

  .sheetalBranchPopup__branches { gap: 10px; }

  .sheetalBranchOption {
    min-height: 102px;
    grid-template-columns: 72px minmax(0, 1fr) 34px;
    gap: 11px;
    padding: 12px 10px 12px 14px;
  }

  .sheetalBranchOption__number { display: none; }

  .sheetalBranchOption__logo {
    width: 72px;
    height: 70px;
    padding: 4px;
  }

  .sheetalBranchOption__content span { font-size: 7px; }
  .sheetalBranchOption__content h3 { font-size: 21px; }
  .sheetalBranchOption__content p { font-size: 9px; }

  .sheetalBranchOption__arrow {
    width: 34px;
    height: 34px;
  }

  .order-btn {
    left: 12px;
    bottom: 12px;
    padding: 9px 12px;
    font-size: 12px;
  }
}
