@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}
/* Hide only on desktop */
@media (min-width: 1025px) {
  .hide-desktop {
    display: none !important;
  }
}
.wd-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  color: #333;
  border: 2px solid #d4af37; /* gold tone */
  background: transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
}


.wd-btn:hover {
  background: #d4af37;
  color: #fff;
  border-color: #d4af37;
}

@media (max-width: 768px) {
  .wd-btn {
    padding: 12px 22px;
    font-size: 13px;
  }
}

.center-btn {
  text-align: center;
}
@media (max-width: 1024px) {
  .insta-video,
  .insta-video iframe {
    display: none !important;
  }
}
.insta-video {
  display: flex;
  justify-content: center;
}
/* Sidebar cart buttons */
.woocommerce-mini-cart__buttons a {
    border-radius: 8px;
    font-weight: 600;
    padding: 12px;
}

/* View Cart */
.woocommerce-mini-cart__buttons .wc-forward {
    background: #d89a2b;
    color: #fff;
}

/* Checkout */
.woocommerce-mini-cart__buttons .checkout {
    background: #000;
    color: #fff;
}
/* Smooth transition for all buttons */
.woocommerce-mini-cart__buttons a {
    transition: all 0.3s ease;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* View Cart Button (Secondary) */
.woocommerce-mini-cart__buttons .wc-forward {
    background: #d89a2b;
    color: #fff;
}

/* Hover effect - View Cart */
.woocommerce-mini-cart__buttons .wc-forward:hover {
    background: #c2871f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(216, 154, 43, 0.35);
}

/* Checkout Button (Primary CTA) */
.woocommerce-mini-cart__buttons .checkout {
    background: #111;
    color: #fff;
}

/* Hover effect - Checkout */
.woocommerce-mini-cart__buttons .checkout:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Click (active) effect */
.woocommerce-mini-cart__buttons a:active {
    transform: scale(0.97);
    box-shadow: none;
}