/* ---------- global.css ---------- */

html {
  scroll-behavior: smooth;
}


/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.header-logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--copper);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  margin-left: 15px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}


.header-utilities {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fa-search{font-size:18px;}

.cta-button {
  background: var(--copper);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.cta-button:hover {
  background: #a94608;
}

/* overlay base: hidden by default, shown with .active */
.search-overlay {
  position: fixed;            /* cover viewport and stay with scroll */
  left: 50%;                  /* center horizontally via transform */
  transform: translateX(-50%);
  top: 80px;                  /* distance from top (adjust if header height changes) */
  z-index: 9999;

  width: min(750px, calc(100% - 48px)); /* fluid: up to 950px, but never wider than viewport - padding */
  max-width: 750px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 12px;
  display: none;
  flex-direction: column;
  transition: opacity 0.18s ease, transform 0.18s ease;
  opacity: 0;
  pointer-events: none;
}

/* show when active */
.search-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}


#ajax-search-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

#ajax-search-results {
  margin-top: 8px;
  max-height: 240px;
  overflow-y: auto;
}

#ajax-search-results a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

#ajax-search-results a:hover {
  background: #f6f6f6;
}

#ajax-search-results img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}


/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  transition: 0.2s ease-in-out;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #934a00;
}

.btn-secondary {
  background-color: var(--color-white);
  border: 1px solid #ddd;
  color: var(--color-secondary);
}

.btn-secondary:hover {
  background-color: #f9f9f9;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }


/* ====== Mega Menu Base ====== */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  display: block;
}

/* ================================== */
/* ==== Start Mega Menu Container === */

/* === Mega Menu === */
.has-mega-menu {
  position: relative;
}

.mega-menu {
  position: fixed;
  top: 100px; /* adjust depending on your header height */
  left: 50%;
  transform: translateX(-50%);
  max-width: 1280px;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  border-radius: 14px;
  padding: 2rem 2.5rem;
  transition: all 0.3s ease;
  z-index: 9999;
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 1px);
}

/* --- Inner Container --- */
.mega-menu-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 3 columns + 1 featured */
  gap: 2rem;
  align-items: start;
}

/* --- Columns --- */
.mega-column h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
  border-bottom: 2px solid var(--accent-color, #b87333);
  display: inline-block;
  padding-bottom: 0.3rem;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-column li {
  margin-bottom: 0;
}

.mega-column a {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
  padding:5px 0;
}

.mega-column a:hover {
  color: var(--accent-color, #b87333);
  padding-left: 4px;
}

/* --- Featured Product --- */
.mega-feature {
  text-align: center;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mega-feature h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.mega-feature .featured-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.dynamic-featured-image {
  width: 260px;
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.mega-feature .featured-details {
  margin-top: 10px;
  text-align: center;
}

.featured-title {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #222;
  font-size: 0.95rem;
}

.featured-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #b87333; /* Copper tone */
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.featured-btn:hover {
  background-color: #a5662b;
}

.featured-link:hover .dynamic-featured-image {
  transform: scale(1.03);
}

/* === Responsive === */
@media (max-width: 1280px) {
  .mega-menu {
    width: 95%;
  }
}

@media (max-width: 1024px) {
  .mega-menu-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-feature {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .has-mega-menu > a {
    pointer-events: none;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    padding: 1.5rem 1rem;
  }

  .mega-menu-container {
    grid-template-columns: 1fr;
  }

  .mega-feature {
    grid-column: span 1;
  }
}

/* ===== End Mega Menu Container ==== */
/* ================================== */




/* Badge */
.featured-badge {
  display: inline-block;
  background: var(--color-badge-bg);
  color: var(--color-badge-text);
  font-size: 0.875rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

/* Hero Section Base Styles (shared) */
.hero {
  padding: 2rem 1rem;
  background: linear-gradient(to right, #fffaf4, var(--color-bg-light));
}

.hero h1 span {
  color: var(--color-primary);
}


/* Reusable Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem; /* small side padding for mobile */
}


.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 40px 0;
}

.square-image {
  width: 584px;
  height: 584px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff; /* Ensures shadow looks clean against any background */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Subtle, natural shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.square-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25); /* Slight lift on hover */
}

.square-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px; /* Keeps corners aligned with container */
}

/* ---------- WHY CHOOSE PURE COPPER SECTION ---------- */

.why-copper {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff;
}

.why-copper h2 {
  font-size: 2rem;
  color: #1a1a1a;
}

.why-copper .intro {
  max-width: 700px;
  margin: 10px auto 40px;
  color: #555;
  font-size: 1rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.feature .icon {
  background: #fff4dc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 24px;
}

.feature h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature p {
  font-size: 0.9rem;
}

.highlight-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff9ed;
  border-radius: 16px;
  padding: 60px;
  gap: 40px;
}

.highlight-block .text {
  flex: 1;
  text-align: left;
}

.highlight-block .text h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.highlight-block ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.highlight-block ul li {
  color: #7c4d0b;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.highlight-block .image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.highlight-block .image img {
  border-radius: 12px;
  background: #f5f5f5;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  width:100%
}

/* ---------- FEATURED COLLECTIONS SECTION ---------- */

.featured-collections {
  padding: 100px 0;
  text-align: center;
  background-color: #f9fafb;
}

.featured-collections h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.featured-collections .intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.collection-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 600;
}

.badge.bestseller { background: #b25900; }
.badge.new { background: #0047ff; }
.badge.premium { background: #8b5a00; }

.card-image {
  background: #f5f5f5;
}

.card-content {
  padding: 20px 25px;
  text-align: left;
}

.card-content .category {
  color: #b25900;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.card-content .desc {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.details-link {
  color: #b25900;
  text-decoration: none;
  font-size: 0.9rem;
}

.details-link:hover {
  text-decoration: underline;
}

.btn-dark {
  display: inline-block;
  background: #111827;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-dark:hover {
  background: #000;
}

.view-btn {
  margin: 40px 0 60px;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px 40px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.stat-box strong {
  display: block;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.stat-box span {
  font-size: 0.9rem;
  color: #777;
}

.site-footer {
  background-color: #141922;
  color: #d1d5db;
  padding: 60px 0 30px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  width: 85%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo img {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}


.footer-column h3,
.footer-column h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-column p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #c2702d; /* Copper tone */
}

.footer-column.contact i {
  color: #c2702d;
  margin-right: 10px;
}

.social-icons a {
  display: inline-block;
  background: #1f2630;
  padding: 10px;
  border-radius: 8px;
  margin-right: 10px;
  color: #d1d5db;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #c2702d;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #2b3240;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 85%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links a {
  margin-left: 20px;
  color: #d1d5db;
  text-decoration: none;
}

.footer-links a:hover {
  color: #c2702d;
}

.testimonials-section {
  padding: 60px 0;
  text-align: center;
  background: hsla(233, 100%, 90%, 1);
background: linear-gradient(90deg, hsla(233, 100%, 90%, 1) 0%, hsla(0, 0%, 89%, 1) 100%);
background: -moz-linear-gradient(90deg, hsla(233, 100%, 90%, 1) 0%, hsla(0, 0%, 89%, 1) 100%);
background: -webkit-linear-gradient(90deg, hsla(233, 100%, 90%, 1) 0%, hsla(0, 0%, 89%, 1) 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#CAD0FF", endColorstr="#E3E3E3", GradientType=1 );
}

.rating-badge {
  background-color: #fff7ed;
  color: #c05621;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  max-width: 600px;
  margin: 0 auto 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: left;
}

.quote-icon {
  font-size: 24px;
  color: #c05621;
}

.stars {
  color: #c05621;
  margin: 5px 0;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #333;
}

.author {
  border-top: 1px solid #eaeaea;
  padding-top: 10px;
  font-size: 14px;
  color: #666;
}

.featured-in {
  margin: 60px 0;
  font-size: 14px;
  color: #888;
}

.featured-in .brands {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
  font-weight: 500;
}

.cta-section {
  background: #e65c00;
  color: white;
  padding: 60px 20px;
  max-width: 1280px;
  margin: 0px auto;
  border-radius: 20px;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-container h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color:#fff;
}

.cta-container p {
  margin-bottom: 25px;
  color: #fff;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.btn-light {
  background: white;
  color: #e65c00;
}

.btn-light:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #e65c00;
}


.quote-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.quote-container {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-width: 1280px;
  margin:0px auto;
}

.quote-info,
.quote-form {
  padding: 40px 30px;
}

.quote-info {
  background: linear-gradient(135deg, #0b1520, #1c2735);
  color: #fff;
}

.quote-info h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
}

.quote-info p {
  color: #c8d0d8;
  margin-bottom: 30px;
}

.quote-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.quote-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.icon-box {
  background-color: #c17f59;
  color: #fff;
  border-radius: 6px;
  padding: 6px 8px;
  margin-right: 15px;
  font-size: 14px;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 10px 18px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #fff;
  color: #0b1520;
}

.response-time {
  font-size: 14px;
  color: #ccc;
}

.quote-form {
  background: linear-gradient(135deg, #e88732, #d0691b);
  color: #fff;
}

.quote-form h3 {
  color: #fff;
  margin-bottom: 20px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  background-color: rgba(255,255,255,0.9);
}

.btn-dark {
  background-color: #0b1520;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 22px;
  width: 100%;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-dark:hover {
  background-color: #111d2a;
}

.btn-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-dark.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


.form-note {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  opacity: 0.9;
}

.shop-archive-wrapper { max-width: var(--max-width); margin: 0 auto; padding: 40px 20px; }
.shop-topbar { display:flex; justify-content:space-between; align-items:center; gap:20px; margin-bottom:20px; }

/* Shop page Search container*/
.shop-search {
  min-width:260px;
}

.shop-search input[type="search"], #ajax-global-search {
  width:100%; max-width:700px; padding:12px 16px; border-radius:999px; border:1px solid #e6e6e6; outline:none;
  box-shadow: var(--card-shadow);
}
.shop-content { display:flex; gap:20px; align-items:flex-start; }

.shop-filters {
    display: none; /* Hidden by default */
}

.shop-content.filters-visible .shop-filters {
    display: block;
}

/* When filters are hidden */
.shop-content.filters-hidden .shop-filters {
  width: 0 !important;
  padding: 0 !important;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

/* Filter button hidden on mobile */
@media (max-width: 768px) {
    .shop-filters-toggle {
        display: none;
    }
}

/* Filter button hidden on tablet */
@media (max-width: 1024px) {
    .shop-filters-toggle {
        display: none !important;
    }
}


/* Main content expands automatically because flex:1 already exists */
.shop-content.filters-hidden {
  transition: all 0.3s ease;
  gap:0px !important;
}

/* filters */
.shop-filters { width:260px; background:#fff; padding:18px; border-radius:12px; box-shadow: var(--card-shadow); position:relative; }
.filter-block { margin-bottom:14px; }
.filter-block h4 { margin:0 0 8px; font-size:14px; color:#333; }
.filter-block select { width:100%; padding:10px; border-radius:8px; border:1px solid #e8e8e8; }


/* main grid */
.shop-main { flex:1; }
.product-grid { min-height:200px; }

/* Material-style product card */
/* === PRODUCT CARD BASE === */
ul.products li.product {
  list-style: none;
  margin: 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: var(--card-shadow);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.25s ease;
}

/* Make whole card clickable */
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* === IMAGE WRAPPER === */
.product-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* square */
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.product-image-inner {
  position: relative;
  width: 92%;
  height: 92%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover effect: only image moves */
.product-card:hover .product-image-inner {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* === PRODUCT INFO SECTION === */
.product-info {
  padding: 15px;
  text-align: left;
  margin-bottom:45px;
}

.product-info h2 {
  font-size: 1.1rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-meta .price {
  font-weight: 600;
  font-size: 1rem;
}

.product-meta .add-to-cart a.button {
  border: none;
  background: none;
  color: var(--primary-color, #444);
  font-size: 18px;
  padding: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.product-meta .add-to-cart a.button:hover {
  color: var(--accent-color, #b87333); /* copper tone */
  transform: scale(1.1);
}


/* Subtle hover lift on entire card */
.product-card:hover {
  border-color: #ddd;
}


/* --- Shop search styling --- */
.shop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}


/* Input styling */
#ajax-global-search {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid var(--border-color, #ddd);
  border-radius:999px;
  box-shadow: var(--card-shadow, 0 2px 5px rgba(0,0,0,0.1));
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Add focus effect */
#ajax-global-search:focus {
  border-color: var(--accent-color, #c46b37);
  box-shadow: 0 0 0 3px rgba(196,107,55,0.2);
  outline: none;
}

/* Filters button */
.shop-filters-toggle button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: var(--accent-color, #c46b37);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
  display: none; /*temporarily hiding as need to work on filter system */
}

.shop-filters-toggle button:hover {
  background: var(--accent-color-dark, #a5532e);
}


/* --- Responsive behavior --- */
@media (max-width: 768px) {
  .shop-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-search {
    max-width: 100%;
  }
}

/* 🛒 Refined Cart Page Styling - Phase 2 */

body.woocommerce-cart .page-header h1.page-title{display: none;}

body.woocommerce-cart .page-container .wp-block-woocommerce-cart{margin-top:0px;}

body.woocommerce-cart .wc-block-cart-item__prices{display: none;}
body.woocommerce-cart .wc-block-components-product-metadata{display: none;}

/* Add spacing below header */
.wp-block-woocommerce-cart{
  margin-top: 40px;
}

/* Main cart container refinement */
.wc-block-cart {
  background: var(--color-bg, #fff);
  padding: 2.5rem !important;
  margin: 3rem auto;
  max-width: 1200px;
}


/* Image styling */
.wc-block-cart-item__image img {
  border-radius: 12px;
  width: 100px;
  height: 100px;
  object-fit: cover;
  box-shadow: var(--card-shadow);
}

/* Product details */
.wc-block-cart-item__product {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Hide duplicate big title */
body.woocommerce-cart h1.product_title {
  display: none !important;
}

/* Price alignment */
.wc-block-cart-item__total {
  font-weight: 600;
  color: var(--color-primary, #222);
}

/* Quantity selector refinement */
.wc-block-cart-item__quantity .wc-block-components-quantity-selector__input {
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 60px;
  text-align: center;
  transition: all 0.2s ease;
}

.wc-block-cart-item__quantity .wc-block-components-quantity-selector__input:focus {
  border-color: var(--color-accent, #b87333);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.2);
  outline: none;
}

/* Cart totals block */
.wp-block-woocommerce-cart-totals-block {
  background: var(--color-surface, #fafafa);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  padding: 2rem;
}

.wc-block-cart-totals-block h2 {
  font-size: 1.25rem;
  color: var(--color-primary, #333);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Checkout button */
.wc-block-cart__submit-container, .wc-block-components-button {
  background: var(--color-accent, #b87333);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.wc-block-cart__submit-container:hover, .wc-block-components-button:hover {
  background: #a5622c !important;
  transform: translateY(-2px);
}

/* Remove item link styling */
.wc-block-cart-item__remove-link {
  color: #999;
  font-size: 0.9rem;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.wc-block-cart-item__remove-link:hover {
  color: var(--color-accent, #b87333);
}

/* Responsive layout */
@media (max-width: 768px) {
  .wc-block-cart-items-block .wc-block-cart-items__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .wc-block-cart {
    padding: 1.5rem;
  }
}

/* ✨ Modern Checkout Page Styling – Coppersmith Theme */

/* === Checkout Page Refinement === */

body.woocommerce-checkout .page-wrapper .page-container{padding:0px;}

body.woocommerce-checkout .wp-block-woocommerce-checkout{max-width:1280px; margin:2.5rem auto; padding: 2.5rem; box-shadow: var(--card-shadow); border-radius: 12px;}

.wc-block-checkout__form > div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem; /* wider breathing space */
  max-width: 1200px;
  margin: 0 auto;
}

/* Left: form column */
.wc-block-checkout-fields-block {
  flex: 1 1 65%;
  min-width: 500px;
}

/* Right: order summary */
.wp-block-woocommerce-checkout-order-summary-block {
  flex: 1 1 35%;
  min-width: 360px;
  background: #fff;
  border-radius: 20px !important;
  box-shadow: var(--card-shadow, 0 2px 12px rgba(0,0,0,0.06));
  padding: 2rem 2rem;
  position: sticky;
  top: 120px; /* keeps visible while scrolling */
}

body.woocommerce-checkout .page-wrapper .page-container .page-header h1.page-title{display: none;}

/* Adjust overall page spacing */
.wc-block-checkout {
  background: #fafafa;
  padding-top: 30px;
  padding-bottom: 60px;
}

/* Product titles inside summary */
.wc-block-checkout-order-summary-block .wc-block-components-product-name {
  font-size: 0.95rem !important;
  font-weight: 500;
  line-height: 1.4;
  color: #222;
  margin-bottom: 4px;
  text-transform: none;
}

body.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices {display: none;}

body.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__description .wc-block-components-product-metadata{display: none;}

/* Product image spacing */
.wc-block-checkout-order-summary-block .wc-block-components-order-summary-item__image {
  border-radius: 8px;
  overflow: hidden;
  margin-right: 10px;
}

/* Totals and labels alignment */
.wc-block-checkout-totals-block .wc-block-components-totals-wrapper {
  margin-top: 2rem;
}

/* Return to Cart + Place Order area */
.wc-block-checkout__actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.wc-block-checkout__actions button,
.wc-block-checkout__actions a {
  border-radius: 8px;
}

/* Responsive behavior */
@media (max-width: 960px) {
  .wc-block-checkout__form > div {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .wc-block-checkout-fields-block,
  .wc-block-checkout-totals-block {
    flex: 1 1 100%;
    width: 100%;
    min-width: auto;
  }

  .wc-block-checkout-totals-block {
    position: static;
    box-shadow: none;
  }
}

#ajax-products.loading {
  opacity: 0.5;
  position: relative;
}
#ajax-products.loading::after {
  content: "Loading products…";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


/* Start of Global styles for General Pages */

/* ==================================
   General Page Styling (Gutenberg)
   ================================== */

.page-wrapper {
  background-color: var(--light);
  padding: var(--space-xl) var(--space-md);
}

.page-container {
  width: min(1280px, 90%);
  margin-inline: auto;
  background: #fff;
  box-shadow: var(--card-shadow);
  border-radius: var(--radius);
  padding:2rem;
  margin: 2rem auto;
}

.page-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  text-align: center;
  margin: 12px 0;
  color: var(--dark);
}

.page-body p {
  margin: 12px 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Gutenberg blockquote */
.wp-block-quote {
  border-left: 4px solid var(--copper);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--dark);
  background: #fdfaf8;
  border-radius: 4px;
}
.wp-block-quote cite {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: var(--accent);
}

/* Gutenberg image blocks */
.wp-block-image {
  margin: var(--space-lg) auto;
  text-align: center;
}
.wp-block-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 100%;
  height: auto;
}

/* Gutenberg headings */
.page-body h2,
.page-body h3,
.page-body h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

/* Lists */
.page-body ul,
.page-body ol {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}
.page-body li {
  margin-bottom: 0.4rem;
}

/* Buttons added via Gutenberg */
.wp-block-button__link {
  background: var(--copper);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: 0.3s ease;
}
.wp-block-button__link:hover {
  background: var(--accent);
}
/* End of Global styles for General Pages */


/*=========================================
/* Start Blog Post Single Post Styles */
/* Layout */
.single-post-page .post-entry {
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: 2.5rem;
}

/* Featured image */
.single-post-page .post-thumbnail img {
  width: 100%;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
  max-height: 500px;
}

/* Header */
.single-post-page .entry-header {
  padding: 2rem;
  text-align: center;
}

.single-post-page .entry-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-heading);
  margin-bottom: 0.6rem;
}

.single-post-page .entry-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Content */
.single-post-page .entry-content {
  padding: 2rem;
}

.single-post-page .entry-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.single-post-page .entry-content h2,
.single-post-page .entry-content h3,
.single-post-page .entry-content h4 {
  font-family: var(--font-heading);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--color-heading);
}

.single-post-page .entry-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.single-post-page .entry-content li {
  margin-bottom: 0.4rem;
}

.single-post-page blockquote,
.single-post-page .wp-block-quote {
  margin: 2rem 0;
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--color-accent);
  background: #faf9f8;
  color: var(--color-muted);
  font-style: italic;
  border-radius: var(--radius);
}

/* Footer / Tags */
.single-post-page .entry-footer {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 2rem;
}

.single-post-page .post-tags {
  font-size: 0.95rem;
}

.single-post-page .post-tags a {
  background: var(--color-light-bg);
  border: 1px solid var(--color-border);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius);
  margin-right: 0.4rem;
  color: var(--color-accent-dark);
}

/* Navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  margin-top: 2rem;
}

.post-navigation a {
  color: var(--color-accent);
  font-weight: 500;
}

.post-navigation a:hover {
  color: var(--color-accent-dark);
}

/* Comments */
.comments-area,
#respond {
  margin-top: 3rem;
  padding: 2rem;
  border-top: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
}

.comment-form-comment textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
}

.comment-form .submit {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 1rem;
}

.comment-form .submit:hover {
  background: var(--color-accent-dark);
}
/* End Blog Post Single Post Styles */
/*=========================================


/*=========================================/
/* Start of index.php theme file Styles */
.container {
  max-width: 1280px;
  margin: 20px auto;
}

.archive-header {
  margin-bottom: 2rem;
  text-align: center;
  display: none;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.post-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  padding: 1rem 1.2rem;
}

.post-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.post-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.8rem;
}

.read-more {
  color: var(--accent-color, #b87333);
  text-decoration: none;
  font-weight: 500;
}
/* End of index.php theme file Styles */
/*=========================================/


/* ==========================
  Start SINGLE PRODUCT PAGE
   ========================== */

.single-product-page {
  padding: 4rem 1rem;
}

.product-container {
  max-width: 1280px;
  margin: 0 auto;
}

.product-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-gallery {
  position: relative;
}

/* ==========================
   MODERN PRODUCT GALLERY – FIXED CARD STYLE
   ========================== */


/* Main gallery container */
.woocommerce-product-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

/* Main image wrapper as card */
.woocommerce-product-gallery__wrapper {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce-product-gallery__wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

/* Product Image */
.woocommerce-product-gallery__image {
  border-radius: 14px;
  overflow: hidden;
}

.woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Preserve rounded corners on hover and zoom */
.woocommerce-product-gallery__image:hover img {
  transform: scale(1.06);
  border-radius: 14px;
}

/* Remove WooCommerce default zoom icon */
.woocommerce-product-gallery__trigger {
  display: none !important;
}

/* Thumbnails row as cards */
.flex-control-thumbs {
  display: flex !important;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding: 0.5rem 0;
}

.flex-control-thumbs li {
  list-style: none;
  flex: 0 0 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.flex-control-thumbs li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

/* Active/hover state */
.flex-control-thumbs li:hover img,
.flex-control-thumbs li.flex-active-slide img {
  border-color: var(--accent-color, #b87333);
  transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .flex-control-thumbs {
    gap: 0.6rem;
  }
  .flex-control-thumbs li {
    flex: 0 0 65px;
    height: 65px;
  }
}

.product-summary {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-title {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
}

.price {
  color: var(--accent-color, #b87333);
}

.woocommerce-product-details__short-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.product-meta {
  font-size: 0.9rem;
  color: #777;
}

/* =========================================
   PRODUCT SUMMARY SECTION (RIGHT SIDE)
   ========================================= */

.product-summary {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 2.5rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}


/* --- Product Title --- */
.product-summary .product-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

/* --- Price --- */
.product-summary .price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-color, #b87333);
  margin-bottom: 1rem;
}

/* --- Short Description --- */
.product-summary .woocommerce-product-details__short-description {
  font-size: 1.02rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

/* --- Bulleted List --- */
.product-summary .woocommerce-product-details__short-description ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.product-summary .woocommerce-product-details__short-description ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: #444;
}

.product-summary .woocommerce-product-details__short-description ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--accent-color, #b87333);
  font-weight: bold;
}

/* --- Add to Cart --- */
.product-summary form.cart .single_add_to_cart_button {
  background-color: var(--accent-color, #b87333);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.8rem;
  margin-top:1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(184,115,51,0.25);
}

.product-summary form.cart .single_add_to_cart_button:hover {
  background-color: #a45f27;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* --- Quantity Input --- */
.product-summary .quantity input {
  width: 70px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.5rem;
  margin-right: 0.6rem;
}

/* --- Meta Info --- */
.product-summary .product-meta,
.product-summary .product_meta {
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.product-summary .product_meta a {
  color: var(--accent-color, #b87333);
  text-decoration: none;
}

.product-summary .product_meta a:hover {
  text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .product-summary {
    padding: 1.5rem;
  }
  .product-summary .product-title {
    font-size: 1.5rem;
  }
}

/* =========================================
   PRODUCT TABS STYLING
   ========================================= */

.product-tabs-wrapper {
  margin: 4rem 0 4rem 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  padding: 2rem 2.5rem;
}


/* --- Tabs Navigation --- */
.woocommerce-tabs .tabs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
  border-bottom: 2px solid #eee;
  gap: 1rem;
}

.woocommerce-tabs .tabs li {
  margin: 0;
}

.woocommerce-tabs .tabs a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 8px 8px 0 0;
  background: #f9f9f9;
  color: #555;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  border-bottom: none;
}

.woocommerce-tabs .tabs a:hover {
  background: #fff;
  color: var(--accent-color, #b87333);
  border-color: #ddd;
}

/* --- Active Tab --- */
.woocommerce-tabs .tabs .active a {
  background: #fff;
  color: var(--accent-color, #b87333);
  font-weight: 600;
  border: 1px solid #ddd;
  border-bottom: 2px solid #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.04);
}

/* --- Tab Panels --- */
.woocommerce-Tabs-panel {
  display: block;
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 1.5rem 1rem;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}

.woocommerce-Tabs-panel h2 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent-color, #b87333);
  padding-left: 0.8rem;
}

/* --- Description Lists --- */
.woocommerce-Tabs-panel ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.woocommerce-Tabs-panel ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
}

.woocommerce-Tabs-panel ul li::before {
  content: "•";
  color: var(--accent-color, #b87333);
  position: absolute;
  left: 0;
  font-size: 1.4rem;
  line-height: 1rem;
}

/* --- Additional Info Table --- */
.woocommerce-product-attributes {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.woocommerce-product-attributes th {
  width: 30%;
  color: #333;
  font-weight: 600;
}

.woocommerce-product-attributes td {
  color: #555;
}

/* --- Reviews Section --- */
#reviews {
  padding: 1rem 0;
}

#reviews h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.woocommerce-noreviews {
  color: #777;
}

.comment-form label {
  font-weight: 500;
  color: #444;
  display: block;
  margin-bottom: 0.4rem;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"] {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.comment-form textarea:focus,
.comment-form input:focus {
  border-color: var(--accent-color, #b87333);
  outline: none;
}

.comment-form .submit {
  background-color: var(--accent-color, #b87333);
  color: #fff;
  padding: 0.9rem 1.6rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.comment-form .submit:hover {
  background-color: #a45f27;
  transform: translateY(-2px);
}

/* --- Animation --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .woocommerce-tabs .tabs {
    flex-direction: column;
  }
  .woocommerce-tabs .tabs a {
    border-radius: 8px;
  }
}

/* === Related Products Slider === */
.related-products-section {
  margin-top: 4rem;
}

.related.products h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #222;
}

/* Owl Carousel adjustments */
.related.products .owl-stage {
  display: flex;
}

.related.products .owl-item {
  display: flex;
  justify-content: center;
}

/* Product Card */
.related.products li.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.related.products li.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Image */
.related.products .product-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 14px 14px 0 0;
  transition: transform 0.3s ease;
}

.related.products li.product-card:hover .product-image-wrap img {
  transform: scale(1.05);
}

/* Info */
.related.products .product-info {
  padding: 1rem;
  text-align: center;
}

.related.products .woocommerce-loop-product__title {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin: 0.4rem 0;
  line-height: 1.4;
}

.related.products .price {
  font-weight: 600;
  color: #000;
  margin-bottom: 0.6rem;
}

/* Cart icon */
.related.products .add-to-cart a {
  color: #555;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.related.products .add-to-cart a:hover {
  color: #b87333;
}

/* Nav Buttons */
.related.products .owl-nav button {
  position: absolute;
  top: 35%;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.3s;
  font-size: 1.2rem;
  cursor: pointer;
}

.related.products .owl-nav button:hover {
  background: #f1f1f1;
}

.related.products .owl-nav .owl-prev {
  left: -45px;
}

.related.products .owl-nav .owl-next {
  right: -45px;
}

/* Fix narrow related product cards inside Owl Carousel */
.related-products-section .owl-carousel .product {
  width: 100% !important;
  margin: 0 auto;
}

/* Make sure the carousel items have room */
.related-products-section .owl-stage-outer {
  padding: 10px 0 0 0;
}

/* Override WooCommerce default columns grid inside Owl */
.related-products-section ul.products.columns-4 {
  display: block !important;
}

/* Override WooCommerce default product card margin */
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
   margin: 0 0 2.992em 0 !important
}

/* Ensure images and content align nicely */
.related-products-section .product-card,
.related-products-section .product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow, 0 4px 10px rgba(0,0,0,0.1));
  padding: 10px;
  transition: all 0.3s ease;
}

.related-products-section .product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.related-products-section .product img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* --- Product card bottom section --- */
.related-products-section .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

/* Price styling */
.related-products-section .price,
.related-products-section .woocommerce-Price-amount {
  font-weight: 600;
  color: var(--accent-color, #b87333);
  font-size: 15px;
  margin: 0;
}

/* Cart icon button */
.related-products-section .add-to-cart a.button {
  background: #f6f6f6;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  padding:7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 16px;
  transition: all 0.25s ease;
  border: 1px solid #ddd;
  margin-top:0px !important;
}

.related-products-section .add-to-cart a.button:hover {
  background: var(--accent-color, #b87333);
  color: #fff;
  border-color: #b2935b;
  transform: translateY(-2px);
}

/* Slight lift on hover for card */
.related-products-section .product:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* ==========================
  End SINGLE PRODUCT PAGE
   ========================== */



/* =======================================
  Start Front PAGE Category Product Slider
   ==================================== */
.frontpage-product-slider {
  padding: 50px 0;
}

.copper-bathtubs{background: #FBFEFB;}
.copper-kitchen-sinks{background: #EFE5DC;}
.copper-basins{background: #FBFEFB;}

.frontpage-product-slider .section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Make the carousel container smaller and centered */
.product-carousel-wrapper {
    max-width: 1280px; /* adjust width as needed */
    margin: 0 auto;     /* centers the carousel */
    padding: 0 15px;    /* optional: some side padding */
}

/* Optional: make carousel items scale nicely */
.product-carousel .owl-item {
    display: flex;
    justify-content: center;
}
.product-carousel .owl-stage-outer{padding: 10px 0;}

/* === Owl Carousel Product Card Styling === */

.product-carousel .product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--card-shadow, 0 2px 10px rgba(0,0,0,0.08));
  overflow: hidden;
  text-align: center;
  padding: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
}

.product-carousel .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Product Image */
.product-carousel .product-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.product-carousel .product-card:hover img {
  transform: scale(1.05);
}

/* Product Title */
.product-carousel .product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  margin: 0.6rem 0 0.8rem;
  text-decoration: none;
}

.product-carousel .product-link:hover .product-title {
  color: var(--primary-color, #b87333); /* use your copper accent */
}

/* === PRICE + CART ICON INLINE === */
.product-carousel .product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding: 0 0.4rem;
}

/* Price */
.product-carousel .price {
  font-weight: 600;
  color: var(--text-dark, #333);
  font-size: 1.1rem;
}

/* Cart Button */
.product-carousel .add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.product-carousel .add_to_cart_button:hover {
  background: #eee;
  transform: scale(1.1);
}


/* Adjust spacing inside carousel */
.product-carousel .owl-stage-outer {
  padding: 10px 0;
}

/* Nav buttons */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: var(--shadow, 0 2px 8px rgba(0,0,0,0.1));
  transition: all 0.3s ease;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: var(--primary-color, #b87333);
  color: #fff;
}

.owl-nav button.owl-prev {
  left: -20px;
}

.owl-nav button.owl-next {
  right: -20px;
}

.owl-nav button span {
  font-size: 1.4rem;
  line-height: 1;
}

/* =======================================
  End Front PAGE Category Product Slider
   ==================================== */

  
/* ==================================================
/* Start Success Message Container styling of Quote*/
.quote-success-message {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 40px;
}

/* Card Styling */
.success-card {
    max-width: 500px;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    animation: fadeInUp 0.4s ease-out;
}

/* Heading */
.success-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 10px;
}

/* Subtext */
.success-card p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 25px;
}

/* Button inside success message */
.success-card .btn-dark {
    width: 100%;
    display: inline-block;
    padding: 14px 20px;
    border-radius: 10px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Start Success Message Container styling of Quote*/
/* ==================================================



/* =======================================================================//
/*Start Product Detail Page Description Section YouTube Video Embedd Styling
/* Wrapper ensures full width in tab-description */
#tab-description .product-video-wrapper {
    width: 100%;
    margin: 25px 0;
}

/* Creates responsive 16:9 container */
.product-video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 16px; /* Modern rounded corners */
    background: #000; /* Placeholder before video loads */
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border: 4px solid rgba(0,0,0,0.08);
}

/* Responsive iframe */
.product-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
}
/* End Product Detail Page Description Section YouTube Video Embedd Styling */
/* ========================================================================/*/


/*/ ==================================================================//
// ======= Start Product Inquiry Modal Styles on Product Page ======/*/
.cart-inquiry-wrapper form.cart {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}
.cart .quantity {
    width: 90px;
    flex: 0 0 90px;
}

.cart .quantity input.qty {
    width: 100%;
    padding: 10px;
    text-align: center;
}
form.cart .single_add_to_cart_button {
    flex: 1;
    margin-top:0px !important;
}
.inquiry-button-wrap {
    margin-top: 14px;
}

.inquiry-btn {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;

    background: #555;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transition: background 0.25s ease;
}

.inquiry-btn:hover {
    background: #444;
}
@media (max-width: 600px) {

    .cart-inquiry-wrapper form.cart {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    form.cart .single_add_to_cart_button,
    .cart .quantity {
        width: 100%;
        flex: unset;
    }

    .inquiry-button-wrap {
        margin-top: 12px;
        width: 100%;
    }

}


/* Modal container */
.inquiry-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
}

/* Modal box */
.inquiry-modal-content {
  background: #fff;
  width: 90%;
  max-width: 480px;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  animation: fadeIn 0.3s ease;
  position: relative;
}

/* Close button */
.inquiry-close {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 24px;
  cursor: pointer;
}

/* Fields */
.inquiry-modal-content .field {
  margin-bottom: 1.2rem;
}

.inquiry-modal-content input,
.inquiry-modal-content textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.inquiry-submit {
  width: 100%;
  background: var(--accent-color, #b87333);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

.inquiry-submit:hover {
  background: #a45f27;
}

/*/ ==================================================================//
// ======= End Product Inquiry Modal Styles on Product Page ======/*/

.woocommerce nav.woocommerce-pagination {
    text-align: center;
    margin-top: 20px;
}


/*/ =================================================================================//
// ======= start Pirates SMTP contact form on contact page styled in modern Coppersmith Creations 2025 style======/*/
/* Form container */
.pirate_forms_container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Remove bootstrap grid conflicts */
.pirate_forms_container .col-xs-12,
.pirate_forms_container .col-sm-6 {
    padding: 0 !important;
    margin-bottom: 20px;
}

/* Two-column layout (name + email) */
.pirate_forms_three_inputs_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pirate_forms_three_inputs_wrap .contact_name_wrap,
.pirate_forms_three_inputs_wrap .contact_email_wrap {
    flex: 1 1 calc(50% - 15px);
}

/* Single full-width fields */
.contact_subject_wrap,
.contact_message_wrap {
    width: 100%;
}

/* Inputs & textareas */
.pirate_forms_container input.form-control,
.pirate_forms_container textarea.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background-color: #fafafa;
    transition: all 0.2s ease-in-out;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* Focus state */
.pirate_forms_container input.form-control:focus,
.pirate_forms_container textarea.form-control:focus {
    outline: none;
    border-color: #c27c48;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(194, 124, 72, 0.15);
}

/* Textarea */
.pirate_forms_container textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit button */
.pirate_forms_container .pirate-forms-submit-button {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    font-weight: 600;
    background: #c27c48;
    border: none !important;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(194, 124, 72, 0.3);
    color: #fff;
    cursor: pointer;
    transition: 0.25s ease-in-out;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* Button Hover */
.pirate_forms_container .pirate-forms-submit-button:hover {
    background: #a76534;
    box-shadow: 0 8px 18px rgba(194, 124, 72, 0.4);
    transform: translateY(-2px);
}

/* Button active */
.pirate_forms_container .pirate-forms-submit-button:active {
    transform: translateY(0);
}

/* Improve spacing around form container */
.page-body .pirate_forms_container {
    margin-top: 30px;
}

/* Page title modern style */
.page-header .page-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    color: #333;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* Contact page container width */
.page-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
}
/*/ ======= start Pirates SMTP contact form on contact page styled in modern Coppersmith Creations 2025 style======/*/
/*/ =================================================================================/*/


/* ============================================================
   Start MODERN VERTICAL VARIATION SELECTORS — Product Detail Page
   ============================================================ */

/* Remove WooCommerce table layout */
.variations {
  border: none !important;
  width: 100% !important;
  margin: 0 0 0 0 !important;
}

.variations tbody,
.variations tr,
.variations td,
.variations th {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  border: none !important;
  margin: 0 !important;
}

/* Each variation field becomes a vertical stacked block */
.variations tr {
  margin-bottom: 0.5rem !important;
}

/* Labels */
.variations label {
  display: block !important;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.45rem;
  letter-spacing: 0.2px;
  text-align: left;
}

/* Select dropdown styling */
.variations select {
  width: 100% !important;
  padding: 12px 14px !important;
  font-size: 1rem !important;
  border: 1px solid #ddd !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #333 !important;
  outline: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Hover + focus */
.variations select:hover,
.variations select:focus {
  border-color: var(--accent-color, #b87333) !important;
  box-shadow: 0 4px 14px rgba(184,115,51,0.18);
}

/* Reset "clear" link */
.reset_variations {
  display: inline-block;
  margin-top: 4px;
  color: var(--accent-color, #b87333);
  font-size: 0.9rem;
  font-weight: 500;
  visibility: visible !important;
}

.reset_variations:hover {
  text-decoration: underline;
}

/* Fix spacing above Add to Cart button */
.single_variation_wrap {
  margin-top: 0;
}

/* Variation price alignment */
.woocommerce-variation-price {
  margin-bottom: 0.75rem;
}

.woocommerce-variation-price .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color, #b87333);
}

/* Variation description (if used) */
.woocommerce-variation-description {
  font-size: 0.98rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .variations tr {
    margin-bottom: 1.1rem !important;
  }
  .variations select {
    padding: 11px 12px !important;
    font-size: 0.98rem !important;
  }
}

/* Force quantity + add to cart into a clean vertical stack */
.single-product form.cart {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
    margin-top: 10px;
}

/* Style quantity input */
.single-product form.cart .quantity {
    width: 100% !important;
    display: flex;
}

.single-product form.cart .quantity input.qty {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 1rem;
}

/* Full-width, modern add to cart button */
.single-product form.cart .single_add_to_cart_button {
    width: 100% !important;
    padding: 16px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    background-color: var(--accent-color, #b87333) !important;
}
/* ============================================================
   Start MODERN VERTICAL VARIATION SELECTORS — Product Detail Page
   ============================================================ */


/* ================= Start About Page — Clean Luxury Minimal ================= */
.about-page { padding: 1rem 0; color: #222; }
.about-hero { background: url('/wp-content/themes/CoppersmithCreations2025/assets/images/4-1.webp') center/cover no-repeat; border-radius: 16px; padding: 6rem 2rem; text-align: center; margin-bottom: 3rem; }
.about-hero h1 { font-size: 2.4rem; margin-bottom: .6rem; font-weight:700; color:white; }
.about-hero .lead { color: #fff; font-size: 1.05rem; margin-bottom: 1.25rem; }
.about-hero .btn { display: inline-block; padding: .85rem 1.25rem; border-radius: 10px; text-decoration: none; }
.about-hero .btn-outline { border: 1px solid rgba(255, 255, 255); background: transparent; color: #fff; }
.about-hero .btn:hover{background: white; color:#333;}

/* Who we are */
.grid.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; margin-bottom: 3rem; }
.who-we-are .image img { width: 100%; border-radius: 12px; box-shadow: var(--card-shadow); }
.who-we-are .copy h2 { font-size: 1.6rem; margin-bottom: .75rem; }
.who-we-are .copy p { color: #444; line-height: 1.7; }


/* USPs */
.usps { margin-bottom: 3rem; }
.usp-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.usp { background:#fff; border-radius:12px; padding:1.25rem; text-align:center; box-shadow: var(--card-shadow); }
.usp h3 { margin-top:.6rem; font-size:1.05rem; }
.usp p { color:#666; font-size:.95rem; }


/* Clients carousel card */
.clients-showcase { margin: 3rem 0; }
.clients-showcase h2{margin-bottom: 2rem;}
.clients-carousel .client-card { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--card-shadow); }
.clients-carousel .client-card img { width: 100%; height: 320px; object-fit: cover; display:block; transition: transform .35s ease; }
.clients-carousel .client-card:hover img { transform: scale(1.03); }
.clients-carousel .client-overlay { position:absolute; left:0; right:0; bottom:0; padding: 12px 16px; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%); color: #fff; }
.clients-carousel .client-name { font-weight:700; font-size:1rem; }
.clients-carousel .client-location { font-size:0.85rem; opacity:0.9; margin-top: 4px; }


/* Map */
.global-presence { text-align:center; margin: 3rem 0; }
.map-wrap img { width: 100%; max-width: 900px; margin: 0 auto; display:block; }


/* Trademarks accordion */
.trademarks { margin: 2.5rem 0; }
.trademarks h2{margin-bottom:2rem;}
.accordion .accordion-toggle { width:100%; text-align:left; padding:12px 14px; border-radius:8px; background:#fafafa; border:1px solid #eee; cursor:pointer; font-weight:600; }
.accordion .accordion-panel { display:none; padding:12px 14px; border-left:4px solid var(--accent-color, #b87333); margin-top:8px; background:#fff; }
.accordion .accordion-item + .accordion-item { margin-top: 0.75rem; }


/* CTA */
.about-cta { text-align:center; padding: 3rem 1rem; background:#fff; border-radius:12px; box-shadow:var(--card-shadow); margin-top:2rem; }
.about-cta h3 { font-size:2.35rem; margin-bottom: .9rem; }
.about-cta p{margin:0;}
.btn-primary { background:var(--accent-color,#b87333); color:#fff; padding: 12px 22px; border-radius:12px; }


/* Responsive */
@media (max-width: 992px) {
.grid.two-col { grid-template-columns: 1fr; }
.usp-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
.usp-grid { grid-template-columns: 1fr; }
.clients-carousel .client-card img { height: 220px; }
}
/* ================= About Page — Clean Luxury Minimal ================= */