* {
    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;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 25px;
    padding: 0;
    margin: 0;
}

.navbar ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.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;
}

.nav-link:hover, 
.drop-btn:hover,
.navbar a.nav-link:hover {
    color: #F7C0C3;
}


.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,
header.navbar nav ul li.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: 1000;
    padding-top: 15px;
    padding-bottom: 10px;
}

header.navbar nav ul li.dropdown.active .dropdown-menu {
    display: flex;
}


.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;
}

.cart {
    position: relative;
    display: inline-block;
}

.navbar .cart {
    position: relative;   
    margin-left: -100px;    
}

.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: -100%;
    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;
}

#reviewPanel {
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.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-header,
.review-product-list,
.review-footer-box {
    width: 100%;
}

.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;
    max-width: 40%;
    height: auto;
    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;
}


.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-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;
}

.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;
}

.about-hero {
    width: 100%;
    height: 620px; 
    background: url('../images/about/about_us_banner.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.about-hero-text {
    padding-right: 150px; 
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    text-align: right;
    z-index: 5;
}

.about-hero-text h1, 
.about-hero-text p {
    position: relative;
    margin: 0;
    display: inline-block;
}

.about-hero-text h1 { 
    font-size: 64px; 
    font-weight: 500;
    margin-bottom: 20px; 
}

.about-hero-text p { 
    font-size: 28px; 
    font-weight: 500;
    line-height: 1.5; 
}

.about-hero-text .stroke {
    position: absolute;
    top: 0;
    right: 0; 
    color: transparent;
    -webkit-text-stroke: 8px #28529a; 
    z-index: 1;
    white-space: nowrap;
}

.about-hero-text .fill {
    position: relative;
    color: #f9f5ea; 
    z-index: 2;
    white-space: nowrap;
}

.stroke {
    position: absolute;
    top: 0;
    right: 0;
    color: transparent;
    -webkit-text-stroke: 8px #28529a; 
    z-index: 1;
    white-space: nowrap;
}

.fill {
    position: relative;
    color: #f9f5ea; 
    z-index: 2;
    white-space: nowrap;
}


.about-hero-text h1 { 
    font-size: 64px; 
    margin-bottom: 10px; 
}
.about-hero-text p { 
    font-size: 28px; 
    line-height: 1.5; 
}

.about-hero-text p .stroke {
    -webkit-text-stroke: 8px #f9f5ea;
}

.about-hero-text p .fill {
    color: #486fb2; 
}

.origin-section {
    background-color: #f9f5ea;
    padding: 100px 80px 300px; 
    display: flex;
    flex-direction: column;
    gap: 100px; 
    align-items: center; 
}

.origin-row {
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    gap: 60px; 
    width: 100%;
    max-width: 1300px;
}

.origin-row.extra-gap {
    gap: 120px; 
}


.text-col {
   flex: 1 1 60%;      
   max-width: 700px;
}

.img-col {
   flex: 1 1 40%;      
   max-width: 450px;
   display: flex;
   justify-content: center;
}

.origin-column h2 {
    font-size: 50px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #28529a;
    margin-bottom: 20px;
    text-align: left; 
}

.origin-column p {
    font-size: 20px;
    line-height: 2.0;
    letter-spacing: 0.03em;
    color: #486fb2;
    text-align: left; 
}

.img-small { 
    width: 406px; 
    height: 262px; 
    object-fit: cover; 
    border-radius: 10px; 
}

.img-large { 
    width: 431px; 
    height: 430px; 
    object-fit: cover; 
    border-radius: 10px; 
}

.reveal {
    opacity: 0;
    transform: translateY(80px); 
    transition: opacity 2s ease-out, transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity; 
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.mission-vision-section {
    background-color: #486fb2; 
    padding: 0px 40px 100px; 
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 20;
}

.mv-container {
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    gap: 80px; 
    width: 100%;
    position: relative;
    margin-top: -180px;
}

.mv-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.mv-block.vision {
    margin-top: 60px; 
}

.mv-circle-outer {
    width: 337px;
    height: 337px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    margin-bottom: 30px; 
    overflow: hidden; 
    position: relative;
    flex-shrink: 0;
}

.mv-circle-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mv-img {
    width: 432px;
    height: 432px;
    min-width: 432px;
    object-fit: cover; 
    display: block;
    border-radius: 50%;
    flex-shrink: 0;
}

.mv-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.mv-text h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.mv-text h2 .stroke {
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    -webkit-text-stroke: 6px #28529a; 
    z-index: 1;
}

.mv-text h2 .fill {
    position: relative;
    color: #f9f5ea; 
    z-index: 2;
}

.mv-text p {
    font-size: 20px;
    color: #f7c0c3; 
    line-height: 2.0;
    letter-spacing: 0.03em; 
    max-width: 630px; 
}

.values-section {
    background-color: #f7c0c3; 
    padding: 100px 40px;
    text-align: center;
    width: 100%;
}

.values-header h2 {
    font-size: 50px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
}

.values-header h2 .stroke {
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    -webkit-text-stroke: 8px #28529a; 
    z-index: 1;
}

.values-header h2 .fill {
    position: relative;
    color: #f9f5ea; 
    z-index: 2;
}

.values-container {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 5vw, 80px); 
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 20px;
}

.value-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 300px;
}


.value-circle {
    width: 261px;
    height: 261px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    overflow: hidden; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.value-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.value-title {
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #28529a;
    margin-bottom: 10px;
}


.value-desc {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #486fb2;
    max-width: 280px; 
}

.meet-baker-wrapper {
    margin-top: 120px; 
    text-align: left;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.baker-main-title {
    font-size: 36px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #28529a;
    margin-bottom: 40px;
}

.baker-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px; 
}


.baker-img-col {
    flex: 0 0 450px; 
    display: flex;
    justify-content: flex-start;
}

.baker-circle {
    width: 403px;
    height: 406px;
    border-radius: 50%;
    overflow: hidden; 
    background: transparent; 
}

.jamie-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}


.baker-text-col {
    flex: 0 0 700px; 
    text-align: left;
    padding-top: 60px; 
}

.baker-name {
    font-size: 48px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.baker-name .stroke {
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    -webkit-text-stroke: 8px #28529a;
    z-index: 1;
}

.baker-name .fill {
    position: relative;
    color: #f9f5ea;
    z-index: 2;
}

.baker-description {
    font-size: 24px;
    color: #486fb2;
    line-height: 1.5;
    letter-spacing: 0.03em;
    max-width: 790px;
}

.process-wrapper {
    margin-top: 150px; 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.process-main-title {
    font-size: 50px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
}

.process-main-title .stroke {
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    -webkit-text-stroke: 8px #28529a;
    z-index: 1;
}

.process-main-title .fill {
    position: relative;
    color: #f9f5ea;
    z-index: 2;
}

.process-intro {
    width: 100%;
    max-width: 1300px; 
    text-align: left;
    margin-bottom: 80px;
    padding-left: 45px; 
}

.process-intro p {
    font-size: 24px;
    color: #486fb2;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.timeline-container {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 80px auto;
    min-height: 1050px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px; 
    overflow: visible;
}

.timeline-line {
    position: absolute;
    width: 5px;
    background-color: #ffffff;
    left: 50%;
    transform: translateX(-50%);
    top: 50px; 
    height: 719px; 
    z-index: 1;
}

.timeline-step {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
    height: 100px; 
    opacity: 0;
    transform: translateY(50px); 
    transition: all 0.8s ease-out; 
}

.timeline-step.appear {
    opacity: 1;
    transform: translateY(0);
}


.timeline-step.appear .step-content {
    transition-delay: 0.2s;
}

.timeline-step:nth-child(2) { top: 0px; } 
.timeline-step:nth-child(3) { top: 180px; } 
.timeline-step:nth-child(4) { top: 360px; } 
.timeline-step:nth-child(5) { top: 540px; } 
.timeline-step:nth-child(6) { top: 719px; }

.step-circle {
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border: 5px solid #28529a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #28529a;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content {
    position: absolute;
    top: 30px;
    width: 550px; 
    display: flex;
    flex-direction: column;
}


.timeline-step.right .step-content {
    
    left: calc(50% + 150px); 
    right: auto;
    text-align: left;
    align-items: flex-start;
}


.timeline-step.left .step-content {
    
    right: calc(50% + 150px); 
    left: auto;
    text-align: right;
    align-items: flex-end;
}

.step-desc {
    font-size: 19px; 
    color: #486fb2;
    line-height: 1.4;
    letter-spacing: 0.02em;
    white-space: nowrap;
    margin-bottom: 20px;
    width: 100%;
}

.step-desc br {
    display: block;
    content: "";
    margin-top: 0;
}

.step-image-box {
    width: 190px;
    height: 237px;
    border: 3px solid #28529a;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent; 
}

.step-img {
    width: 153px;
    height: 195px;
    object-fit: cover;
    border-radius: 15px;
}

#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; 
}

.desktop-br {
        display: none !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;
}

.about-hero {
    width: 100% !important;
    max-width: 100vw !important;
    height: 245px !important;
    margin-top: 60px;
    padding: 0 20px !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

.about-hero-text {
    width: 100%;
    padding-right: 0 !important;
    text-align: right !important;
    align-items: flex-end !important;
}

.about-hero-text h1 {
    font-size: 28px !important;
    margin-bottom: 5px !important;
}

.about-hero-text h1 .stroke {
    -webkit-text-stroke: 4px #28529a !important;
}

.about-hero-text p {
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.about-hero-text p .stroke {
    -webkit-text-stroke: 3px #f9f5ea !important;
}

.origin-section {
    width: 100% !important;
    max-width: 100vw !important;
    min-height: 946px !important;
    padding: 10px 15px 200px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    overflow: visible !important;
    position: relative !important;
}

.origin-row {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
    margin-bottom: 10px;
}

.origin-row:first-of-type {
    margin-top: 20px !important;
}


.origin-row.extra-gap {
    flex-direction: column !important;
    margin-top: -120px !important;
    position: relative !important;
    z-index: 10 !important;
}

.origin-row, 
.origin-row.extra-gap {
    gap: 5px !important; 
    margin-bottom: 10px !important;
}

.origin-column.text-col, 
.origin-column.img-col {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 5px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.origin-row.extra-gap .text-col {
    order: 1 !important;
    margin-bottom: 5px;
}

.origin-row.extra-gap .img-col {
    order: 2 !important;
}

.origin-column h2 {
    font-size: 18px !important;
    text-align: center !important;
    margin-bottom: 5px !important;
}

.origin-column p {
    font-size: 9px !important;
    line-height: 2 !important;
    text-align: center !important;
    color: #486fb2 !important;
    max-width: 280px;   
    margin: 0 auto !important;
    word-break: normal;
    white-space: normal;
}

.img-small {
    width: 203px !important;
    height: 133px !important;
    object-fit: contain !important;
    margin-bottom: -10px;
    margin-top: -5px;
}

.img-large {
    width: 176px !important;
    height: 176px !important;
    object-fit: cover !important;
    border-radius: 15px !important;
  }


.origin-row.extra-gap {
    margin-top: -120px !important; 
    position: relative !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important; /
}

.origin-row.extra-gap .origin-column h2 {
    background-color: transparent !important; 
    position: relative !important;
    z-index: 10 !important;
}


.origin-row.extra-gap .text-col {
    order: 1 !important;
    margin-bottom: 5;
}

.origin-row.extra-gap .img-col {
    order: 2 !important;
}

.origin-row.extra-gap .img-large {
    margin-top: 5px !important; 
}

.text-col, .img-col {
    flex: 1 1 100%; 
    max-width: 100%;
}

.mission-vision-section {
    width: 100% !important;
    max-width: 100vw !important;
    min-height: 608px !important;
    background-color: #486fb2 !important;
    padding: 0 !important;
    margin-top: -100px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
    z-index: 99 !important;
    overflow: visible !important;
}

.mv-container {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.mv-block {
    width: 100% !important;
    max-width: 100% !important;
}

.mv-block.vision {
    margin-top: 20px !important;
}

.mv-circle-outer {
    width: 200px !important;
    height: 200px !important;
    margin-bottom: 5px !important;
    position: relative;
    top: -100px;
    z-index: 100;
     box-shadow: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
} 

.mv-img {
    width: 200px;
    height: 200px;
    min-width: 200px;
}

.mv-text {
    width: 100%;
    position: relative;
    top: -85px;
    text-align: center;
    padding: 0 5px;
}

.mv-text h2 {
    font-size: 18px;
    margin-bottom: 5px;
}

.mv-text h2 .stroke {
    -webkit-text-stroke: 4px #28529a;
}

.mv-text p {
     font-size: 9px;
    line-height: 2;
    max-width: 100%;
    width: 100%;
    color: #f7c0c3 ;
    text-align: center;
    padding: 0 5px;
    
}

.values-section {
    width: 100% ;
    max-width: 100vw;
    height: auto;
    background-color: #f7c0c3;
    padding: 40px 0 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.values-header h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.values-header h2 .stroke {
    -webkit-text-stroke: 4px #28529a;
}

.values-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.value-block {
    width: 100%;
    min-width: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-circle {
    width: 93px;
    height: 93px;
    background-color: #ffffff;
    margin-bottom: 10px;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.value-title {
    font-size: 12px;
    color: #28529a;
    margin-bottom: 5px;
}

.value-desc {
    font-size: 9px;
    line-height: 1.5;
    color: #486fb2;
    max-width: 90%;
}

.meet-baker-wrapper {
    margin-top: 80px !important;
    text-align: center;
}

.baker-main-title {
    font-size: 24px;
    color: #28529a;
    margin-bottom: 30px;
    width: 100%;
}

.baker-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.baker-img-col {
    flex: none;
    width: 100%;
    display: flex;
    justify-content: center;
}

.baker-circle {
    width: 265px;
    height: 265px;
}

.baker-text-col {
    flex: none;
    padding-top: 10px;
    text-align: center;
    width: 100%;
}

.baker-name {
    font-size: 24px;
    margin-bottom: 15px;
}

.baker-name .stroke {
    -webkit-text-stroke: 4px #28529a;
}

.baker-description {
    font-size: 9px;
    line-height: 1.5;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
}

.process-wrapper {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 0;
    height: auto;
    width: 100%;
}

.process-main-title {
    font-size: 24px;
    margin-bottom: 20px;
    width: 100%;
}

.process-main-title .stroke {
    -webkit-text-stroke: 4px #28529a;
}

.process-intro {
    text-align: center;
    padding-left: 0;
    margin-bottom: 5px;
    width: 100%;
}

.process-intro p {
    font-size: 12px;
}

.timeline-container {
    position: relative;
    width: 100%;
    padding: 0;
    height: 750px !important;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -5px;
    bottom: 0;
    width: 5px;
    background-color: #ffffff;
    z-index: 1;
}

.timeline-step {
    position: absolute !important;
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-top: -50px !important;
    height: 45px;
    z-index: 2;
}

.timeline-step:first-child {
    margin-top: 0 !important;
}

.timeline-step.right {
    justify-content: flex-end;
}

.timeline-step.left {
    justify-content: flex-start;
}

.timeline-step.right .step-content {
    left: calc(50% + 35px) !important;
    text-align: left;
    align-items: flex-start;
}

.timeline-step.left .step-content {
    right: calc(50% + 35px) !important;
    text-align: right;
    align-items: flex-end;
}

.timeline-step:last-child {
    margin-bottom: 0 !important;
}

.timeline-step:nth-child(2) { top: 0; }
.timeline-step:nth-child(3) { top: 180px; }
.timeline-step:nth-child(4) { top: 360px; }
.timeline-step:nth-child(5) { top: 540px; }
.timeline-step:nth-child(6) { top: 740px !important; }

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 140px;
    width: 100%;
    margin-top: 10px;
    transform: translateY(-5px);
}

.step-circle {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: 2px solid #28529a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #28529a;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.step-desc {
    font-size: 9px;
    color: #486fb2;
    line-height: 1.5;
    margin: 0 0 5px 0;
    width: 100%;
    max-width: 125px;
    min-width: 0;
    display: block;    
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal; 
    text-align: center;
    padding: 0 5px;
    box-sizing: border-box;
}

.timeline-step {
    padding: 5px;
}

.step-image-box {
    width: 70px;
    height: 86px;
    border: 2px solid #28529a;
    border-radius: 5px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.step-img {
    width: 55px;
    height: 70px;
    object-fit: cover;
    border-radius: 3px;
}

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%;
    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;
}

.about-hero {
    height: 500px; 
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.about-hero-text {
    padding-right: 60px; 
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.about-hero-text h1 { 
    font-size: 48px; 
    margin-bottom: 15px; 
}

.about-hero-text p { 
    font-size: 20px;
    line-height: 1.4; 
}

.about-hero-text h1 .stroke,
.about-hero-text p .stroke {
    -webkit-text-stroke: 6px #28529a; 
}

.about-hero-text p .stroke {
    -webkit-text-stroke: 4px #f9f5ea;
}

.origin-section {
    padding: 60px 40px 200px;
    gap: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.origin-row {
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 20px; 
    width: 100%;
}

.text-col {
    flex: 1; 
    max-width: 600px; 
}

.img-col {
    flex: 0 0 auto; 
    display: flex;
    justify-content: center;
}

.origin-column h2 {
    font-size: 36px;
    line-height: 2.0; 
    margin-bottom: 15px;
    letter-spacing: normal; 
}

.origin-column p {
    font-size: 15px;
    line-height: 2.0;
    letter-spacing: normal;
    color: #486fb2;
    margin-bottom: 0; 
}

.img-small { 
    width: 300px; 
    height: auto;
    border-radius: 10px;
}

.img-large { 
    width: 320px; 
    height: auto;
    border-radius: 10px;
}

.mission-vision-section {
    padding: 0 40px 80px; 
}

.mv-container {
    gap: 40px; 
    margin-top: -120px;
}

.mv-block.vision {
    margin-top: 40px; 
}

.mv-circle-outer {
    width: 280px; 
    height: 280px;
    margin-bottom: 20px;
}

.mv-img {
    width: 350px; 
    height: 350px;
    min-width: 350px;
}

.mv-text h2 {
    font-size: 32px; 
}

.mv-text h2 .stroke {
    -webkit-text-stroke: 5px #28529a; 
}

.mv-text p {
    font-size: 16px; 
    line-height: 1.8;
    max-width: 450px; 
}

.values-section {
    padding: 80px 20px; 
    width: 100%;
    box-sizing: border-box;
}

.values-header h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
}

.values-container {
    display: flex;
    flex-direction: row; 
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px; 
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.value-block {
    flex: 1; 
    max-width: 300px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-circle {
    width: 140px; 
    height: 140px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.value-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: #28529a;
}

.value-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #486fb2;
    padding: 0 10px;
}

.meet-baker-wrapper {
    margin-top: 100px;
    padding: 0 40px; 
    width: 100%;
    box-sizing: border-box;
}

.baker-main-title {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: left; 
}

.baker-content {
    display: flex;
    flex-direction: row; 
    justify-content: flex-start; 
    align-items: center; 
    gap: 100px;
    width: 100%;
}

.baker-img-col {
    flex: 0 0 auto; 
}

.baker-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
}

.baker-text-col {
    flex: 1; 
    max-width: 600px; 
    text-align: left;
}

.baker-name {
    font-size: 36px;
    margin-bottom: 15px;
}

.baker-description {
    font-size: 14px;
    line-height: 1.5;
    color: #486fb2;
    margin: 0;
}

.process-wrapper {
    margin-top: 100px;
    padding-bottom: 150px;
    width: 100%;
    overflow: hidden; 
}

.timeline-container {
    height: 950px; 
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 80px; 
    height: 800px; 
    width: 5px;
    background-color: #ffffff;
    z-index: 1;
}

.timeline-step {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    height: 60px;
    z-index: 2;
}


.timeline-step:nth-child(2) { top: 50px; }
.timeline-step:nth-child(3) { top: 250px; }
.timeline-step:nth-child(4) { top: 450px; }
.timeline-step:nth-child(5) { top: 650px; }
.timeline-step:nth-child(6) { top: 850px; }


.timeline-step.right .step-content {
    position: absolute;
    left: calc(50% + 50px);
    text-align: left;
    align-items: flex-start;
}

.timeline-step.left .step-content {
    position: absolute;
    right: calc(50% + 50px);
    text-align: right;
    align-items: flex-end;
}

.step-content {
    max-width: 250px; 
    display: flex;
    flex-direction: column;
    word-wrap: break-word; 
    overflow-wrap: break-word;
}

.step-circle {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border: 3px solid #28529a;
    border-radius: 50%;
    font-size: 18px;
    color: #28529a;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-desc {
    font-size: 15px;
    line-height: 1.4;
    color: #486fb2;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.step-image-box {
    width: 100px;
    height: 120px;
    border: 2px solid #28529a;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    background: transparent;
}

.step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

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;
}
}