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

:root {
  /* Colors - Classic & Premium */
  --primary: #000000;
  --secondary: #ffffff;
  --accent: #d4af37; /* Gold */
  --accent-light: #f9f5ea;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-gray: #f8f8f8;
  --border-color: #eaeaea;
  --success: #25d366; /* WhatsApp Green */

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
  
  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-default: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--secondary);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--trans-fast);
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
/* Top Bar - Modern Style */
.top-bar {
  background: linear-gradient(90deg, #0f172a, #1e293b); /* dark gradient */
  color: #e2e8f0;
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar i {
  margin-right: 6px;
  color: #38bdf8; /* accent color */
}

/* Highlight text */
.top-bar-right span {
  background: rgba(56,189,248,0.15);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
}

/* Hover effect */
.top-bar a {
  color: #e2e8f0;
  text-decoration: none;
  transition: 0.3s;
}

.top-bar a:hover {
  color: #38bdf8;
}



header {
  background: var(--secondary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.logo span {
  color: var(--accent);
}

.logo img {
  width: 38px;        /* adjust size */
  height: 38px;
  object-fit: contain;
}
.logo:hover img {
  transform: scale(1.05);
  transition: 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu a:hover {
  color: var(--accent);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--secondary);
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--trans-default);
  border-top: 2px solid var(--accent);
  padding: 10px 0;
  z-index: 10;
}

.nav-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  text-transform: none;
  font-size: 0.9rem;
}

.dropdown-menu li a:hover {
  background: var(--accent-light);
}

/* Search Bar in Header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 4px 16px;
  background: var(--bg-gray);
}

.search-bar input {
  border: none;
  background: transparent;
  padding: 8px;
  outline: none;
  font-family: var(--font-body);
}

.search-bar button {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-light);
}

.btn-login {
  border: 1px solid var(--primary);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-login:hover {
  background: var(--primary);
  color: var(--secondary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 60vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1598284534431-155e8841a029?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: var(--secondary);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 16px;
  animation: fadeUp 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.9;
  animation: fadeUp 1s ease 0.2s forwards;
  opacity: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 14px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all var(--trans-default);
  animation: fadeUp 1s ease 0.4s forwards;
  opacity: 0;
}

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

/* Section Styling */
.section {
  padding: 80px 0;
}

.section-bg {
  background: var(--bg-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent);
}

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

/* Tablet */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .grid {
    grid-template-columns: 1fr;
  }
}


.product-card {
  background: var(--secondary);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: var(--accent);
}


/* IMAGE */
.product-img-wrapper {
  height: 220px;
  overflow: hidden;
  background: #f5f5f5;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05); /* slightly zoomed initially */
  transition: 0.6s ease;
}

/* HOVER = ZOOM OUT */
.product-card:hover img {
  transform: scale(1); 
}

/* INFO */
.product-info {
  padding: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: 'Playfair Display', serif; /* classic feel */
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

/* BUTTON AREA (BOTTOM FIXED) */
.product-actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
}

/* BASE BUTTON */
.btn-card {
  flex: 1;
  padding: 7px 10px;
  font-size: 0.75rem;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  letter-spacing: 0.5px;
}

/* VIEW BUTTON (MOODY GREY) */
.btn-view {
  background: #2b2b2b;
  color: #ddd;
  border: 1px solid #3a3a3a;
}

.btn-view:hover {
  background: #000;
  color: #fff;
}

/* ORDER BUTTON (DARK GOLD / PREMIUM) */
.btn-order {
  background: #3a2f1d; /* muted gold */
  color: #f5e6c8;
  border: 1px solid #5a4a2c;
}

.btn-order:hover {
  background: #000;
  color: var(--accent);
}
/* Category Grid Images */
.category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay h3 {
  color: var(--secondary);
  font-size: 1.5rem;
  margin: 0;
  transform: translateY(10px);
  transition: transform var(--trans-default);
}

.category-card:hover .category-overlay h3 {
  transform: translateY(0);
  color: var(--accent);
}

/* Product Detail Page */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 40px 0;
}

.gallery-main img {
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
}

.gallery-thumbs {
  display: flex;
  gap: 16px;
}

.gallery-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
}

.gallery-thumbs img:hover, .gallery-thumbs img.active {
  border-color: var(--accent);
}

.detail-info h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.detail-desc {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: var(--secondary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.pricing-table th, .pricing-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
  background: var(--bg-gray);
  font-family: var(--font-heading);
  color: var(--primary);
}

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

/* WhatsApp Button Floating */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: var(--success);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  transition: transform var(--trans-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Big Action Button */
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--success);
  color: white;
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity var(--trans-fast);
}

.btn-whatsapp:hover {
  opacity: 0.9;
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--accent);
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.footer-col p {
  color: #999;
  margin-bottom: 16px;
}

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

.footer-links a {
  color: #ccc;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #666;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .header-actions .search-bar {
    display: none; /* Keep header clean on smaller screens */
  }
}



@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  
  .top-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    font-size: 0.8rem;
  }
  .logo { font-size: 1.5rem; }
  .btn-login { padding: 6px 14px; font-size: 0.85rem; }
  .header-actions { gap: 10px; }
  
  .hero { min-height: 400px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 1.8rem; }
  .grid {
    grid-template-columns: 1fr; /* Force 1 column on mobile */
  }
}

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




/* About Content - No Box */
.about-content {
    max-width: 850px;
    margin: auto;
    text-align: center;
    padding: 20px 10px;
}

/* Paragraph Styling */
.about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
}

/* First paragraph stronger */
.about-content p:first-child {
    font-size: 18px;
    color: #111;
    font-weight: 500;
}

/* Add subtle line accent */
.about-content p:first-child::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #d4af37;
    margin: 15px auto;
    border-radius: 2px;
}

/* Features - Inline Clean Style */
.about-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 25px 0;
}

/* Feature Item */
.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #444;
    transition: all 0.3s ease;
}

.feature i {
    color: #d4af37;
    font-size: 14px;
}

/* Minimal hover */
.feature:hover {
    color: #000;
    transform: translateY(-2px);
}

/* Button - Clean */
.btn-primary {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #000;
    color: #fff;
}


/* About Content - No Box */
.about-content {
    max-width: 950px;
    margin: auto;
    text-align: center;
    padding: 20px 10px;
}

/* Paragraph Styling */
.about-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 18px;
}

/* First paragraph stronger */
.about-content p:first-child {
    font-size: 18px;
    color: #111;
    font-weight: 500;
}

/* Add subtle line accent */
.about-content p:first-child::after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: #d4af37;
    margin: 15px auto;
    border-radius: 2px;
}



/* Button - Clean */
.btn-primary {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #000;
    color: #fff;
}


.about-features-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    
    margin: 40px auto;
    max-width: 1000px;
    padding: 25px 10px;

    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Each item */
.feature-item {
    flex: 1;
    text-align: center;
}

/* Icons */
.feature-item i {
    font-size: 26px;
    color: #777;
    margin-bottom: 10px;
}

/* Text */
.feature-item p {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Hover (subtle professional) */
.feature-item:hover i {
    color: #000;
}

.feature-item:hover p {
    color: #000;
}

@media (max-width: 768px) {
    .about-features-bar {
        flex-wrap: wrap;
        gap: 25px;
    }

    .feature-item {
        width: 45%;
    }
}







/* HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 620;   /* Perfect banner ratio */
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #fff;
    border: 15px solid #fff;
    border-radius: 18px;
}

/* SLIDES */
.slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    transform: scale(1.02);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    background: #fff;
}



.slide.active {
    opacity: 1;
    z-index: 1;
}

/* IMAGE */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* FULL IMAGE */
    object-position: center;
    display: block;
}


/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.08);
    border-radius: 12px;
}

/* ARROWS */
.arrow {
    position: absolute;
    bottom: 25px;
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 5;
    transition: 0.3s;
}

.arrow:hover {
    background: rgba(0,0,0,0.8);
}

.prev { left: 20px; }
.next { right: 20px; }

/* DOTS */
.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

.dot.active {
    background: #d4af37;
}

/* TABLET */
@media (max-width: 992px) {
    .hero-slider {
        aspect-ratio: 1920 / 620;
        border-width: 10px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

     .hero-slider {
        aspect-ratio: 1920 / 620; /* SAME RATIO */
        border-width: 6px;
        border-radius: 12px;
    }

    .slide img {
        object-fit: contain;
    }

    .overlay {
        border-radius: 8px;
    }

    .arrow {
        width: 34px;
        height: 34px;
        font-size: 14px;
        bottom: 12px;
    }

    .prev { left: 10px; }
    .next { right: 10px; }

    .dots {
        bottom: 12px;
    }
}


/* -------- NEW3006 */
/* =========================
   LUXURY PARALLAX BANNER
========================= */

.parallax {
  position: relative;
  width: 100%;
  height: 30vh; /* Increased from 30vh to better showcase the print shop imagery */
  min-height: 200px; /* Ensures text has breathing room on small screens */
  background-size: cover; /* CHANGED from 'contain' to fill the screen flawlessly */
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Elegant, softer overlay to preserve the neutral, sophisticated palette */
.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(40, 36, 33, 0.25), /* Subtle warm dark tint */
    rgba(40, 36, 33, 0.55)
  );
  z-index: 1;
}

.parallax-1 {
  background-image: url("../img/promo_1.png"); /* Your watermarked_img_4303530951602209826.png */
}
.parallax-2 {
  background-image: url("../img/promo_2.png"); /* Your watermarked_img_4303530951602209826.png */
}
.parallax-3 {
  background-image: url("../img/promo_3.png"); /* Your watermarked_img_4303530951602209826.png */
}
/* CONTENT */
.promo-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 450px; /* Increased slightly for better typography balance */
  color: #fff;
  padding: 20px;
  animation: fadeUp 1.2s ease;
}

/* TITLE (APPLE/LUXURY STYLE) */
.promo-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* TEXT */
.promo-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  line-height: 1.6;
}

/* BUTTON (LUXURY STYLE) */
.promo-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #2b2520; /* Dark taupe tone matching the image depth */
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.promo-btn:hover {
  background: #d4af37; /* Clean gold accent */
  color: #fff;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* FADE UP ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
  .parallax {
    height: 25vh;
    background-attachment: scroll; /* Disables fixed parallax on mobile for smooth performance */
  }
  
  .promo-content h2 {
    font-size: 2.1rem;
  }
}

/* --------------------- */


/* =======================================
   EXPLORE ALL CARD
======================================= */

.explore-all-card {
    position: relative;
    min-height: 320px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: url('../img/explore.png') center center/cover no-repeat;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Luxury Overlay */
.explore-all-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(34, 27, 22, 0.92) 0%,
        rgba(34, 27, 22, 0.65) 35%,
        rgba(34, 27, 22, 0.20) 70%,
        rgba(34, 27, 22, 0.05) 100%
    );
    transition: all .4s ease;
}

.explore-all-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.explore-all-card:hover::before {
    background: linear-gradient(
        to top,
        rgba(25,20,16,.95) 0%,
        rgba(25,20,16,.60) 40%,
        rgba(25,20,16,.15) 100%
    );
}

/* =======================================
   CONTENT
======================================= */

.explore-all-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    text-align: left;
    width: 100%;
}

/* Gold Badge */

.explore-tag {
    display: inline-block;
    background: #D4AF37;
    color: #fff;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Title */

.explore-all-content h3 {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

/* Description */

.explore-all-content p {
    color: rgba(255,255,255,.9);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 260px;
}

/* =======================================
   BUTTON
======================================= */

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: #D4AF37;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: .92rem;
    font-weight: 600;
    transition: all .35s ease;
    box-shadow: 0 8px 25px rgba(212,175,55,.35);
}

.btn-explore:hover {
    background: #fff;
    color: #2d241d;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,255,255,.2);
}

/* =======================================
   OPTIONAL ICON
======================================= */

.explore-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--accent);
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}


/* =======================================
   MOBILE
======================================= */

@media (max-width:768px){

    .explore-all-card{
        min-height:260px;
    }

    .explore-all-content{
        padding:22px;
    }

    .explore-all-content h3{
        font-size:1.3rem;
    }

    .explore-all-content p{
        font-size:.9rem;
        max-width:100%;
    }

    .btn-explore{
        width:100%;
        justify-content:center;
        padding:12px;
    }

}

/* =========================
   PRODUCT PAGE FIX (CLEAN LAYOUT)
========================= */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px 0;
    align-items: start;
}

/* LEFT SIDE - IMAGE */
.product-gallery {
    position: sticky;
    top: 100px;
    align-self: start;
}

/* MAIN IMAGE */
.gallery-main {
    background: #f7f7f7;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    padding: 20px;
}

/* THUMBNAILS */
/* =========================
   THUMBNAILS (CENTER BOTTOM)
========================= */

.gallery-thumbs {
    display: flex;
    justify-content: center;   /* KEY FIX */
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;

    width: 100%;
    max-width: 420px; /* keeps it neat under image */
}

/* THUMB IMAGE */
.gallery-thumbs img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
}

/* ACTIVE THUMB */
.gallery-thumbs img.active {
    border-color: var(--accent);
    transform: scale(1.05);
}

/* RIGHT SIDE - INFO */
.detail-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-info h1 {
    font-size: 2.2rem;
    line-height: 1.3;
}

.detail-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* =========================
   MOBILE FIX (IMPORTANT)
========================= */

@media (max-width: 992px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 0;
    }

    .product-gallery {
        position: relative;
        top: auto;
    }

    .gallery-main img {
        height: 300px;
        padding: 15px;
    }

    .detail-info {
        text-align: left;
    }

    .detail-info h1 {
        font-size: 1.6rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* SMALL MOBILE */
@media (max-width: 576px) {
    .gallery-main img {
        height: 240px;
    }

    .gallery-thumbs img {
        width: 55px;
        height: 55px;
    }
}
@media (max-width: 768px) {

    /* =========================
       PAGE SPACING FIX
    ========================= */
    .product-detail {
        padding: 20px 0 40px 0;
    }

    /* Fix top gap under header */
    .section {
        padding-top: 20px;
    }

    /* =========================
       TITLE FIX (BIG ISSUE)
    ========================= */
    .detail-info h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .detail-desc {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    /* =========================
       IMAGE FIX
    ========================= */
    .gallery-main img {
        height: 260px;
        padding: 10px;
    }

    /* =========================
       SECTION SPACING FIX
    ========================= */
    .detail-info h3 {
        font-size: 1.1rem;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    /* =========================
       TABLE FIX (IMPORTANT)
    ========================= */
    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px;
    }

    /* Prevent overflow feeling */
    .container {
        padding: 0 16px;
    }

    /* =========================
       WHATSAPP BUTTON FIX
    ========================= */
    .btn-whatsapp {
        font-size: 0.95rem;
        padding: 14px;
    }
}

.logo-sub {
    font-size: 9px;
    color: #000;
    opacity: 0.6;
    margin-top: 0.5px;
}
@media (max-width: 768px) {
    .logo-sub {
        gap: 8px;
        font-size: 8px;
    }

    .logo-sub {
        line-height: 1.1;
    }
}