* {
    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;
}

.events-hero {
    width: 100%;
    height: 625px; 
    margin: 0 auto; 
    background-image: url('../images/events/banner.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
}


.hero-inner-container {
    width: 100%;
    max-width: 100%;
    padding-left: 40px; 
    box-sizing: border-box;
}

.hero-content {
    text-align: left; 
}


.hero-title {
    font-family: 'Chewy', cursive; 
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    position: relative;
    font-weight: 500;
    display: inline-block;
}

.hero-title .stroke {
    color: transparent;
    -webkit-text-stroke: 5px #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: 15px; 
    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;
}

.popups-section {
    background-color: #F7C0C3;
    width: 100%;
    padding: 80px 0;
}

.popups-container {
    width: 100%;
    box-sizing: border-box;
}

.popups-header {
    padding-left: 40px;
    margin-bottom: 50px;
}

.popup-title {
    font-family: 'Chewy', cursive;
    font-size: 50px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    position: relative;
    display: inline-block;
}

.popup-title .stroke {
    color: transparent;
    -webkit-text-stroke: 8px #28529a;
    position: absolute;
    z-index: 1;
}

.popup-title .fill {
    color: #f9f5ea;
    position: relative;
    z-index: 2;
}

.popup-description {
    font-family: 'Chewy', cursive;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    margin-top: 10px;
    max-width: 900px;
    position: relative;
}

.popup-description .fill {
    color: #486fb2;
    position: relative;
    z-index: 2;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.carousel-window {
    width: 100%;
    max-width: 1260px; 
    overflow: hidden;
}

.events-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.nav-arrow {
    background: transparent;
    color: #28529a;
    border: none;
    cursor: pointer;
    font-size: 50px; 
    font-family: 'Chewy', cursive;
    display: flex;
    align-items: center;
    justify-content: center;
}


.event-card {
    text-align: center;
    width: 100%;
    max-width: 400px;
    flex-shrink: 0;
}

.event-square {
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 19px;
    margin-bottom: 20px;
    object-fit: cover; 
    background-color: #f9f5ea; 
    display: block;
}

.event-title {
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #28529a;
    margin-bottom: 10px;
}

.event-details {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #486fb2;
}

.partnerships-section {
    background-color: #f9f5ea; 
    width: 100%;
    padding: 100px 0;
    text-align: center;
}

.partnerships-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partnership-title {
    font-family: 'Chewy', cursive;
    font-size: 50px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.partnership-title .stroke {
    color: transparent;
    -webkit-text-stroke: 8px #28529a;
    position: absolute;
    z-index: 1;
    left: 0;
    width: 100%;
}

.partnership-title .fill {
    color: #f9f5ea;
    position: relative;
    z-index: 2;
}

.partnership-subtitle {
    font-family: 'Chewy', cursive;
    font-size: 32px;
    color: #28529a;
    line-height: 1.5;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

.partnership-description {
    font-family: 'Chewy', cursive;
    font-size: 18px;
    color: #486fb2;
    line-height: 1.5;
    letter-spacing: 0.03em;
    max-width: 910px;
    margin: 0 auto 60px auto;
}

.partnership-images {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.collab-square {
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: 19px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(40, 82, 154, 0.1);
}

.collab-square img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.vlog-section {
    background-color: #f9f5ea;
    padding: 100px 0;
    text-align: center;
}

.vlog-title {
    font-family: 'Chewy', cursive;
    font-size: 50px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    position: relative;
    display: inline-block;
}

.vlog-title .stroke {
    color: transparent;
    -webkit-text-stroke: 8px #28529a;
    position: absolute;
    width: 100%;
    left: 0;
}

.vlog-title .fill { 
    color: #f9f5ea; 
    position: relative; 
    z-index: 2; 
}

.vlog-subtitle { 
    font-size: 24px; 
    color: #486fb2; 
    margin-top: 10px; 
    font-family: 'Chewy', cursive; 
}

.vlog-description {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #486fb2;
    margin-bottom: 60px;
}

.vlog-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.vlog-card-wrapper { 
    width: 100%;
    max-width: 470px; 
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.vlog-card {
    width: 100%;
    height: 700px;
    border-radius: 19px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    pointer-events: auto;
}

.vlog-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vlog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.vlog-card:hover .vlog-overlay { background: rgba(0, 0, 0, 0.4); }

.play-circle {
    width: 138px;
    height: 138px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-triangle {
    width: 76px;
    height: 76px;
    background-color: #f7c0c3;
    border-radius: 3px;
    clip-path: polygon(20% 10%, 20% 90%, 95% 50%);
}


.vlog-card-title {
    font-size: 28px;
    color: #28529a;
    margin-top: 25px;
    margin-bottom: 10px;
}

.vlog-card-text {
    font-size: 18px;
    color: #486fb2;
    line-height: 1.5;
    padding: 0 10px;
}

.find-us-section {
    background-color: #f9f5ea;
    padding: 100px 0;
    width: 100%;
    text-align: center; 
}

.find-title {
    font-family: 'Chewy', cursive;
    font-size: 50px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.find-title .stroke {
    color: transparent;
    -webkit-text-stroke: 8px #28529a;
    position: absolute;
    width: 100%;
    left: 0;
}

.find-title .fill { 
    color: #f9f5ea; 
    position: relative; 
    z-index: 2; 
}

.find-description {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #486fb2;
    margin-bottom: 80px;
}


.locations-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 60px;
    width: 100%;
    margin-bottom: 80px;
}

.location-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center; 
    justify-content: center; 
    gap: 40px; 
    width: 100%;
}

.location-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    flex-shrink: 0;
}

.location-square {
    width: 100%;
    height: 100%;
    border-radius: 19px;
    object-fit: cover;
}


.pink-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #f7c0c3;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.pink-pin:hover { 
    transform: translate(-50%, -50%) scale(1.1); 
}


.location-info-box {
    border: 3px solid #28529a;
    border-radius: 300px; 
    padding: 45px 60px;
    width: 550px; 
    text-align: center;
    background-color: transparent;
}

.info-title {
    font-size: 24px;
    line-height: 2.0;
    letter-spacing: 3%;
    color: #28529a;
}

.info-text {
    font-size: 18px;
    line-height: 2.0;
    letter-spacing: 3%;
    color: #486fb2;
}

.location-modal {
    display: none; 
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.modal-card {
    background: #f9f5ea;
    width: 90%;
    max-width: 695px;
    padding: 60px;
    border-radius: 19px;
    text-align: center;
}

#modal-location-title { 
    font-size: 36px; 
    color: #28529a; 
    margin-bottom: 10px; 
}

#modal-location-time { 
    font-size: 30px; 
    color: #486fb2; 
    margin-bottom: 40px; 
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-preorder, .btn-close {
    height: 63px;
    border: none;
    border-radius: 20px;
    background-color: #f7c0c3;
    color: #f9f5ea;
    font-size: 18px;
    font-family: 'Chewy', cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}
.btn-preorder { width: 239px; }
.btn-close { width: 131px; }

.collab-form-section {
    background-color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
}

.collab-container {
    max-width: 900px; 
    margin: 0 auto;
    padding: 0 20px;
}

.collab-title {
    font-family: 'Chewy', cursive;
    font-size: 50px;
    line-height: 1.5;
    position: relative;
    display: inline-block;
}
.collab-title .stroke { 
    color: transparent; 
    -webkit-text-stroke: 8px #28529a; 
    position: absolute; 
    width: 100%; 
    left: 0; 
}

.collab-title .fill { 
    color: #f9f5ea; 
    position: relative; 
    z-index: 2; 
}

.collab-description {
    font-size: 24px;
    color: #486fb2;
    margin-bottom: 50px;
    line-height: 1.5;
}

.work-together-form { 
    text-align: left; 
    max-width: 1071px;
    margin: 0 auto;
}

.required-note { 
    color: #486fb2; 
    font-size: 24px; 
    line-height: 1.5;
    letter-spacing: 0.03em;
    margin-bottom: 30px; 
}

.form-row { 
    display: flex; 
    flex-wrap: wrap;
    gap: 30px; 
    margin-bottom: 40px; 
}
.form-group { 
    flex: 1 1 45%; 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
    margin-bottom: 40px; }

.form-group.full { 
    width: 1 1 100%; 
}

.form-group label {
    font-family: 'Chewy', cursive;
    font-size: 24px;
    color: #28529a;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    background-color: #f9f5ea;
    border: 2px solid #28529a;
    border-radius: 20px;
    padding: 0 30px;
   width: 100%;
   box-sizing: border-box;
   display: flex;
   font-family: 'Chewy', cursive;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #486fb2;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #496fb2;
    opacity: 1; 
}

.form-group select {
    appearance: none; 
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23486fb2'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 25px center; 
    background-size: 40px;
}


.form-group.full input {
    max-width: 1071px;
    height: 85px;
}

.form-row .form-group input,
.form-row .form-group select {
    max-width: 525px;
    height: 85px;
    border-radius: 20px;
}

.work-together-form input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23486fb2'%3E%3Cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z'/%3E%3C/svg%3E");
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-right: 10px; 
}

.business-box {
    max-width: 1071px;
    height: 274px;
    padding-top: 20px !important; 
}

.notes-box {
    max-width: 1071px;
    height: 272px;
    padding-top: 20px !important;
}

.location-box {
    max-width: 1071px;
    height: 142px;
}

.upload-btns { 
    display: flex; 
    gap: 15px; 
    margin: 15px 0; 
}

.upload-btn {
    width: 100%;
    max-width: 295px;
    height: 85px;
    background: #f9f5ea;
    border: 1.5px solid #28529a;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28529a;
    cursor: pointer;
    font-family: 'Chewy', cursive;
    font-size: 20px;
}

.upload-section p:first-child {
    font-family: 'Chewy', cursive;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #28529a; 
    margin-bottom: 20px;
}

.upload-limit {
    font-family: 'Chewy', cursive;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #486fb2; 
    margin-top: 15px;
}

.upload-btn.file-attached {
    background-color: #f9f5ea; 
    border-color: #486fb2;
    color: #f9f5ea;
}

.submit-btn {
    display: block;
    margin: 60px auto 0;
    width: 280px;
    height: 80px;
    background-color: #f7c0c3;
    border: none;
    border-radius: 300px; 
    color: #28529a;
    font-family: 'Chewy', cursive;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.submit-btn:hover { 
    transform: scale(1.05); 
}


.thanks-title {
    font-family: 'Chewy', cursive;
    font-size: 50px;
    line-height: 1.5;
    letter-spacing: 3%;
    color: #28529a;
    margin-bottom: 10px;
}
.thanks-desc {
    font-family: 'Chewy', cursive;
    font-size: 36px;
    line-height: 1.5;
    letter-spacing: 3%;
    color: #28529a;
    margin-bottom: 30px;
}

#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;
}

.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;
}

.events-hero {
    height: 246px !important;
    width: 100%;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    display: flex;
}

.hero-inner-container { 
    padding-left: 20px; 
    width: 100%;
    box-sizing: border-box; 
}

.hero-title { 
    font-size: 28px !important; 
    display: block;
    width: 100%; 
}

.hero-title .stroke { 
    -webkit-text-stroke: 2px #28529a;
}

.hero-description { 
    font-size: 14px !important; 
    margin-top: 5px;
    display: block;
    width: 100%; 
}

.hero-description .stroke { 
    -webkit-text-stroke: 2px #f9f5ea;
} 

.popups-section {
    background-color: #f7c0c3;
    padding: 20px 0 10px 0;
    width: 100%;
    box-sizing: border-box;
}

.popups-header { 
    padding: 0 20px; 
    text-align: center; 
    margin-bottom: 15px; 
    width: 100%;
    box-sizing: border-box;
}

.popup-title { 
    font-size: 24px !important; 
    display: inline-block;
    margin-bottom: 5px;
    max-width: 100%;
}

.popup-title .stroke { 
    -webkit-text-stroke: 2px #28529a; 
}

.popup-description { 
    font-size: 9px !important; 
    text-align: center;
    margin: 10px auto 0;
    max-width: 280px;
    width: 100%; 
    line-height: 1.5;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 2px;
    box-sizing: border-box;
    margin-bottom: 0;
}

.carousel-window {
    width: 100%; 
    max-width: 310px;
    overflow: hidden;
    margin: 0 auto;
    box-sizing: border-box;
}

.events-slider {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease-in-out;
    width: max-content; 
}

.event-card {
    width: 100%;
    max-width: 95px; 
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5px;
}

.event-square {
    width: 100%;
    max-width: 95px;
    height: 95px; 
    border-radius: 19px;
    margin-bottom: 8px;
    object-fit: cover;
}
    
.event-title { 
    font-size: 9px !important;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: visible;
    margin-bottom: 2px;
    color: #28529a;
}
    
.event-details { 
    font-size: 7px !important; 
    text-align: center; 
    white-space: nowrap;
    color: #486fb2;
    margin-bottom: 0;
}

.nav-arrow {
    font-size: 20px;
    background: none;
    border: none;
    color: #28529a;
    padding: 0 5px;
    cursor: pointer;
}

.partnerships-section, 
.vlog-section {
    padding: 30px 0 !important;
    background-color: #f9f5ea;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box; 
}

.partnership-title {
    font-size: 24px !important;
    margin-bottom: 5px;
    width: 100%;
}

.partnership-title .stroke {
    -webkit-text-stroke: 2px #28529a;
}

.partnership-subtitle {
    font-size: 12px !important;
    margin-bottom: 10px;
    width: 100%;
}

.partnership-description {
    font-size: 9px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    width: 100% !important; 
    max-width: 320px !important;
    margin: 0 auto 20px !important;
    display: block !important;
}

.partnership-description br {
    display: inline !important;
    content: ' ' !important;
}

.partnership-images {
    display: flex; 
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.collab-square {
    width: 100%;
    max-width: 183px; 
    height: 183px;
    border-radius: 19px;
}

.vlog-title {
    font-size: 24px !important;
    width: 100%;
}

.vlog-title .stroke { 
    -webkit-text-stroke: 2px #28529a; 
}

.vlog-subtitle {
    font-size: 9px !important;
    color: #486fb2;
    padding: 0 5px;
    margin-bottom: 5px;
    text-align: center;
    line-height: 1.5;
    width: 100%;
    box-sizing: border-box;
}

.vlog-description {
    font-size: 9px !important;
    padding: 0 5px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

.vlog-grid {
    display: flex; /* ensure structure */
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.vlog-card-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.vlog-card {
    width: 100%;
    max-width: 170px; 
    height: 332px;
    border-radius: 19px;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.vlog-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 19px;
}

.vlog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.vlog-card-title {
    font-size: 12px !important;
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
}

.vlog-card-text {
    font-size: 9px !important;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.play-circle {
    width: 53px !important;
    height: 53px !important;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-triangle {
    width: 29px !important;
    height: 29px !important;
    background-color: #f7c0c3;
    clip-path: polygon(25% 15%, 25% 85%, 90% 50%);
}

.find-us-section {
    background-color: #f9f5ea;
    width: 100%;
    padding: 40px 10px;
    overflow: hidden;
}

.find-us-container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
}

.find-title {
    font-size: 24px;
    text-align: center;
    margin: 0 0 10px;
}

.find-title .stroke {
    -webkit-text-stroke: 2px #28529a;
}

.find-description {
    font-size: 9px;
    color: #486fb2;
    text-align: center;
    line-height: 1.5;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 255px;
    white-space: normal;
    word-break: normal;
}

.find-description span,
.find-description .desc-line-2 {
    display: inline;
    white-space: normal;
}

.find-description br {
    display: none;
}

.locations-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.location-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    padding: 0 5px;
}

.location-image-wrapper {
    width: 100%;
    max-width: 130px;
    height: 130px;
    flex-shrink: 0;
    position: relative;
}

.location-square {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.pink-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: #f7c0c3;
    border: 2px solid #28529a;
    border-radius: 50%;
    cursor: pointer;
}

.location-info-box {
    width: 100%;
    max-width: 155px;
    height: 65px;
    border: 1px solid #28529a;
    border-radius: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    flex-shrink: 0;
}

.info-title {
    font-size: 7px;
    color: #28529a;
    margin: 0;
    text-align: center;
    font-weight: bold;
}

.info-text {
    font-size: 6px;
    color: #486fb2;
    margin-top: 2px;
    line-height: 1.5;
    text-align: center;
}

.location-modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-card {
    background: #f9f5ea;
    width: 100%;
    max-width: 232px;
    height: 138px;
    border-radius: 19px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    transform: scale(0.9);
}

#modal-location-title {
    font-size: 14px;
    color: #28529a;
    margin-bottom: 5px;
}

#modal-location-time {
    font-size: 12px;
    color: #486fb2;
    margin-bottom: 10px;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    flex-wrap: nowrap;
}

.btn-preorder,
.btn-close {
    height: 33px;
    border-radius: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-preorder {
    width: 101px;
    height: 33px;
    background-color: #f7c0c3; 
    color: #f9f5ea;
    border-radius: 10px;
    font-size: 12px ;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-close {
    width: 68px;
    height: 33px;
    background-color: #f7c0c3;
    color: #f9f5ea;
    border-radius: 10px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collab-form-section {
        padding: 40px 0;
        background-color: #ffffff;
}

.collab-container {
    padding: 0 18px;
}

.collab-title {
    font-size: 24px;
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

.collab-title .stroke {
    -webkit-text-stroke: 2px #28529a;
}

.collab-description {
    font-size: 9px;
    text-align: center;
    margin-bottom: 15px;
}

.required-note {
    font-size: 12px;
    text-align: center;
    margin-bottom: 15px;
}

.work-together-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.form-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.form-group {
    width: 100%;
    max-width: 339px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.form-group label {
    font-size: 14px;
    text-align: left;
    display: block;
    margin-bottom: 5px;
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 339px;
    border-radius: 10px;
    border: 2px solid #28529a;
    font-size: 14px;
    padding: 0 10px;
    box-sizing: border-box;
    color: #486fb2;
    background-color: #f9f5ea;
}

.form-group input,
.form-group select {
    height: 41px !important;
}

.form-group select {
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%2328529a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 9 6 6 6-6"/></svg>') no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select {
        font-size: 14px;
        color: #486fb2;
        background-color: #f9f5ea;
        opacity: 1;
}

.work-together-form input[type="date"]::-webkit-calendar-picker-indicator {
        width: 18px;
        height: 18px;
}

.business-box {
    height: 126px;
    width: 100%;
    max-width: 339px;
    border-radius: 10px;
    padding-top: 10px;
}

.location-box {
    height: 79px !important;
    max-width: 339px;
}

.notes-box {
    height: 205px;
    padding-top: 10px;
    width: 100%;
    max-width: 339px;
    border-radius: 10px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    font-size: 14px;
    color: #486fb2;
    opacity: 1;
}

.upload-section {
    width: 100%;
    max-width: 339px;
    text-align: center;
}

.upload-section p:first-child {
    font-size: 14px;
    text-align: center;
}

.upload-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.upload-btn {
    width: 164px;
    height: 46px;
    border-radius: 50px;
    border: 2px solid #28529a;
    font-size: 14px;
    margin-bottom: 10px;
}

.upload-limit {
    font-size: 14px;
    text-align: center;
}

.submit-btn {
    width: 165px;
    height: 45px;
    font-size: 14px;
    border-radius: 300px;
    margin: 40px auto 0;
    background-color: #f7c0c3;
}

.modal-card.thanks-card {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    width: 100%;
    max-width: 234px;
    height: 136px;
    border-radius: 19px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

#thanks-modal {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.thanks-title {
    font-family: 'Chewy', cursive;
    font-size: 18px;
    color: #28529a;
    margin-bottom: 8px;
    text-align: center;
}

.thanks-desc {
    font-family: 'Chewy', cursive;
    font-size: 16px;
    color: #28529a;
    margin: 0;
    text-align: center;
}

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;
}
}

@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;
}

.events-hero {
    height: 500px; 
}

.hero-inner-container {
    padding-left: 30px; 
}

.hero-title {
    font-size: 48px; 
}

.hero-title .stroke {
    -webkit-text-stroke: 4px #28529a; 
}

.hero-description {
    font-size: 22px; 
     max-width: 80%; 
}

.hero-description .stroke {
    -webkit-text-stroke: 5px #f9f5ea;
}

.popups-section {
    padding: 60px 0; 
}

.popups-header {
    padding-left: 30px;
    margin-bottom: 40px;
}

.popup-title {
    font-size: 40px; 
 }

 .popup-title .stroke {
    -webkit-text-stroke: 6px #28529a;
}

.popup-description {
     font-size: 20px; 
    max-width: 90%;
    line-height: 1.4;
}

.carousel-wrapper {
    padding: 0 10px;
    justify-content: center;
    gap: 10px;
}

.nav-arrow {
    font-size: 40px;
    width: 40px;
    flex-shrink: 0;
}

.carousel-window {
    max-width: 900px; 
    width: 100%;
    overflow: hidden;
}

.events-slider {
    display: flex;
    flex-wrap: nowrap; 
    gap: 20px; 
    width: 100%;
    }

.event-card {
    flex: 0 0 calc((100% - 40px) / 3); 
    width: calc((100% - 40px) / 3);
    max-width: none;
    text-align: center;
}

.event-square {
    width: 100%;
    aspect-ratio: 1 / 1; 
    height: auto;
    border-radius: 19px;
    margin-bottom: 15px;
    object-fit: cover;
    display: block;
}

   
.event-title {
     font-size: 20px;
    line-height: 1.3;
    margin-bottom: 5px;
}

.event-details {
    font-size: 15px;
    line-height: 1.4;
}

.partnerships-section, .vlog-section, .find-us-section, .collab-form-section {
        padding: 60px 0; 
    }

.partnership-title, .vlog-title, .find-title, .collab-title {
        font-size: 40px;
}

.partnership-title .stroke, .vlog-title .stroke, .find-title .stroke, .collab-title .stroke {
     -webkit-text-stroke: 5px #28529a;
}

.partnership-subtitle {
    font-size: 26px;
}

.collab-square {
    max-width: 400px;
    height: 400px;
}

.vlog-card {
    height: 550px; 
}

.find-us-section {
     padding: 60px 20px;
}

    
.find-title {
    font-size: 42px; 
}

.find-title .stroke {
    -webkit-text-stroke: 6px #28529a; 
}

.find-description {
    font-size: 20px; 
    margin-bottom: 50px;
}

.locations-wrapper {
    gap: 40px;
    margin-bottom: 50px;
}

.location-row {
    gap: 30px; 
}


.location-image-wrapper {
    max-width: 320px; 
    height: 320px;
}

.pink-pin {
     width: 50px;
    height: 50px;
}

.location-info-box {
    width: 480px; 
    padding: 30px 40px;
    border: 2.5px solid #28529a;
}

.info-title {
    font-size: 20px; 
    line-height: 1.6;
}

.info-text {
    font-size: 16px; 
    line-height: 1.6;
}

.modal-card {
    padding: 40px;
    max-width: 600px;
}

#modal-location-title {
    font-size: 30px;
}

#modal-location-time {
    font-size: 24px;
}
    
.form-row {
    flex-direction: column;
    gap: 0;
}

.form-group {
    flex: 1 1 100%;
    margin-bottom: 20px;
}

.form-group input, 
.form-row .form-group input, 
.form-row .form-group select {
     max-width: 100%;
    height: 70px;
}

.business-box, .notes-box {
    height: 200px;
}

.upload-btns {
    flex-direction: column;
    align-items: center;
}

.upload-btn {
    max-width: 100%;
    height: 70px;
}

.submit-btn {
    width: 220px;
    height: 70px;
    font-size: 20px;
}

.partnership-description, .vlog-description, .find-description, .collab-description {
    font-size: 20px;
    padding: 0 30px;
}

.thanks-title { 
    font-size: 38px; 
}
.thanks-desc { 
    font-size: 28px; 
}

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;
}
}