/* ============================================
   LABORDE CREATIONS - MAIN STYLESHEET
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;600;700&display=swap');

/* GLOBAL RESET & BASE STYLES */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'EB Garamond', serif;
  background-color: #0a0a0a;
  color: #f6f6f6;
  line-height: 1.6;
  font-size: 18px;
  overflow-x: hidden;
}

/* TYPOGRAPHY STYLES */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; color: #f6f6f6; }
h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; letter-spacing: -0.01em; }
h3 { font-size: 1.75rem; }
p { line-height: 1.5; margin-bottom: 1rem; color: #bdbdbd; }
a { color: #c8a45d; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #d4af37; }

/* =======================================================
   COMING SOON / PLACEHOLDER PAGE STYLES (Global)
   ======================================================= */
.placeholder-container {
    text-align: center;
    padding: 120px 20px;
    max-width: 700px;
    margin: 0 auto;
}
.placeholder-title {
    font-family: 'EB Garamond', serif;
    font-size: 3.5rem;
    color: #c8a45d;
    margin-bottom: 24px;
    line-height: 1.1;
}
.placeholder-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #f6f6f6;
    margin-bottom: 40px;
}
.btn-inquire {
    display: inline-block;
    background-color: #c8a45d;
    color: #111;
    padding: 16px 40px;
    text-decoration: none;
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-inquire:hover {
    background-color: #e0bb6b;
    transform: translateY(-2px);
}

/* CONTAINER & LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 60px; }

/* HEADER & NAVIGATION */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}
.header-content {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px; max-width: 1200px; margin: 0 auto;
}
.logo-container { display: flex; align-items: center; gap: 12px; transition: transform 0.3s ease, filter 0.3s ease; }
.logo-container:hover { transform: translateY(-2px); filter: drop-shadow(-2px 2px 8px rgba(200, 164, 93, 0.5)); }
.logo { width: 40px; height: 40px; border-radius: 50%; }
.logo-text { font-size: 1.25rem; font-weight: 600; color: #f6f6f6; }

/* NAVIGATION & DROPDOWN */
nav.main-nav { display: flex; align-items: center; gap: 40px; }
.nav-link {
    background: none; border: none; padding: 10px 0;
    font-family: 'EB Garamond', serif; font-weight: 600; font-size: 1.5rem;
    color: #f6f6f6; text-decoration: none; letter-spacing: 0.02em;
    cursor: pointer; transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: #c8a45d; }

.nav-toggle {
    background: none; border: none; padding: 10px 0;
    font-family: 'EB Garamond', serif; font-weight: 600; font-size: 1.5rem;
    color: #f6f6f6; text-decoration: none; letter-spacing: 0.02em;
    cursor: pointer; transition: color 0.3s ease;
    display: flex; align-items: center; gap: 6px; 
}
.nav-toggle:hover, .dropdown-wrapper:focus-within .nav-toggle { color: #c8a45d; }

.dropdown-wrapper { position: relative; display: inline-block; }
.dropdown-content {
    display: none; position: absolute; top: 100%; left: -10px; 
    background-color: #ffffff; min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    border: 8px solid #c8a45d; border-radius: 10px;
    padding: 8px 0; z-index: 2000; 
}
.dropdown-wrapper:hover .dropdown-content,
.dropdown-wrapper:focus-within .dropdown-content,
.dropdown-content.show { display: block; animation: fadeIn 0.3s ease-in-out; }

.dropdown-content a {
    display: block; padding: 12px 20px;
    color: #111111; text-decoration: none; font-size: 1.2rem;
    transition: background 0.2s; text-align: left;
}
.dropdown-content a:hover { background-color: #f4f4f4; color: #c8a45d; }

.mobile-menu-toggle {
    display: none; background: none; border: none;
    color: #f6f6f6; font-size: 1.75rem; cursor: pointer; padding: 8px;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* HERO SECTION */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-top: 0; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45) saturate(1.1); z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6)); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; max-width: 800px; padding: 0 24px; }
.hero-content h1 { font-size: 4rem; margin-bottom: 24px; text-shadow: 2px 2px 12px rgba(0,0,0,0.7); }
.hero-content p { font-size: 1.5rem; color: #f6f6f6; margin-bottom: 40px; text-shadow: 1px 1px 8px rgba(0,0,0,0.7); }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-block; padding: 14px 36px; border-radius: 50px;
  font-family: 'EB Garamond', serif; font-weight: 600; font-size: 1.1rem;
  text-decoration: none; text-align: center; cursor: pointer; letter-spacing: 0.05em;
  background-color: #6b3a2e; color: #fff; text-shadow: 0px 1px 2px rgba(0,0,0,0.8);
  background-image: radial-gradient(120% 120% at top center, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 25%), linear-gradient(to bottom, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.05) 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
  border: 1px solid #3e2018;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 4px 6px rgba(0,0,0,0.4);
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1); position: relative; top: 0;
}
.btn:hover { transform: translate(2px, -2px); background-color: #7a3c22; box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), -6px 6px 6px #c8a45d; }
.btn:active { transform: translate(0, 0); box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), -1px 1px 0px #c8a45d; }
.btn-primary { background-color: #c8a45d; color: #0a0a0a; text-shadow: none; border-color: #8f743f; background-image: radial-gradient(120% 120% at top center, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 30%), linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.1) 50%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.2) 100%); }
.btn-primary:hover { background-color: #d4af37; box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), -6px 6px 6px #6b3a2e; }

/* SHOWCASE & TESTIMONIALS */
.showcase-section { padding: 120px 0; }
.showcase-item { display: flex; align-items: center; gap: 80px; margin-bottom: 150px; max-width: 1200px; margin-left: auto; margin-right: auto; padding: 0 24px; }
.showcase-item.reverse { flex-direction: row-reverse; }
.showcase-image-container { flex: 1; display: flex; justify-content: center; align-items: center; aspect-ratio: 4 / 3; max-width: 800px; width: 100%; }
.showcase-image { width: 100%; height: 100%; object-fit: contain; -webkit-box-reflect: below 10px linear-gradient(transparent, transparent 50%, rgba(255,255,255,0.1)); transition: transform 0.3s ease; }
.showcase-image:hover { transform: scale(1.05); }
.showcase-content { flex: 1; }
.showcase-content h3 { font-size: 2.25rem; margin-bottom: 20px; color: #c8a45d; }
.showcase-content p { font-size: 1.2rem; line-height: 1.6; margin-bottom: 24px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; max-width: 1200px; margin: 0 auto; }
.testimonial-card { background: #111111; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 18px; padding: 32px; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; text-align: center; }
.testimonial-card:hover { 
	transform: translateY(-4px); 
	box-shadow: -6px 6px 20px rgba(200, 164, 93, 0.3); }
.testimonial-photo {
    width: 100%;           /* Fills the width of the card */
    height: 300px;         /* Forces ALL images to be exactly this tall */
    object-fit: cover;     /* The Magic: Crops the image to fill the box without squishing it */
    object-position: center; /* Keeps the middle of the photo visible */
    border-radius: 8px;    /* Optional: Rounds the corners nicely */
	align-self: stretch;
	solid: rgba(200, 164, 93, 0.2); }
.testimonial-card blockquote { 
	font-size: 1.1rem; 
	font-style: italic; 
	color: #bdbdbd; 
	margin-bottom: 16px; 
	line-height: 1.6; }
.testimonial-card cite { 
	font-style: normal; 
	font-weight: 600; 
	color: #c8a45d; 
	display: block; 
	margin-bottom: 4px; }
.testimonial-location {
	font-size: 0.95rem; 
	color: #888; }

/* PRODUCT GRIDS & CARDS */
.page-header { text-align: center; padding: 120px 24px 40px; }
.page-header h1 { margin-bottom: 16px; }
.page-header p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; }
.badge-legend { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin: 40px 0 60px; padding: 24px; background: rgba(17, 17, 17, 0.5); border-radius: 12px; max-width: 900px; margin-left: auto; margin-right: auto; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.legend-badge { padding: 4px 12px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; border: 1px solid; }
.legend-badge.portfolio, .badge-portfolio { color: #c8a45d; background: rgba(200, 164, 93, 0.15); border-color: #c8a45d; }
.legend-badge.order, .badge-order { color: #6b3a2e; background: rgba(107, 58, 46, 0.15); border-color: #6b3a2e; }
.legend-badge.stock, .badge-stock { color: #4ade80; background: rgba(74, 222, 128, 0.15); border-color: #4ade80; }
.legend-badge.sold, .badge-sold { color: #9ca3af; background: rgba(156, 163, 175, 0.15); border-color: #9ca3af; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; padding: 0 24px 80px; max-width: 1200px; margin: 0 auto; }
.product-card { background: #111111; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; cursor: pointer; position: relative; }
.product-card:hover { transform: translateY(-4px); box-shadow: -6px 6px 20px rgba(200, 164, 93, 0.3); }

.product-image-container { position: relative; width: 100%; padding-top: 75%; overflow: hidden; background: #0a0a0a; pointer-events: none; /* Disables click on container for safety */ }

/* STANDARD PRODUCT IMAGE */
.product-image {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.3s ease;
}
.product-card:hover .product-image { transform: scale(1.05); }

/* SPECIAL CARD IMAGE (Disables Lightbox for Link Cards) */
.card-img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.3s ease;
  pointer-events: none; /* Prevents lightbox script from seeing clicks */
}
.product-card:hover .card-img { transform: scale(1.05); }

.status-badge { position: absolute; top: 12px; right: 12px; padding: 6px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; border: 1px solid; backdrop-filter: blur(8px); z-index: 10; }
.knife-badge { position: absolute; top: 12px; left: 12px; font-size: 1.5rem; z-index: 10; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.product-info { padding: 24px; }
.product-info h3 { font-size: 1.5rem; margin-bottom: 12px; color: #f6f6f6; }
.product-info p { font-size: 1rem; color: #bdbdbd; margin-bottom: 0; }
.category-section { margin-bottom: 80px; }
.category-section h2 { text-align: center; margin-bottom: 40px; color: #c8a45d; }

/* PRODUCT DETAIL & CONTACT & LIGHTBOX */
.product-detail-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px; }
.product-gallery { position: sticky; top: 100px; height: fit-content; }
.main-image-container { width: 100%; aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden; margin-bottom: 16px; background: #111111; cursor: pointer; border: 1px solid rgba(255, 255, 255, 0.08); }
.main-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.main-image-container:hover .main-image { transform: scale(1.05); }
.thumbnail-strip { display: flex; gap: 12px; overflow-x: auto; }
.thumbnail { width: 100px; height: 75px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; transition: all 0.3s ease; }
.thumbnail:hover, .thumbnail.active { border-color: #c8a45d; transform: scale(1.05); }
.product-info-detail { padding-top: 20px; }
.product-info-detail h1 { font-size: 3rem; margin-bottom: 20px; }
.price { font-size: 2rem; color: #c8a45d; font-weight: 600; margin: 20px 0; display: block; }
#square-buy-button-container { margin-bottom: 30px; }
.product-description { font-size: 1.1rem; line-height: 1.6; margin: 32px 0; color: #bdbdbd; }
.specs { list-style: none; margin: 32px 0; padding: 24px; background: #111111; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.08); }
.specs li { padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); display: flex; gap: 16px; }
.specs li:last-child { border-bottom: none; }
.spec-label { font-weight: 600; color: #c8a45d; min-width: 120px; }
.spec-value { color: #f6f6f6; }
.back-link { display: inline-block; margin-top: 32px; color: #bdbdbd; font-size: 0.95rem; }
.back-link:hover { color: #c8a45d; }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1000px; margin: 0 auto; padding: 120px 24px 80px; }
.contact-info h2 { margin-bottom: 24px; }
.contact-tagline { font-size: 1.1rem; color: #bdbdbd; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; flex-direction: column; gap: 8px; }
.contact-label { font-weight: 600; color: #c8a45d; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-value { font-size: 1.2rem; color: #f6f6f6; }
.contact-value a { color: #f6f6f6; }
.contact-value a:hover { color: #c8a45d; }
.social-placeholder { margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.social-placeholder p { font-size: 0.9rem; color: #888; font-style: italic; }
.contact-action { background: #111111; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 18px; padding: 48px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.contact-action p { font-size: 1.2rem; margin-bottom: 32px; color: #f6f6f6; }
.response-note { font-size: 0.95rem; color: #888; margin-top: 24px; }
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 9999; justify-content: center; align-items: center; padding: 40px; }
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90%; max-height: 90%; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #f6f6f6; font-size: 3rem; font-weight: 300; cursor: pointer; background: none; border: none; transition: color 0.3s ease; line-height: 1; }
.lightbox-close:hover { color: #c8a45d; }

/* FOOTER */
footer { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 40px 24px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 24px; }
.footer-copyright { color: #a9a9a9; font-size: 0.95rem; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: #a9a9a9; font-size: 0.95rem; transition: color 0.3s ease; }
.footer-links a:hover { color: #c8a45d; }

/* RESPONSIVE DESIGN */
@media (max-width : 1200px ){ h1 { font-size: 2.75rem; } h2 { font-size: 2rem; } .showcase-item { gap: 40px; } .product-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); } }
@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
  nav { position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh; background: rgba(10, 10, 10, 0.98); backdrop-filter: blur(12px); flex-direction: column; padding: 80px 24px 24px; gap: 16px; transition: right 0.3s ease; border-left: 1px solid rgba(255, 255, 255, 0.08); }
  nav.active { right: 0; }
  .nav-link { width: 100%; text-align: center; }
  h1 { font-size: 2rem; } h2 { font-size: 1.75rem; } h3 { font-size: 1.4rem; } body { font-size: 16px; }
  .hero-content h1 { font-size: 2.5rem; } .hero-content p { font-size: 1.2rem; } .hero-buttons { flex-direction: column; }
  .showcase-item, .showcase-item.reverse { flex-direction: column; gap: 40px; margin-bottom: 100px; } .showcase-content h3 { font-size: 1.75rem; }
  .product-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-detail-container { grid-template-columns: 1fr; gap: 40px; padding-top: 100px; } .product-gallery { position: static; } .product-info-detail h1 { font-size: 2rem; } .price { font-size: 1.5rem; }
  .contact-container { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; text-align: center; } .footer-links { justify-content: center; }
  .section { padding: 60px 0; } .page-header { padding: 100px 24px 32px; }

  /* COMING SOON MOBILE FIXES */
  .placeholder-container { padding: 100px 20px 40px; }
  .placeholder-title { font-size: 2rem; }
  .btn-inquire { display: block; width: 100%; text-align: center; margin-top: 20px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; } .btn { padding: 10px 24px; font-size: 1rem; } .hero-content h1 { font-size: 2rem; } .badge-legend { flex-direction: column; align-items: flex-start; }
}

/* =======================================================
   TEXT MESSAGE CONTACT SECTION
   ======================================================= */
/* 1. The Container */
.text-contact-container {
    text-align: center;
    margin-top: 40px;
    padding: 30px 20px;
    background-color: #0a0a0a;
    border-radius: 8px;
    border: 0px solid #ddd;
}

/* 2. MOBILE VIEW (Phones): Show Button, Hide QR */
.mobile-text-option { display: block !important; }
.desktop-text-option { display: none !important; }

/* 3. DESKTOP VIEW (Computers): Hide Button, Show QR */
@media (min-width: 768px) {
    .mobile-text-option { display: none !important; }
    .desktop-text-option { display: block !important; }
}

/* 4. QR Code Image Styling */
.qr-code-img {
    width: 150px !important;
    height: auto !important;
    max-width: 100%;
    display: block;
    margin: 15px auto;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.scan-text {
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    color: #f6f6f6;
    margin-bottom: 10px;
}
/* =========================================
   MOBILE FIX: Push content down below header
   ========================================= */
@media (max-width: 768px) {
  .product-detail-page {
    padding-top: 120px; 
  }
	/* =========================================
   PHONE ONLY FIX (Screens smaller than 480px)
   giving it extra space just to be safe
   ========================================= */
@media (max-width: 480px) {
  .product-detail-page {
    padding-top: 140px; /* Increased from 120px to 160px */
  }
}
}