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

:root {
  --primary-color: #d4a574;
  --secondary-color: #8b4513;
  --accent-color: #ffd700;
  --text-dark: #2c1810;
  --text-light: #f5f5f5;
  --bg-light: #fff8f0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Removed flex: 1 and justify-content: center to allow proper layout */
}

.logo-img {
  width: 50px;
  height: auto;
}

.logo-text {
  display: block;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-image: linear-gradient(90deg, #f4d03f, #b8860b);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-text:hover {
  transform: scale(1.05);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Added hamburger menu toggle button styling */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--bg-light), #ffe4c4);
  gap: 2rem;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

.hero-image {
  flex: 1;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Products Section */
.products {
  padding: 4rem 2rem;
  background-color: var(--bg-light);
}

.products h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
}

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

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  padding: 1rem 1rem 0.5rem;
}

.product-card .description {
  color: #666;
  padding: 0 1rem;
  font-size: 0.9rem;
}

.price-section {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
}

.original-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
}

.buy-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  margin: 0 1rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.buy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

/* About Section */
.about {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #ffe4c4, var(--bg-light));
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-content img {
  flex: 1;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-text {
  flex: 1;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.features {
  list-style: none;
  margin-top: 2rem;
}

.features li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 4rem 2rem;
  background-color: var(--bg-light);
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* Updated contact layout to center single info block */
.contact-info-centered {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.contact-info h3 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Added WhatsApp button styling */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  margin-top: 2rem;
  font-size: 1.1rem;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  font-size: 1.4rem;
}

/* Removed contact form styles are no longer needed */

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--text-light);
  text-align: center;
  padding: 2rem;
}

/* Enhanced responsive design for all screen sizes */
@media (max-width: 1024px) {
  .navbar .container {
    padding: 0 15px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .hero {
    padding: 3rem 1.5rem;
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .products h2,
  .about h2,
  .contact h2 {
    font-size: 2rem;
  }

  .products {
    padding: 3rem 1.5rem;
  }

  .about {
    padding: 3rem 1.5rem;
  }

  .contact {
    padding: 3rem 1.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Improved layout structure for better tablet view */
  .navbar .container {
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0.75rem 15px;
  }

  /* Display hamburger menu on tablets and below */
  .menu-toggle {
    display: flex;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    order: 3;
  }

  /* Logo section positioned at start with smaller size */
  .logo-section {
    flex: 0 0 auto;
    justify-content: flex-start;
    gap: 8px;
    order: 1;
  }

  .logo-img {
    width: 40px;
  }

  .logo-text {
    font-size: 1.3rem;
    display: block;
  }

  /* Nav links hidden by default, shows as dropdown */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
    margin-top: 0;
  }

  /* Show dropdown when menu is active */
  .nav-links.active {
    max-height: 400px;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
  }

  .hero {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .hero-content {
    text-align: center;
  }

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

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

  .hero-image {
    max-width: 100%;
    height: auto;
  }

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

  .products {
    padding: 2rem 1rem;
  }

  .products h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .product-card img {
    height: 200px;
  }

  .product-card h3 {
    font-size: 1.2rem;
  }

  .product-card .description {
    font-size: 0.85rem;
  }

  .about {
    padding: 2rem 1rem;
  }

  .about h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .about-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .features li {
    font-size: 1rem;
  }

  .contact {
    padding: 2rem 1rem;
  }

  .contact h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-centered {
    grid-column: 1;
  }

  .contact-info h3 {
    font-size: 1.3rem;
  }

  .contact-info p {
    font-size: 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  .footer {
    padding: 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  /* New breakpoint for better small tablet/large mobile experience */
  .container {
    padding: 0 12px;
  }

  .logo-img {
    width: 38px;
  }

  .navbar .container {
    padding: 0.75rem 12px;
  }

  .menu-toggle {
    right: 12px;
  }

  .nav-links {
    top: 60px;
  }

  .hero {
    padding: 1.75rem 0.75rem;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .cta-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .products {
    padding: 1.75rem 0.75rem;
  }

  .products h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .products-grid {
    gap: 1rem;
  }

  .product-card {
    border-radius: 10px;
  }

  .product-card img {
    height: 190px;
  }

  .product-card h3 {
    font-size: 1.1rem;
    padding: 0.9rem 0.9rem 0.4rem;
  }

  .product-card .description {
    font-size: 0.8rem;
    padding: 0 0.9rem;
  }

  .price-section {
    padding: 0.9rem;
  }

  .price {
    font-size: 1.6rem;
  }

  .buy-btn {
    padding: 0.65rem 1rem;
    margin: 0 0.9rem 0.9rem;
    font-size: 0.85rem;
  }

  .about {
    padding: 1.75rem 0.75rem;
  }

  .about h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .about-text p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .features li {
    font-size: 0.95rem;
    padding: 0.4rem 0;
  }

  .contact {
    padding: 1.75rem 0.75rem;
  }

  .contact h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .contact-content {
    gap: 1.5rem;
  }

  .contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.9rem;
  }

  .contact-info p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.7rem;
    font-size: 16px;
  }

  .submit-btn {
    padding: 0.7rem;
    font-size: 0.9rem;
  }

  .footer {
    padding: 1.25rem 0.75rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  /* Optimized for small phones */
  .container {
    padding: 0 15px;
  }

  .logo-img {
    width: 35px;
  }

  .navbar .container {
    padding: 0.8rem 15px;
  }

  .menu-toggle {
    right: 15px;
  }

  .nav-links {
    top: 65px;
  }

  .hero {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .products {
    padding: 1.5rem 1rem;
  }

  .products h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .products-grid {
    gap: 1rem;
  }

  .product-card {
    border-radius: 10px;
  }

  .product-card img {
    height: 180px;
  }

  .product-card h3 {
    font-size: 1.1rem;
    padding: 0.8rem 0.8rem 0.4rem;
  }

  .product-card .description {
    font-size: 0.8rem;
    padding: 0 0.8rem;
  }

  .price-section {
    padding: 0.8rem;
  }

  .price {
    font-size: 1.5rem;
  }

  .buy-btn {
    padding: 0.7rem 1rem;
    margin: 0 0.8rem 0.8rem;
    font-size: 0.9rem;
  }

  .about {
    padding: 1.5rem 1rem;
  }

  .about h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .about-text p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .features li {
    font-size: 0.95rem;
    padding: 0.4rem 0;
  }

  .contact {
    padding: 1.5rem 1rem;
  }

  .contact h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .contact-content {
    gap: 1.5rem;
  }

  .contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .contact-info p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .submit-btn {
    padding: 0.7rem;
    font-size: 0.9rem;
  }

  .footer {
    padding: 1rem;
    font-size: 0.8rem;
  }
}
