/*
Theme Name:  Najm Al Alamiya
Theme URI:   https://najmalalamiya.ae
Description: Custom luxury marble trading theme for Najm Al Alamiya Marble Trading LLC
Author:      Najm Al Alamiya
Version:     1.0.0
Text Domain: najm-alamiya
*/

:root {
  --gold: #c9a84c;
  --gold-light: #e0be78;
  --gold-dark: #a07830;
  --dark: #0f0e0c;
  --dark2: #1e1c18;
  --dark3: #2a2720;
  --text: #2c2a26;
  --text-muted: #7a7670;
  --white: #ffffff;
  --off-white: #faf9f6;
  --border: #e8e2d8;
  --border-light: #f0ece5;
  --radius: 6px;
  --shadow: 0 2px 20px rgba(0,0,0,0.07);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; background: var(--white); color: var(--text); line-height: 1.6; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f5f5f5; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 max(5%, calc((100% - 1280px) / 2));
  height: 80px;
  background: rgba(15,14,12,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s;
}
.navbar.scrolled { height: 66px; background: rgba(15,14,12,0.96); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 68px; width: auto; display: block; transition: opacity 0.2s; }
.logo-img:hover { opacity: 0.88; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.55); transition: color 0.2s; font-weight: 500; font-family: 'Inter', sans-serif; }
.nav-links a:hover, .nav-links a.active, .nav-links li.current-menu-item > a, .nav-links li.current_page_item > a { color: #fff; }
.nav-cta, .nav-links li.menu-cta > a {
  background: var(--gold) !important; color: var(--dark) !important;
  padding: 8px 20px; border-radius: 4px;
  font-weight: 600 !important; letter-spacing: 0.5px !important; transition: all 0.2s !important;
}
.nav-cta:hover, .nav-links li.menu-cta > a:hover { background: var(--gold-light) !important; color: var(--dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--dark); padding: 14px 30px; border-radius: 4px; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.3px; transition: all 0.3s; border: none; cursor: pointer; font-family: 'Inter', sans-serif; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.35); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,0.8); padding: 14px 30px; border-radius: 4px; font-weight: 500; font-size: 0.88rem; border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s; cursor: pointer; font-family: 'Inter', sans-serif; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; background: var(--dark); color: #fff; padding: 14px 30px; border-radius: 4px; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.3px; border: 2px solid var(--dark); transition: all 0.3s; cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: none; }
.btn-dark:hover { background: transparent; color: var(--dark); border-color: var(--dark); }

/* ── SECTIONS ── */
section { padding: 90px max(5%, calc((100% - 1280px) / 2)); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag { display: inline-block; color: var(--gold); font-size: 0.68rem; letter-spacing: 3.5px; text-transform: uppercase; margin-bottom: 0.8rem; font-weight: 600; font-family: 'Inter', sans-serif; }
.section-header h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); color: var(--dark); font-weight: 700; margin-bottom: 0.8rem; letter-spacing: -0.3px; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.85; font-family: 'Inter', sans-serif; }
.gold-line { width: 40px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 1.1rem auto 0; border-radius: 1px; }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 100px max(5%, calc((100% - 1280px) / 2)) 60px; background: url('assets/images/hero-banner.jpg') center center / cover no-repeat; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(10,9,8,0.60); pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 760px; text-align: center; }

/* ── HERO FORM ── */
.hero-form-wrap { flex: 0 0 auto; width: min(40%, 420px); position: relative; z-index: 1; background: rgba(255,255,255,0.06); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 2.4rem 2.2rem; }
.hero-form-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.hero-form-sub { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 1.8rem; line-height: 1.6; font-family: 'Inter', sans-serif; }
.hero-form { display: flex; flex-direction: column; gap: 1.4rem; }
.hf-group { position: relative; }
.hf-group input, .hf-group textarea { width: 100%; background: transparent; border: none; outline: none; color: #fff; font-size: 0.88rem; font-family: 'Inter', sans-serif; padding: 6px 0; resize: none; }
.hf-group input::placeholder, .hf-group textarea::placeholder { color: rgba(255,255,255,0.38); }
.hf-line { display: block; height: 1px; background: rgba(255,255,255,0.2); transition: background 0.3s; }
.hf-group:focus-within .hf-line { background: var(--gold); }
.hf-btn { margin-top: 0.4rem; background: var(--gold); color: var(--dark); border: none; border-radius: 4px; padding: 13px 28px; font-size: 0.85rem; font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif; display: flex; align-items: center; gap: 8px; transition: all 0.3s; letter-spacing: 0.3px; }
.hf-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.35); }
.hf-btn span { font-size: 1.1rem; transition: transform 0.3s; }
.hf-btn:hover span { transform: translateX(4px); }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(201,168,76,0.35); color: var(--gold-light); font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; padding: 7px 18px; border-radius: 30px; margin-bottom: 2rem; font-family: 'Inter', sans-serif; background: rgba(201,168,76,0.06); }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; box-shadow: 0 0 8px var(--gold); }
.hero h1 { font-size: clamp(2.6rem, 4.5vw, 4.2rem); font-weight: 700; line-height: 1.08; color: #fff; margin-bottom: 1.4rem; letter-spacing: -0.5px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto 2.2rem; line-height: 1.9; font-family: 'Inter', sans-serif; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }
.hero-trust-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: rgba(255,255,255,0.55); font-family: 'Inter', sans-serif; letter-spacing: 0.3px; }
.hero-trust-item svg { color: var(--gold); flex-shrink: 0; }
.hero-trust-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* ── MARBLE BAR ── */
.marble-bar { height: 90px; background: linear-gradient(135deg, #f5f0e8 0%, #ece6d8 25%, #f8f4ec 50%, #e8e0d0 75%, #f2ede3 100%); display: flex; align-items: center; justify-content: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.marble-bar::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(125deg, transparent 0, transparent 40px, rgba(184,134,11,0.06) 40px, rgba(184,134,11,0.06) 41px), repeating-linear-gradient(55deg, transparent 0, transparent 55px, rgba(0,0,0,0.04) 55px, rgba(0,0,0,0.04) 56px); }
.marble-bar-text { position: relative; z-index: 1; font-size: 0.75rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; font-family: 'Inter', sans-serif; }

/* ── CATEGORIES ── */
.categories { background: var(--dark); }
.categories .section-header h2 { color: #fff; }
.categories .section-header p { color: rgba(255,255,255,0.45); }
.categories-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 190px)); justify-content: center; gap: 1rem; }
.cat-card { position: relative; overflow: hidden; border-radius: 10px; aspect-ratio: 2/3; display: block; text-decoration: none; cursor: pointer; }
.cat-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.55s ease; }
.cat-card:hover .cat-img { transform: scale(1.07); }
.cat-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.3) 60%, transparent 100%); padding: 1.4rem 1.1rem 1.1rem; text-align: center; }
.cat-card::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(201,168,76,0); border-radius: 10px; transition: border-color 0.28s; }
.cat-card:hover::after { border-color: rgba(201,168,76,0.55); }
.cat-overlay h3 { font-size: 0.9rem; color: #fff; margin-bottom: 0.25rem; font-weight: 600; font-family: 'Inter', sans-serif; }
.cat-overlay p { font-size: 0.7rem; color: var(--gold-light); font-family: 'Inter', sans-serif; margin: 0; }

/* ── PRODUCT CARDS ── */
.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.4rem; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: all 0.28s; box-shadow: var(--shadow); cursor: pointer; text-decoration: none; display: block; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: rgba(201,168,76,0.4); }
.product-thumb { height: 190px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--off-white); }
.product-thumb-img { width: 100%; height: 190px; object-fit: cover; display: block; transition: transform 0.5s; }
.product-card:hover .product-thumb-img { transform: scale(1.05); }
.product-body { padding: 1rem 1.2rem 1.2rem; }
.product-cat { font-size: 0.65rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.3rem; font-weight: 600; font-family: 'Inter', sans-serif; }
.product-name { font-size: 0.92rem; color: var(--dark); font-weight: 600; line-height: 1.35; font-family: 'Inter', sans-serif; }

/* ── FEATURED ── */
.featured-section { background: var(--off-white); padding: 90px max(5%, calc((100% - 1280px) / 2)); }

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-box { width: 100%; padding-top: 110%; border-radius: 8px; border: 1px solid var(--border); overflow: hidden; position: relative; background: linear-gradient(135deg, #f5f0e8, #ece6d8); }
.about-img-box img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.about-content .section-tag { text-align: left; display: block; }
.about-content h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); color: var(--dark); font-weight: 700; margin-bottom: 1rem; }
.about-content p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 1.5rem 0; }
.about-feat { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.9rem; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); }
.about-feat h4 { font-size: 0.82rem; color: var(--dark); margin-bottom: 1px; font-weight: 600; }
.about-feat p { font-size: 0.75rem; color: var(--text-muted); margin: 0; }

/* ── WHY US ── */
.why-us { background: var(--dark); }
.why-us .section-header h2 { color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.why-card { padding: 2.8rem 2rem 2.4rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; text-align: center; transition: all 0.28s; position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.why-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); background: rgba(255,255,255,0.07); }
.why-num { display: block; font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 700; line-height: 1; color: rgba(201,168,76,0.1); position: absolute; top: 1.2rem; right: 1.4rem; pointer-events: none; user-select: none; }
.why-icon-wrap { width: 52px; height: 52px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 1.4rem; transition: all 0.28s; }
.why-card:hover .why-icon-wrap { background: rgba(201,168,76,0.18); border-color: rgba(201,168,76,0.5); }
.why-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 0.6rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.why-card p { color: rgba(255,255,255,0.45); font-size: 0.83rem; line-height: 1.8; font-family: 'Inter', sans-serif; }

/* ── CONTACT SECTION ── */
.contact { background: var(--white); padding: 80px max(5%, calc((100% - 1280px) / 2)); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info h3 { color: var(--dark); font-size: 1.3rem; margin-bottom: 1.5rem; font-weight: 700; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border-light); }
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon { width: 38px; height: 38px; flex-shrink: 0; background: var(--off-white); border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.contact-item h4 { font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 3px; font-weight: 600; }
.contact-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.contact-form { background: var(--off-white); border: 1px solid var(--border); border-radius: 8px; padding: 2.5rem; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); color: var(--dark); padding: 10px 13px; font-size: 0.88rem; transition: border-color 0.2s; outline: none; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── PAGE HERO ── */
.page-hero { padding: 130px max(5%, calc((100% - 1280px) / 2)) 70px; text-align: center; background: url('https://mgtstoneco.com/wp-content/uploads/2023/08/golden-galaxy-marble-surface-430x242.webp') center center / cover no-repeat; border-bottom: 1px solid rgba(255,255,255,0.08); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,9,8,0.72) 0%, rgba(10,9,8,0.82) 100%); pointer-events: none; }
.page-hero .section-tag { display: block; margin-bottom: 0.5rem; position: relative; }
.page-hero h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: #fff; font-weight: 700; margin-bottom: 0.6rem; letter-spacing: -0.3px; position: relative; }
.page-hero p { color: rgba(255,255,255,0.5); font-size: 0.95rem; position: relative; }

/* ── PRODUCTS ARCHIVE ── */
.products-layout { display: grid; grid-template-columns: 255px 1fr; gap: 2rem; padding: 2.5rem max(5%, calc((100% - 1280px) / 2)); }
.sidebar { position: sticky; top: 90px; height: fit-content; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1.4rem; box-shadow: var(--shadow); }
.sidebar h3 { font-size: 0.75rem; color: var(--dark); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; font-weight: 700; }
.filter-section { margin-bottom: 1.3rem; padding-bottom: 1.3rem; border-bottom: 1px solid var(--border-light); }
.filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-section h4 { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.6rem; font-weight: 600; }
.filter-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 7px 9px; margin-bottom: 3px; background: transparent; border: 1px solid transparent; border-radius: 5px; color: var(--text-muted); font-size: 0.82rem; cursor: pointer; text-align: left; transition: all 0.15s; }
.filter-btn:hover { background: var(--off-white); color: var(--dark); }
.filter-btn.active { background: #fff8ec; border-color: #e8d5a0; color: var(--gold-dark); font-weight: 600; }
.filter-btn .count { font-size: 0.68rem; color: #aaa; background: var(--off-white); padding: 1px 6px; border-radius: 8px; }
.filter-btn.active .count { background: #f0e0b0; color: var(--gold-dark); }
.color-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.color-dot { width: 26px; height: 26px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: all 0.15s; outline: 2px solid rgba(0,0,0,0.08); }
.color-dot:hover, .color-dot.active { border-color: var(--gold); transform: scale(1.15); outline-color: var(--gold); }
.color-white { background: linear-gradient(135deg, #f9f7f3, #eeeae2); }
.color-black { background: linear-gradient(135deg, #2a2825, #3d3a35); }
.color-grey  { background: linear-gradient(135deg, #a8a49e, #c2bdb6); }
.color-brown { background: linear-gradient(135deg, #8b6f47, #a8855a); }
.color-green { background: linear-gradient(135deg, #4a6b44, #5e8558); }
.color-blue  { background: linear-gradient(135deg, #3b5c7a, #4d6f8c); }
.color-beige { background: linear-gradient(135deg, #d4c4a0, #e8d8bc); }
.color-red   { background: linear-gradient(135deg, #8b2828, #a83a3a); }
.color-gold  { background: linear-gradient(135deg, #b8860b, #d4a017); }
.color-pink  { background: linear-gradient(135deg, #c48a96, #d8a8b4); }
.color-purple{ background: linear-gradient(135deg, #6b4a7a, #8a6096); }
.color-multi { background: linear-gradient(135deg, #8b7355, #a89070, #7a8b6a); }
.search-box { width: 100%; padding: 9px 13px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); color: var(--dark); font-size: 0.85rem; outline: none; transition: border-color 0.2s; }
.search-box:focus { border-color: var(--gold); background: var(--white); }
.search-box::placeholder { color: #bbb; }
.products-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; flex-wrap: wrap; gap: 0.8rem; }
.products-count { font-size: 0.82rem; color: var(--text-muted); }
.products-count span { color: var(--dark); font-weight: 700; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); gap: 1.1rem; }
.products-grid .product-thumb { height: 140px; }
.products-grid .product-thumb-img { height: 140px; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-top: 2.5rem; flex-wrap: wrap; }
.page-btn { min-width: 36px; height: 36px; padding: 0 8px; display: flex; align-items: center; justify-content: center; background: var(--white); border: 1px solid var(--border); border-radius: 5px; color: var(--text-muted); font-size: 0.82rem; cursor: pointer; transition: all 0.15s; }
.page-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.page-btn.active { background: var(--dark); border-color: var(--dark); color: #fff; font-weight: 700; }
.page-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.no-results { text-align: center; padding: 4rem; color: var(--text-muted); grid-column: 1 / -1; }

/* ── SINGLE PRODUCT ── */
.single-product-wrap { padding: 60px max(5%, calc((100% - 1280px) / 2)); }
.single-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.single-product-img { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; background: var(--off-white); }
.single-product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.single-product-info .product-cat { font-size: 0.68rem; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 0.6rem; }
.single-product-info h1 { font-size: clamp(1.8rem, 2.5vw, 2.4rem); color: var(--dark); font-weight: 700; margin-bottom: 1.4rem; line-height: 1.2; }
.product-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 1.6rem 0 2rem; }
.product-meta-item { background: var(--off-white); border: 1px solid var(--border); border-radius: 8px; padding: 1rem 1.2rem; }
.product-meta-item dt { font-size: 0.65rem; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 0.3rem; }
.product-meta-item dd { font-size: 0.88rem; color: var(--dark); font-weight: 600; }
.single-product-desc { color: var(--text-muted); line-height: 1.9; margin-bottom: 2rem; font-size: 0.92rem; }
.product-enquiry-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: #fff; padding: 14px 28px; border-radius: 6px; font-weight: 600; font-size: 0.9rem; font-family: 'Inter', sans-serif; transition: all 0.3s; text-decoration: none; }
.btn-whatsapp:hover { background: #1fba5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.related-products { padding: 60px max(5%, calc((100% - 1280px) / 2)); background: var(--off-white); border-top: 1px solid var(--border); }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 4rem max(5%, calc((100% - 1280px) / 2)) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand p { color: #999; font-size: 0.82rem; line-height: 1.8; margin: 1rem 0; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 0.8rem; }
.social-btn { width: 34px; height: 34px; background: #2c2c2c; border: 1px solid #3a3a3a; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: all 0.2s; cursor: pointer; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); }
.footer-col h4 { color: #fff; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: #999; font-size: 0.82rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #2c2c2c; padding-top: 1.2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: #666; }
.footer-bottom a { color: var(--gold); }

/* ── WHATSAPP FAB ── */
.whatsapp-fab { position: fixed; bottom: 22px; right: 22px; z-index: 999; width: 50px; height: 50px; border-radius: 50%; background: #25d366; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: transform 0.2s; text-decoration: none; }
.whatsapp-fab:hover { transform: scale(1.1); }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .hero { flex-direction: column; align-items: flex-start; text-align: left; padding: 120px 6% 70px; }
  .hero-form-wrap { width: 100%; max-width: 100%; }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: flex-start; }
  .hero-trust-row { justify-content: flex-start; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .single-product-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .products-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--dark); padding: 1.5rem 6%; gap: 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.08); box-shadow: 0 8px 30px rgba(0,0,0,0.4); z-index: 999; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero { text-align: left; padding: 100px 5% 50px; gap: 2.5rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-form-wrap { padding: 1.8rem 1.4rem; }
  .hero-badge { font-size: 0.62rem; padding: 6px 14px; }
  section { padding: 60px 5%; }
  footer { padding: 3rem 5% 2rem; }
  .featured-section { padding: 60px 5%; }
  .product-meta-grid { grid-template-columns: 1fr; }
  .product-enquiry-btns { flex-direction: column; }
  .product-enquiry-btns a, .product-enquiry-btns button { width: 100%; justify-content: center; }
  .marble-bar-text { letter-spacing: 2px; font-size: 0.68rem; }
  .logo-img { height: 52px; }
}

/* ── CONTACT FORM 7 — Hero form (dark/glass style) ── */
.hero-cf7 .wpcf7 { width: 100%; }
.hero-cf7 .wpcf7-form p { margin: 0 0 1.4rem; position: relative; }
.hero-cf7 .wpcf7-form br { display: none; }
.hero-cf7 .wpcf7-form input[type="text"],
.hero-cf7 .wpcf7-form input[type="email"],
.hero-cf7 .wpcf7-form input[type="tel"],
.hero-cf7 .wpcf7-form textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2);
  outline: none; color: #fff; font-size: 0.88rem; font-family: 'Inter', sans-serif;
  padding: 6px 0; resize: none; box-sizing: border-box; transition: border-color 0.3s;
}
.hero-cf7 .wpcf7-form input::placeholder,
.hero-cf7 .wpcf7-form textarea::placeholder { color: rgba(255,255,255,0.38); }
.hero-cf7 .wpcf7-form input:focus,
.hero-cf7 .wpcf7-form textarea:focus { border-bottom-color: var(--gold); }
.hero-cf7 .wpcf7-form textarea { min-height: 70px; }
.hero-cf7 .wpcf7-form input[type="submit"] {
  width: 100%; background: var(--gold); color: var(--dark); border: none;
  border-radius: 4px; padding: 13px 28px; font-size: 0.85rem; font-weight: 700;
  cursor: pointer; font-family: 'Inter', sans-serif; letter-spacing: 0.3px;
  transition: all 0.3s; margin-top: 0.4rem;
}
.hero-cf7 .wpcf7-form input[type="submit"]:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}
.hero-cf7 .wpcf7-not-valid-tip { font-size: 0.72rem; color: #ffaa88; margin-top: 3px; display: block; }
.hero-cf7 .wpcf7-response-output {
  border: 1px solid rgba(255,255,255,0.2); border-radius: 6px;
  padding: 10px 14px; font-size: 0.8rem; margin-top: 1rem;
  font-family: 'Inter', sans-serif; color: rgba(255,255,255,0.7);
}

/* ── CONTACT FORM 7 — Homepage contact section ── */
.contact-form .wpcf7 { width: 100%; }
.contact-form .wpcf7-form p { margin: 0 0 1.1rem; }
.contact-form .wpcf7-form br { display: none; }
.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form input[type="tel"],
.contact-form .wpcf7-form select,
.contact-form .wpcf7-form textarea {
  width: 100%; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--dark); padding: 10px 13px;
  font-size: 0.88rem; transition: border-color 0.2s; outline: none;
  font-family: inherit; box-sizing: border-box;
}
.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form select:focus,
.contact-form .wpcf7-form textarea:focus { border-color: var(--gold); }
.contact-form .wpcf7-form textarea { resize: vertical; min-height: 100px; }
.contact-form .wpcf7-form input[type="submit"] {
  width: 100%; background: var(--gold); color: var(--dark); border: none;
  border-radius: var(--radius); padding: 13px; font-size: 0.9rem;
  font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all 0.3s; letter-spacing: 0.3px;
}
.contact-form .wpcf7-form input[type="submit"]:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.contact-form .wpcf7-not-valid-tip { font-size: 0.75rem; color: #e05; margin-top: 3px; display: block; }
.contact-form .wpcf7-response-output { border: 1px solid var(--border); border-radius: 6px; padding: 10px 14px; font-size: 0.82rem; margin-top: 1rem; font-family: 'Inter', sans-serif; }

/* ── CONTACT FORM 7 — Contact page form card ── */
.ct-form-card .wpcf7 { width: 100%; }
.ct-form-card .wpcf7-form p { margin: 0 0 1.1rem; }
.ct-form-card .wpcf7-form br { display: none; }
.ct-form-card .wpcf7-form input[type="text"],
.ct-form-card .wpcf7-form input[type="email"],
.ct-form-card .wpcf7-form input[type="tel"],
.ct-form-card .wpcf7-form select,
.ct-form-card .wpcf7-form textarea {
  width: 100%; background: var(--off-white); border: 1px solid var(--border);
  border-radius: 6px; color: var(--dark); font-size: 0.88rem;
  padding: 11px 14px; font-family: 'Inter', sans-serif; outline: none;
  transition: border-color 0.25s, box-shadow 0.25s; resize: none;
  box-sizing: border-box;
}
.ct-form-card .wpcf7-form input:focus,
.ct-form-card .wpcf7-form select:focus,
.ct-form-card .wpcf7-form textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  background: var(--white);
}
.ct-form-card .wpcf7-form textarea { min-height: 108px; }
.ct-form-card .wpcf7-form input[type="submit"] {
  width: 100%; background: var(--gold); color: var(--dark); border: none;
  border-radius: 6px; padding: 14px; font-size: 0.9rem; font-weight: 700;
  font-family: 'Inter', sans-serif; cursor: pointer; transition: all 0.3s;
  letter-spacing: 0.3px; margin-top: 0.4rem;
}
.ct-form-card .wpcf7-form input[type="submit"]:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.ct-form-card .wpcf7-not-valid-tip { font-size: 0.75rem; color: #e05; margin-top: 3px; display: block; }
.ct-form-card .wpcf7-response-output { border: 1px solid var(--border); border-radius: 6px; padding: 10px 14px; font-size: 0.82rem; margin-top: 1rem; font-family: 'Inter', sans-serif; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.55s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.22s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.34s; opacity: 0; }
