*{
  margin:0;
  padding:0;
  font-family: 'Arial', sans-serif;
  box-sizing: border-box;
}

body{
  background-color: #FAF0E6;
  font-family: 'Arial', sans-serif;
}
html {
  scroll-behavior: smooth;
}
a{
  text-decoration:none;
}
.divider{
  margin-top: 0;
  height: 1px;         
  background-color: #333;
}

.nav-links{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content: center;
  gap:50px;
  list-style-type: none;
  margin-top:16px;
}

.nav-links li{
  font-weight:bold;
  cursor: pointer;
  transition: color 0.2s ease;
}
.nav-links li:hover{
  color:#E8923A;
}
.nav-links  a{
  text-decoration: none; 
  color: inherit;  
}

.hero-coffee-section{
  position:relative;
  display: block;
}
.hero-coffee-image{
  margin-top:20px;
  height:650px;
  width: 100%;
  object-fit: cover; 
  filter: brightness(0.5); 
}
.overlay-text{
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%); 
  color:#FAF0E6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overlay-text h1{
  color:white;
  font-size: 72px;
  font-weight:900;
  color:#FAF0E6;
  white-space: nowrap;
  margin-top:120px;
}
.overlay-text p{
  color:white;
  font-size: 18px;
  margin-top:15px;
  display: flex;
  flex-direction: column; 
  align-items: center;    
  text-align: center;     
  color:#FAF0E6;
  line-height: 30px; 
}
.overlay-text button{
  padding:20px 40px;
  font-size:14px;
  font-weight:bold;
  background-color:#E8923A ;
  border:none;
  margin-top:38px;
  cursor:pointer;
  transition:background-color 0.2s ease, color 0.2s ease;
}
.overlay-text button:hover{
  color:white;
  background-color: #000000;
}
.overlay-text button:active {
  opacity: 0.6;
}
@media (max-width:1024px){
  .overlay-text h1{
  color:white;
  font-size: 42px;
  font-weight:900;
  color:#FAF0E6;
  white-space: nowrap;
  }
  .hero-coffee-image{
    height: 450px;
  }
}
@media (max-width:600px){
  .overlay-text h1{
  color:white;
  font-size: 28px;
  font-weight:900;
  color:#FAF0E6;
  white-space: nowrap;
  }
  .overlay-text p{
    font-size:16px;
  }
  .hero-coffee-image{
    height: 400px;
  }
  .overlay-text p{
  color:white;
  font-size: 16px;
  margin-top:12px;
  text-align: center;     
  color:#FAF0E6;
  line-height: 20px;
  }
}

.choose-your-brew-section{
  margin-top:80px;
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-right:150px;
  padding-left:150px
}
#choose-your-brew{
  font-size: 48px;
  word-spacing:5px;
  letter-spacing: 3px;
  font-weight: 900;
  font-family: 'Anton', sans-serif;
}

.arrow-button {
  width: 40px;
  height: 40px;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  font-family: Times New Roman;
  font-weight: bold;
  color: black;
  border:2px solid black;
}
.arrow-button:hover{
  color:white;
  background-color: #000000;
}
.active-dot{
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #E8923A;
}
.dot{
  display: inline-block; 
  width: 12px;
  height: 12px;
  background-color: #000000;
  opacity:0.5;
}
.mobile-weight-dropdown{
  display: none;
}

@media (max-width: 600px) { 
  .Arrow-and-dots{
    display: none;
  }
  .mobile-weight-dropdown{
    display: block;
    width: 200px;
    padding: 12px 16px;
    border: 2px solid black;
    background-color: #FAF0E6;
    font-size: 16px;
    font-weight: bold;
  }
  #choose-your-brew{
  font-size: 32px;
  word-spacing:3px;
  letter-spacing:2px;
  text-align: center;
  width: 100%;
  }
}

.products-container{
  margin-top:80px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:30px;
  padding-right: 150px;
  padding-left: 150px;
}
.product-container{
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border:#000000 solid 2px;
  
  background-color: #FBF7F2;
}
.product-container img{
  width:100%;
  height: 350px;
  object-fit: cover;
}
.product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  text-align: center;
}
.coffee-origin {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #E8923A;
  margin-top: 14px;
}
.coffee-name{
  font-size: 18px;
  font-weight: bold;
  margin-top: 4px;
  text-align: center;
}
.coffee-weight{
  font-size: 14px;
  color: #555;
  margin-top: 4px;
  text-align: center;
}
.price-and-button{
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width:100%;
  padding:0px 20px;
  margin-top:10px;
  margin-bottom:20px;
}

.coffee-price{
  font-size: 20px;
  font-weight: 900;
  color: #111111;
  margin: 0;
}

.add-to-cart-button{
  padding: 10px 18px;
  border:2px solid #111111;
  background: transparent;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.add-to-cart-button:hover{
  background-color: #111111;
  color: #FAF0E6;
  transform: translateY(-1px);
}
.add-to-cart-button:active{
  opacity: 0.8;
}
 .thin-line {
    border: none; 
    border-top: 2px solid rgba(0, 0, 0, 0.1); 
    width: 100%; 
    margin: 20px auto;
  }
@media (max-width: 89rem) { 
  .choose-your-brew-section {
    padding-right: 3.125rem; 
    padding-left: 3.125rem;  
  }
  .products-container {
    padding-right: 3.125rem; 
    padding-left: 3.125rem;  
  }
}
@media (max-width:1024px){
  .products-container{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width:600px){
  .products-container{
    grid-template-columns: 1fr;
  }
  .choose-your-brew-section{
    flex-direction: column;
    padding:0px;
    gap:20px;
  }
}

.coffee-roast {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #888;
  text-transform: uppercase;
  margin-top: 3px;
  text-align: center;
}

[dir="rtl"] .hero-Navbar,
[dir="rtl"] .nav-links,
[dir="rtl"] .choose-your-brew-section,
[dir="rtl"] .price-and-button,
[dir="rtl"] .footer-section {
  direction: rtl;
}

.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-top: 2px solid #111;
  border-bottom: 2px solid #111;
  margin-top: 80px;
}

.location-map {
  height: 520px;
  border-right: 2px solid #111;
  overflow: hidden;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.location-info {
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background-color: #FAF0E6;
}

.location-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #E8923A;
  display: flex;
  align-items: center;
  gap: 8px;
}
.location-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #E8923A;
  border-radius: 50%;
}

.location-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.05;
  font-family: 'Anton', sans-serif;
  letter-spacing: 1px;
  color: #111;
}

.location-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  max-width: 400px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.location-icon {
  font-size: 18px;
  color: #111;
  margin-top: 2px;
  flex-shrink: 0;
}
.location-detail-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}
.location-detail-sub {
  font-size: 13px;
  color: #777;
  margin-top: 2px;
}

.chat-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid #111;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin-top: 8px;
  width: fit-content;
}
.chat-wa-btn:hover {
  background-color: #111;
  color: #FAF0E6;
}
.chat-wa-btn i {
  font-size: 18px;
}

@media (max-width: 900px) {
  .location-section {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .location-map {
    height: 300px;
    border-right: none;
    border-bottom: 2px solid #111;
  }
  .location-info {
    padding: 40px 32px;
  }
  .location-title {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .location-info {
    padding: 32px 20px;
    gap: 18px;
  }
  .location-title {
    font-size: 32px;
  }
  .chat-wa-btn {
    width: 100%;
    justify-content: center;
  }
}

.steam-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.steam {
  position: absolute;
  bottom: 16%;
  width: 70px;
  height: 240px;
  background: radial-gradient(ellipse at center,
              rgba(255,255,255,0.75) 0%,
              rgba(255,235,210,0.4) 40%,
              rgba(255,235,210,0.15) 65%,
              rgba(255,235,210,0) 80%);
  border-radius: 50%;
  filter: blur(5px);
  opacity: 0;
  animation: steamRise 6s ease-in infinite;
}

.steam-1 { left: 40%; animation-delay: 0s;    width: 60px; }
.steam-2 { left: 45%; animation-delay: 1.4s;  width: 48px; }
.steam-3 { left: 50%; animation-delay: 2.6s;  width: 65px; }
.steam-4 { left: 55%; animation-delay: 3.9s;  width: 52px; }
.steam-5 { left: 59%; animation-delay: 0.9s;  width: 44px; }

@keyframes steamRise {
  0% {
    transform: translateY(0) translateX(0) scaleX(1);
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  50% {
    transform: translateY(-180px) translateX(-14px) scaleX(1.4);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-380px) translateX(20px) scaleX(2.1);
    opacity: 0;
  }
}

.overlay-text {
  z-index: 2;
}

@media (max-width: 600px) {
  .steam { width: 36px !important; height: 150px; }
}
