    

/* Global Styles */
:root {
  --mountain-cream: #F5EFE6;      /* base */
  --warm-beige: #EFE2D3;          /* section alt */
  --earth-brown: #5A3516;         /* softer brown */
  --deep-brown: #3E2412;          /* header */
  --forest-green: #6FA13A;        /* subtle accent */
  --saffron: #F2A900;             /* action only */
  --charcoal: #2B2B2B;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1f2d1f;
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-weight: 600;
  font-family: 'Lora', serif;
  color: var(--primary-brown);
}

p {
  opacity: 0.9;
}

.btn-primary,
.single_add_to_cart_button {
  color: #ffffff;
  background: var(--saffron);
}

.btn-primary:hover,
.single_add_to_cart_button:hover {
  opacity: 0.9;
}

.btn-secondary {
  border: 1px solid var(--earth-brown);
  color: var(--earth-brown);
}

section {
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  padding: 100px 0;
}


/* HEADER */
.site-header {
  background: var(--deep-brown);
  padding: 16px 0;
  border-bottom: 1px solid #EFE4D6;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
}

/* NAV */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.main-nav a {
    color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* MENU ICONS FOR CART & ACCOUNT */

/* Hide text but keep menu item */
.main-nav li.menu-item a {
  position: relative;
}

/* Hide text for Cart & My Account */
/* Icon-only menu items: hide text */
.main-nav li.menu-item a[href*="/my-account"],
.main-nav li.menu-item a[href*="/cart"] {
  font-size: 0;
  line-height: 1;
}

/* Account icon */
.main-nav li.menu-item a[href*="/my-account"]::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("/wp-content/themes/himzara/assets/icon-user.svg") no-repeat center;
  background-size: contain;
  display: inline-block;
}

/* Cart icon */
.main-nav li.menu-item a[href*="/cart"]::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("/wp-content/themes/himzara/assets/icon-cart.svg") no-repeat center;
  background-size: contain;
  display: inline-block;
}


.main-nav li.menu-item a[href*="/my-account"]:hover,
.main-nav li.menu-item a[href*="/cart"]:hover {
  text-decoration: none;
}

.main-nav li.menu-item a[href*="/my-account"],
.main-nav li.menu-item a[href*="/cart"] {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
}



/* FOOTER */
.site-footer {
  background: #111;
  color: #fff;
  padding: 24px 0;
  margin-top: 80px;
  text-align: center;
}

/* HERO */
.hero {
  background: linear-gradient(
    to bottom,
    #F5EFE6 0%,
    #EFE2D3 100%;
  padding: 80px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--earth-brown);
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
}

.hero-text h1 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-text p {
  max-width: 520px;
  color: #444;
}

.hero .btn-primary {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .hero {
    padding: 60px 0;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    margin: 0 auto 25px;
  }

  .hero-image {
    order: -1;
  }
}



/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

.btn-primary {
  background: #1f2d1f;
  color: #fff;
}

.btn-primary:hover {
  background-color: #2e5e4e;
  transform: translateY(-1px);
}


.btn-secondary {
  border: 2px solid #1f2d1f;
  color: #1f2d1f;
}

/* WHY HIMZARA */
.why {
  padding: 80px 0;
}

.why h2 {
  text-align: center;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.why-card h3 {
  margin-bottom: 10px;
}

.why-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}


/* STORY */
.story {
  background: #1f2d1f;
  color: #fff;
  padding: 80px 0;
}

.story .btn-secondary {
  margin-top: 20px;
  display: inline-block;
  color: #fff;
  border-color: #fff;
}

.story .btn-secondary:hover {
  background: #fff;
  color: #1f2d1f;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

.page-content {
  padding: 80px 0;
}

.page-title {
  font-size: 36px;
  margin-bottom: 30px;
}

.page-body {
  font-size: 18px;
  line-height: 1.7;
}

.contact-info {
  margin-top: 30px;
  font-size: 18px;
}

.site-footer {
  background: #1f2d1f;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.8;
}

.shop-page {
  padding: 80px 0;
}

.woocommerce ul.products {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/*.woocommerce ul.products li.product {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: center;
}*/

.woocommerce ul.products li.product {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 10px;

}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 48px;
}


.woocommerce ul.products li.product:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.woocommerce ul.products li.product .button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2e5e4e;
    color: #fff;
    border-radius: 8px;
    padding: 12px 0;
    margin-top: auto;
    width: 100%;
    text-align: center;
    font-size: 15px;
}

.woocommerce ul.products li.product img {
  border-radius: 10px;
}

.woocommerce ul.products li.product h2 {
  font-size: 18px;
  margin: 15px 0;
}

/* Force product title color */
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h2 a {
  color: #1f2d1f;
  font-weight: 600;
  text-decoration: none;
}

/* Prevent blue color on hover */
.woocommerce ul.products li.product h2 a:hover {
  color: #1f2d1f;
}


.woocommerce ul.products li.product .price {
  font-size: 16px;
  font-weight: 600;
  color: #2e5e4e;
}

.woocommerce ul.products li.product a.button {
  background: #1f2d1f;
  color: #fff;
  border-radius: 6px;
  padding: 10px 18px;
}

.woocommerce ul.products li.product a {
  color: #1f2d1f;
}

.woocommerce ul.products li.product a:hover {
  color: #1f2d1f;
}

.single-product .product {
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 80%;
  margin: auto;
}

.single-product .product img {
  border-radius: 12px;
}

.single-product .summary {
  font-size: 18px;
}

.single-product .summary h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.single-product .price {
  font-size: 22px;
  font-weight: 600;
  margin: 20px 0;
}

.single-product .woocommerce-product-details__short-description {
  margin-bottom: 25px;
}

.single-product button.single_add_to_cart_button {
  background: #1f2d1f;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 16px;
}

.trust-note {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.8;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  table-layout: fixed;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.woocommerce-checkout-review-order {
  overflow-x: auto;
}

.woocommerce table.shop_table {
  border-collapse: collapse;
  width: 100%;
}

.woocommerce-checkout-review-order-table td:last-child,
.woocommerce-checkout-review-order-table th:last-child {
  text-align: right;
  white-space: nowrap;
}

.wc-block-components-formatted-money-amount {
  font-weight: 600;
  display: inline-block;
}

.wc-block-components-product-metadata__description{
    display: none;
}

.checkout-trust {
  margin: 20px 0;
  padding: 12px;
  background: #f4f6f2;
  border-radius: 8px;
  font-size: 14px;
}

/* =========================
   HIMZARA FOOTER
========================= */

.himzara-footer {
    background-color: #1f3d33;
    color: #ffffff;
    padding: 50px 20px 20px;
    font-family: inherit;
}

.himzara-footer a {
    color: #ffffff;
    text-decoration: none;
}

.himzara-footer a:hover {
    text-decoration: underline;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col p {
    line-height: 1.6;
    font-size: 14px;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    opacity: 0.85;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* TRUST STRIP */
.trust-strip {
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid #eee;
  padding: 25px 0;
  background: var(--warm-beige);
  color: var(--earth-brown);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #1f2d1f;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 15px;
  }
}

.featured-products {
  padding: 80px 0;
  background: #f9faf8;
}

.featured-products h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* =========================
   SHOP BY CATEGORY
========================= */

.shop-categories {
  padding: 80px 0;
  background: #ffffff;
}

.shop-categories h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #1f2d1f;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  background: #f4f6f2;
  border-radius: 16px;
  padding: 50px 20px;
  text-align: center;
  text-decoration: none;
  color: #1f2d1f;
  font-size: 20px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* Mobile */
@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

.logo img,
.custom-logo {
  max-height: 60px;
  width: auto;
}

.logo-link {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .logo img,
  .custom-logo {
    max-height: 48px;
  }
}

/* Cart count badge */
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #e63946;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 50%;
  min-width: 16px;
  text-align: center;
  line-height: 1;
}

/* Position relative for cart link */
.main-nav li.menu-item a[href*="/cart"] {
  position: relative;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials {
  padding: 80px 0;
  background: #f4f6f2;
  text-align: center;
}

.testimonials h2 {
  font-size: 34px;
  margin-bottom: 50px;
  color: #1f2d1f;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-card span {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #1f2d1f;
}

/* Mobile */
@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Amazon Rating Highlight */

.rating-highlight {
  margin-bottom: 40px;
}

.amazon-rating-link {
  text-decoration: none;
  display: inline-block;
  padding: 20px 30px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.amazon-rating-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.rating-highlight .stars {
  color: #f4b400;
  font-size: 26px;
  letter-spacing: 4px;
}

.rating-highlight p {
  margin-top: 8px;
  font-size: 18px;
  color: #1f2d1f;
}

.amazon-verified {
  margin-top: 10px;
  font-size: 14px;
  color: #2e5e4e;
  font-weight: 600;
}











