* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, Helvetica, sans-serif;
background: #f5f5f5;
color: #333;
line-height: 1.6;
}

.material-icons {
font-size: 18px;
vertical-align: middle;
}

.cookieConsent {
position: fixed;
bottom: 20px;
right: 20px;
background: #fff;
color: #333;
padding: 0;
z-index: 9999;
box-shadow: 0 8px 32px rgba(0,0,0,0.15);
border-radius: 16px;
max-width: 420px;
width: calc(100% - 40px);
display: none;
animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
from {
transform: translateY(100px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

.cookieContent_wrap {
padding: 24px;
}

.cookieHeader {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}

.cookieIcon {
font-size: 28px;
color: #f4d835;
}

.cookieText h3 {
margin: 0 0 8px;
font-size: 18px;
font-weight: 600;
color: #000;
}

.cookieText p {
margin: 0;
font-size: 14px;
line-height: 1.6;
color: #666;
}

.cookieBtns {
display: flex;
gap: 8px;
margin-top: 20px;
flex-wrap: wrap;
}

.acceptBtn, .declineBtn, .settingsBtn {
padding: 12px 20px;
border: none;
cursor: pointer;
font-size: 14px;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s;
flex: 1;
min-width: 100px;
}

.acceptBtn {
background: #f4d835;
color: #000;
}

.acceptBtn:hover {
background: #e5c830;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(244, 216, 53, 0.3);
}

.declineBtn {
background: #f0f0f0;
color: #666;
}

.declineBtn:hover {
background: #e0e0e0;
}

.settingsBtn {
background: transparent;
color: #666;
border: 2px solid #e0e0e0;
flex: 0 0 auto;
width: 100%;
margin-top: 8px;
}

.settingsBtn:hover {
border-color: #ccc;
background: #f9f9f9;
}

.cookieSettings {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
z-index: 10000;
display: none;
align-items: center;
justify-content: center;
padding: 20px;
animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

.cookieSettingsModal {
background: #fff;
max-width: 600px;
width: 100%;
border-radius: 16px;
overflow: hidden;
max-height: 90vh;
display: flex;
flex-direction: column;
animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
from {
transform: scale(0.9) translateY(20px);
opacity: 0;
}
to {
transform: scale(1) translateY(0);
opacity: 1;
}
}

.cookieSettingsHeader {
background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
color: #fff;
padding: 24px;
display: flex;
justify-content: space-between;
align-items: center;
}

.cookieSettingsHeader h3 {
margin: 0;
font-size: 22px;
font-weight: 600;
}

.closeCookieSettings {
font-size: 28px;
cursor: pointer;
line-height: 1;
opacity: 0.8;
transition: opacity 0.3s;
}

.closeCookieSettings:hover {
opacity: 1;
}

.cookieSettingsBody {
padding: 24px;
overflow-y: auto;
}

.cookieOption {
margin-bottom: 24px;
padding: 20px;
background: #f9f9f9;
border-radius: 12px;
transition: all 0.3s;
}

.cookieOption:hover {
background: #f5f5f5;
}

.cookieOption:last-child {
margin-bottom: 0;
}

.cookieOptionHeader {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 8px;
}

.cookieOptionTitle {
display: flex;
align-items: center;
gap: 10px;
}

.cookieOptionTitle .material-icons {
font-size: 24px;
color: #f4d835;
}

.cookieOptionHeader h4 {
margin: 0;
font-size: 16px;
font-weight: 600;
color: #000;
}

.cookieOption p {
margin: 8px 0 0 34px;
font-size: 14px;
color: #666;
line-height: 1.5;
}

.cookieSwitch {
position: relative;
display: inline-block;
width: 52px;
height: 28px;
flex-shrink: 0;
}

.cookieSwitch input {
opacity: 0;
width: 0;
height: 0;
}

.cookieSlider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: 0.4s;
border-radius: 28px;
}

.cookieSlider:before {
position: absolute;
content: "";
height: 20px;
width: 20px;
left: 4px;
bottom: 4px;
background-color: white;
transition: 0.4s;
border-radius: 50%;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cookieSwitch input:checked + .cookieSlider {
background: linear-gradient(135deg, #f4d835 0%, #e5c830 100%);
}

.cookieSwitch input:focus + .cookieSlider {
box-shadow: 0 0 0 3px rgba(244, 216, 53, 0.2);
}

.cookieSwitch input:checked + .cookieSlider:before {
transform: translateX(24px);
}

.cookieSwitch input:disabled + .cookieSlider {
background: linear-gradient(135deg, #888 0%, #666 100%);
cursor: not-allowed;
}

.cookieSwitch input:disabled + .cookieSlider:before {
background-color: #f0f0f0;
}

.cookieSettingsFooter {
padding: 20px 24px;
border-top: 1px solid #e0e0e0;
display: flex;
justify-content: flex-end;
gap: 12px;
background: #fafafa;
}

.cookieSettingsFooter button {
padding: 12px 24px;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
border: none;
}

.cookieSettingsFooter .declineBtn {
background: #f0f0f0;
color: #666;
}

.cookieSettingsFooter .declineBtn:hover {
background: #e0e0e0;
}

.cookieSettingsFooter .acceptBtn {
background: #f4d835;
color: #000;
}

.cookieSettingsFooter .acceptBtn:hover {
background: #e5c830;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(244, 216, 53, 0.3);
}

.cartOverlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.7);
z-index: 998;
display: none;
}

.cartOverlay.active {
display: block;
}

.cartSidebar {
position: fixed;
top: 0;
right: -400px;
width: 400px;
height: 100%;
background: #fff;
z-index: 999;
transition: right 0.3s ease;
box-shadow: -2px 0 10px rgba(0,0,0,0.3);
display: flex;
flex-direction: column;
}

.cartSidebar.active {
right: 0;
}

.cartHeader {
background: #000;
color: #fff;
padding: 1.25em;
display: flex;
justify-content: space-between;
align-items: center;
}

.cartHeader h3 {
margin: 0;
font-size: 1.25rem;
}

.closeCart {
font-size: 30px;
cursor: pointer;
line-height: 1;
}

.cartItems {
flex: 1;
overflow-y: auto;
padding: 20px;
}

.emptyCart {
text-align: center;
padding: 2.5rem 1.25rem;
color: #999;
}

.cartItem {
display: flex;
gap: 15px;
padding: 0.9375rem 0;
border-bottom: 1px solid #eee;
position: relative;
}

.cartItem img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 8px;
}

.cartItemInfo {
flex: 1;
}

.cartItemInfo h4 {
font-size: 0.875rem;
margin-bottom: 5px;
}

.cartItemPrice {
color: #f4d835;
font-weight: bold;
margin-bottom: 0.625em;
}

.quantityControl {
display: flex;
align-items: center;
gap: 10px;
}

.quantityControl button {
width: 25px;
height: 25px;
border: 1px solid #ddd;
background: #fff;
cursor: pointer;
font-size: 1rem;
border-radius: 4px;
transition: all 0.3s;
}

.quantityControl button:hover {
background: #f4d835;
border-color: #f4d835;
}

.removeItem {
position: absolute;
top: 10px;
right: 0;
background: none;
border: none;
font-size: 24px;
cursor: pointer;
color: #999;
transition: color 0.3s;
}

.removeItem:hover {
color: #ff0000;
}

.cartFooter {
padding: 1.25rem;
border-top: 2px solid #eee;
}

.cartTotal {
display: flex;
justify-content: space-between;
font-size: 18px;
font-weight: bold;
margin-bottom: 0.9375rem;
}

.checkoutBtn {
width: 100%;
padding: 15px;
background: #f4d835;
border: none;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
border-radius: 8px;
transition: all 0.3s;
}

.checkoutBtn:hover {
background: #e5c830;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(244, 216, 53, 0.3);
}

.cartCount {
background: #f4d835;
color: #000;
border-radius: 50%;
padding: 2px 6px;
font-size: 11px;
font-weight: bold;
margin-left: 5px;
}

.checkoutModal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.8);
z-index: 1000;
display: none;
align-items: center;
justify-content: center;
overflow-y: auto;
padding: 2rem 0;
}

.checkoutContent {
background: #fff;
max-width: 700px;
width: 90%;
border-radius: 12px;
max-height: 90vh;
display: flex;
flex-direction: column;
margin: auto;
}

.checkoutHeader {
background: #000;
color: #fff;
padding: 1.25rem;
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 12px 12px 0 0;
}

.checkoutHeader h3 {
margin: 0;
font-size: 1.5rem;
}

.closeCheckout {
font-size: 30px;
cursor: pointer;
line-height: 1;
}

.checkoutBody {
padding: 1.5rem;
overflow-y: auto;
}

.formSection {
margin-bottom: 1.875rem;
}

.formSection h4 {
margin: 0 0 1rem;
font-size: 1.25rem;
color: #000;
}

.formGrid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}

.formGroup {
display: flex;
flex-direction: column;
}

.formGroup.fullWidth {
grid-column: span 2;
}

.formGroup label {
margin-bottom: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
color: #333;
}

.formGroup input,
.formGroup select {
padding: 0.75rem;
border: 2px solid #e0e0e0;
border-radius: 6px;
font-size: 0.9375rem;
transition: border-color 0.3s;
}

.formGroup input:focus,
.formGroup select:focus {
outline: none;
border-color: #f4d835;
}

.orderSummaryCheckout {
background: #f9f9f9;
padding: 1.25rem;
border-radius: 8px;
margin-bottom: 1.5rem;
}

.orderSummaryCheckout h4 {
margin: 0 0 1rem;
font-size: 1.125rem;
}

.summaryRow {
display: flex;
justify-content: space-between;
padding: 0.625rem 0;
border-bottom: 1px solid #e0e0e0;
font-size: 0.9375rem;
}

.summaryRow.totalRow {
border-bottom: none;
border-top: 2px solid #000;
font-weight: bold;
font-size: 1.125rem;
margin-top: 0.625rem;
padding-top: 0.9375rem;
}

.submitBtn {
width: 100%;
padding: 1rem;
background: #f4d835;
color: #000;
border: none;
font-size: 1.125rem;
font-weight: bold;
cursor: pointer;
border-radius: 6px;
transition: all 0.3s;
}

.submitBtn:hover {
background: #e5c830;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(244, 216, 53, 0.3);
}

.checkoutItemRow {
display: flex;
justify-content: space-between;
padding: 0.5rem 0;
font-size: 0.875rem;
}

.mainHeader {
background: #000;
color: #fff;
padding: 0.9375em 0;
position: sticky;
top: 0;
z-index: 997;
}

.headerContainer {
max-width: 1400px;
margin: 0 auto;
padding: 0 1.25rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logoSection a {
text-decoration: none;
}

.logoText {
display: flex;
flex-direction: column;
line-height: 1.2;
}

.mainNav ul {
list-style: none;
display: flex;
gap: 1.875em;
}

.mainNav ul li a {
color: #fff;
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: color 0.3s;
}

.mainNav ul li a:hover {
color: #f4d835;
}

.bookBtn {
background: #f4d835;
color: #000 !important;
padding: 0.5rem 1.25rem;
border-radius: 20px;
font-weight: bold;
display: flex;
align-items: center;
gap: 5px;
}

.headerContact {
font-size: 13px;
display: flex;
align-items: center;
gap: 0.3125rem;
}

.headerContact .material-icons {
font-size: 16px;
}

.whatsapp_ico {
margin-left: 5px;
}

.heroSection {
position: relative;
background: #000;
height: 600px;
overflow: hidden;
}

.productsCarousel {
position: relative;
height: 100%;
}

.carouselItem {
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.5s ease;
}

.carouselItem.active {
opacity: 1;
}

.carouselItem img {
width: 100%;
height: 100%;
}

.productInfo_overlay {
position: absolute;
bottom: 2.5rem;
left: 2.5rem;
background: rgba(0,0,0,0.7);
color: #fff;
padding: 1.5625em;
max-width: 500px;
}

.productInfo_overlay h2 {
font-size: 2rem;
margin-bottom: 0.625rem;
}

.productRole {
font-size: 0.875rem;
line-height: 1.5;
}

.carouselBtn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255,255,255,0.3);
color: #fff;
border: none;
padding: 0.9375rem 1.25rem;
font-size: 24px;
cursor: pointer;
z-index: 10;
transition: background 0.3s;
}

.carouselBtn:hover {
background: rgba(255,255,255,0.5);
}

.carouselBtn.prev {
left: 1.25rem;
}

.carouselBtn.next {
right: 1.25rem;
}

.yellowSection {
background: #f4d835;
padding: 3.75em 1.25rem;
}

.mainHeading {
text-align: center;
font-size: 2.25rem;
margin-bottom: 1.875rem;
color: #000;
}

.descriptionText {
max-width: 1200px;
margin: 0 auto;
}

.descriptionText p {
margin-bottom: 1.25em;
font-size: 15px;
line-height: 1.8;
text-align: center;
}

.productsSection {
padding: 3.75rem 1.25rem;
background: #fff;
}

.sectionHeading {
text-align: center;
font-size: 2rem;
margin-bottom: 2.5rem;
}

.productsGrid {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.875em;
}

.productCard {
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
transition: transform 0.3s, box-shadow 0.3s;
}

.productCard:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.productImg {
position: relative;
height: 250px;
overflow: hidden;
background: #f9f9f9;
}

.productImg img {
width: 100%;
height: 100%;
object-fit: contain;
}

.addToCart {
position: absolute;
bottom: 0.625rem;
left: 50%;
transform: translateX(-50%);
background: #f4d835;
border: none;
padding: 0.625rem 1.5625rem;
font-weight: bold;
cursor: pointer;
opacity: 0;
transition: opacity 0.3s;
border-radius: 6px;
}

.productCard:hover .addToCart {
opacity: 1;
}

.productCard h3 {
padding: 0.9375em 0.9375rem 0.625rem;
font-size: 1.125rem;
}

.productDesc {
padding: 0 15px;
font-size: 13px;
color: #666;
margin-bottom: 0.625rem;
min-height: 60px;
}

.price {
padding: 0 0.9375rem;
font-size: 1.5rem;
color: #f4d835;
font-weight: bold;
margin-bottom: 0.625em;
}

.deliveryInfo {
padding: 0 15px 15px;
font-size: 12px;
color: #999;
display: flex;
align-items: center;
gap: 0.3125rem;
}

.deliveryInfo .material-icons {
font-size: 14px;
}

.faqSection {
padding: 3.75rem 1.25rem;
background: #f9f9f9;
}

.sectionHeading_center {
text-align: center;
font-size: 2rem;
margin-bottom: 2.5em;
}

.faqContainer {
max-width: 900px;
margin: 0 auto;
}

.faqItem {
background: #fff;
margin-bottom: 0.9375rem;
border-radius: 5px;
overflow: hidden;
}

.faqQuestion {
display: flex;
align-items: center;
padding: 1.25em;
cursor: pointer;
background: #fff;
transition: background 0.3s;
}

.faqQuestion:hover {
background: #f5f5f5;
}

.faqNumber {
background: #3b7dd6;
color: #fff;
width: 35px;
height: 35px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
margin-right: 0.9375rem;
flex-shrink: 0;
}

.faqQuestion h3 {
font-size: 1rem;
font-weight: 500;
}

.faqAnswer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.faqItem.active .faqAnswer {
padding: 0 1.25rem 1.25rem 4.375rem;
}

.readMore_link {
color: #3b7dd6;
text-decoration: none;
font-weight: bold;
font-size: 13px;
}

.contactSection {
padding: 3.75rem 1.25rem;
background: #1a1a1a;
color: #fff;
}

.contactHeading {
text-align: center;
font-size: 2rem;
margin-bottom: 2.5em;
}

.contactWrapper {
max-width: 1200px;
margin: 0 auto;
display: grid;
gap: 2.5rem;
}

.contactIntro {
font-size: 1.125rem;
margin-bottom: 1.875em;
}

.contactDetails {
font-size: 14px;
line-height: 2;
}

.mainFooter {
background: #000;
color: #fff;
}

.footerLinks {
background: #1a1a1a;
padding: 2.5rem 1.25rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2.5em;
max-width: 1400px;
margin: 0 auto;
}

.linksColumn h4 {
font-size: 1rem;
margin-bottom: 0.9375em;
color: #f4d835;
}

.linksColumn ul {
list-style: none;
}

.linksColumn ul li {
margin-bottom: 0.625rem;
}

.linksColumn ul li a {
color: #ccc;
text-decoration: none;
font-size: 14px;
transition: color 0.3s;
}

.linksColumn ul li a:hover {
color: #fff;
}

.footerBottom {
background: #000;
padding: 1.875em 1.25rem;
text-align: center;
font-size: 12px;
color: #999;
line-height: 1.8;
}

.footerBottom p {
margin-bottom: 0.625rem;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}

@media (max-width: 1024px) {
.mainNav ul {
gap: 0.9375rem;
}

.heroSection {
height: 400px;
}

.contactWrapper {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.headerContainer {
flex-direction: column;
gap: 0.9375rem;
}

.mainNav ul {
flex-wrap: wrap;
justify-content: center;
gap: 0.625rem;
}

.mainNav ul li a {
font-size: 12px;
}

.headerContact {
font-size: 11px;
}

.heroSection {
height: 300px;
}

.productInfo_overlay {
left: 1.25rem;
bottom: 1.25rem;
padding: 0.9375rem;
}

.productInfo_overlay h2 {
font-size: 1.5rem;
}

.mainHeading {
font-size: 1.75rem;
}

.descriptionText p {
font-size: 14px;
text-align: left;
}

.productsGrid {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.25em;
}

.cartSidebar {
width: 100%;
right: -100%;
}

.faqQuestion h3 {
font-size: 0.875rem;
}

.footerLinks {
grid-template-columns: 1fr;
gap: 1.25rem;
}

.formGrid {
grid-template-columns: 1fr;
}

.formGroup.fullWidth {
grid-column: span 1;
}

.checkoutContent {
width: 95%;
}

.cookieConsent {
bottom: 10px;
right: 10px;
left: 10px;
max-width: none;
}

.cookieBtns {
flex-direction: column;
}

.acceptBtn, .declineBtn, .settingsBtn {
width: 100%;
}
}

@media (max-width: 480px) {
.productsGrid {
grid-template-columns: 1fr;
}

.mainHeading {
font-size: 1.5rem;
}
}

.thankYouModal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.85);
z-index: 10001;
display: none;
align-items: center;
justify-content: center;
padding: 20px;
animation: fadeIn 0.3s ease-out;
}

.thankYouContent {
background: #fff;
max-width: 500px;
width: 100%;
border-radius: 20px;
padding: 40px;
text-align: center;
animation: slideIn 0.4s ease-out;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.thankYouIcon {
width: 100px;
height: 100px;
background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
border-radius: 50%;
margin: 0 auto 30px;
display: flex;
align-items: center;
justify-content: center;
animation: scaleIn 0.5s ease-out 0.2s backwards;
}

.thankYouIcon .material-icons {
font-size: 60px;
color: #fff;
}

@keyframes scaleIn {
from {
transform: scale(0);
}
to {
transform: scale(1);
}
}

.thankYouContent h2 {
font-size: 28px;
color: #000;
margin-bottom: 20px;
font-weight: 600;
}

.orderConfirmation {
background: #f9f9f9;
padding: 20px;
border-radius: 12px;
margin-bottom: 30px;
}

.orderNumber {
font-size: 16px;
color: #333;
margin-bottom: 10px;
}

.orderNumber strong {
color: #f4d835;
font-size: 18px;
}

.confirmMessage {
font-size: 14px;
color: #666;
margin: 0;
}

.thankYouDetails {
margin-bottom: 30px;
}

.detailItem {
display: flex;
align-items: center;
gap: 15px;
padding: 15px;
background: #fafafa;
border-radius: 10px;
margin-bottom: 12px;
text-align: left;
}

.detailItem:last-child {
margin-bottom: 0;
}

.detailItem .material-icons {
font-size: 28px;
color: #f4d835;
flex-shrink: 0;
}

.detailItem p {
margin: 0;
font-size: 14px;
color: #555;
line-height: 1.5;
}

.continueBtn {
width: 100%;
padding: 16px;
background: linear-gradient(135deg, #f4d835 0%, #e5c830 100%);
color: #000;
border: none;
border-radius: 12px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s;
box-shadow: 0 4px 15px rgba(244, 216, 53, 0.3);
}

.continueBtn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(244, 216, 53, 0.4);
}

@media (max-width: 768px) {
.thankYouContent {
padding: 30px 20px;
}

.thankYouIcon {
width: 80px;
height: 80px;
}

.thankYouIcon .material-icons {
font-size: 48px;
}

.thankYouContent h2 {
font-size: 24px;
}

.detailItem {
padding: 12px;
}

.detailItem .material-icons {
font-size: 24px;
}
}

.orderNotice {
background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
border-left: 4px solid #2196F3;
padding: 20px;
border-radius: 8px;
margin-bottom: 1.5rem;
display: flex;
gap: 15px;
align-items: flex-start;
}

.noticeIcon {
background: #2196F3;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.noticeIcon .material-icons {
color: #fff;
font-size: 24px;
}

.noticeContent {
flex: 1;
}

.noticeContent h4 {
margin: 0 0 8px;
font-size: 16px;
color: #1565c0;
font-weight: 600;
}

.noticeContent p {
margin: 0;
font-size: 14px;
color: #0d47a1;
line-height: 1.6;
}

@media (max-width: 768px) {
.orderNotice {
padding: 15px;
}

.noticeIcon {
width: 36px;
height: 36px;
}

.noticeIcon .material-icons {
font-size: 20px;
}

.noticeContent h4 {
font-size: 14px;
}

.noticeContent p {
font-size: 13px;
}
}

.pageHeroBanner {
background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('pics/hero-default.webp');
background-size: cover;
background-position: center;
height: 300px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
}

.heroBannerOverlay {
text-align: center;
max-width: 800px;
padding: 0 1.25rem;
}

.heroBannerOverlay h1 {
font-size: 3rem;
margin-bottom: 0.625rem;
font-weight: 700;
}

.heroBannerOverlay p {
font-size: 1.25rem;
opacity: 0.95;
}



.aboutSection1 {
padding: 4rem 1.25rem;
background: #fff;
}

.aboutContainer {
max-width: 1400px;
margin: 0 auto;
}

.aboutContent {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3.75rem;
align-items: center;
}

.aboutText h2 {
font-size: 2.25rem;
margin-bottom: 1.5rem;
color: #000;
}

.aboutText p {
margin-bottom: 1.25rem;
line-height: 1.8;
font-size: 1rem;
color: #555;
}

.aboutImage img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.aboutSection2 {
padding: 4rem 1.25rem;
background: #f9f9f9;
}

.valuePropsGrid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
margin-top: 2.5rem;
}

.valueProp {
background: #fff;
padding: 2rem;
border-radius: 12px;
transition: transform 0.3s, box-shadow 0.3s;
border: 1px solid #e0e0e0;
}

.valueProp:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.valueIcon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, #f4d835 0%, #e5c830 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.25rem;
}

.valueIcon .material-icons {
font-size: 36px;
color: #000;
}

.valueProp h3 {
font-size: 1.375rem;
margin-bottom: 0.75rem;
color: #000;
}

.valueProp p {
font-size: 0.9375rem;
line-height: 1.7;
color: #666;
}

.aboutSection3 {
padding: 4rem 1.25rem;
background: #fff;
}

.commitmentGrid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.875rem;
margin-top: 2.5rem;
margin-bottom: 3rem;
}

.commitmentCard {
background: #f9f9f9;
padding: 2rem;
border-radius: 12px;
border-left: 4px solid #f4d835;
}

.commitmentCard h3 {
font-size: 1.125rem;
margin-bottom: 0.75rem;
color: #000;
display: flex;
align-items: center;
gap: 0.625rem;
}

.commitmentCard h3 .material-icons {
color: #f4d835;
font-size: 24px;
}

.commitmentCard p {
font-size: 0.9375rem;
line-height: 1.7;
color: #666;
margin: 0;
}

.ctaBoxAbout {
background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
color: #fff;
padding: 3rem;
border-radius: 16px;
text-align: center;
}

.ctaBoxAbout h3 {
font-size: 2rem;
margin-bottom: 1rem;
}

.ctaBoxAbout p {
font-size: 1.125rem;
margin-bottom: 2rem;
opacity: 0.9;
}

.ctaButtons {
display: flex;
gap: 1.25rem;
justify-content: center;
flex-wrap: wrap;
}

.btnPrimary, .btnSecondary {
padding: 1rem 2.5rem;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
display: inline-block;
}

.btnPrimary {
background: #f4d835;
color: #000;
}

.btnPrimary:hover {
background: #e5c830;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(244, 216, 53, 0.4);
}

.btnSecondary {
background: transparent;
color: #fff;
border: 2px solid #fff;
}

.btnSecondary:hover {
background: rgba(255,255,255,0.1);
}


.productsContainer {
max-width: 1400px;
margin: 0 auto;
}

.sectionSubtitle {
text-align: center;
font-size: 1.0625rem;
color: #666;
margin-bottom: 2.5rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.ctaSection {
padding: 4rem 1.25rem;
background: linear-gradient(135deg, #f4d835 0%, #e5c830 100%);
}

.ctaContainer {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.ctaContainer h2 {
font-size: 2.25rem;
margin-bottom: 1rem;
color: #000;
}

.ctaContainer p {
font-size: 1.125rem;
margin-bottom: 2rem;
color: #333;
}



.contactPageSection {
padding: 4rem 1.25rem;
background: #fff;
}

.contactPageContainer {
max-width: 1400px;
margin: 0 auto;
}

.contactInfoCards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

.contactCard {
background: #f9f9f9;
padding: 2.5rem 2rem;
border-radius: 12px;
text-align: center;
border: 2px solid #e0e0e0;
transition: all 0.3s;
}

.contactCard:hover {
border-color: #f4d835;
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
transform: translateY(-5px);
}

.contactCardIcon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #f4d835 0%, #e5c830 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
}

.contactCardIcon .material-icons {
font-size: 40px;
color: #000;
}

.contactCard h3 {
font-size: 1.375rem;
margin-bottom: 1rem;
color: #000;
}

.contactDetail {
font-size: 1.125rem;
font-weight: 600;
color: #000;
margin-bottom: 1rem;
line-height: 1.6;
}

.contactHours {
font-size: 0.9375rem;
color: #666;
margin-bottom: 1rem;
line-height: 1.6;
}

.contactNote {
font-size: 0.875rem;
color: #999;
font-style: italic;
line-height: 1.5;
}

.contactFormSection {
padding: 4rem 1.25rem;
background: #f9f9f9;
}

.contactFormContainer {
max-width: 900px;
margin: 0 auto;
}

.formIntro {
text-align: center;
margin-bottom: 3rem;
}

.formIntro h2 {
font-size: 2.25rem;
margin-bottom: 1rem;
color: #000;
}

.formIntro p {
font-size: 1rem;
color: #666;
line-height: 1.7;
}

.contactPageForm {
background: #fff;
padding: 3rem;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contactPageForm textarea {
padding: 0.75rem;
border: 2px solid #e0e0e0;
border-radius: 6px;
font-size: 0.9375rem;
font-family: inherit;
transition: border-color 0.3s;
resize: vertical;
width: 100%;
}

.contactPageForm textarea:focus {
outline: none;
border-color: #f4d835;
}

.contactPageForm select {
padding: 0.75rem;
border: 2px solid #e0e0e0;
border-radius: 6px;
font-size: 0.9375rem;
transition: border-color 0.3s;
background: #fff;
cursor: pointer;
}

.contactPageForm select:focus {
outline: none;
border-color: #f4d835;
}

.contactMapSection {
padding: 4rem 1.25rem;
background: #fff;
}

.mapContainer {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}

.mapContainer h2 {
font-size: 2rem;
margin-bottom: 2rem;
color: #000;
}

.mapPlaceholder {
background: #f9f9f9;
border: 2px solid #e0e0e0;
border-radius: 12px;
padding: 4rem 2rem;
min-height: 400px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.mapIcon {
width: 100px;
height: 100px;
background: #f4d835;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 2rem;
}

.mapIcon .material-icons {
font-size: 50px;
color: #000;
}

.mapPlaceholder p {
font-size: 1.0625rem;
line-height: 1.8;
color: #333;
max-width: 600px;
}

.contactThankYouModal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.85);
z-index: 10001;
display: none;
align-items: center;
justify-content: center;
padding: 20px;
animation: fadeIn 0.3s ease-out;
}



@media (max-width: 1024px) {
.aboutContent {
grid-template-columns: 1fr;
gap: 2.5rem;
}

.valuePropsGrid {
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
}

@media (max-width: 768px) {
.pageHeroBanner {
height: 250px;
}

.heroBannerOverlay h1 {
font-size: 2rem;
}

.heroBannerOverlay p {
font-size: 1rem;
}

.aboutSection1,
.aboutSection2,
.aboutSection3 {
padding: 3rem 1.25rem;
}

.aboutText h2 {
font-size: 1.75rem;
}

.valuePropsGrid {
grid-template-columns: 1fr;
gap: 1.5rem;
}

.commitmentGrid {
grid-template-columns: 1fr;
gap: 1.5rem;
}

.ctaBoxAbout {
padding: 2rem;
}

.ctaBoxAbout h3 {
font-size: 1.5rem;
}

.ctaButtons {
flex-direction: column;
}

.btnPrimary, .btnSecondary {
width: 100%;
}

.contactInfoCards {
grid-template-columns: 1fr;
gap: 1.5rem;
}

.contactPageForm {
padding: 2rem 1.5rem;
}

.ctaContainer h2 {
font-size: 1.75rem;
}

.contactCard {
padding: 2rem 1.5rem;
}

.mapPlaceholder {
padding: 3rem 1.5rem;
min-height: 300px;
}
}

@media (max-width: 480px) {
.pageHeroBanner {
height: 200px;
}

.heroBannerOverlay h1 {
font-size: 1.75rem;
}

.heroBannerOverlay p {
font-size: 0.875rem;
}

.aboutText h2 {
font-size: 1.5rem;
}

.valueProp {
padding: 1.5rem;
}

.contactCardIcon {
width: 60px;
height: 60px;
}

.contactCardIcon .material-icons {
font-size: 30px;
}
}


.legalPageWrapper {
padding: 4rem 1.25rem;
background: #fff;
min-height: 60vh;
}

.legalPageContainer {
max-width: 900px;
margin: 0 auto;
}

.legalPageContainer h1 {
font-size: 2.5rem;
color: #000;
margin-bottom: 2rem;
text-align: center;
font-weight: 700;
}

.legalContent {
line-height: 1.8;
}

.legalContent h2 {
font-size: 1.5rem;
color: #000;
margin-top: 2.5rem;
margin-bottom: 1rem;
font-weight: 600;
}

.legalContent h2:first-of-type {
margin-top: 0;
}

.legalContent p {
font-size: 1rem;
color: #555;
margin-bottom: 1.5rem;
text-align: justify;
}

.legalContent p:last-child {
margin-bottom: 0;
}


@media (max-width: 768px) {
.legalPageWrapper {
padding: 3rem 1.25rem;
}

.legalPageContainer h1 {
font-size: 2rem;
}

.legalContent h2 {
font-size: 1.25rem;
margin-top: 2rem;
}

.legalContent p {
font-size: 0.9375rem;
text-align: left;
}
}

@media (max-width: 480px) {
.legalPageWrapper {
padding: 2rem 1rem;
}

.legalPageContainer h1 {
font-size: 1.75rem;
}

.legalContent h2 {
font-size: 1.125rem;
}

.legalContent p {
font-size: 0.875rem;
}
}