@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --primary: #0d0d0d;
  --primary-light: #1c1c1c;
  --secondary: #c8a951;
  --secondary-hover: #b8943a;
  --dark: #0d0d0d;
  --bg-light: #faf7f2;
  --white: #ffffff;
  --text-dark: #1c1c1c;
  --text-light: #7a7a7a;
  --border: #e8e4dc;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.10);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
  --radius: 6px;
  --radius-sm: 4px;
  --radius-round: 50px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --red-badge: #8b1a1a;
  --green-badge: #c8a951;
  --wa-green: #25D366;
  --font-heading: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
}

body {
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #0d0d0d;
  color: var(--secondary);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.announcement-bar .close-announcement {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1.2rem;
  cursor: pointer;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: var(--transition);
}

.announcement-bar .close-announcement:hover {
  opacity: 1;
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
 backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); background-color: var(--glass-bg); border-bottom: 1px solid var(--glass-border); }

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 5%;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
}

x0;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-tag {
  font-size: 0.65rem;
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  color: var(--dark);
  transition: var(--transition);
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

nav a:hover, nav a.active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.quote-btn {
  display: flex;
  background-color: #0d0d0d !important;
  color: #ffffff !important;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--secondary);
  color: var(--dark);
  color: var(--dark);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: none;
}

.quote-btn:hover {
  background-color: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.quote-count {
  background-color: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  padding: 0.5rem;
}

/* Layout */
main {
  flex-grow: 1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 5%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--dark);
  color: var(--dark);
  box-shadow: none;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  color: var(--dark);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--dark);
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.2);
}

.btn-secondary:hover {
  background-color: #c29949;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(212, 168, 83, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--dark);
  color: var(--dark);
}

.btn-whatsapp {
  background-color: var(--wa-green);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  color: white;
}

/* Badges */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  color: var(--dark);
  pointer-events: none;
}

.badge-red {
  background-color: var(--red-badge);
  box-shadow: 0 2px 6px rgba(192, 57, 43, 0.3);
}

.badge-green {
  background-color: var(--green-badge);
  box-shadow: 0 2px 6px rgba(39, 174, 96, 0.3);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 5%;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/luxury_warehouse.png') center/cover no-repeat;
  animation: heroZoom 20s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.90) 0%, rgba(8, 8, 8, 0.75) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 4rem 3rem;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  max-width: 900px;
  animation: fadeInUp 1s ease-out forwards;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hero h1 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.1;
  margin: 0 auto 1.5rem;
  letter-spacing: -1px;
}

.hero h1 span.gold {
  color: var(--secondary);
  background: linear-gradient(to right, #c8a951, #b8943a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #c9ccd6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* USP Bar */
.usp-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  padding: 2.5rem 2rem;
  gap: 1.5rem;
  border-radius: var(--radius);
  margin-top: -5rem;
  position: relative;
  z-index: 10;
  border: 1px solid var(--white);
  box-shadow: var(--shadow);
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

.usp-item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.usp-item:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.usp-item i {
  font-size: 1.8rem;
  color: var(--primary);
  background: rgba(200, 169, 81, 0.08);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usp-text {
  display: flex;
  flex-direction: column;
}

.usp-item h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.usp-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.section-title p {
  color: var(--text-light);
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.category-card {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.category-card i {
  font-size: 2.5rem;
  color: var(--dark);
  background: var(--bg-light);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.category-card:hover i {
  color: var(--secondary);
  background: var(--primary);
  transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow);
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #faf9f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

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

.product-info {
  padding: 1.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category-name {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6rem;
  flex-grow: 0;
}

.product-sku {
  font-size: 0.7rem;
  color: #999;
  margin-bottom: 0.5rem;
  display: block;
}

.product-rating {
  color: #ffc107;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 2px;
}

.product-rating span {
  color: var(--text-light);
  margin-left: 0.25rem;
  font-weight: 500;
}

.price-block {
  background: var(--bg-light);
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  margin-top: auto;
  border: 1px solid rgba(226, 223, 218, 0.5);
}

.price-exc {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1.2;
}

.price-exc span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
}

.price-inc {
  font-size: 0.78rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.3rem;
}

.price-unit {
  font-size: 0.75rem;
  color: var(--text-dark);
  font-weight: 600;
  border-top: 1px solid var(--border);
  padding-top: 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pack-qty {
  font-size: 0.65rem;
  background: var(--dark);
  color: var(--dark);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-weight: 700;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.card-actions .btn {
  padding: 0.6rem;
  font-size: 0.85rem;
}

/* Shop Layout */
.shop-layout {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.shop-sidebar {
  width: 240px;
  flex-shrink: 0;
}

.filter-section {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.filter-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid var(--bg-light);
  padding-bottom: 0.5rem;
  font-weight: 700;
}

.filter-list li {
  margin-bottom: 0.4rem;
}

.filter-list a {
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

.filter-list a:hover {
  background: rgba(200, 169, 81, 0.05);
  color: var(--primary);
}

.filter-list a.active {
  background: var(--primary);
  color: var(--dark);
  font-weight: 600;
}

.filter-list a.active .cat-count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--dark);
}

.cat-count {
  font-size: 0.75rem;
  background: var(--bg-light);
  color: var(--text-light);
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
}

.shop-content {
  flex-grow: 1;
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
 backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); background-color: var(--glass-bg); border-bottom: 1px solid var(--glass-border); }

.sort-options {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-options label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.sort-select {
  padding: 0.4rem 1.5rem 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  background-color: var(--dark);
  cursor: pointer;
  outline: none;
}

.sort-select:focus {
  border-color: var(--primary);
}

/* Product Detail Page */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}

.product-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #faf9f6;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 2rem;
  height: 480px;
}

.product-main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-info-full {
  display: flex;
  flex-direction: column;
}

.product-info-full .product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.product-info-full h1 {
  font-size: 2.2rem;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.product-meta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.product-meta-row span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.product-info-full .price-block {
  background: #faf9f6;
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-info-full .price-exc {
  font-size: 2.2rem;
  font-weight: 800;
}

.product-info-full .price-exc span {
  font-size: 1rem;
}

.product-info-full .price-inc {
  font-size: 0.95rem;
}

.product-info-full .price-unit {
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.product-info-full .pack-qty {
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
}

.product-description {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.bulk-pricing-section {
  margin-bottom: 2rem;
}

.bulk-pricing-section h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.bulk-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.bulk-table th, .bulk-table td {
  padding: 0.6rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.bulk-table th {
  background-color: var(--bg-light);
  font-weight: 700;
  color: var(--dark);
}

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

.action-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.detail-qty-container {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 46px;
  background: var(--white);
}

.qty-btn-adjust {
  background: var(--white);
  border: none;
  width: 38px;
  height: 100%;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.qty-btn-adjust:hover {
  background: var(--bg-light);
}

.detail-qty-input {
  width: 50px;
  height: 100%;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  outline: none;
}

/* Remove default spin buttons */
.detail-qty-input::-webkit-outer-spin-button,
.detail-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.action-buttons-wrap {
  display: flex;
  gap: 0.8rem;
  flex-grow: 1;
}

.action-buttons-wrap .btn {
  flex: 1;
  height: 46px;
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.breadcrumbs a {
  color: var(--text-light);
}

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

.breadcrumbs span {
  color: var(--dark);
  font-weight: 600;
}

/* Form Styles */
.form-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--dark);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Bulk Order Page Layout */
.bulk-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.bulk-sidebar-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.bulk-sidebar-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--bg-light);
  padding-bottom: 0.5rem;
  color: var(--primary);
}

.bulk-benefit-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.bulk-benefit-item i {
  color: var(--primary);
  font-size: 1.15rem;
  margin-top: 0.2rem;
}

.bulk-benefit-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

.quote-items-summary {
  background: #faf9f6;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.quote-items-summary h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.summary-list {
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 0.5rem;
}

.summary-list-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border);
}

.summary-list-item:last-child {
  border-bottom: none;
}

.summary-list-item span.qty {
  font-weight: 700;
  color: var(--primary);
}

/* Contact Page Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  font-size: 1.35rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--bg-light);
  padding-bottom: 0.6rem;
  color: var(--primary);
}

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 1.4rem;
  color: var(--primary);
  background: rgba(200, 169, 81, 0.05);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.map-container {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 320px;
  margin-top: 2rem;
}

/* About Page Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-grid img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.about-text h1, .about-text h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.about-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.about-features i {
  color: var(--primary);
  font-size: 1.15rem;
}

.about-banner {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
  padding: 3.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about-banner i {
  font-size: 3rem;
  color: var(--primary);
  background: rgba(200, 169, 81, 0.05);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.about-banner h2 {
  font-size: 1.8rem;
  color: var(--primary);
}

.about-banner p {
  max-width: 700px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Slide-in Quote Sidebar */
.quote-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background: var(--white);
  box-shadow: -5px 0 30px rgba(26, 31, 46, 0.15);
  z-index: 2000;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.quote-sidebar.open {
  right: 0;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26, 31, 46, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.quote-header {
  padding: 1.5rem;
  background: var(--primary);
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); background-color: var(--glass-bg); border-bottom: 1px solid var(--glass-border); }

.quote-header h3 {
  color: var(--dark);
  margin: 0;
  font-size: 1.25rem;
}

.close-quote {
  background: none;
  border: none;
  color: var(--dark);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.close-quote:hover {
  color: var(--secondary);
}

.quote-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-item {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  align-items: center;
}

.quote-item-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border: 1px solid var(--border);
  background-color: #faf9f6;
  border-radius: var(--radius-sm);
  padding: 0.2rem;
  flex-shrink: 0;
}

.quote-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.quote-item-details h4 {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
  line-height: 1.3;
}

.quote-item-details .sku {
  font-size: 0.72rem;
  color: #999;
  margin-bottom: 0.2rem;
}

.quote-item-details .qty-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.quote-item-remove {
  color: #dc3545;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  align-self: flex-start;
  margin-top: 0.3rem;
  font-weight: 500;
  transition: var(--transition);
}

.quote-item-remove:hover {
  text-decoration: underline;
}

.quote-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-light);
}

.quote-footer p {
  font-size: 0.78rem;
  text-align: center;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: 0.8rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--wa-green);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
  animation: wa-pulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: white;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Trusted By Section */
.trusted-section {
  background-color: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 5%;
  text-align: center;
}

.trusted-section h2 {
  color: var(--secondary);
  font-family: var(--font-heading);
  margin-bottom: 2.2rem;
  font-size: 1.8rem;
}

.trusted-badges {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trusted-badge {
  font-size: 1.2rem;
  font-weight: 700;
  color: #c5c8d0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}

.trusted-badge:hover {
  color: var(--primary);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--dark);
  padding: 4.5rem 5% 2rem;
  margin-top: auto;
  border-top: none;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr 0.8fr;
  gap: 3rem;
}

.footer-col h4 {
  color: var(--secondary);
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 0.4rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-col p, .footer-col a, .footer-col li {
  color: #a0a5b5;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
}

.footer-col a:hover {
  color: var(--secondary);
  padding-left: 3px;
}

.footer-col p i {
  color: var(--secondary);
  margin-right: 0.6rem;
  width: 16px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #707585;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { flex-direction: column; }
  .shop-sidebar { width: 100%; }
  .filter-section { position: relative; top: 0; }
  .product-detail-layout { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .product-gallery { height: 350px; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid img { order: -1; }
  .bulk-layout { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 768px) {
  .header-container { padding: 0.8rem 5%; }
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(26, 31, 46, 0.1);
    border-top: 1px solid var(--border);
    gap: 1.25rem;
  }
  nav ul.active { display: flex; }
  .mobile-menu-btn { display: block; }
  
  .hero { padding: 4.5rem 5%; }
  .hero h1 { font-size: 2.1rem; }
  .usp-bar { grid-template-columns: 1fr; margin-top: -2rem; gap: 1rem; padding: 1.5rem; }
  .usp-item { gap: 0.8rem; }
  
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .product-img-wrapper { height: 160px; }
  .product-info { padding: 0.8rem; }
  .product-name { font-size: 0.85rem; height: 2.2rem; }
  .price-block { padding: 0.6rem; }
  .price-exc { font-size: 1rem; }
  .card-actions .btn { padding: 0.5rem; font-size: 0.8rem; }
  
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .category-card { padding: 1.5rem 1rem; }
  
  .form-card { padding: 1.8rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  
  .about-banner { padding: 2rem 1.5rem; }
  .about-banner h2 { font-size: 1.5rem; }
  
  .floating-whatsapp { bottom: 1.5rem; right: 1.5rem; width: 50px; height: 50px; font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .action-row { flex-direction: column; align-items: stretch; }
  .action-buttons-wrap { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- Dynamic Client Marquee --- */
.trusted-section {
  padding: 4rem 0;
  background: var(--dark);
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
}

.trusted-section h2 {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-wrapper::before, .marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  gap: 2rem;
}

.trusted-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

/* --- Mobile Nav Overhaul (iOS/Android smooth) --- */
.mobile-nav-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  }
  
  nav ul.active {
    transform: translateX(0);
  }
  
  nav a {
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-heading);
  }
  
  nav a:hover, nav a.active {
    color: var(--secondary);
  }
  
  .mobile-menu-btn {
    position: relative;
    z-index: 1101; /* Keep above drawer */
  }
}

/* --- Quick View Modal --- */
.quick-view-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.quick-view-overlay.active {
  opacity: 1;
  visibility: visible;
}

.quick-view-modal {
  background: var(--white);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: var(--radius);
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

.quick-view-overlay.active .quick-view-modal {
  transform: translateY(0) scale(1);
}

.close-quick-view {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--dark);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.close-quick-view:hover {
  background: var(--secondary);
  color: var(--dark);
}

.quick-view-body {
  display: flex;
  flex-wrap: wrap;
}

.qv-image-pane {
  flex: 1 1 350px;
  background: #faf9f6;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qv-image-pane img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.qv-info-pane {
  flex: 1 1 400px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.qv-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  line-height: 1.2;
}

/* Quick View Overlay on Product Cards */
.quick-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: var(--dark);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-img-wrapper:hover .quick-view-btn {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.quick-view-btn:hover {
  background: var(--dark);
  color: var(--secondary);
}

.badge-gold { background-color: var(--secondary); color: var(--dark); box-shadow: 0 2px 6px rgba(200, 169, 81, 0.3); }
