/*
Theme Name:  Haizum Boutique
Theme URI:   https://haizum.agency
Author:      Haizum Agency
Author URI:  https://haizum.agency
Description: Custom fashion boutique theme with WooCommerce. Built by Haizum Agency.
Version:     1.0
License:     Private
Text Domain: haizum-boutique
*/

/* ============================================================
   GLOBAL VARIABLES
   To rebrand for a new client, only change values in :root
   Everything on the site updates automatically
   ============================================================ */

:root {
  /* Brand colours — change these per client */
  --primary:      #1a1a1a;
  --accent:       #c9a84c;
  --accent-hover: #b8963e;

  /* Page colours */
  --bg:           #fafafa;
  --surface:      #ffffff;
  --surface2:     #f5f5f5;
  --border:       #e8e8e8;

  /* Text */
  --text:         #1a1a1a;
  --text2:        #555555;
  --text3:        #999999;

  /* Status */
  --success:      #16a34a;
  --error:        #dc2626;
  --warning:      #d97706;

  /* Layout */
  --radius:       8px;
  --radius-sm:    4px;
  --radius-lg:    14px;
  --max-width:    1100px;
  --header-h:     64px;

  /* Font */
  --font:         'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono:    'Courier New', monospace;
}

/* ============================================================
   RESET + BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

input, textarea, select, button {
  font-family: var(--font);
  font-size: inherit;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: #333;
  border-color: #333;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.section-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.section-sub {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 28px;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 38px;
  width: auto;
}

.site-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

/* Nav */
.site-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list li a {
  display: block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}

.nav-list li a:hover,
.nav-list li.current-menu-item a {
  color: var(--text);
  background: var(--surface2);
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--surface2);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.15s;
  border: 1px solid var(--border);
}

.cart-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.cart-icon-svg {
  width: 16px;
  height: 16px;
}

.cart-count {
  background: var(--accent);
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav .nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.mobile-nav .nav-list li a {
  font-size: 15px;
  padding: 10px 14px;
  width: 100%;
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .menu-toggle { display: flex; }
}

/* ============================================================
   HERO BANNER
   ============================================================ */

.hero-banner {
  position: relative;
  height: 480px;
  background: var(--surface2);
  overflow: hidden;
}

@media (max-width: 600px) {
  .hero-banner { height: 360px; }
}

.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.hero-banner:hover .banner-bg {
  transform: scale(1.02);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.2) 60%,
    rgba(0,0,0,0.05) 100%
  );
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 600px) {
  .banner-content { padding: 0 24px; }
}

.banner-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.banner-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  max-width: 520px;
}

.banner-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  max-width: 400px;
}

.banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-banner {
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  display: inline-block;
}

.btn-banner-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-banner-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-banner-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-banner-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ============================================================
   FEATURED PRODUCTS (Homepage)
   ============================================================ */

.featured-section {
  padding: 56px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.view-all-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: opacity 0.15s;
}

.view-all-link:hover {
  opacity: 0.7;
}

/* ============================================================
   PRODUCT GRID — 2 column mobile-first
   ============================================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */

.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  display: block;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  border-color: transparent;
}

.product-img-wrap {
  position: relative;
  padding-top: 125%; /* 4:5 ratio — good for clothing */
  overflow: hidden;
  background: var(--surface2);
}

.product-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  font-size: 12px;
  background: var(--surface2);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.badge-new {
  background: var(--primary);
  color: #fff;
}

.badge-sale {
  background: var(--error);
  color: #fff;
}

.product-info {
  padding: 12px 14px 14px;
}

.product-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.product-price ins {
  text-decoration: none;
  color: var(--primary);
}

.product-price del {
  font-size: 12px;
  font-weight: 400;
  color: var(--text3);
  margin-right: 4px;
}

.product-price .woocommerce-Price-amount {
  font-weight: 700;
}

/* ============================================================
   COLLECTIONS SECTION (Homepage strip)
   ============================================================ */

.collections-strip {
  padding: 40px 0;
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 640px) {
  .collections-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.collection-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding-top: 120%;
  background: var(--border);
  display: block;
  cursor: pointer;
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.collection-card:hover img {
  transform: scale(1.06);
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}

.collection-card-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  z-index: 1;
}

/* ============================================================
   SHOP PAGE
   ============================================================ */

.shop-page {
  padding: 40px 0 60px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .shop-layout {
    grid-template-columns: 220px 1fr;
  }
}

/* Shop sidebar filters */
.shop-sidebar {
  display: none;
}

@media (min-width: 900px) {
  .shop-sidebar { display: block; }
}

.filter-group {
  margin-bottom: 28px;
}

.filter-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text3);
  margin-bottom: 12px;
}

.filter-list li {
  margin-bottom: 6px;
}

.filter-list li a {
  font-size: 13px;
  color: var(--text2);
  transition: color 0.15s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-list li a:hover,
.filter-list li.current-cat a {
  color: var(--primary);
  font-weight: 600;
}

.filter-count {
  font-size: 11px;
  color: var(--text3);
  background: var(--surface2);
  padding: 1px 6px;
  border-radius: 99px;
}

/* Shop toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-result-count {
  font-size: 13px;
  color: var(--text3);
}

.shop-ordering select {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  outline: none;
}

/* Pagination */
.woocommerce-pagination {
  margin-top: 36px;
  text-align: center;
}

.woocommerce-pagination ul {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  background: var(--surface);
  transition: all 0.15s;
}

.woocommerce-pagination ul li a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.woocommerce-pagination ul li span.current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */

.single-product-page {
  padding: 40px 0 60px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

/* Product gallery */
.product-gallery {
  position: relative;
}

.product-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface2);
  padding-top: 120%;
  position: relative;
}

.product-main-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product details */
.product-details {}

.product-category-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.single-product-title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.product-price-single {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.product-price-single del {
  font-size: 17px;
  font-weight: 400;
  color: var(--text3);
  margin-right: 8px;
}

.product-price-single ins {
  text-decoration: none;
}

.product-short-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* Quantity + add to cart */
.cart-form {
  margin-bottom: 16px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.qty-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
}

.quantity .input-text {
  width: 72px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  background: var(--surface);
  color: var(--text);
  outline: none;
}

.quantity .input-text:focus {
  border-color: var(--primary);
}

.single_add_to_cart_button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 10px;
}

.single_add_to_cart_button:hover {
  background: #333;
}

/* WhatsApp order button */
.whatsapp-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  border: 2px solid #25D366;
  margin-bottom: 20px;
}

.whatsapp-order-btn:hover {
  background: #1db854;
  border-color: #1db854;
}

.whatsapp-order-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* Product meta */
.product-meta {
  font-size: 13px;
  color: var(--text3);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.product-meta span { margin-right: 16px; }

/* Product tabs */
.product-tabs {
  margin-top: 48px;
}

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
}

.tab-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.15s;
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.tab-content p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ============================================================
   COLLECTIONS PAGE
   ============================================================ */

.collections-page {
  padding: 40px 0 60px;
}

.collections-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .collections-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collection-full-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  position: relative;
  padding-top: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.collection-full-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.collection-full-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.collection-full-card:hover img {
  transform: scale(1.04);
}

.collection-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
}

.collection-full-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 1;
}

.collection-full-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.collection-full-count {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   CART PAGE
   ============================================================ */

.cart-page {
  padding: 40px 0 60px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .cart-layout {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}

.cart-table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: var(--text3);
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}

.cart-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-size: 14px;
  color: var(--text);
}

.cart-table tr:last-child td {
  border-bottom: none;
}

.cart-product-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-product-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface2);
}

.cart-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.cart-remove {
  color: var(--text3);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s;
  background: none;
  border: none;
  cursor: pointer;
}

.cart-remove:hover {
  color: var(--error);
}

.cart-qty-input {
  width: 56px;
  padding: 7px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  background: var(--surface);
  color: var(--text);
  outline: none;
}

.cart-qty-input:focus {
  border-color: var(--primary);
}

/* Cart totals box */
.cart-totals-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.cart-totals-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.totals-row:last-of-type {
  border-bottom: none;
  font-size: 16px;
  font-weight: 700;
  padding-top: 14px;
}

.totals-label { color: var(--text2); }
.totals-value { font-weight: 600; color: var(--text); }

.checkout-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  margin-top: 16px;
}

.checkout-btn:hover {
  background: #333;
}

.empty-cart-msg {
  text-align: center;
  padding: 60px 20px;
  color: var(--text2);
}

.empty-cart-msg p {
  font-size: 15px;
  margin-bottom: 20px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-page {
  padding: 60px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

.about-content h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.about-content p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page {
  padding: 60px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-info h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text2);
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: var(--surface2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.map-embed {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: none;
}

/* WPForms contact form styling */
.wpforms-container .wpforms-form input[type="text"],
.wpforms-container .wpforms-form input[type="email"],
.wpforms-container .wpforms-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.15s;
  outline: none;
}

.wpforms-container .wpforms-form input:focus,
.wpforms-container .wpforms-form textarea:focus {
  border-color: var(--primary);
}

.wpforms-container .wpforms-form .wpforms-field {
  margin-bottom: 16px;
}

.wpforms-container .wpforms-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  display: block;
  margin-bottom: 6px;
}

.wpforms-container .wpforms-form button[type="submit"] {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.wpforms-container .wpforms-form button[type="submit"]:hover {
  background: #333;
}

/* ============================================================
   GENERIC PAGE
   ============================================================ */

.generic-page {
  padding: 48px 0 64px;
}

.page-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.page-content {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.9;
  max-width: 720px;
}

.page-content h2 { font-size: 20px; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.page-content p  { margin-bottom: 14px; }
.page-content ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.page-content li { margin-bottom: 6px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
  padding: 14px 0;
  font-size: 12px;
  color: var(--text3);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--text3);
  transition: color 0.15s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  margin: 0 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
  margin-top: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

@media (min-width: 640px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}

.footer-links li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-whatsapp-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #25D366;
  font-weight: 600;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1db854;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

/* Hide label on very small screens */
@media (max-width: 400px) {
  .whatsapp-float .wa-label { display: none; }
  .whatsapp-float { padding: 13px; }
}

/* ============================================================
   NOTICES (WooCommerce)
   ============================================================ */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.woocommerce-message {
  background: #f0fdf4;
  color: var(--success);
  border: 1px solid #bbf7d0;
}

.woocommerce-error {
  background: #fef2f2;
  color: var(--error);
  border: 1px solid #fecaca;
}

.woocommerce-info {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

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

@media (max-width: 600px) {
  .desktop-only { display: none !important; }
  .section-heading { font-size: 19px; }
  .featured-section { padding: 36px 0; }
}

@media (min-width: 601px) {
  .mobile-only { display: none !important; }
}
