/* ============================================================
   HOME PAGE STYLES
   ============================================================ */
/* ---- Hero Section ---- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2C1A0E 0%, #5C3A1E 40%, #8B5E2F 70%, #C8860A 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);

}


.hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 6rem 0;
}

/* LEFT SIDE */

.hero-content {
  flex: 1;
  max-width: 650px;
  color: white;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(245, 200, 66, 0.15);
  border: 1px solid rgba(245, 200, 66, 0.4);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-6);
  animation: fadeSlideUp 0.8s ease both;
}

.hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  color: white;
}
.hero-title .highlight {
  display: inline-block;
  margin-top: 20px;

  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;

  color: #f5c842 !important;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  max-width: 580px;
  animation: fadeSlideUp 0.8s 0.35s ease both;
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.5s ease both;
}

.hero-trust {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-10);
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.65s ease both;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-heading);
}

.hero-trust-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* RIGHT SIDE IMAGE */

.hero-image-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;

}

.hero-image-side img {
  width: 80%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 60px rgba(0,0,0,0.45));
  opacity: 1;
}

.hero-image-side img:hover {
  transform: scale(1.03);
  box-shadow:
    0 35px 80px rgba(0,0,0,0.55),
    0 0 25px rgba(245, 200, 66, 0.18);
}


/* Desktop & Laptop */
@media (min-width: 769px) {

  .hero-image-side {
    display: none;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero-wrapper {
    justify-content: flex-start;
  }
}


/* Mobile View */
@media (max-width: 768px) {

  .hero {
    min-height: 100vh;
    padding-top: 2rem;
  }

  .hero-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 0rem 0 0.25rem;
  }

  .hero-content {
    order: 2;
    max-width: 100%;
  }

  .hero-image-side {
    display: flex;
    order: 1;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }

  .hero-image-side img {
    width: 85%;
    max-width: 320px;
    height: auto;
    object-fit: contain;

    border-radius: 30px;

    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3.2rem);
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 10px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    gap: 2rem;
  }

  .hero-bg img {
    opacity: 0.22;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(44,26,14,0.92) 0%,
      rgba(92,58,30,0.88) 55%,
      rgba(200,134,10,0.55) 100%
    );
  }
}

/* Animations */

@keyframes heroBgZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.15);
  }
}

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

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */

@media (max-width: 992px) {

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image-side img {
    max-width: 420px;
  }
}

@media (max-width: 576px) {

  .hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image-side img {
    max-width: 320px;
  }
}


/* ===== TRUST FEATURES ===== */

.trust-features {
  padding: 5rem 0 2rem;
  background: #FDF6EC;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(200,134,10,0.12);

  border-radius: 32px;

  padding: 2.2rem 1.5rem;

  text-align: center;

  transition: all 0.4s ease;

  backdrop-filter: blur(12px);

  box-shadow:
    0 10px 30px rgba(92,58,30,0.06),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

.trust-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 18px 40px rgba(200,134,10,0.18);

  border-color: rgba(200,134,10,0.28);
}

.trust-card img {
  width: 100%;
  max-width: 170px;
  height: 170px;

  object-fit: cover;

  border-radius: 22px;

  display: block;
  margin: 0 auto 1.4rem;

  background: #fff;

  padding: 12px;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.06);

  transition: all 0.4s ease;
}


.trust-card:hover img {
  transform: scale(1.08);
}

.trust-card h3 {
  font-size: 1.25rem;
  font-weight: 700;

  color: #2C1A0E;

  margin: 0;

  font-family: var(--font-heading);
}


/* ===== MOBILE ===== */

@media (max-width: 992px) {

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {

  .trust-features {
    padding: 3rem 0 1rem;
  }

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

  .trust-card {
    padding: 2rem 1rem;
    border-radius: 24px;
  }

  .trust-card img {
    width: 100px;
    height: 100px;
  }

  .trust-card h3 {
    font-size: 1.1rem;
  }
}


/* ---- Categories Strip ---- */
.categories-section {
  padding: var(--space-16) 0;
  background: var(--bg-white);
}

.categories-section .section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 360px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}


/* ---- Featured Products ---- */
.featured-section {
  padding: var(--space-20) 0;
  background: var(--bg-section);
}

.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-10);
  gap: var(--space-4);
  flex-wrap: wrap;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}


/* ---- Why Choose Us ---- */
.why-section {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #3D2510 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 134, 10, 0.15) 0%, transparent 70%);
}

.why-section .section-title,
.why-section .section-label {
  color: white;
}

.why-section .section-label::before,
.why-section .section-label::after {
  background: var(--accent);
}

.why-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.why-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(200, 134, 10, 0.5);
}

.why-card .feature-icon {
  background: linear-gradient(135deg, rgba(200, 134, 10, 0.2), rgba(245, 200, 66, 0.3));
  color: var(--accent);
}

.why-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.why-card h4 {
  color: white;
  margin-bottom: var(--space-2);
}

.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-sm);
}

@media (max-width: 1024px) {
  .why-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why-features {
    grid-template-columns: 1fr;
  }
}


/* ---- About Preview ---- */
.about-preview {
  padding: var(--space-20) 0;
  background: var(--bg-white);
}

.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-preview-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 134, 10, 0.2), transparent);
  border-radius: var(--radius-xl);
}

.about-badge {
  position: absolute;
  bottom: var(--space-5);
  right: var(--space-5);
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  text-align: center;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.about-badge-num {
  font-size: var(--text-3xl);
  font-weight: 700;
  font-family: var(--font-heading);
  display: block;
}

.about-badge-text {
  font-size: var(--text-xs);
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content .section-label {
  margin-bottom: var(--space-3);
}

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-body);
}

.about-feature-item i {
  color: var(--primary);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .about-preview-inner {
    grid-template-columns: 1fr;
  }

  .about-preview-image {
    aspect-ratio: 16/9;
  }
}


/* ---- Testimonials ---- */
.testimonials-section {
  padding: var(--space-20) 0;
  background: var(--bg-section);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  padding: var(--space-4) var(--space-6);
  background: var(--bg-white);
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  width: fit-content;
  margin: 0 auto var(--space-6);
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--secondary);
}

.trust-bar-item i {
  color: var(--primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}


/* ---- Newsletter ---- */
.newsletter-section {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.newsletter-text h2 {
  color: white;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: var(--space-3);
  flex: 1;
  max-width: 480px;
  min-width: 280px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: var(--text-base);
  outline: none;
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.2);
}


  @media (max-width: 768px) {

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
    max-width: 100%;
    
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 1rem;
  }

  .newsletter-input {
    width: 100%;
    max-width: 320px;
  }

  .newsletter-form .btn {
    width: 100%;
    max-width: 220px;
  }
}