/*
Theme Name:   PageTurn Books
Theme URI:    https://kulturestudio.pro
Description:  Child theme of Bookworm, customized for PageTurn Books (Lagos, Nigeria) — a portfolio demo site for Kulture Studio.
Author:       Kulture Studio
Author URI:   https://kulturestudio.pro
Template:     bookworm
Version:      1.0.0
Text Domain:  pageturn-books
*/

/* ==========================================================================
   PageTurn Books brand palette
   Primary (Add to Cart / CTA):  #E76F30  — warm orange
   Secondary (headers/nav/text): #24333E  — deep navy/charcoal
   Accent background:            #FAF6F0  — warm cream
   ========================================================================== */

:root {
  --ptb-primary: #E76F30;
  --ptb-primary-dark: #C85A20;
  --ptb-secondary: #24333E;
  --ptb-cream: #FAF6F0;
}

/* Primary buttons -> Add to Cart, checkout, etc. */
.btn-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.single_add_to_cart_button {
  background-color: var(--ptb-primary) !important;
  border-color: var(--ptb-primary) !important;
  color: #fff !important;
}

.btn-primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce #respond input#submit:hover,
.single_add_to_cart_button:hover {
  background-color: var(--ptb-primary-dark) !important;
  border-color: var(--ptb-primary-dark) !important;
}

/* Header / nav accents */
.site-header,
.header-top {
  background-color: #fff;
}

a,
.woocommerce ul.products li.product .price ins {
  color: var(--ptb-secondary);
}

/* ==========================================================================
   WhatsApp floating button (added via functions.php, styled here)
   ========================================================================== */
.ptb-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease;
}

.ptb-whatsapp-float:hover {
  transform: scale(1.08);
}

.ptb-whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 576px) {
  .ptb-whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* WhatsApp order button on single product pages */
.ptb-whatsapp-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 12px 22px;
  background-color: #25D366;
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none !important;
  width: 100%;
  justify-content: center;
}

.ptb-whatsapp-order-btn:hover {
  background-color: #1DA851;
  color: #fff !important;
}

.ptb-whatsapp-order-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
