body {
  margin: 0;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #FFF8E7;
  color: #412602;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
 
}

header {
  background-color: #815a06;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: bold;
    
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 30px;
  text-shadow: 5px 5px 5px #000;
}

.logo-container img {
  height: 70px;
  width: 70px;
  object-fit: cover;
  border-radius: 30%;
  border: 2px solid #8B4513;
  box-shadow: 4px 4px 4px #0000007a;
}

header h1 {
  margin: 0;
  font-size: 2em;
  color: #ffffff;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:10px;
  margin-bottom: 5px;
  text-align: center;
}

nav a{
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  background-color: #b88109;
  padding: 6px 12px;
  border-radius: 10px;
  max-width: 100px;
  min-width: 100px;
  font-size: 15px;
  box-shadow: 5px 5px 5px #000;
}

.hero {
  background-color: #F5F5DC;
  text-align: center;
  padding: 80px 20px;
  flex-grow: 1;
}

.hero h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1em;
  color: #4B2E05;
}

.hero button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #8B4513;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1em;
}

.about-section {
  background-color: #F5F5DC;
  padding: 60px 20px;
  text-align: center;
  flex-grow: 1;
}

.about-section h2 {
  font-size: 2em;
  color: #4B2E05;
}

.about-section p {
  max-width: 500px;
  margin: 20px auto;
  font-size: 1.1em;
  line-height: 1.6em;
  color: #4B2E05;
}

.split-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  padding-left: 50px;
  padding-top: -50px;
  gap: 40px;
  background-size: cover;
  background-image: url('bgchips.jpg');
 
}

.split-text {
  flex: 1;
  font-size: 1.6em;
  line-height: 1.7em;
  color: #3a2200;
  font-weight: bold;
  text-shadow: 5px 5px 6px #7e7e7e;
}

.split-text h2 {
  font-size: 2.3em;
  color: #3a2200;
  margin-bottom: 20px;
}

.split-image {
  flex: 1;
  text-align: center;
}

.split-image img {
  width: 50%;
  height:50%;
  border-radius: 10px;
  margin-top:-50px; 
  position:relative;
  box-shadow: 5px 5px 5px 5px #0000007a;
}

.products-section {
  background-size: cover;
  background-image: url('bgchips.jpg');
  padding: 60px 40px 120px;
  text-align: center;
  flex-grow: 1;
  text-shadow: 5px 5px 5px #0000007a;
}

.products-section h2 {
  font-size: 2.3em;
  color: #4B2E05;
  margin-bottom: 20px;
}

.best-seller {
  margin-bottom: 60px;
}

.best-seller img {
  width: 350px;
  max-width: 100%;
  border-radius: 15px;
}

.best-seller h3 {
  color: #8B4513;
  font-size: 1.5em;
  margin-top: 15px;
}

.best-seller p {
  color: #4B2E05;
  font-size: 1.1em;
  max-width: 500px;
  margin: 10px auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  justify-items: center;
 
}

.product-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 20px;
  width: 100%;
  max-width: 300px;
  box-shadow: 5px 5px 10px #00000075;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  height: 300px;
  object-fit: cover;
}

.product-card h4 {
  color: #4B2E05;
  margin-top: 15px;
  font-size: 1.2em;
}

.product-card p {
  font-size: 1.3em;
  color: #4B2E05;
  margin-top: 5px;
}

.product-card2 {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 10px;
  align-content: center;
  width: 100%;
  max-width: 400px;
  box-shadow: 5px 5px 10px #00000075;
}

.product-card2 img {
  width: 100%;
  border-radius: 10px;
  height: 300px;
  object-fit: cover;
}

.product-card2 h4 {
  color: #4B2E05;
  margin-top: 15px;
  font-size: 1.2em;
}

.product-card2 p {
  font-size: 1.3em;
  color: #4B2E05;
  margin-top: 5px;
}


.pricing-section {
  text-align: center;
  background-size: cover;
  background-image: url('bgchips.jpg');
  min-height: 100%;
  height: 600px;
}

.pricing-section h2 {
  color: #4B2E05;
  font-size: 2em;
  margin-bottom: 30px;
  text-decoration: underline;
 
}

.pricing-table {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: #FFF8DC;
  border-radius: 10px;
  overflow: hidden;
  font-size: 1.2em;
   box-shadow: 5px 5px 10px 5px #000000b3;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #D2B48C;
  padding: 20px 30px;
  text-align: left;
}

.pricing-table th {
  background-color: #D2B48C;
  color: #4B2E05;
}

.pricing-table td {
  color: #4B2E05;
}

.service-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 131px;
  background-size: cover;
  background-image: url('bgchips.jpg');
}

.payment-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  background-color: #ffffff;
  border: 2px solid #D2B48C;
  border-radius: 10px;
  padding: 40px;
  margin-top: 10px;
  box-shadow: 5px 5px 5px #000000b7;
}

.payment-left,
.payment-middle,
.payment-right {
  flex: 1;
  text-align: center;
}

.arrow {
  font-size: 80px;
  color: #000;
  margin: 20px 0;
}

.payment-middle img {
  width: 250px;
  height: 250px;
  box-shadow: 4px 4px 10px 5px #00000099;
}

.payment-right img {
  width: 220px;
  margin-top: 20px;
  border-radius: 5px;
   box-shadow: 4px 4px 10px 5px #00000099;
}

.gcash {
  margin-top: 20px;
  font-weight: bold;
  font-size: 1.2em;
}

.service-section {
  background-color: #F5F5DC;
  padding: 80px 40px;
  text-align: center;
}

.service-section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #4B2E05;
}

.service-section p {
  font-size: 1.3em;
  line-height: 1.8em;
  color: #4B2E05;
}

.contact-section {
   background-size: cover;
  background-image: url('bgchips.jpg');
  padding: 80px 40px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  text-shadow: 5px 5px 5px #adadad;
  font-weight: bolder;
  color: #3a2200;
}

.contact-details {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.contact-details h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #4B2E05;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 1.3em;
}

.contact-item img {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

.contact-info {
  flex: 1;
}

.contact-right {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
  font-size: 1.3em;
}

.contact-right h3 {
  background-color: #FFD700;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
  color: #000;
}

.contact-right p {
  margin: 15px 0;
}

.contact-section {
  background-color: #FFF8E7;
  padding: 80px 40px 120px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-left {
  flex: 1;
  min-width: 300px;
  margin-left: 250px
}

.contact-left h2 {
  font-size: 2.5em;
  text-decoration: underline;
  color: #4B2E05;
  margin-bottom: 25px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 1.3em;
  color: #4B2E05;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item img {
  width: 45px;
  height: 45px;
  border-radius: 8px;
}

.contact-right {
  flex: 1;
  text-align: center;
  min-width: 300px;
   margin-right: 250px
}

.daily-open {
  background-color: #FFD700;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: bold;
  color: #000;
  transform: rotate(-5deg);
  margin-bottom: 20px;
}

.hours {
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 10px;
}

.time {
  font-size: 1.2em;
  color: #4B2E05;
  margin-top: 10px;
}

.location {
  margin-top: 40px;
  font-size: 1.2em;
  color: #4B2E05;
}

footer {
  background-color: #9a6a3e;
  font-weight: bold;
  color: #ffffff;
  font-size: 1.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  border-top: 2px solid #8B4513;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
}

footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

footer p {
  margin: 3px 0;
}
a{
  color: #ffffff;
}
.active{
  background-color: #ffffff;
  color:#815a06;
}
.icon{
  max-width: 20px;
  max-height: 20px;
  width: 20px;
}
