/* ===== CSS VARIABLES ===== */
:root {
  /* Backgrounds */
  --bg-main: #ffffff;
  --bg-card: #ffffff;

  /* Primary & Secondary colors */
  --primary: #ffc505;
  --secondary: #e63946;

  /* Text colors */
  --text-main: #1b1b1b;
  --text-muted: #5f5e5e;

  /* Border */
  --border: #d1d5db;

  /* Header */
  --header-bg: #000000;
  --header-text: #ffffff;
}

/* ===== GLOBAL RESETS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/* ===== GLOBAL STYLES ===== */
body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

/* ===== HEADER/NAVIGATION ===== */
.header {
  position: sticky;
  top: 0;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  white-space: nowrap;
}

.logo img {
  width: 120px;
  height: 70px;
}

/* ===== NAV SEARCH ===== */
.nav-search {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  padding: .4rem .6rem;
  border-radius: 6px;
  gap: .5rem;
  transition: width .3s ease;
  margin-left: 4rem;
}

.nav-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--text-main);
  width: 0;
  transition: width .3s ease;
}

.nav-search.active input {
  width: 180px;
}

.nav-search i {
  cursor: pointer;
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  color: var(--bg-card);
  font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary);
}

/* ===== MOBILE MENU CLOSE ICON ===== */
.nav-links .close-menu {
  display: none;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  background: var(--header-bg);
  z-index: 1001;
}

.nav-links .close-menu i {
  font-size: 2rem;
  cursor: pointer;
  color: var(--header-text);
}

/* ===== MENU TOGGLE ===== */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn,
.btn:focus,
.btn:active {
  text-decoration: none;
  outline: none;
}

.btn {
  padding: .8rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn.primary {
  background: var(--primary);
  color: #000;
}

.btn.primary:hover {
  background: #f5e3a5;
}

.btn.whatsapp {
  background: #25D366;
  color: #000;
}

.btn.whatsapp:hover {
  background: #88ecae;
}

.btn.outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn.outline:hover {
  background: var(--primary);
  color: #000;
}

.view-more .view-btn {
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 8px;
}


/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Overlay */
.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* CENTERED CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center;     /* horizontal center */
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-content p {
  max-width: 600px;
  margin-bottom: 2rem;
  color: #e5e7eb;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}




.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 0;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.hero-text p {
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image img {
  width: 100%;
  border-radius: 14px;
  min-width: 267px;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 4rem 0;
  text-align: center;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ===== FEATURED PRODUCTS SECTION ===== */
.featured-products {
  padding: 4rem 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.product-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.product-price {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.rating {
  color: #fbbc04;
  margin-bottom: 1rem;
}

.product-card .btn.add-cart {
  width: 80%;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  margin: 0 auto 0 auto;
  display: block;
  font-weight: 600;
  border-radius: 6px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.product-card:hover img {
  transform: scale(1.05);
}

.view-more {
  margin-top: 2.5rem;
  text-align: center;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Large tablets / small laptops - 1024px */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .nav-search {
    margin-left: 2rem;
  }
}

/* Tablets - 900px */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links .close-menu {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 0.5rem;
    right: 0.8rem;
    width: auto;
    padding: 0;
    background: transparent;
    z-index: 1001;
  }

  .nav-links .close-menu i {
    font-size: 2rem;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--header-bg);
    flex-direction: column;
    align-items: center;
    padding-top: 3.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
    max-height: 100vh;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 1rem 1.5rem;
    text-align: center;
  }
}

/* Mobile Menu - 900px (duplicate rules consolidated above) */

/* Tablets / large phones - 768px */
@media (max-width: 768px) {
  .logo img {
    width: 100px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    max-width: 100%;
  }

  .nav-search {
    margin-left: 1rem;
  }

  .nav-search input.active {
    width: 140px;
  }
}

/* Mobile phones - 600px */
@media (max-width: 600px) {
  .features-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-card {
    width: 100%;
    padding: 1rem;
  }

  .product-card img {
    max-height: 120px;
    margin-bottom: 0.8rem;
  }

  .product-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .product-description {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }

  .product-price {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .product-card .rating {
    margin-bottom: 0.8rem;
  }

  .product-card .btn.add-cart {
    width: 90%;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .feature-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }
}

/* Mobile phones - 480px */
@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .nav {
    flex-wrap: wrap;
    height: auto;
    padding: 0.8rem 1rem;
  }

  .nav-search {
    margin: 0.5rem 0;
    width: 100%;
    justify-content: center;
  }

  .nav-search input.active {
    width: 120px;
  }

  .nav-links {
    top: 64px;
  }

  .nav-links li a {
    padding: 0.8rem 1rem;
  }

  .menu-toggle {
    font-size: 1.8rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  .product-card img {
    max-height: 120px;
  }

  .product-card .btn.add-cart {
    width: 90%;
    font-size: 0.9rem;
  }

  .nav {
    flex-wrap: wrap;
    height: auto;
    padding: 0.5rem 1rem;
  }

  .logo {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  .nav-search {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  .nav-search input {
    width: 140px;
  }

  .nav-links {
    width: 100%;
    top: auto;
    left: 0;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
  }

  .nav-links li a {
    padding: 0.8rem 1rem;
    text-align: center;
  }

  .nav-user {
    width: 100%;
    justify-content: center;
    margin-top: 0.3rem;
  }

  .menu-toggle {
    margin-left: auto;
    color: #ffffff;
  }
}

/* Extra small screens - 400px */
@media (max-width: 400px) {
  .nav-links .close-menu {
    padding: 1rem;
    justify-content: flex-end;
    position: sticky;
    top: 0;
    background: var(--header-bg);
    z-index: 1001;
  }

  .nav-links .close-menu i {
    font-size: 2.2rem;
    margin-right: 0.5rem;
  }

  .nav-links li a {
    padding: 0.8rem 1rem;
  }

  .nav-links {
    width: 100vw;
    left: 0;
    overflow-x: hidden;
  }

  .nav-links .close-menu {
    position: absolute;
    top: 0;
    right: 0.5rem;
    padding: 0.8rem;
    justify-content: flex-end;
    background: var(--header-bg);
    z-index: 1002;
  }

  .nav-links .close-menu i {
    font-size: 2rem;
  }

  .nav-links li a {
    padding: 0.8rem 1rem;
  }

  .nav-links {
    width: 100vw;
    left: 0;
    top: 72px;
    max-height: 100vh;
    overflow-y: auto;
    flex-direction: column;
    align-items: center;
    position: fixed;
    background: var(--header-bg);
    padding-top: 3rem;
    z-index: 1000;
  }

  .nav-links .close-menu {
    position: absolute;
    top: 0;
    right: 0.5rem;
    padding: 0.8rem;
    justify-content: flex-end;
    z-index: 1001;
  }

  .nav-links .close-menu i {
    font-size: 2rem;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 1rem 1.5rem;
    text-align: center;
  }
}

/* Extra small devices - 360px */
@media (max-width: 360px) {
  .hero-text h1 {
    font-size: 1.4rem;
  }

  .hero-text p {
    font-size: 0.85rem;
  }

  .hero-buttons a {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }

  .nav-search input.active {
    width: 100px;
  }

  .product-card img {
    max-height: 100px;
  }
} 

/* FORCE MENU TOGGLE TO RIGHT (498px – 895px) */
@media (max-width: 900px) {
  .menu-toggle {
    margin-left: auto;
    color: #ffffff;
  }
}

/* ================= FOOTER ================= */
.footer {
  background: #0f172a;
  color: #e5e7eb;
  margin-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: 4rem 1rem;
}

.footer h3,
.footer h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5f5;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links ul li a {
  color: #cbd5f5;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  font-size: 1.4rem;
  color: #cbd5f5;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 1.2rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}


/* ===== FIX CLOSE MENU VISIBILITY (409px – 490px) ===== */
@media (max-width: 480px) and (min-width: 409px) {

  .nav-links {
    padding-top: 4rem; /* creates space for the close icon */
  }

  .nav-links .close-menu {
    display: flex;
    position: fixed;
    top: 12px;
    right: 16px;
    z-index: 2000;
    background: transparent;
  }

  .nav-links .close-menu i {
    font-size: 2.2rem;
    color: #ffffff;
  }
}


.btn-primary {
  background: var(--primary);
  color: #000;
}

.btn-primary:hover {
    background: transparent;
  color: var(--primary);
  border: 2px var(--primary);
} 

.product-price span{
  color: var(--header-bg);
}


/* ===== PRODUCT DETAILS PAGE ===== */
.product-details {
  padding: 4rem 0;
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-details-image img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--bg-card);
  padding: 1.5rem;
}

.product-details-info h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.product-short {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.product-specs {
  list-style: none;
  margin-bottom: 1.8rem;
}

.product-specs li {
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.price-box {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

.price-box p {
  margin-bottom: 0.5rem;
}

.total-price {
  font-size: 1.2rem;
  color: var(--header-bg);
}

.product-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-details-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-actions {
    justify-content: center;
  }
}


/* ===== MOST VIEWED SLIDER ===== */
.most-viewed {
  padding: 3rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.most-viewed-wrapper {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

.most-viewed-wrapper::-webkit-scrollbar {
  display: none;
}

.most-viewed .product-card {
  min-width: 260px;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1rem;
}

.slider-controls {
  display: flex;
  gap: 0.5rem;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-card);
  color: var(--text-main);
  cursor: pointer;
}

.slider-btn:hover {
  background: var(--primary);
  color: #000;
}

/* SLIDER ARROWS – MORE VISIBLE */
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: rgba(15, 17, 21, 0.9);
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.25s ease;
}

.slider-btn:hover {
  background: var(--primary);
  color: #000;
  transform: scale(1.05);
}


/* ===== REMOVE BORDER FROM ADD TO CART (DETAILS PAGE) ===== */
.product-details .btn.primary {
  border: none;
  box-shadow: none;
}

.product-details .btn.primary:focus,
.product-details .btn.primary:active {
  outline: none;
  box-shadow: none;
}



/* ===== QUANTITY SELECTOR ===== */
.quantity-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.quantity-controls button {
  width: 38px;
  height: 38px;
  border: none;
  background: #f1f5f9;
  font-size: 1.2rem;
  cursor: pointer;
}

.quantity-controls button:hover {
  background: var(--primary);
}

.quantity-controls input {
  width: 55px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 1rem;
}

/* ===== SHOP PAGE LAYOUT ===== */
.shop-page {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
}

/* ===== SIDEBAR ===== */
.shop-sidebar {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  position: sticky;
  top: 90px;
  height: fit-content;
}

.sidebar-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.category-list {
  list-style: none;
  margin-bottom: 2rem;
}

.category-list li {
  padding: 0.6rem 0.4rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-main);
}

.category-list li:hover,
.category-list li.active {
  color: var(--primary);
}

/* ===== PRICE FILTER ===== */
.price-filter {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price-filter input {
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* ===== PRODUCTS AREA ===== */
.shop-products {
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .shop-page {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }
}

.shop-sidebar {
  position: sticky;
  top: 90px; /* below navbar */
  height: fit-content;
  align-self: flex-start;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
    margin-bottom: 2rem;
  }
}

.btn.outlinesss {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn.outlinesss:hover {
  background: var(--primary);
  color: #000;
}

/* ===== CONTACT FORM CONTAINER ===== */
.contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ===== INPUT & TEXTAREA ===== */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #fafafa;
  transition: all 0.3s ease;
}

/* ===== PLACEHOLDER ===== */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a9a9a;
  font-weight: 400;
}

/* ===== FOCUS STATE ===== */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4af37; /* gold */
  background-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Placeholder fade on focus */
.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
  color: transparent;
}

/* ===== TEXTAREA ===== */
.contact-form textarea {
  min-height: 120px;
  resize: none;
}

/* ===== BUTTON ===== */
.contact-form button {
  width: 100%;
  padding: 14px;
  background-color: #000;
  color: #d4af37;
  border: 2px solid #d4af37;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover effect */
.contact-form button:hover {
  background-color: #d4af37;
  color: #000;
}

/* ===== FORM TITLE ===== */
.contact-form h2 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
}
