.page-title{
  display: none;
}

.vista-cart-wrapper {
  padding: 60px 0;
}

.cart-page-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.cart-page-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin: 0;
  white-space: nowrap;
}

.cart-page-heading .heading-rule {
  flex: 1;
  height: 1px;
  background: #ccc;
}

.vista-cart-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.cart-items-col {
  flex: 1 1 65%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-totals-col {
  flex: 0 0 35%;
  max-width: 380px;
}

/* Item Card */
.cart-item-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  position: relative;
}

.cart-item-thumb img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #eee;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name a {
  color: #1c1c1c;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

.cart-item-meta {
  color: #888;
  font-size: 13px;
  margin: 4px 0 10px;
}

.cart-item-bottom-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-item-qty-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: #00481c;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: #013013;
}

.cart-qty-input {
  width: 34px;
  text-align: center;
  border: none;
  font-size: 15px;
  font-weight: 600;
  /* -moz-appearance: textfield; */
}

.cart-qty-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item-loading {
  opacity: 0.6;
  pointer-events: none;
}

.cart-qty-notice {
  margin-bottom: 24px;
}

.cart-qty-error {
  padding: 14px 18px;
  background: #fee2e2;
  color: #981b1c;
  border: 1px solid #fecaca;
  border-radius: 10px;
  font-size: 14px;
}

.cart-item-price {
  font-size: 18px;
  font-weight: 700;
  color: #1c1c1c;
}

.cart-item-remove {
  position: absolute;
  top: 16px;
  right: 16px;
}

.cart-item-remove .remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #b3261e;
  color: #fff !important;
  border-radius: 4px;
  font-size: 16px;
  text-decoration: none !important;
}

.cart-item-remove .remove:hover {
  background: #8f1e18;
}

/* Totals Box */
.cart-totals-box {
  background: #f5edd8;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.cart-totals-heading {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 16px;
  border-bottom: 1px solid #d8cba4;
  padding-bottom: 14px;
}

.cart-totals-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 15px;
}

.empty-cart-cstm-btn{
  text-align: center;
}
.cstm_btn_width{
  width:400px;
}





.cart-total-row {
  font-weight: 700;
  font-size: 16px;
  border-top: 1px solid #d8cba4;
  padding-top: 14px;
  margin-top: 4px;
}

.wc-proceed-to-checkout {
  margin-top: 20px;
}

.wc-proceed-to-checkout .checkout-button {
  display: block;
  width: 100%;
  text-align: center;
  background: #00481c;
  color: #fff !important;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s ease;
}

.wc-proceed-to-checkout .checkout-button:hover {
  background: #013013;
}

.cart-secure-note {
  text-align: center;
  font-size: 12px;
  color: #6b5d38;
  margin-top: 16px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .vista-cart-layout {
    flex-direction: column;
  }
  .cart-totals-col {
    max-width: 100%;
    width: 100%;
  }
}
/* empty cart */

.vista-empty-cart {
  text-align: center;
  padding: 80px 20px 100px;
}

.empty-cart-heading {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 40px;
}

.empty-cart-icon {
  margin-bottom: 30px;
}

.empty-cart-text {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 36px;
}

.return-to-shop {
  margin: 0;
}

.empty-cart-btn {
  display: inline-block;
  background: #00481c;
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none !important;
  transition: background 0.2s ease;
}

.empty-cart-btn:hover {
  background: #013013;
  color: #fff !important;
}
/* end empty cart */

/* products details */
/* product Details  */

/* ---------- Wrapper ---------- */
.pd-section {
  padding-top: 40px;
  padding-bottom: 0;
}

.pd-grid {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  margin-bottom: 56px;
}

/* ---------- Image ---------- */
.pd-image-wrap {
  flex: 0 0 44%;
  max-width: 44%;
  border-radius: 20px;
  border: 1px solid #E4E1D4;
  background: linear-gradient(180deg, #FFFFFF 0%, #E9F1E1 100%);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-image-wrap img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
}

/* ---------- Info column ---------- */
.pd-info {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.pd-title {
  font-family: "Playfair Display", serif;
  color: var(--color-heading-dark);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 18px;
}

.pd-desc {
  color: var(--color-paragraph);
  font-size: 16px;
  line-height: 26px;
  font-family: "Inter", sans-serif;
  max-width: 640px;
  margin-bottom: 18px;
}

.pd-height {
  text-decoration: none;
  color: var(--color-paragraph);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  margin-bottom: 22px;
}

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  font-size: 23px;
  font-weight: bold;
 
}
.woocommerce-Price-amount .amount {
  color: #003D1A;
}
.woocommerce-Price-amount .amount{
color:#555555;
}
del .woocommerce-Price-amount.amount{
color:#828282;
font-size: 32px;
line-height: 62px;
}
#pd-price-row ins{
  text-decoration: none;
}
ins .woocommerce-Price-amount.amount{
color: #003D1A;
font-size: 52px;
line-height: 62px;
}
.pd-price-row .price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.pd-price-row .price span.amount,
.pd-price-row .price ins,
.pd-price-row .price del {
  font-family: "Inter", sans-serif;
}

.pd-price-row .price ins {
  color: #1f3d1d;
  font-size: 38px;
  font-weight: 800;
}

.pd-price-row .price del {
  color: #9c9c9c;
  font-size: 22px;
}

.pd-price-row .price del .amount {
  font-size: 20px;
}

.pd-price-row .price .amount {
  font-size: 38px;
}

.pd-rating-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.pd-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-rating-score {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: #1c1c1c;
}

.pd-rating-stars {
  display: inline-flex;
  gap: 4px;
  color: #f2b400;
  font-size: 18px;
}

.pd-rating-stars .fa-star,
.pd-rating-stars .fa-star-half-stroke,
.pd-rating-stars .fa-regular {
  width: 20px;
  height: 20px;
}
.pd-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.pd-rating-score {
  color: #4C7A34;
  font-size: 20px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.pd-rating-stars {
  display: flex;
  gap: 4px;
  font-size: 18px;
}

.pd-rating-stars .fa-star,
.pd-rating-stars .fa-star-half-stroke {
  color: #F2B400; /* gold */
}

.pd-rating-stars .fa-regular.fa-star {
  color: #D8D8D8; /* empty/outline star */
}

.pd-rating-count {
  color: var(--color-paragraph);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
}

.pd-rating-count:hover {
  text-decoration: underline;
}

.pd-no-reviews {
  color: #9C9C9C;
  font-style: italic;
}

.pd-review-count {
  font-size: 15px;
  color: #4c7a34;
}

.pd-review-link {
  color: #4c7a34;
  text-decoration: none;
  font-weight: 600;
}

.pd-review-link:hover {
  text-decoration: underline;
}

/* ---------- Quantity selector ---------- */
.pd-qty-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.pd-qty-label {
  color: var(--color-heading-dark);
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.pd-qty-control {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pd-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  border: none;
  background: #4CAF50; /* green circle */
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pd-qty-btn:hover {
  background: #3c6228;
}

.pd-qty-value {
  min-width: 18px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-heading-dark);
  font-family: "Inter", sans-serif;
}

/* Fallback: if using WooCommerce's default qty <input> instead of a span */
.pd-qty-control .qty,
.pd-qty-control input[type="number"] {
  width: 34px;
  text-align: center;
  border: none;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-heading-dark);
  font-family: "Inter", sans-serif;
  /* -moz-appearance: textfield; */
}

.pd-qty-control input[type="number"]::-webkit-inner-spin-button,
.pd-qty-control input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ---------- Divider ---------- */
.pd-divider {
  width: 100%;
  max-width: 620px;
  height: 1px;
  background: #E4E1D4;
  margin: 32px 0 20px;
  display: none !important;
}

/* ---------- Rating ---------- */
.pd-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.pd-rating-score {
  color: #4C7A34;
  font-size: 20px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.pd-rating-stars {
  display: flex;
  gap: 4px;
  color: #F2B400;
  font-size: 18px;
}

/* ---------- Action buttons ---------- */
.pd-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.pd-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.pd-btn i {
  font-size: 15px;
}

.pd-btn-cart {
  background: linear-gradient(180deg, #E8892E 0%, #D9721A 100%);
  color: #fff;
}

.pd-btn-buy {
  background: linear-gradient(180deg, #F5C542 0%, #EAAE1E 100%);
  color: #4A3200;
}
.pd-section .pd-qty-row .pd-rating{
  display: none;
}
.pd-qty-wrapper{
  display: none !important;
  /* display: flex; */
  gap: 20px;
  .pd-qty-label{
    font-size: 18px;
    color: #2B2B2B;
  }
}
.pd-details-band{
  border-top: 0.6px solid #414141;
      background-color: #F6F6F6;
      padding: 52px 0;
      .pd-details-heading{
        color: #00240F;
        font-size: 26px;
        line-height: 1.2;
        letter-spacing: -1%;
        margin-bottom: 24px;
      }
      ul{
        li{
          color: #394037;
          font-size: 16px;
          line-height: 1.5;
          margin-bottom: 3px;
          font-weight: 400;
          strong{
            font-weight: 500;
          }
        }
      }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .pd-grid {
    flex-direction: column;
    gap: 32px;
  }

  .pd-image-wrap,
  .pd-info {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .pd-title {
    font-size: 28px;
  }

  .pd-price {
    font-size: 30px;
  }

  .pd-actions {
    width: 100%;
  }

  .pd-btn {
    flex: 1 1 auto;
  }
}
/* end product details */

/* checkout */
/* =========================================================
   Vista Seeds — Checkout Page Styles
   Enqueue this file only on the checkout page (see functions.php
   snippet below) so it never leaks into other WooCommerce screens.
   ========================================================= */

:root {
	--vs-green:        #2f5233;
	--vs-green-dark:   #234026;
	--vs-cream:        #f6f2e4;
	--vs-cream-border: #e7dfc6;
	--vs-input-bg:     #e9e9e9;
	--vs-text:         #1f2320;
	--vs-text-light:   #6f6f6f;
	--vs-serif:        'Playfair Display', Georgia, 'Times New Roman', serif;
	--vs-sans:         'Poppins', Arial, Helvetica, sans-serif;
}

/* ---------- Layout wrapper ---------- 
.woocommerce-checkout {
	max-width: 1320px;
	margin: 0 auto;
	padding: 48px 24px 80px;
	font-family: var(--vs-sans);
	color: var(--vs-text);
} */

/* ---------- Step indicator ---------- */
.pd-checkout-steps {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	max-width: 760px;
	margin: 0 auto 56px;
}

.pd-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.pd-step-circle {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #cfcfcf;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}

.pd-step-done .pd-step-circle,
.pd-step-active .pd-step-circle {
	background: var(--vs-green);
}

.pd-step-label {
	font-size: 14px;
	color: var(--vs-text);
}

.pd-step-line {
	flex: 1;
	min-width: 100px;
	height: 1px;
	border-top: 2px dashed #cfcfcf;
	margin: 0 10px;
	transform: translateY(-14px);
}

.pd-step-line-done {
	border-top: 2px dashed var(--vs-green);
}

/* ---------- Title ---------- */
.pd-checkout-title {
	font-family: var(--vs-serif);
	font-size: 42px;
	font-weight: 700;
	margin: 0 0 32px;
  color: var(--color-heading-dark);
}

/* ---------- Grid ---------- */
.pd-checkout-grid {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 56px;
	align-items: start;
}

@media (max-width: 900px) {
	.pd-checkout-grid {
		grid-template-columns: 1fr;
    gap: 32px;
	}
}

/* ---------- Left column: form fields ---------- */
.pd-checkout-left .form-row {
	margin-bottom: 22px;
}

.pd-checkout-left label {
	display: block;
	font-size: 14px;
	margin-bottom: 8px;
	color: var(--vs-text);
}

.pd-checkout-left .required {
	color: var(--vs-green);
	text-decoration: none;
}

.pd-checkout-left input.input-text,
.pd-checkout-left select,
.pd-checkout-left textarea, #billing_state, #select2-billing_state-container {
	width: 100% !important;
	background: var(--vs-input-bg) !important;
	border: 1px solid var(--vs-input-bg) !important;
	border-radius: 6px !important;
	padding: 14px 16px !important;
	font-size: 14px !important;
	color: var(--vs-text) !important;
	box-sizing: border-box !important;
	appearance: none !important;
}

.pd-checkout-left select {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9'><path d='M1 1l6 6 6-6' stroke='%23666' stroke-width='2' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position: right 16px center;
}

.pd-checkout-left input.input-text::placeholder,
.pd-checkout-left textarea::placeholder {
	color: #8a8a8a;
}

.pd-checkout-left .form-row-first,
.pd-checkout-left .form-row-last {
	display: inline-block;
	width: calc(50% - 12px);
}

.pd-checkout-left .form-row-first {
	margin-right: 24px;
}

/* Two-field rows (Email/Phone, City/ZIP) side by side on desktop */
@media (min-width: 641px) {
	.pd-fields-wrap .woocommerce-billing-fields__field-wrapper {
		display: block;
	}
}

/* Terms / confirmation checkbox */
.pd-checkout-left .woocommerce-terms-and-conditions-wrapper,
.pd-checkout-left{
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	margin-top: 8px;
}

/* ---------- Right column: pay card ---------- */
.pd-checkout-right {
	position: relative;
}

.woocommerce-billing-fields__field-wrapper label{
  margin-top: 20px;
}

.pd-pay-card {
	background: var(--vs-cream);
	border: 1px solid var(--vs-cream-border);
	border-radius: 16px;
	padding: 28px 16px 16px 16px;
}

.my-custom-class{
  margin-top:20px;
}

.pd-pay-heading {
	font-family: var(--vs-serif);
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 24px;
}

/* Totals table */
.pd-totals-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.pd-totals-table th,
.pd-totals-table td {
	text-align: left;
	padding: 10px 0;
	font-size: 15px;
	font-weight: 400;
	border: none;
}

.pd-totals-table td {
	text-align: right;
}

.pd-totals-table .order-total th,
.pd-totals-table .order-total td {
	font-weight: 700;
	font-size: 16px;
	border-top: 1px solid var(--vs-cream-border);
	padding-top: 16px;
}

.pd-totals-table .order-total td .woocommerce-Price-amount {
	color: var(--vs-green);
}

/* Payment methods list (WooCommerce default gateway markup, restyled) */
.pd-payment-methods {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

.pd-payment-methods li.wc_payment_method {
	border: 1px solid var(--vs-cream-border);
	border-radius: 10px;
	margin-bottom: 12px;
	padding: 16px 18px;
	background: #fff;
}

.pd-payment-methods label {
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
}

.pd-payment-methods .payment_box {
	font-size: 13px;
	color: var(--vs-text-light);
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px dashed var(--vs-cream-border);
}

/* Secure note */
.pd-secure-note {
	text-align: center;
	font-size: 13px;
	color: var(--vs-text-light);
	border-top: 1px solid var(--vs-cream-border);
	padding-top: 18px;
	margin: 0 0 22px;
}

/* Place order / pay button */
.pd-place-order-btn,
#place_order {
	display: block;
	width: 100%;
	background: var(--vs-green);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 16px 24px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
  margin-top: 28px;
}

.pd-place-order-btn:hover,
#place_order:hover {
	background: var(--vs-green-dark);
}

.form-row.place-order {
	margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
	.pd-checkout-left .form-row-first,
	.pd-checkout-left .form-row-last {
		width: 100%;
		margin-right: 0;
	}

	.pd-checkout-steps {
		gap: 4px;
	}

	.pd-step-label {
		font-size: 12px;
	}
}

/* thank you page */
/* =============================================
   THANK YOU PAGE — append to style.css
============================================= */

.thankyou-hero-section {
  background-color: var(--color-cream-bg);
  padding-top: 80px;
  padding-bottom: 80px;
}

.thankyou-icon-wrap {
  margin-bottom: 24px;
}

.thankyou-icon-wrap i {
  font-size: 72px;
  color: var(--color-primary-green);
}

.thankyou-heading {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.thankyou-para {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.thankyou-ref-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background-color: #FFFFFF;
  border: 1px dashed var(--color-btn-gold);
  border-radius: 12px;
  padding: 14px 32px;
  margin: 12px 0 32px;
}

.thankyou-ref-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-product-desc);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Inter", sans-serif;
}

.thankyou-ref-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading-dark);
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
}

.thankyou-btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Outline button variant (used alongside btn-primary-custom) */
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  color: var(--color-btn-green);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  border-radius: 8px;
  padding: 13px 32px;
  border: 1.5px solid var(--color-btn-green);
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: var(--color-btn-green);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-custom i {
  transition: transform 0.3s ease;
}

.btn-outline-custom:hover i {
  transform: translateX(4px);
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .thankyou-hero-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .zip-custom-class{
    margin-top: 0;
  }

  .pd-checkout-steps {
    display: none;
  }

  .citty-custom-class{
    margin-top: 36px;
  }

  .zip-custom-class label{
    margin-top: 0 !important;
  }

  .thankyou-icon-wrap i {
    font-size: 56px;
  }

  .thankyou-btn-row {
    flex-direction: column;
    width: 100%;
  }

  .thankyou-btn-row .btn-primary-custom,
  .thankyou-btn-row .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }
}
/* paggination  */
.shop-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-pagination .page-numbers li { display: flex; }
.shop-pagination .page-numbers a,
.shop-pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 15px;
  font-weight: 500;
  color: #4a4a4a;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.shop-pagination .page-numbers span.current,
.shop-pagination .page-numbers a.current {
  background-color: #1c3d1f;
  color: #fff;
}
.shop-pagination .page-numbers a:hover { background-color: #f0f0e6; }
.shop-pagination .pagi-arrow { color: #4a4a4a; font-size: 14px; }
.shop-pagination li:first-child a,
.shop-pagination li:last-child a { width: auto; padding: 0 4px; }

/* =============================================
   ABOUT US PAGE STYLES
   (uses design tokens defined in home.css :root)
============================================= */

/* -----------------------------------------------
   Shared: eyebrow label + heading rule
----------------------------------------------- */

.container-custom-about-us {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.eyebrow-row.center {
  justify-content: center;
}

.eyebrow-label {
  color: var(--color-btn-gold);
  font-size: 15px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}

.eyebrow-rule {
  flex: 1;
  height: 2px;
  background-color: var(--color-btn-gold);
  max-width: 260px;
}

.eyebrow-row.center .eyebrow-rule {
  flex: 0 0 60px;
}

/* =============================================
   1. ABOUT HERO SECTION
============================================= */
/* .about-hero-section {
  background-color: var(--color-cream-bg);
  background-image: url('../images/about-banner-1.png');
  background-repeat: repeat;
  background-size: auto;
  background-position: center top;
  padding: 80px 0;
  min-height: auto;
  display: flex;
  align-items: center;
} */

.about-hero-section {
  background-color: var(--color-cream-bg);
  background-image: url('../images/about-banner-1.png');
  background-repeat: repeat;
  background-size: auto;
  background-position: center top;
  padding: 80px 0;
  margin-bottom: 40px;   /* NEW — adds gap before the next section */
  min-height: auto;
  display: flex;
  align-items: center;
}

/* .about-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
} */
.about-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

/* .about-hero-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
} */

.about-hero-text {
  flex: 1 1 55%;
  max-width: none;      /* was 600px — this was starving the text column */
  text-align: left;
}

.about-hero-content .hero-heading {
  font-family: "Playfair Display", serif;
  color: var(--color-heading-dark);
  font-size: 44px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 22px;
  text-align: left;
}

/* .about-hero-content .hero-para {
  font-family: "Inter", sans-serif;
  color: #3E3F3F;
  font-size: 18px;
  line-height: 1.55;
  max-width: 520px;
  margin: 0;
  text-align: left;
} */

.about-hero-content .hero-para {
  max-width: 100%;      /* let it use the wider column */
}

.about-hero-visual {
  flex: 0 0 42%;         /* was fixed 500px */
  max-width: 460px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.about-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   2. ABOUT VISTA SEEDS (intro text)
============================================= */
.about-intro-section {
  background-color: #FFFFFF;
}

.about-intro-section p {
  max-width: 100%;
  margin-bottom: 18px;
}

.about-intro-section p:last-child {
  margin-bottom: 0;
}

/* =============================================
   3. STATS STRIP
============================================= */
.stats-section {
  background-color: #FFFFFF;
}

.stats-box {
  display: flex;
  align-items: stretch;
  border: 1px solid #D8D4C4;
  border-radius: 20px;
  overflow: hidden;
}

.stats-dark {
  flex: 0 0 50%;
  display: flex;
  background-color: var(--color-trust-strip-bg);
}

.stats-white {
  flex: 0 0 50%;
  display: flex;
  background-color: #FFFFFF;
}

.stat-item,
.stat-item-icon {
  flex: 1;
  padding: 40px 24px;
  text-align: center;
}

.stat-item + .stat-item,
.stat-item-icon + .stat-item-icon {
  border-left: 1px solid rgba(255,255,255,0.15);
}

.stats-white .stat-item-icon + .stat-item-icon {
  border-left: 1px solid #EDEBE0;
}

.stat-number {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-label {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  margin-bottom: 10px;
}

.stat-rule {
  width: 36px;
  height: 2px;
  background-color: var(--color-btn-gold);
  margin: 0 auto;
}

.stat-item-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.stat-icon-label {
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 10px;
}

.stat-icon-rule {
  width: 36px;
  height: 2px;
  background-color: var(--color-primary-green);
  margin: 0 auto;
}

/* =============================================
   4. OUR STORY
============================================= */
.our-story-section {
  background-color: #FFFFFF;
}

.our-story-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
}

/* add horizontal gap between the image and text columns */
.our-story-section .row {
  column-gap: 60px;
}

.story-image-wrap {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0;
}

@media (min-width: 992px) {
  .stats-dark {
    flex: 0 0 40%;
  }

  .stats-white {
    flex: 0 0 60%;
  }
  .our-story-section .row {
    flex-wrap: nowrap;
  }

  .story-col-order {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .story-image-wrap {
    max-width: 460px;
  }

  .story-text-col {
    flex: 0 0 60%;
    max-width: 60%;
    padding-left: 64px; /* increased gap */
  }

  .vm-col-divider {
    border-left: 1px solid #D8D4C4;
    position: relative;
  }
}

.story-img-main {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.story-img-overlay {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 55%;
  /* border-radius: 6px;
  border: 6px solid #FFFFFF; */
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.story-text-col {
  padding-left: 32px;
}

.story-text-col .section-heading {
  margin-bottom: 16px;
}

/* =============================================
   5. WHY FARMERS TRUST BANNER
============================================= */
.why-trust-section {
  background-color: #FFFFFF;
}

.why-trust-banner {
  border-radius: 20px;
  overflow: hidden;
  background-image: url('../images/why-farmers-trust-vista.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 56px;
  display: flex;
  align-items: center;
  min-height: 220px;
}

.why-trust-text {
  max-width: 480px;
}

.why-trust-text h2 {
  font-family: "Playfair Display", serif;
  color: #FFFFFF;
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 14px;
}

.why-trust-text p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 26px;
  max-width: 440px;
}

.btn-white-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #FFFFFF;
  color: var(--color-btn-green);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  padding: 14px 28px;
  transition: all 0.3s ease;
}

.btn-white-custom:hover {
  background-color: var(--color-cream-bg);
  color: var(--color-btn-green-hover);
  transform: translateY(-2px);
}

.btn-white-custom i {
  transition: transform 0.3s ease;
}

.btn-white-custom:hover i {
  transform: translateX(4px);
}

/* =============================================
   6. VISION & MISSION
============================================= */

.vision-mission-section {
    background-color: #F2F1EC;
    /* margin-bottom: 40px; */
    padding: 15px 0 30px 0;
}

.vm-heading {
  text-align: center;
  margin-bottom: 44px;
}

.vm-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
}

.vm-col {
  flex: 1 1 50%;
  min-width: 280px;
  padding: 0 32px;
}

.vm-col .eyebrow-label {
  display: block;
  margin-bottom: 10px;
}

.vm-col h3 {
  font-family: "Playfair Display", serif;
  color: var(--color-heading-dark);
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 14px;
}

.vm-col p {
  margin-bottom: 0;
}

.vm-col-divider {
  position: relative;
  border-left: 1px solid #D8D4C4;
}

.vm-col-divider::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -1px;
  height: calc(100% - 48px);
  width: 0;
  background-color: transparent;
}

/* =============================================
   7. READY TO GROW (CTA)
============================================= */
.cta-section {
  background-color: var(--color-cream-bg);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 80px 0;
  margin-top: 0;
}

.cta-section .container-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-section .section-heading {
  margin-bottom: 14px;
}

.cta-section p {
  margin: 0 auto 28px;
  max-width: 520px;
}

.cta-section .btn-primary-custom {
  display: inline-flex;
}

/* =============================================
   RESPONSIVE
============================================= */

/* Tablet */
@media (max-width: 991px) {

  .story-col-order {
    order: 2;
  }

  .story-text-order {
    order: 1;
    text-align: center;
    margin-bottom: 28px;
  }

  .story-text-order .eyebrow-row,
  .story-text-order p {
    margin-left: auto;
    margin-right: auto;
  }

  .our-story-section .row{
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Center eyebrow row label + rule for story section on tablet */
  .our-story-section .eyebrow-row {
    justify-content: center;
  }

  .our-story-section .eyebrow-row .eyebrow-rule {
    flex: 0 0 100px;
    max-width: 100px;
  }

  .our-story-section .eyebrow-label {
    text-align: center;
  }

  /* .about-hero-section {
    background-position: center top;
    padding: 60px 20px 48px;
    min-height: auto;
  } */

  .stats-box {
    flex-direction: column;
    border-radius: 16px;
  }

  .stats-dark,
  .stats-white {
    flex: 0 0 auto;
    width: 100%;
  }

  .container-custom {
    padding-left: 28px;
    padding-right: 28px;
  }

    .about-hero-section {
    background-position: center top;
    padding: 60px 20px 48px;
    margin-bottom: 32px;      /* was implicit 0 — scale down from desktop's 40px */
    min-height: auto;
  }

  /* .about-hero-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 32px;
  } */

  .about-hero-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 32px;
  }
/* 
  .about-hero-text {
    max-width: 100%;
    text-align: center;
  } */

    .about-hero-text {
    flex: none;                /* reset the desktop flex-basis when stacked */
    max-width: 100%;
    text-align: center;
  }

  /* .about-hero-content .hero-heading {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
  }

  .about-hero-content .hero-para {
    font-size: 16px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }

  .about-hero-visual {
    flex: none;
    max-width: 480px;
    margin: 0 auto;
    justify-content: center;
  } */
    .about-hero-content .hero-heading {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
  }

  .about-hero-content .hero-para {
    font-size: 16px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }

  .about-hero-visual {
    flex: none;                /* reset desktop 42% basis */
    max-width: 480px;
    margin: 0 auto;
    justify-content: center;
  }

  .story-image-wrap {
    max-width: 100%;
    margin: 0 auto 36px;
    display: flex;
    justify-content: center;
  }

  .story-image-wrap .story-img-main {
    max-width: 100%;
    width: 100%;
  }

  .story-text-col {
    padding-left: 0;
  }

  .vm-row {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .vm-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 24px;
    text-align: center;
  }

  .vm-col-divider {
    border-left: none;
    border-top: 1px solid #D8D4C4;
    padding-top: 28px;
    margin-top: 28px;
    width: 100%;
  }

  .why-trust-banner {
    padding: 40px;
  }
}

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

  .story-col-order {
    order: 2;
  }

  .story-text-order {
    order: 1;
    text-align: center;
    margin-bottom: 28px;
  }

  .story-text-order .eyebrow-row,
  .story-text-order p {
    margin-left: auto;
    margin-right: auto;
  }

  .container-custom {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* .about-hero-section {
    background-image: url('../images/about-banner-1.png');
    background-color: var(--color-cream-bg);
    padding: 40px 16px 30px;
  }

  .about-hero-content {
    gap: 24px;
  }

  .about-hero-content .hero-heading {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .about-hero-content .hero-para {
    font-size: 15px;
  }

  .about-hero-visual {
    display: block !important;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    overflow: visible;
    border-radius: 0;
  }

  .about-hero-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  } */

    .about-hero-section {
    background-image: url('../images/about-banner-1.png');
    background-color: var(--color-cream-bg);
    padding: 40px 16px 30px;
    margin-bottom: 24px;      /* smaller gap on mobile */
  }

  .our-story-section .row{
    flex-wrap: wrap;

  }

    /* Center CTA content on small screens */
    .cta-section {
      padding: 48px 16px;
      justify-content: center;
    }

    .cta-section .container-custom-about-us {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 12px;
    }

    .cta-section .section-heading,
    .cta-section p {
      text-align: center;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-section .btn-primary-custom {
      margin-top: 8px;
    }

    /* Center eyebrow row label + rule for story section on mobile */
    .our-story-section .eyebrow-row {
      justify-content: center;
    }

    .our-story-section .eyebrow-row .eyebrow-rule {
      flex: 0 0 80px;
      max-width: 80px;
    }

    .our-story-section .eyebrow-label {
      text-align: center;
    }

  .about-hero-content {
    gap: 24px;
  }

  .about-hero-content .hero-heading {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .about-hero-content .hero-para {
    font-size: 15px;
  }

  .about-hero-visual {
    display: block !important;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    overflow: visible;
    border-radius: 0;
  }

  .about-hero-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .about-intro-section,
  .stats-section,
  .our-story-section,
  .why-trust-section,
  .vision-mission-section,
  .cta-section {
    text-align: left;
  }

  .about-intro-section .eyebrow-row {
    justify-content: flex-start;
  }

  .stats-box {
    flex-direction: column;
    border-radius: 16px;
  }

  .stats-dark,
  .stats-white {
    flex: 0 0 auto;
    width: 100%;
  }

  .stat-item,
  .stat-item-icon {
    padding: 26px 14px;
  }

  .stat-number {
    font-size: 30px;
  }

  .story-col-order {
    order: 2;
  }

  .story-text-order {
    order: 1;
    text-align: center;
    margin-bottom: 28px;
  }

  .story-text-order .eyebrow-row,
  .story-text-order p {
    margin-left: auto;
    margin-right: auto;
  }

  .why-trust-banner {
    padding: 32px 24px;
    text-align: center;
    justify-content: center;
  }

  .why-trust-text {
    max-width: 100%;
  }

  .why-trust-text p {
    max-width: 100%;
  }

  .vm-heading {
    margin-bottom: 28px;
  }

  .vm-col {
    padding: 0 8px;
    text-align: center;
  }

  .vm-col-divider {
    border-left: none;
    position: static;
    padding-top: 24px;
    margin-top: 24px;
  }

  .cta-section p {
    max-width: 100%;
  }
  .pd-checkout-title {
    font-size: 34px;
    margin: 0 0 10px;
    line-height: 1;
}
.pd-checkout-left input.input-text, .pd-checkout-left select, .pd-checkout-left textarea, #billing_state, #select2-billing_state-container {
    padding: 8px 10px !important;
    font-size: 12px !important;
}
.woocommerce-billing-fields__field-wrapper label {
    margin-top: 5px;
}
.my-custom-class, .pd-checkout-left .form-row {
    margin-top: 14px !important;
    margin-bottom: 0;
}
.form-row.form-row-wide.address-field.update_totals_on_change{
 margin-top: 14px !important;
}
.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox{
        margin-top: 10px;
        margin-bottom: 15px;
}
.pd-place-order-btn, #place_order {
    padding: 10px 24px;
    font-size: 14px;
}
}
/* =============================================
   CONTACT US PAGE STYLES
   (uses design tokens from home.css :root)
============================================= */

/* -------------------- HERO -------------------- */
.contact-hero-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/contact-hero-bg.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.contact-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 18, 0.55);
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-hero-heading {
  font-family: var(--font-display);
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 18px;
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}

.contact-hero-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: #FFFFFF;
}

/* -------------------- MAIN LAYOUT -------------------- */
.contact-main-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: start;
}

/* ---- Left column: info cards + banner ---- */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-info-card {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 22px rgba(0, 36, 15, 0.08);
  padding: 30px 24px;
  text-align: center;
}

.info-card-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-heading-dark);
  margin: 0 0 10px;
}

.info-card-rule {
  width: 34px;
  height: 2px;
  background: var(--color-btn-gold);
  margin: 0 auto 22px;
}

.info-card-body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  text-align: left;
}

.info-card-body i {
  color: var(--color-primary-green);
  font-size: 17px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.info-card-body p {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-paragraph);
  max-width: none;
}

.info-card-body address {
  font-style: normal;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-paragraph);
}

.contact-banner-img {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.contact-banner-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Right column: form card ---- */
.contact-form-card {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 36, 15, 0.09);
  padding: 44px 40px;
  height: 100%;
}

.contact-form-heading {
  font-family: var(--font-display);
  color: var(--color-heading-dark);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 12px;
}

.contact-form-subtext {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-paragraph);
  margin: 0 0 28px;
  max-width: none;
}

.form-group {
  margin-bottom: 22px;
}

.form-row {
  display: inline;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-heading-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: #EAEAEA;
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-paragraph);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7C7C7C;
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--color-primary-green);
  outline-offset: 1px;
}

.btn-submit-contact {
  width: 100%;
  background-color: var(--color-btn-green);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-contact:hover {
  background-color: var(--color-btn-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 72, 28, 0.25);
}

/* -------------------- TABLET / MOBILE -------------------- */
@media only screen and (max-width: 992px) {
  .contact-hero-section {
    min-height: 320px;
  }

  .contact-hero-heading {
    font-size: 34px;
  }

  .contact-main-row {
    display: block;
  }

  .contact-form-card {
    margin-top: 32px;
    padding: 36px 28px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-hero-section {
    min-height: 260px;
  }

  .contact-hero-heading {
    font-size: 26px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .contact-form-heading {
    font-size: 26px;
  }
}

.btn-add-cart:hover, .pd-btn.pd-btn-buy:hover, .pd-btn:hover{
  color: #fff !important;
}