* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Chewy', cursive;
    background: #f9f5ea;
    box-sizing: border-box;
}

.mobile-nav { 
    display: none;
} 

.hamburger { 
    display: none; 
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 0 100px 0 80px;
    background: #f9f5ea;
    margin: 0 auto;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.nav-link, 
.drop-btn {
    text-decoration: none;
    color: #28529a;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 21px;
}

.navbar a.nav-link,
.navbar a.nav-link:visited,
.navbar a.nav-link:focus {
    text-decoration: none;
    color: #28529a;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    font-size: 21px;
}

.navbar a.nav-link:hover {
    color: #F7C0C3;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 25px;
    padding: 0;
    margin: 0;
}

.nav-link:hover, .drop-btn:hover {
    color: #F7C0C3;
}

.navbar ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar .cart {
    position: relative;   
    margin-left: -100px;    
}

.dropdown {
    position: relative;
}

.drop-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px 20px;
    line-height: 1;
}

.chevron {
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s ease;
    line-height: 1;
}

.dropdown.active .chevron {
    transform: rotate(180deg);
}

header.navbar nav ul li.dropdown {
    position: relative;
}

header.navbar nav ul li .dropdown-menu {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 290px;
    background: #f9f5ea;
    flex-direction: column;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 9999; 
    padding: 15px 0;
}

.dropdown-menu li {
    list-style: none;
    margin-bottom: 10px;
}

.dropdown-menu li:last-child {
    margin-top: -8px;   
    margin-bottom: 5px; 
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #28529a;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.2;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.dropdown-menu a:hover {
    color: #F7C0C3;
}

header.navbar nav ul li.dropdown.active .chevron {
    transform: rotate(180deg);
}

header.navbar nav ul li.dropdown.active .dropdown-menu {
    display: flex;
    visibility: visible;
    opacity: 1;
}

.cart {
    position: relative;
    display: inline-block;
}

.cart i {
    font-size: 28px;
    color: #28529a; 
}

#cart-count {
    position: absolute;
    background: pink;
    border-radius: 50%;
    padding: 3px 7px;
    font-size: 7px;
    top: -15px;
    right: -15px;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    transition: opacity 0.3s ease;
}

.order-review-panel {
    position: fixed;
    top: 0;
    right: -630px;
    width: 100%;
    max-width: 630px;
    height: 100vh; 
    background-color: #ffffff;
    z-index: 2001;
    display: flex;
    flex-direction: column; 
    transition: right 0.3s ease;
    overflow: hidden;
}
      
.order-review-panel.open {
    right: 0;
        
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
   padding: 40px 60px 0;
}

.review-title {
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #28529a;
    margin: 0;
}

.close-review-btn {
    width: 60px;
    height: 60px;
    background-color: #28529a;
    border-radius: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
}

.close-review-btn::after {
    content: '×'; 
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
        }

.review-product-list {
    flex: 1; 
    overflow-y: auto; 
    padding: 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
        

.review-product-item {
    display: flex;
    align-items: center;
    gap: 25px; 
    width: 100%;
}

.review-product-img {
    width: 181px;
    height: 175px;
    border-radius: 19px;
    object-fit: cover;
    flex-shrink: 0;
}

.review-item-details {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    flex-grow: 1;
}

.review-item-name {
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #28529a;
    margin: 0;
}

.review-quantity-delete {
    display: flex;
    align-items: center;
    gap: 20px;
}

.review-quantity-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 186px;
    height: 55px;
    background-color: #ffffff;
    border: 2px solid #28529a;
    border-radius: 20px;
    padding: 0 15px;
}

.review-qty-btn {
    background: none;
    border: none;
    font-family: 'Chewy', cursive;
    font-size: 24px; 
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #28529a;
    cursor: pointer;
}

.review-qty-number {
    font-size: 24px;
    color: #28529a;
}

 .delete-item-btn {
    width: 35px;
    height: 35px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#reviewPanel {
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.review-separator {
   width: 100%; 
    border: 0;
    border-top: 5px solid #f9f5ea;
    margin: 0;
}

.review-footer {
    margin-top: auto; 
    padding-top: 20px;
    border-top: 1px solid #eee;
    background: white; 
}

.review-footer-box {
   width: 100%;
    background-color: #ffffff;
    border-top: 5px solid #f9f5ea;
    padding: 20px 60px 30px; 
    display: flex;
    flex-direction: column;
    gap: 12px; 
    flex-shrink: 0; 
}

.review-subtotal-title, 
.review-subtotal-price {
    font-size: 32px; 
    margin: 0;
}

.review-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-subtotal-title {
    font-size: 38px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #28529a;
    margin: 0;
}

.review-subtotal-price {
    font-size: 38px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #486fb2;
}

.review-summary-box {
    margin-top: 40px; 
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 15px;
}

.review-disclaimer {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #486fb2;
    margin: 0;
}

.review-delivery-title {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #28529a; 
    margin: 5px 0 0; 
}

.review-pill-btn {
   width: 100%;
    height: 55px;
    background-color: #ffffff;
    border: 2px solid #28529a;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    gap: 10px;
    color: #28529a;
    font-family: 'Chewy', cursive;
}

.icon-stroke {
    stroke: #28529a;
    stroke-width: 2;
    fill: none;
}
        
.review-checkout-btn {
    width: 100%;
    max-width: 400px;
    height: 80px;
    background-color: #486fb2;
    border-radius: 300px;
    border: none;
    cursor: pointer;
    margin: 10px auto 0; 
    font-family: 'Chewy', cursive;
    font-size: 24px;
    color: #f9f5ea;
    transition: background-color 0.3s ease;
}

.review-checkout-btn:hover {
    background-color: #28529a; 
    transform: scale(1.02);
}

.custom-input {
   border: none; 
    color: #28529a !important; 
    font-family: 'Chewy', cursive; 
    font-size: 18px;
    cursor: pointer;
    background: transparent;
    outline: none;
    width: 100%;
}

.custom-input::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: static; 
    right: 0;
    top: 0;
    width: auto;
}

.contact-hero {
    width: 100%;
    min-height: 627px; 
    background-image: url('../images/contact/contact_us_banner.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Chewy', cursive; 
    font-size: 64px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    position: relative;
    font-weight: 500;
    display: inline-block;
}

.hero-title .stroke {
    color: transparent;
    -webkit-text-stroke: 8px #28529a;
    top: 0;
    left: 0;
    position: absolute;
     z-index: 1;
    width: 100%;
}

.hero-title .fill {
    color: #f9f5ea; 
    position: relative;
     z-index: 2;
}

.hero-description {
    font-family: 'Chewy', cursive;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    margin-top: 10px;
    position: relative;
    font-weight: 500;
    display: block;
}

.hero-description span {
    display: inline-block;
    position: relative;
}

.hero-description .stroke {
    color: transparent;
    -webkit-text-stroke: 8px #f9f5ea; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-description .fill {
    color: #486fb2;
    position: relative;
    z-index: 2;
} 

.contact-form-section {
    background-color: #f9f5ea; 
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    font-family: 'Chewy', cursive;
}

.form-container {
    width: 100%;
    max-width: 1071px;
    text-align: center;
}

.form-title {
    font-size: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.03em; 
    line-height: 1.5;
    position: relative;
    display: inline-block;
}

.form-title .stroke {
    color: transparent;
    -webkit-text-stroke: 8px #28529a; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.form-title .fill {
    color: #f9f5ea; 
    position: relative;
    z-index: 2;
}

.form-subtitle {
    color: #486fb2;
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 60px; 
    letter-spacing: 0.03em;
}

.contact-form {
    text-align: left;
    margin-top: 20px;
}

.input-group {
    margin-bottom: 55px;
    text-align: left;
    width: 100%;
}

.input-group label {
    display: block;
    color: #28529a;
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.input-group input {
    width: 100%;
    height: 85px; 
    padding: 0 25px;
    border: 2.5px solid #28529a;
    border-radius: 20px; 
    background-color: white;
    font-family: inherit;
    font-size: 22px;
    color: #28529a;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.input-group textarea {
    width: 100%;
    height: 308px;
    padding: 25px;
    border: 2.5px solid #28529a;
    border-radius: 25px; 
    background-color: white;
    font-family: inherit;
    font-size: 22px;
    color: #28529a;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.submit-btn {
    display: block;
    margin: 60px auto 0;
    width: 280px;
    height: 80px;
    background-color: #f7c0c3; 
    color: #28529a;
    border: none;
    border-radius: 300px; 
    font-family: 'Chewy', cursive;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #28529a;
    color: #f9f5ea;
    transform: scale(1.05);
}

.location-modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    align-items: center;
    justify-content: center;
}

.contact-card-size {
    width: 100%;
    max-width: 695px;
    height: auto;
    min-height: 410px;
    background-color: #f9f5ea;
    border-radius: 40px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thanks-title {
    font-family: 'Chewy', cursive;
    font-size: 50px;
    line-height: 1.5;
    color: #28529a;
    letter-spacing: 0.03em;
    margin-bottom: 10px; 
}

.thanks-desc {
    font-family: 'Chewy', cursive;
    font-size: 36px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #28529a;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #28529a;
    opacity: 0.5;
}

.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
    color: #28529a;
    opacity: 0.5;
}

.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
    color: #28529a;
    opacity: 0.5;
}

.contact-form input::-ms-input-placeholder,
.contact-form textarea::-ms-input-placeholder {
    color: #28529a;
    opacity: 0.5;
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
    color: #28529a;
    opacity: 0.5;
}

.location-details-section {
    padding: 100px 0;
    background-color: #ffffff; 
    text-align: center; 
}

.info-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
}

.drop-by-title {
    font-family: 'Chewy', cursive;
    font-size: 50px;
    margin-bottom: 80px; 
    letter-spacing: 0.03em; 
    line-height: 1.5;
    position: relative;
    display: inline-block;
}

.drop-by-title .stroke {
    color: transparent;
    -webkit-text-stroke: 8px #28529a; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    white-space: nowrap; 
    pointer-events: none;
}

.drop-by-title .fill {
    color: #f9f5ea; 
    position: relative;
    z-index: 2; 
    display: block;
}

.info-wrapper {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
}

.side-heading {
    font-family: 'Chewy', cursive;
    text-align: left;
    font-size: 36px; 
    color: #28529a;
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    width: 100%; 
}

.map-layout {
    width: 100%; 
    text-align: center;
    margin-bottom: 80px;
}

.map-content {
    text-align: center;
}

.map-address-centered {
    text-align: center; 
    color: #28529a;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 20px;
    width: 100%;
    display: block; 
}

.centered-block {
    align-self: center; 
    text-align: center !important;
    width: 100%;
    margin-top: 0; 
}

.centered-block h3 {
    text-align: center !important;
}

.social-icons-centered {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.branded-icon-link {
    width: 60px;
    height: 60px;
    background-color: #28529a; 
    border: 3px solid #f9f5ea; 
    border-radius: 13px;      
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(40, 82, 154, 0.1);
}

.branded-icon-link:hover {
    transform: translateY(-5px); 
    background-color: #365fac;   
    
    
    box-shadow: 0 10px 20px rgba(40, 82, 154, 0.3);
    border-color: #ffffff;      
}


.branded-icon-link:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(40, 82, 154, 0.2);
}

.svg-icon {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #ffffff; 
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.whatsapp-fix path:last-child {
    stroke-width: 1.0;
    transform: translate(-0.5px, 0.5px) scale(1.1);
    transform-origin: center;
}

.service-info-centered p strong {
    display: block; 
    font-size: 24px;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: #28529a;
    margin-bottom: 6px; 
}

.service-info-centered p {
    text-align: center !important;
    font-size: 18px;
    color: #28529a;
    line-height: 1.5;
    margin-top: 0;
}

.info-col .block:not(.centered-block) h3,
.info-col .block:not(.centered-block) p,
.info-col .block:not(.centered-block) ul {
    text-align: left;
    width: 100%;
}

.map-img {
    width: 537px; 
    margin-bottom: 15px;
}

.info-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    width: 100%;
    gap: 100px; 
    margin-top: 60px;
    align-items: flex-start;
    flex-direction: row;
}


.info-col {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    width: 100%
}

.info-col:last-child {
    text-align: left;
    min-width: 650px;
}

.block h3 {
    font-family: 'Chewy', cursive;
    font-size: 36px;
    color: #28529a;
    margin-bottom: 15px; 
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-align: left;
}

.block:not(.centered-block) {
    text-align: left;
}

.info-col .block {
    margin-bottom: 0; 
    width: 100%;
}

.centered-block, .notes-block {
    margin-top: 60px; 
}

.info-col:first-child {
    min-width: 470px; 
}

.info-col .block:last-child {
    margin-bottom: 0;
}

.block p {
    text-align: left;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 18px;
    color: #486fb2;
    letter-spacing: 0.03em;
    word-break: keep-all;
}

.block p,
.block li,
.block h4 {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.notes-block {
    margin-top: 80px; 
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.notes-block h3 {
    font-family: 'Chewy', cursive;
    font-size: 36px;
    color: #28529a;
    margin-bottom: 15px;
}

.notes-block h4 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
    color: #28529a;
}

.notes-block ul {
    text-align: left;
    padding-left: 20px;
    color: #28529a;
    list-style-type: disc; 
}

.notes-block li {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.notes-block ul, .notes-block p {
    white-space: normal; 
    width: 100%;
}

.disclaimer {
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color:#28529a;
}

#bttButton {
    position: fixed;
    bottom: 30px; 
    right: 30px;  
    z-index: 2000;
    width: 60px;  
    height: 60px;
    background-color: #28529a; 
    color: #ffffff; 
    border-radius: 50%; 
    cursor: pointer;
    border: none;    
    outline: none;  
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

#bttButton::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 18px solid #ffffff; 
    margin-top: -5px; 
}

#bttButton:hover {
    transform: scale(1.1); 
    background-color: #486fb2; 
}

#bttButton:hover::after {
    border-bottom-color: #ffffff; 
}

#bttButton.show-btt {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 768px) {
    #bttButton {
        bottom: 20px; 
        right: 20px;
        width: 50px;  
        height: 50px;
        border-width: 2px; 
    }
    
    #bttButton::after {
        border-left-width: 8px;
        border-right-width: 8px;
        border-bottom-width: 14px;
        margin-top: -3px;
    }
}

.footer {
    width: 100%;
    background: #f9f5ea;
    padding: 60px 0; 
    display: flex;
    margin: 0;
    border: none;
    box-sizing: border-box;
}

.footer-container {
    width: 100%;
    max-width: 100%; 
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0 80px 0 250px; 
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;  
    align-items: flex-start;
    flex: 0 0 350px;
}

.footer-left, .footer-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 0;
    padding-top: 0;
}

.footer-left .footer-logo {
    width: 180px;
    margin-bottom: 10px;
    margin-top: 0;
    display: block;
}

.footer-section h4 {
    font-size: 28px;
    color: #28529a;
    margin-bottom: 5px;
    letter-spacing: 3%;
    line-height: 1.5;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 3%;
    color: #486fb2;
    margin-bottom: 15px;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 13px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.insta svg {
    stroke: #28529a; 
}

.xhs-blue-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;  
    height: 44px; 
    background: #28529a; 
    border-radius: 13px; 
    overflow: hidden;
}

.xhs-img {
    width: 30px; 
    height: 30px;
    display: block;
    object-fit: contain;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(40, 82, 154, 0.2);
}

.footer-copy {
    font-size: 24px;
    color: #28529a;
    margin-top: 40px;
    letter-spacing: 3%;
    line-height: 1.5;
    white-space: nowrap;
    width: max-content;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    margin-left: 300px; 
    align-items: flex-start; 
}

.footer-right h4 {
    font-size: 28px;
    color: #28529a;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 0.8;
    letter-spacing: 3%;
    margin-top: 0;
    display: block;
}

.footer-right .footer-links a {
    display: block;
    font-size: 28px;
    line-height: 1.5;
    color: #28529a;
    text-decoration: none;
    margin-bottom: 10px;
    letter-spacing: 3%;
}

.footer-right .footer-links a:hover {
    color: #f7c0c3; 
    transition: color 0.3s ease;
}

.footer-right .footer-policies button {
    display: block;
    font-size: 20px;
    color: #486fb2;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 0;
    margin-bottom: 10px;
    font-family: 'Chewy', cursive;
}

.footer-right .footer-policies button:hover {
    text-decoration: underline;
}

.popup {
   display: none; 
    position: fixed; 
    z-index: 3000; 
    left: 0; top: 0;
    width: 100%; height: 100%; 
    background-color: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(3px); 
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-content { 
   background-color: #f9f5ea; 
    padding: 30px; 
    border: 4px solid #28529a; 
    width: 90%; 
    max-width: 400px;
    height: auto; 
    min-height: 200px;
    max-height: 85vh; 
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.policy-body {
    flex-grow: 1;
    overflow-y: hidden; 
    margin-top: 25px; 
    margin-bottom: 20px;
    padding-right: 0; 
    line-height: 1.6;
    font-size: 16px;
}

.popup-footer {
    text-align: center;
    padding-top: 10px;
    border-top: 2px dashed #28529a; 
}

.close-btn-bottom {
    background-color: #28529a;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-family: 'Chewy', cursive;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.close-btn-bottom:hover {
    background-color: #ffb6c1; 
    transform: scale(1.05);
}

.close-popup {
    position: absolute;
    top: 5px; 
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #28529a;
    line-height: 1;
}

.close-popup:hover {
    color: #f7c0c3;
}

@media screen and (max-width: 768px) {

body {
    overflow-x: hidden;
    width: 100vw;
}

.desktop-nav { 
    display: none !important; 
} 

.hamburger { 
    display: block !important; 
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 245px;
    background-color: #f9f5ea;
    z-index: 9999;
    display: none;
    flex-direction: column;
    padding-bottom: 20px;
}

.mobile-nav.active {
    display: flex;
}

.nav-close-row {
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: flex-end;
}

.close-trigger {
    font-size: 18px;
    color: #28529a;
    cursor: pointer;
}

.nav-divider {
    width: 100%;
    height: 1px;
    background-color: #28529a;
}

.nav-item {
    display: block;
    padding: 12px 20px;
    font-size: 18px;
    color: #28529a;
    text-decoration: none;
}

.navbar {
    width: 100% !important;
    max-width: 100vw !important;
    height: 60px !important;
    padding: 0 15px !important;
    position: fixed !important;
    top: 0;
    left: 0;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: #f9f5ea !important;
    z-index: 2000;
}

.navbar ul,
.navbar nav,
.nav-link {
    display: none !important;
}

.hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 3px;
    width: 14px;
}

.hamburger span {
    width: 14px;
    height: 2px;
    background-color: #28529a;
}

.navbar .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    margin: 0;
}

.navbar .logo img {
    width: 60px;
    height: 60px;
}

.navbar .cart {
    display: flex !important;
    width: 17px;
    height: 17px;
    position: relative;
}

.navbar .cart svg, 
.navbar .cart i {
    width: 17px;
    height: 17px;
    font-size: 17px;
    }

#cart-count {
    width: 9px;
    height: 9px ;
    min-width: 9px;
    font-size: 5px;
    background: #F7C0C3;
    top: -4px;
    right: -5px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    }

.order-review-panel {
    width: 100%;
    max-width: 85%;
    height: 100dvh; 
    position: fixed;
    top: 0;
    right: -85%;
    background-color: #ffffff; 
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: right 0.3s ease-in-out;
}

.order-review-panel.open {
    right: 0;
}

.review-header {
    flex-shrink: 0 !important;
    padding: calc(20px + env(safe-area-inset-top)) 20px 10px 20px !important;
    background-color: #ffffff ;
}

.review-header, .review-product-list, .review-footer-box {
        padding: 15px !important;
}

.review-product-list {
    flex-grow: 1 ;
    overflow-y: auto ;
    padding: 10px 20px ;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.review-title {
    font-size: 24px !important;
}

.close-review-btn {
    width: 45px !important;
    height: 45px !important;
    border-radius: 10px !important;
}

.close-review-btn::after {
    font-size: 30px !important;
}

.review-product-item {
    gap: 15px !important;
    align-items: flex-start !important;
}

.review-product-img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 8px;
}

.review-item-info {
    flex: 1;
}

.review-item-name {
    font-size: 16px !important; 
    margin-bottom: 5px !important;
}

.review-quantity-container {
     width: 90px; 
    height: 30px;
}

.review-qty-btn, .review-qty-number {
    font-size: 16px;
}

.delete-item-btn svg {
    width: 24px;
    height: 24px;
}

.review-footer-box {
    flex-shrink: 0;
    background-color: #ffffff;
    border-top: 2px solid #f9f5ea;
    padding: 15px 20px calc(20px + env(safe-area-inset-bottom)) 20px !important;
}
.review-subtotal-title {
    font-size: 24px;
}

.review-subtotal-price {
    font-size: 24px;
}

.review-subtotal-title, .review-subtotal-price {
    font-size: 20px;
}

.review-disclaimer {
    font-size: 12px;
    margin-bottom: 10px;
}

.review-delivery-title {
    font-size: 16px;
    margin-top: 0;
}

.review-pill-btn {
    height: 40px;
    font-size: 12px;
    margin-bottom: 8px ;
}

.review-checkout-btn {
    height: 55px;
    font-size: 18px;
    margin-top: 10px;
    border-radius: 50px;
}

.review-pill-btn,
.review-checkout-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
}

.toggle-btn {
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border: 1px solid #28529a;
    color: #28529a;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    background-color: #f9f5ea;
    padding-bottom: 10px;
}

.dropdown-content a {
    display: block;
    padding: 8px 40px;
    font-size: 16px;
    color: #28529a;
    text-decoration: none;
}

.contact-hero {
    height: 244px !important; 
    min-height: auto !important; 
    width: 100% !important;
    background-image: url('../images/contact/contact_us_banner.jpg');
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    margin-top: 60px; 
    padding: 0 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.hero-content {
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: 28px;
    line-height: 1.5;
    position: relative;
    display: inline-block;
}

.hero-title .stroke,
.form-title .stroke {
    -webkit-text-stroke: 4px #28529a;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-title .fill,
.form-title .fill {
    position: relative;
    z-index: 2;
    color: #f9f5ea;
}

.hero-description {
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.5;
    padding: 0 5px;
}

.hero-description .stroke {
    -webkit-text-stroke: 2px #f9f5ea;
}

.contact-form-section {
    background-color: #f9f5ea;
    width: 100%;
    padding: 40px 15px;
    box-sizing: border-box;
}

.form-container {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.form-title {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.form-title .stroke {
    -webkit-text-stroke: 4px #28529a; 
}

.form-subtitle {
    font-size: 9px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #486fb2;
    text-align: center;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-group {
    width: 100%;
    max-width: 320px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 14px;
    margin-bottom: 5px;
    text-align: left;
    width: 100%;
}

.input-group input,
.input-group textarea {
    width: 100%;
    box-sizing: border-box;
    height: 41px;
    font-size: 14px;
    border: 2px solid #28529a;
    border-radius: 12px;
    padding: 0 15px;
    background-color: #ffffff;
    color: #28529a;
    outline: none;
}

.input-group textarea {
    height: 80px;
    padding-top: 10px;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(40, 82, 154, 0.5);
    background: transparent;
}

.input-group input:-webkit-autofill,
.input-group textarea:-webkit-autofill {
    -webkit-text-fill-color: #28529a;
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

.submit-btn {
    width: 100%;
    max-width: 165px;
    height: 45px;
    background-color: #f7c0c3;
    border-radius: 300px;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #28529a;
}


.location-details-section {
    padding: 20px 15px;
    background-color: #ffffff;
    text-align: center;
}

.info-wrapper {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.drop-by-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.drop-by-title .stroke {
    -webkit-text-stroke: 4px #28529a;
}

.side-heading {
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
}


.map-layout {
    margin-bottom: 20px;
    padding: 0 16px; 
}

.map-img {
    width: 100%;
    max-width: 343px;
    height: auto;
    margin: 0 auto 5px;
    display: block;
}
   
.map-address-centered {
    font-size: 12px;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 10px; 
}

.info-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    margin-top: 0 !important;
}

.block h3 {
    font-size: 16px;
    text-align: left;
    margin-bottom: 4px;
}

.block p,
.block li,
.disclaimer {
    font-size: 10px; 
    text-align: left;
    line-height: 1.5;
    margin-bottom: 10px;
}

.notes-block {
    margin-top: 5px;
}

.notes-block ul {
    padding-left: 15px;
}

.notes-block h4 {
    font-size: 12px;
    text-align: left;
    margin-top: 15px;
}

.centered-block {
    margin-top: 20px;
    text-align: center;
}

.centered-block h3 {
    font-size: 16px;
    text-align: center;
}

.social-icons-centered {
    display: flex;
    flex-wrap: wrap; 
    gap: 15px;
    margin: 15px 0;
}

.branded-icon-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
}

.svg-icon {
    width: 24px;
    height: 24px;
}

.service-info-centered p strong {
    font-size: 12px;
    display: block;
    text-align: center;
}

.service-info-centered p {
    font-size: 9px;
    text-align: center;
    line-height: 1.5;
}

footer {
    width: 100%;
    padding: 40px 20px;
    background-color: #f9f5ea;
    height: auto;
    min-height: 550px;
    box-sizing: border-box;
}

.footer-container {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: nowrap;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer-left,
.footer-right {
    width: 100%;
    max-width: 100%;
}

.footer-left,
.footer-right {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


.footer-left {
    flex: 1;
    gap: 20px;
}

.footer-left .footer-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-logo-link {
    display: inline-block;
    width: auto;
}

.footer-section h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.footer-section p {
    font-size: 9px;
    line-height: 1.4;
    margin-bottom: 10px;
}


.footer-socials {
    gap: 10px;
    margin-top: 15px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.social-icon svg {
    width: 32px;
    height: 32px;
}

.xhs-blue-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.xhs-img {
    width: 22px;
    height: 22px;
}

.footer-copy {
    font-size: 9px;
    margin-top: 20px;
    white-space: normal;
}


.footer-right {
    flex: 1;
    margin-left: 0;
}

.footer-right h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-right .footer-links a {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
    display: block;
}

.footer-right .footer-policies {
    margin-top: 5px;
}

.footer-right .footer-policies button {
    font-size: 10px;
    margin-bottom: 5px;
    display: block;
}
    
#policy-popup .popup-content {
    max-width: 320px;
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 70vh;
    padding: 25px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-sizing: border-box;
}

#policy-text strong {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
    text-align: left;
}

#policy-text span {
    font-size: 14px;
    line-height: 1.5;
    display: block;
    text-align: left;
}

#policy-popup .popup-footer {
    width: 100%;
    display: block;
    border-top: 2px dashed #28529a;
    margin-top: 15px;
    padding-top: 15px;
    text-align: center;
}

#policy-popup .close-btn-bottom {
    display: inline-block;
}

#policy-popup .close-popup {
    font-size: 26px;
    top: 10px;
    right: 15px;
    z-index: 10;
}

#bttButton {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-width: 2px;
}

#bttButton::after {
    border-left-width: 8px;
    border-right-width: 8px;
    border-bottom-width: 14px;
    margin-top: -3px;
}

.location-modal, .popup {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.modal-card.contact-card-size, .popup-content {
    width: 233px !important;
    height: 135px !important;
    min-height: 135px !important;
    background-color: #f9f5ea !important;
    border: 3px solid #28529a !important; 
    border-radius: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    text-align: center !important;
    position: relative;
}

.thanks-title, .popup-content h2 {
    font-family: 'Chewy', cursive;
    font-size: 18px !important;
    color: #28529a !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
}

.thanks-desc, .policy-body {
    font-family: 'Chewy', cursive;
    font-size: 16px !important;
    color: #486fb2 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.popup-footer, .close-btn-bottom {
    display: none !important;
}

.close-popup {
    font-size: 20px !important;
    top: 5px !important;
    right: 10px !important;
}

#contact-thanks-modal .modal-card, 
#contact-thanks-modal .popup-content {
    width: 233px !important;
    height: 135px !important;
    min-height: 135px !important;
}

 #policy-popup .popup-content {
    width: 320px !important; 
    height: auto !important; 
    min-height: 200px !important;
    max-height: 70vh !important; 
    padding: 25px 20px !important;
    overflow-y: auto !important; 
    align-items: flex-start !important; 
    text-align: left !important;        
}
   
#policy-text strong {
    font-size: 18px !important;
    margin-bottom: 10px !important;
    display: block !important;
    text-align: left !important;
}
    
#policy-text span {
    font-size: 14px !important; 
    line-height: 1.5 !important;
    display: block !important;
    text-align: left !important; 
}
#policy-popup .popup-footer {
    display: block !important; 
    border-top: 2px dashed #28529a !important; 
    margin-top: 15px !important;
    padding-top: 15px !important;
    width: 100% !important;
    text-align: center !important; 
}

#policy-popup .close-btn-bottom {
    display: inline-block !important; 
}

#policy-popup .close-popup {
    font-size: 26px !important;
    top: 10px !important;
    right: 15px !important;
     z-index: 10;
}
}

@media screen and (min-width: 769px) and (max-width: 1024px) {

body {
    width: 100%;
    overflow-x: hidden;
}

.mobile-nav, 
.hamburger { 
    display: none !important; 
}

.desktop-nav { 
    display: block !important; 
}

   
.navbar {
    position: sticky; 
    height: 80px; 
    padding: 0 30px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}

    
.navbar .logo {
    position: static !important;
    transform: none !important;
    margin-right: auto;
}

.navbar .logo img {
    width: 100px; 
    height: auto;
}

.nav-link {
    display: flex;
    font-size: 17px; 
    color: #28529a;
    text-decoration: none;
    padding: 8px 10px; 
    white-space: nowrap; 
}

.navbar .cart {
    display: flex;
    margin-left: 10px; 
}

.navbar .cart i {
    font-size: 28px !important;
    width: auto;
    height: auto;
}

#cart-count {
    width: 18px;
    height: 18px;
    font-size: 10px;
    background: #F7C0C3;
    top: -8px;
    right: -10px;
    display: flex;
}

.order-review-panel {
    width: 450px; 
    max-width: 450px;
    right: -450px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1); 
}

.order-review-panel.open {
    right: 0;
}

.review-header {
    padding: 30px 40px 10px 40px;
}

.review-product-list {
    padding: 20px 40px;
}

.review-product-img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
}

.review-item-name {
    font-size: 20px;
}

.review-footer-box {
    padding: 20px 40px;
}

.contact-hero {
    min-height: 500px; 
    padding: 0 30px;
}
   
.hero-title {
    font-size: 52px; 
}

.hero-title .stroke {
    -webkit-text-stroke: 6px #28529a; 
}

    
.hero-description {
    font-size: 24px; 
    margin-top: 5px;
}

   
.hero-description .stroke {
    -webkit-text-stroke: 6px #f9f5ea; 
}

   
.hero-content {
     max-width: 900px;
}

.contact-form-section {
    padding: 60px 40px;
}

.form-container {
     max-width: 850px; 
 }

    
.form-title {
    font-size: 42px; 
}

.form-title .stroke {
    -webkit-text-stroke: 6px #28529a; 
}

.form-subtitle {
    font-size: 20px; 
    margin-bottom: 40px;
}

  
.input-group {
     margin-bottom: 35px; 
}

.input-group label {
    font-size: 24px; 
    margin-bottom: 10px;
}

.input-group input {
    height: 70px; 
    font-size: 20px;
    border-radius: 15px;
}

.input-group textarea {
    height: 220px; 
    font-size: 20px;
    border-radius: 20px;
}

   
.submit-btn {
    margin-top: 40px;
    width: 240px; 
    height: 70px; 
    font-size: 22px;
}

.contact-card-size {
        max-width: 600px;
        min-height: 350px;
        padding: 30px;
        border-radius: 30px;
}

.thanks-title {
        font-size: 40px;
}

.thanks-desc {
    font-size: 28px; 
}

  
.location-details-section {
     padding: 60px 0; 
}

.drop-by-title {
    font-size: 40px;
    margin-bottom: 50px;
}

.drop-by-title .stroke {
    -webkit-text-stroke: 6px #28529a; 
}

    
.info-wrapper {
     padding: 0 30px;
}

.info-grid {
    display: flex; 
    flex-direction: column; 
    align-items: center;
    gap: 50px; 
    margin-top: 40px;
}

.info-col, 
.info-col:first-child, 
.info-col:last-child {
    min-width: 100%; 
    text-align: center;
    align-items: center;
}

.map-img {
    width: 100%;
    max-width: 500px; 
    height: auto;
}

    
.block h3, 
.side-heading, 
.notes-block h3 {
    font-size: 30px; 
    text-align: center !important;
}

.block p, 
.block li, 
.map-address-centered,
.service-info-centered p {
    font-size: 17px;
    text-align: center !important;
}

.notes-block ul {
    display: inline-block; 
    text-align: left; 
    max-width: 90%;
}


.branded-icon-link {
    width: 55px;
    height: 55px;
}

footer {
    padding: 80px 60px;
    min-height: auto;
}

.footer-container {
    padding: 0 40px; 
    justify-content: center; 
    gap: 80px;
    flex-wrap: nowrap;
}

.footer-left {
    flex: 0 0 320px; 
}

.footer-right {
    margin-left: 0; 
    flex: 0 0 auto;
}

.footer-section h4, 
.footer-right h4, 
.footer-right .footer-links a {
    font-size: 22px; 
}

.footer-section p {
    font-size: 14px; 
}

.footer-copy {
    font-size: 18px; 
    margin-top: 30px;
}

.footer-right .footer-policies button {
    font-size: 16px; 
}


.footer-left .footer-logo {
    width: 150px;
}


.footer-section h4 {
    margin-bottom: 10px;
}

.footer-section p {
    max-width: 350px;
    margin-bottom: 15px;
}

.footer-socials {
    gap: 15px;
}


.footer-right .footer-links a {
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-right .footer-policies button {
    margin-bottom: 8px;
}


#policy-popup {
    display: none; 
    align-items: center;
    justify-content: center;
}

#policy-popup .popup-content {
    width: 450px; 
    max-width: 90%; 
    padding: 35px;
    
    height: auto; 
    max-height: 70vh; 
    
    margin: auto;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

#policy-text strong {
    font-size: 22px; 
    margin-bottom: 12px;
}

#policy-text span {
    font-size: 15px;
    line-height: 1.5;
}

#policy-popup .close-popup {
    font-size: 28px;
    top: 15px;
    right: 20px;
}

#bttButton {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-width: 2px;
}

#bttButton::after {
    border-left-width: 8px;
    border-right-width: 8px;
    border-bottom-width: 14px;
    margin-top: -3px;
}
}