:root{
  --main-color: #C89B5E;
  --text-color: #F5E6D3;
  --bg-navbar: #121212;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}
body{
  background-color: var(--bg-navbar);
}
.navbar {
  background-color: var(--bg-navbar) !important;
  height: 80px;
  border: 1px solid #c89b5e33;
}
.navbar-brand {
  font-weight: 700;
  font-size: 24px;
  color: var(--main-color) !important;
}
.nav-link {
  color: var(--text-color) !important;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 8px;
  padding: 8px 15px !important;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: #c8956d !important;
  background: rgba(200, 149, 109, 0.1);
}
.btn-order {
  background: var(--main-color);
  color: var(--bg-navbar);
  padding: 10px 25px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
}
.btn-order:hover {
  background: #d4a77a;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(200, 149, 109, 0.3);
}

/* hero section */
.hero-section {
  background: linear-gradient(135deg,#3b2416 5%,#121212 40%,#3b2416 95%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(187, 127, 80, 0.05) 1px, transparent 3px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  padding: 40px 0;
  z-index: 2;
}
/* right side */
.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 149, 109, 0.1);
  border: 1px solid rgba(200, 149, 109, 0.3);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #c8956d;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}
.badge-premium i {
  font-size: 1rem;
}
.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.hero-text {
  font-size: 1.15rem;
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.btn-primary-custom {
  background: #c8956d;
  color: #0d0d0d;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  border: 2px solid #c8956d;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.btn-primary-custom:hover {
  background: #d4a77a;
  border-color: #d4a77a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 149, 109, 0.3);
  color: #0d0d0d;
}
.btn-outline-custom {
  background: transparent;
  color: #c8956d;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  border: 2px solid #c8956d;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.btn-outline-custom:hover {
  background: rgba(200, 149, 109, 0.1);
  transform: translateY(-3px);
  color: #c8956d;
}
/* left side */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}
.circle-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px solid rgba(200, 149, 109, 0.2);
  background: radial-gradient(circle, rgba(200, 149, 109, 0.05) 100%, transparent 100%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}
.coffee-icon-main {
  position: relative;
  z-index: 2;
  width: 400px;
  height: 400px;
}
.coffee-icon-main svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(200, 149, 109, 0.3));
}
.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  animation: float 3s ease-in-out infinite;
}
.icon-top {
  top: 0;
  right: 15%;
  background: #c8956d;
  color: #0d0d0d;
  animation-delay: 0s;
}
.icon-bottom {
  bottom: 0;
  left: 10%;
  background: #f5e6d3;
  color: #8b5a2b;
  animation-delay: 1.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}
.wave-bottom svg {
  width: 100%;
  height: 80px;
}

/* about section */
.about-section {
  padding: 120px 0;
  background: var(--bg-navbar);
  position: relative;
  overflow: hidden;
}
.about-content {
  position: relative;
  z-index: 2;
  padding: 20px 0;
}
.badge-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 149, 109, 0.1);
  border: 1px solid rgba(200, 149, 109, 0.3);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #c8956d;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}
.badge-about i {
  font-size: 1rem;
}
.about-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #ffffff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.about-text {
  font-size: 1.1rem;
  color: #b0b0b0;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 520px;
}
.stats-row {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #c8956d;
  margin-bottom: 5px;
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: #888888;
  margin: 0;
}
.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}
.about-card {
  position: relative;
  width: 420px;
  height: 520px;
  background: linear-gradient(135deg, rgba(139, 90, 43, 0.4) 0%, rgba(90, 60, 30, 0.3) 100%);
  border-radius: 25px;
  border: 1px solid rgba(200, 149, 109, 0.15);
  backdrop-filter: blur(20px);
  overflow: hidden;
  padding: 40px;
}
.about-icon-top {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f5e6d3;
  color: #8b5a2b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 3;
}
.about-icon-bottom {
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #c8956d;
  color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 3;
}
.circles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  height: 100%;
  align-content: center;
  justify-items: center;
}
.circle-item {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(200, 149, 109, 0.08);
  border: 1px solid rgba(200, 149, 109, 0.2);
  transition: all 0.4s ease;
}
.circle-item:hover {
  background: rgba(200, 149, 109, 0.15);
  border-color: rgba(200, 149, 109, 0.4);
  transform: scale(1.05);
}

/* product section */
.products-section {
  padding: 100px 0;
  background: var(--bg-navbar);
  position: relative;
  background: linear-gradient(180deg, #121212 0%, #1E1713 100%);

}
.section-header {
  margin-bottom: 60px;
}
.badge-products {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 149, 109, 0.1);
  border: 1px solid rgba(200, 149, 109, 0.3);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #c8956d;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.badge-products i {
  font-size: 1rem;
}
.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.product-card {
  background: linear-gradient(135deg, rgba(139, 90, 43, 0.25) 0%, rgba(60, 40, 20, 0.2) 100%);
  border-radius: 20px;
  border: 1px solid rgba(200, 149, 109, 0.15);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 149, 109, 0.4);
  box-shadow: 0 20px 40px rgba(200, 149, 109, 0.1);
}
.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #c8956d;
  color: #0d0d0d;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
}
.product-image {
  padding: 60px 40px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}
.product-image svg {
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 0 15px rgba(200, 149, 109, 0.2));
  transition: all 0.4s ease;
}
.product-card:hover .product-image svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 25px rgba(200, 149, 109, 0.4));
}
.product-info {
  padding: 20px 25px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}
.product-desc {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}
.btn-add-cart {
  background: var(--main-color);
  color: var(--bg-navbar);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 25px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-add-cart:hover {
  background: #d4a77a;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(200, 149, 109, 0.3);
  color: #0d0d0d;
}
.btn-add-cart i {
  font-size: 0.9rem;
}
.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #c8956d;
  white-space: nowrap;
}

/* featured section */
.features-section {
  padding: 100px 0;
  background: var(--bg-navbar);
  position: relative;
}
.badge-features {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 149, 109, 0.1);
  border: 1px solid rgba(200, 149, 109, 0.3);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #c8956d;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.badge-features i {
  font-size: 1rem;
}
.feature-card {
  background: linear-gradient(135deg, rgba(139, 89, 43, 0.327) 0%, rgba(60, 40, 20, 0.15) 100%);
  border-radius: 20px;
  border: 1px solid rgba(200, 148, 109, 0.197);
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 149, 109, 0.3);
  box-shadow: 0 15px 35px rgba(200, 149, 109, 0.08);
}
.feature-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: var(--main-color);
  color: var(--bg-navbar);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(200, 149, 109, 0.3);
}
.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.7;
  margin: 0;
}

/* testimonials section */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-navbar);
  position: relative;
  background: linear-gradient(180deg, #121212 0%, #1E1713 100%);

}
.badge-testimonials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 149, 109, 0.1);
  border: 1px solid rgba(200, 149, 109, 0.3);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #c8956d;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.badge-testimonials i {
  font-size: 1rem;
}
.testimonials-swiper {
  padding: 20px 0 60px;
}
.testimonial-card {
  background: linear-gradient(135deg, rgba(139, 89, 43, 0.396) 0%, rgba(60, 40, 20, 0.15) 100%);
  border-radius: 20px;
  border: 1px solid rgba(200, 148, 109, 0.214);
  padding: 15px 30px 35px;
  position: relative;
  height: 100%;
}
.quote-mark {
  font-size: 3.5rem;
  color: rgba(200, 148, 109, 0.286);
  font-weight: 700;
}
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
}
.stars i {
  color: #c8956d;
  font-size: 0.9rem;
}
.testimonial-text {
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 149, 109, 0.1);
}
.author-info {
  text-align: right;
}
.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}
.author-role {
  font-size: 0.85rem;
  color: #888888;
  margin: 0;
}
.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #c8956d;
  color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.swiper-pagination-bullet {
  background: rgba(200, 149, 109, 0.3);
  width: 10px;
  height: 10px;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #c8956d;
  width: 25px;
  border-radius: 5px;
}

/* cta section */
.cta-section {
  padding: 100px 0;
  background: var(--bg-navbar);
  position: relative;
}
.cta-card {
  position: relative;
  background: linear-gradient(135deg, #C89B5E 0%, #997149 50%, #4d2e11 100%);
  border-radius: 25px;
  padding: 80px 40px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.cta-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.088) 1px, transparent 1px);
  background-size: 25px 25px;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.badge-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(13, 13, 13, 0.2);
  border: 1px solid rgba(13, 13, 13, 0.3);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #0d0d0d;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  font-weight: 600;
}
.badge-cta i {
  font-size: 1rem;
}
.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #0d0d0d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-text {
  font-size: 1.1rem;
  color: rgba(13, 13, 13, 0.8);
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta {
  background: #0d0d0d;
  color: #c8956d;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 35px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.btn-cta:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: #d4a77a;
}
.btn-cta i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.btn-cta:hover i {
  transform: translateX(5px);
}

/* footer section */
.footer-section {
  padding: 80px 0 0;
  background: linear-gradient(180deg, #121212 0%, #291f19 100%);
  position: relative;
  border-top: 1px solid rgba(200, 149, 109, 0.1);
}
.footer-main {
  padding-bottom: 50px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #c8956d;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.footer-desc {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200, 149, 109, 0.3);
  color: #c8956d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-link:hover {
  background: var(--main-color);
  color: var(--bg-navbar);
  border-color: var(--main-color);
  transform: translateY(-3px);
}
.footer-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 12px;
}
.footer-list a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-list a:hover {
  color: var(--main-color);
  transform: translateX(-5px);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-list i {
  color: var(--main-color);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.newsletter-text {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 15px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.newsletter-form .form-control {
  background: rgba(200, 149, 109, 0.08);
  border: 1px solid rgba(200, 149, 109, 0.2);
  border-radius: 12px;
  color: #ffffff;
  padding: 12px 15px;
  font-size: 0.9rem;
  flex-grow: 1;
  text-align: right;
}
.newsletter-form .form-control::placeholder {
  color: #888888;
}
.newsletter-form .form-control:focus {
  background: rgba(200, 149, 109, 0.12);
  border-color: rgba(200, 149, 109, 0.4);
  box-shadow: none;
  color: #ffffff;
}
.btn-send {
  background: var(--main-color);
  color: var(--bg-navbar);
  border: none;
  border-radius: 12px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.btn-send:hover {
  background: #d4a77a;
  transform: scale(1.05);
}
.footer-bottom {
  border-top: 1px solid rgba(200, 149, 109, 0.1);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-bottom-left {
  display: flex;
  gap: 25px;
}
.footer-bottom-left a {
  color: #888888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.footer-bottom-left a:hover {
  color: var(--main-color);
}
.footer-bottom-right {
  color: #888888;
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .hero-title { font-size: 2.8rem; }
  .hero-image-wrapper { min-height: 350px; margin-top: 30px; }
  .circle-glow { width: 300px; height: 300px; }
  .coffee-icon-main { width: 220px; height: 220px; }
  .hero-content { text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .about-section { padding: 80px 0; }
  .about-title { font-size: 2.8rem; text-align: center; }
  .about-text { text-align: center; margin-left: auto; margin-right: auto; }
  .stats-row { justify-content: center; gap: 40px; }
  .about-image-wrapper { min-height: 400px; margin-top: 40px; }
  .about-card { width: 350px; height: 430px; }
  .products-section { padding: 80px 0; }
  .section-title { font-size: 2.5rem; }
  .product-image { padding: 50px 30px 30px; min-height: 180px; }
  .product-image svg { width: 120px; height: 120px; }
  .features-section { padding: 80px 0; }
  .feature-card { padding: 30px 20px; }
  .feature-icon { width: 55px; height: 55px; font-size: 1.4rem; }
  .testimonials-section { padding: 80px 0; }
  .testimonial-card { padding: 30px 25px; }
  .quote-mark { font-size: 3rem; top: 10px; right: 20px; }
  .cta-section { padding: 80px 0; }
  .cta-card { padding: 60px 30px; }
  .cta-title { font-size: 2.2rem; }
  .footer-section { padding: 60px 0 0; }
  .footer-main { padding-bottom: 40px; }
  .footer-brand { margin-bottom: 30px; }
  .footer-links { margin-bottom: 30px; }
  .footer-contact { margin-bottom: 30px; }
}
@media (max-width: 576px) {
  .hero-title { font-size: 2.2rem; }
  .hero-text { font-size: 1rem; }
  .btn-primary-custom,
  .btn-outline-custom { padding: 12px 25px; font-size: 0.9rem; }
  .circle-glow { width: 250px; height: 250px; }
  .coffee-icon-main { width: 180px; height: 180px; }
  .about-title { font-size: 2.2rem; }
  .about-text { font-size: 1rem; }
  .stat-number { font-size: 1.8rem; }
  .about-card { width: 300px; height: 380px; padding: 30px; }
  .circles-grid { gap: 15px; }
  .section-title { font-size: 2rem; }
  .product-name { font-size: 1.1rem; }
  .product-price { font-size: 1.2rem; }
  .btn-add-cart { padding: 8px 14px; font-size: 0.8rem; }
  .feature-title { font-size: 1.1rem; }
  .feature-desc { font-size: 0.85rem; }
  .testimonial-text { font-size: 0.9rem; }
  .author-name { font-size: 1rem; }
  .testimonial-card { padding: 25px 20px; }
  .cta-card { padding: 50px 25px; border-radius: 20px; }
  .cta-title { font-size: 1.8rem; }
  .cta-text { font-size: 1rem; }
  .btn-cta { padding: 14px 30px; font-size: 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-left { gap: 15px; }
  .newsletter-form { flex-direction: row; }
}
