/*
Theme Name: Aspire Design (KET)
Theme URI: https://ket.site/
Author: Ketan
Description: Ultra modern, responsive theme built for BagCraft (custom inquiry, product, service, and contact sections).
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: bagcraft-modern
Tags: modern, responsive, clean, onepage, custom
*/

/* === RESET === */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  background: #fafafd;
  color: #181920;
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* === HEADER & NAVIGATION === */
.main-header {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  flex-shrink: 0;
}
.logo img.custom-logo {
  max-height: 54px;
  width: auto;
  display: block;
}
.logo .site-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #111;
}
#mobile-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
  flex-direction: row;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links li {
  white-space: nowrap;
}
.nav-links a {
  text-decoration: none;
  color: #202020;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 99px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links li.current-menu-item a {
  background: #202020;
  color: #fff;
}
.get-quote-btn {
  background: #202027;
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(32,32,39,0.1);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.get-quote-btn:hover {
  background: #e66d45;
  transform: translateY(-2px) scale(1.05);
}
/* Hamburger show (hidden by default on desktop) */
#menu-toggle,
.hamburger {
  display: none;
  background: none;
  border: none;
  box-shadow: none;
}
.hamburger {
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: #202020;
  margin: 5px 0;
  border-radius: 2px;
  display: block;
  transition: 0.3s cubic-bezier(.6,.03,.3,.85);
}

/* === RESPONSIVE NAVIGATION & ENQUIRY BUTTON FIXES === */

/* DESKTOP: show desktop enquiry, hide mobile enquiry/hamburger */
@media (min-width: 769px) {
  .desktop-enquiry-btn { display: inline-block !important; }
  .mobile-enquiry-btn  { display: none      !important; }
  #menu-toggle,
  .hamburger { display: none !important; }
}
/* MOBILE: show hamburger, show mobile enquiry only in open menu */
@media (max-width: 768px) {
  .container {
    height: 70px;
    padding: 0 15px;
  }
  #menu-toggle, .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    z-index: 2005;
  }
  .desktop-enquiry-btn { display: none !important; }
  #mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin: 0;
    z-index: 10;
    flex-direction: column;
    align-items: center;
  }
  #mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    align-items: center;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    display: block;
    padding: 15px 20px;
    border-radius: 0;
    font-size: 1.07rem;
  }
  .nav-links a:hover {
    background: #f8f9fa;
    color: #202020;
  }
  .mobile-enquiry-btn {
    display: none;
    width: 90%;
    margin: 0px auto 22px auto;
    text-align: center;
    font-size: 1.08rem;
    padding: 12px 0;
  }
  #mobile-nav.active .mobile-enquiry-btn {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .hamburger span { transition: 0.3s; }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
	transform: scaleX(0.6);

  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
  }
}

/* === FOOTER === */
.site-footer {
  background: #000;
  color: #fff;
  padding: 54px 0 0 0;
  position: relative;
  font-family: 'Open Sans', sans-serif;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 0 48px;
}

/* Logo and About Section - Left Side */
.footer-logo-about {
  flex: 1 1 400px;
  max-width: 450px;
}

.footer-logo img,
.footer-logo .custom-logo {
  max-height: 64px;
  width: auto;
  margin-bottom: 24px;
  display: block;
}

.footer-about {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 400;
}

.footer-socials {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-socials a {
  color: #ff6d47;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-socials a:hover {
  color: #fff;
}

.footer-socials svg {
  width: 26px;
  height: 26px;
}

/* Quick Links Section - Center */
.footer-quick {
  flex: 0 1 auto;
  text-align: center;
  min-width: 300px;
}

.footer-links-title {
  color: #ff6d47;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-menu-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.footer-menu-links li {
  margin: 0;
}

.footer-menu-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer-menu-links a:hover {
  color: #ff6d47;
}

/* Contact Section - Right Side */
.footer-contact {
  flex: 1 1 350px;
  max-width: 400px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.footer-contact-list li:last-child {
  margin-bottom: 0;
}

.footer-contact-list svg {
  color: #fff;
  min-width: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: #ff6d47;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 48px;
  padding: 24px 48px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #999;
}

.footer-copyright {
  font-size: 14px;
  color: #999;
}

.footer-meta-links {
  display: flex;
  gap: 32px;
}

.footer-meta-links a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-meta-links a:hover {
  color: #ff6d47;
}

/* Remove the pseudo-element line */
.site-footer::after {
  display: none;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .footer-container {
    gap: 40px;
    padding: 0 32px;
  }
  
  .footer-menu-links {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 0 0;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
    text-align: left;
  }
  
  .footer-logo-about,
  .footer-quick,
  .footer-contact {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .footer-quick {
    text-align: left;
  }
  
  .footer-menu-links {
    justify-content: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 20px 24px;
  }
  
  .footer-meta-links {
    justify-content: center;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 16px;
  }
  
  .footer-bottom {
    padding: 16px;
  }
  
  .footer-meta-links {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-socials {
    gap: 12px;
  }
}

/* === HERO SECTION === */
.bagcraft-hero {
  background: #f6f6fa;
  padding: 64px 0 48px 0;
}
.bagcraft-hero-container {
  max-width: 1340px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bagcraft-hero-main {
  flex: 1.6;
  min-width: 290px;
}
.bagcraft-hero-main h1 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.11;
  color: #17181c;
}
.bagcraft-hero-desc {
  color: #535362;
  font-size: 1.12rem;
  max-width: 420px;
  margin-bottom: 28px;
}
.bagcraft-hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.bagcraft-hero-btn {
  display: inline-block;
  padding: 12px 26px;
  font-size: 1.03rem;
  border-radius: 9px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(32,32,40,0.08);
  transition: all 0.19s;
  border: none;
  cursor: pointer;
}
.bagcraft-hero-btn.primary {
  background: #13132B;
  color: #fff;
}
.bagcraft-hero-btn.primary:hover {
  background: #e66d45;
  transform: scale(1.04) translateY(-2px);
}
.bagcraft-hero-btn.secondary {
  background: #fff;
  color: #13132B;
  border: 1.4px solid #e3e3ee;
}
.bagcraft-hero-btn.secondary:hover {
  background: #e66d45;
  color: #5756f0;
  border-color: #b2b6fa;
}
.bagcraft-hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.bc-stat {
  display: flex;
  align-items: center;
  gap: 9px;
}
.bc-stat-icon {
  width: 32px; height: 32px;
  border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(40,40,100,0.07);
  transition: box-shadow 0.18s;
}
.bc-stat-icon:hover {
  box-shadow: 0 8px 28px rgba(70,70,170,0.15);
}
.bc-stat span {
  color: #17181c;
  font-weight: 700;
  font-size: 1.09rem;
}
.bc-stat small {
  color: #6e6e7d;
  font-size: 0.98rem;
}
.bagcraft-hero-image-wrap {
  flex: 1.05;
  min-width: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bagcraft-image-bg {
  width: 440px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(120deg, #f8f8fd 67%, #d6d8ee 100%);
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(44,48,110,0.15);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: box-shadow 0.19s;
}
.bagcraft-image-bg:hover {
  box-shadow: 0 32px 80px rgba(44,48,130,0.18);
}
.bagcraft-hero-image {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform .22s, box-shadow .2s;
}
.bagcraft-image-bg:hover .bagcraft-hero-image{
  transform: scale(1.035) translateY(-7px);
  box-shadow: 0 24px 60px rgba(40,56,120,0.17);
}

/* TRUSTED By Section */
.trusted-industries {
  width: 100vw;
  max-width: 100vw;
  background: #fff;
  padding: 28px 0 20px 0;
  margin: 0;
  overflow-x: hidden;
}
.trusted-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.trusted-title {
  text-align: center;
  font-family: 'Inter',sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #181920;
  margin: 0 0 30px 0;
  letter-spacing: -0.01em;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.trusted-logos::-webkit-scrollbar {
  display: none;
}
.trusted-logos img {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 28px rgba(80,88,160,0.07);
  padding: 9px 16px;
  max-width: 140px;
  max-height: 65px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: box-shadow .15s, transform .13s;
}
.trusted-logos img:hover {
  box-shadow: 0 14px 32px rgba(80,88,160,0.15);
  transform: translateY(-3px) scale(1.04);
}

.trusted-logo-marquee {
  overflow: hidden;
  width: 100vw;
  margin: 0 auto;
  padding-bottom: 8px;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 54px;
  width: max-content;
  animation: marquee-scroll 37s linear infinite;
}
.marquee-logo img {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 28px rgba(80,88,160,0.07);
  padding: 9px 16px;
  max-width: 140px;
  max-height: 65px;
  object-fit: contain;
  transition: box-shadow .15s, transform .13s;
  display: block;
}
.marquee-logo img:hover {
  box-shadow: 0 14px 32px rgba(80,88,160,0.15);
  transform: translateY(-3px) scale(1.04);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0);}
  100% { transform: translateX(-50%);}
}
.trusted-logo-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* === WHY CLIENTS TRUST US SECTION === */
.bagcraft-trustus {
  background: #fff;
  padding: 54px 0 54px 0;
  border-radius: 10px;
  margin: 0 auto;
}
.trustus-title {
  text-align: center;
  font-size: 2.2rem;
  color: #13132B;
  font-weight: 500;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}
.trustus-features {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}
.trustus-card {
  background: #fff;
  border: 1.2px solid #e4e4ea;
  border-radius: 24px;
  box-shadow: none;
  padding: 46px 28px 28px 28px;
  flex: 1 1 340px;
  max-width: 425px;
  min-width: 235px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow .17s, border-color .17s, transform .16s;
}
.trustus-card:hover {
  box-shadow: 0 6px 38px rgba(80,88,160,0.09);
  border-color: #d5dfff;
  transform: translateY(-5px) scale(1.015);
}
.trustus-icon {
  margin-bottom: 16px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trustus-heading {
  font-size: 1.19rem;
  font-weight: 600;
  color: #191927;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.trustus-desc {
  color: #8a8a99;
  font-size: 1.07rem;
}

/* === PRODUCTS SECTION === */
.bagcraft-products {
  background: #ffffff;
  padding: 80px 0;
}

.products-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 50px;
  padding: 0 20px;
  
  /* Add fade-in animation */
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  
  /* Hover transition effects */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
  
  /* Staggered loading animation */
  opacity: 0;
  animation: slideInUp 0.6s ease forwards;
}

/* Stagger the card animations */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

/* Card hover effects */
.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #d0d0d0;
}

.product-image {
  height: 280px;
  background: #f8f9fa;
  overflow: hidden;
  position: relative;
  
  /* Image container effects */
  transition: all 0.4s ease;
}

.product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.product-card:hover .product-image::before {
  opacity: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  
  /* Image zoom effect */
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.image-placeholder {
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-content {
  padding: 24px 20px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  
  /* Content slide effect */
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.product-card:hover .product-content {
  transform: translateY(-2px);
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.product-title {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  flex: 1;
  margin-right: 15px;
  line-height: 1.3;
  
  /* Title color transition */
  transition: color 0.3s ease;
}
/* 
.product-card:hover .product-title {
  color: #e66d45;
} */

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  
  /* Rating animation */
  transition: transform 0.3s ease;
}

.product-card:hover .product-rating {
  transform: scale(1.1);
}

.product-rating .star {
  width: 18px;
  height: 18px;
  color: #10b981;
  
  /* Star glow effect */
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 0 rgba(16, 185, 129, 0));
}

.product-card:hover .product-rating .star {
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.4));
}

.product-rating span {
  font-size: 15px;
  color: #666;
  font-weight: 600;
}

.product-meta {
  margin-bottom: 16px;
}

.sold-text {
  font-size: 15px;
  color: #ff6b35;
  font-weight: 500;
  
  /* Sold text animation */
  transition: all 0.3s ease;
}

.product-card:hover .sold-text {
  color: #e55a2b;
  transform: translateX(2px);
}

.bulk-text {
  font-size: 15px;
  color: #999;
  margin-left: 6px;
}

.product-features {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  margin-bottom: 24px;
}

.product-features li {
  font-size: 15px;
  color: #666;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
  line-height: 1.4;
  
  /* Feature slide animation */
  opacity: 0.8;
  transform: translateX(0);
  transition: all 0.3s ease;
}

.product-card:hover .product-features li {
  opacity: 1;
  transform: translateX(4px);
}

.product-features li::before {
  content: '•';
  color: #1a1a1a;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  
  /* Bullet point animation */
  transition: color 0.3s ease;
}

.product-card:hover .product-features li::before {
  color: #0066cc;
}

.enquiry-button {
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  
  /* Button effects */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

/* Button hover effects */
.enquiry-button:hover {
  background: #e66d45;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

/* Button ripple effect */
.enquiry-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.enquiry-button:hover::before {
  width: 300px;
  height: 300px;
}

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

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* PRODUCT-LIST Page */
.product-list-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.product-list-title {
  text-align: center;
  font-size: 1.68rem;
  font-weight: 500;
  margin: 41px 0 39px 0;
  color: #181920;
}

/* Product card wrapper */
.product-card-figma {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 auto 45px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(40,40,44,0.07);
  padding: 18px 14px;
}

/* Card left section */
.product-card-main {
  flex: 0 1 270px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-card-image {
  width: 260px;
  height: 180px;
  border-radius: 14px 14px 0 0;
  background-color: #f3f3f3;
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
}

/* Card info & title row */
.product-card-info {
  background: #fff;
  border-radius: 0 0 13px 13px;
  padding: 7px 6px 3px 8px;
  width: 100%;
}
.product-card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.product-card-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #212121;
  white-space: pre-line;
  flex: 1;
}

/* Rating: icon + number side-by-side and vertically centered */
.product-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  color: #979797;
  font-weight: 400;
  line-height: 1;
}

.product-card-rating svg { width: 16px; height: 16px; vertical-align:middle; }

/* Card sales & bulk info */
.product-card-sales-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.product-card-sales {
  color: #FF794D;
  font-size: 0.97rem;
  font-weight: 500;
}
.product-card-bulk {
  color: #979797;
  font-size: 0.97rem;
  font-weight: 400;
}

/* Card right section */
.product-card-details {
  flex: 1 1 400px;
  min-width: 230px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0px 0px 2px rgba(0,0,0,.04);
  padding: 6px 0 4px 17px;
  margin-top: 3px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card-details-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #212121;
  margin-bottom: 2px;
}
.product-card-desc {
  font-size: .99rem;
  font-weight: 400;
  color: #535353;
  margin-bottom: 3px;
}
.product-card-section-title {
  font-size: .98rem;
  font-weight: 500;
  color: #191919;
  margin-bottom: 7px;
}
.product-card-features ul,
.product-card-industries ul {
  margin: 0 0 5px 0;
  padding-left: 18px;
  color: #181920;
  font-size: .97rem;
  list-style: disc;
}
.product-card-features li, .product-card-industries li { margin-bottom: 5px; }
.product-card-enquiry-btn {
  margin-top: 10px;
  width: 124px;
  background: #000;
  color: #fff;
  font-size: .97rem;
  font-weight: 400;
  border-radius: 8px;
  padding: 9px 0;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background 0.18s, transform 0.18s;
}
.product-card-enquiry-btn:hover {
  background: #FF794D;
  transform: scale(1.04) translateY(-2px);
}

/* === SERVICES SECTION === */
.bagcraft-services {
  background: #fff;
  padding: 60px 0 50px 0;
}
.services-title {
  text-align: center;
  font-size: 2.13rem;
  color: #191927;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.services-subtitle {
  text-align: center;
  color: #88889c;
  font-size: 1.10rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 36px auto;
  padding: 0 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
  max-width: 1340px;
  margin: 0 auto;
}
.services-card {
  background: #fff;
  border: 1.2px solid #e4e4ea;
  border-radius: 20px;
  padding: 40px 18px 28px 18px;
  min-width: 0;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: none;
  text-align: center;
  transition: box-shadow .14s, border-color .13s, transform .12s;
}
.services-card:hover {
  box-shadow: 0 6px 32px rgba(60,60,110,0.11);
  border-color: #c4d1fd;
  transform: translateY(-2.5px) scale(1.014);
}
.services-icon {
  margin-bottom: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-heading {
  font-size: 1.13rem;
  font-weight: 600;
  color: #191927;
  margin-bottom: 12px;
}
.services-desc {
  color: #88889b;
  font-size: 1.06rem;
  line-height: 1.55;
}

/* === CONTACT SECTION AND FORM === */
.bagcraft-contact-wrap {
  background: #fafafd;
  padding: 56px 0 56px 0;
}
.contact-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #191927;
  margin-bottom: 10px;
}
.contact-lead {
  text-align: center;
  color: #88889c;
  font-size: 1.11rem;
  font-weight: 500;
  margin-bottom: 33px;
  margin-top: 0;
  padding: 0 20px;
}
.contact-outer-flex {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 42px;
  align-items: flex-start;
  justify-content: center;
}
.contact-left-info {
  flex: 1.16;
  min-width: 315px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail-block { margin-bottom: 7px; }
.contact-label {
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 15px;
}
.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #57576a;
  font-size: 1.01rem;
}
.contact-details-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-details-list b { color: #1a1b22; }
.contact-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-why-box {
  background: #fff;
  border: 1.2px solid #e4e4ea;
  border-radius: 16px;
  padding: 22px 18px;
  font-size: 1.04rem;
  color: #242545;
  margin-top: 18px;
}
.contact-why-box ul {
  list-style: disc;
  padding-left: 15px;
  margin-top: 12px;
  color: #55565f;
  font-size: 1.01rem;
}
.contact-why-box li { margin-bottom: 7px; }

/* Right contact form */
.contact-right-form {
  flex: 1.3;
  min-width: 320px;
  max-width: 440px;
  width: 100%;
  background: #fff;
  border: 1.2px solid #e4e4ea;
  border-radius: 16px;
  box-shadow: none;
  padding: 24px 32px 32px 32px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
.contact-form { width: 100%; }
.form-title {
  font-size: 1.07rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #181928;
  text-align: left;
}
.form-row {
  display: flex;
  gap: 12px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-half { width: 100%; }
label {
  font-size: .96rem;
  font-weight: 600;
  color: #1b1c23;
  margin-bottom: 5px;
}
input, select, textarea {
  background: #f8f9fb;
  border: 1.15px solid #e4e4ea;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 0;
  outline: none;
  transition: border 0.18s, box-shadow 0.18s;
  resize: none;
}
input:focus, select:focus, textarea:focus {
  border-color: #6c7af7;
  box-shadow: 0 2px 10px rgba(92,108,250,0.05);
}
.phone-input-wrapper {
  display: flex;
  border: 1.15px solid #e4e4ea;
  border-radius: 8px;
  background: #f8f9fb;
  overflow: hidden;
}
.phone-input-wrapper:focus-within {
  border-color: #6c7af7;
  box-shadow: 0 2px 10px rgba(92,108,250,0.05);
}
.phone-country-dropdown {
  appearance: none;
  border: none;
  background: #fff;
  padding: 0 12px;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  height: 46px;
  border-right: 1.15px solid #e4e4ea;
  color: #3a3a4a;
  cursor: pointer;
  min-width: 97px;
}
.phone-input-wrapper input[type=tel] {
  border: none;
  background: transparent;
  flex: 1;
  padding: 12px 14px;
  font-size: 1rem;
  outline: none;
}
.phone-input-wrapper input[type=tel]:focus {
  border: none;
  box-shadow: none;
}
.form-submit-btn {
  margin-top: 10px;
  background: #13132b;
  color: #fff;
  width: 100%;
  font-size: 1.14rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 13px 0 13px 0;
  transition: background .17s, box-shadow .17s, transform .16s;
  cursor: pointer;
  box-shadow: 0 3px 18px rgba(60,60,60,0.03);
}
.form-submit-btn:hover:not(:disabled) {
  background: #e66d45;
  color: #fff;
  transform: translateY(-1.5px) scale(1.012);
}
.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Modal Styles */
.inquiry-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(34,36,40,0.22);
  align-items: center; justify-content: center;
}
.inquiry-modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 340px;
  margin: 16vh auto 0 auto;
  padding: 32px 24px;
  box-shadow: 0 6px 32px rgba(40,50,90,0.17);
  text-align: center;
  position: relative;
}
.inquiry-modal-close {
  position: absolute;
  top: 11px; right: 18px;
  font-size: 1.55rem;
  color: #888;
  cursor: pointer;
  transition: color 0.17s;
}
.inquiry-modal-close:hover { color: #191927; }
#inquiry-modal-message {
  font-size: 1.14rem;
  color: #171819;
  font-weight: 600;
  padding-top: 15px;
}
.inquiry-modal .success {
  color: #218838;
}
.inquiry-modal .error {
  color: #dc3545;
}

/* === FOOTER === */
footer {
  background: #181920;
  color: #fff;
  padding: 26px 20px;
  text-align: center;
  font-size: 1.04rem;
  margin-top: 60px;
  letter-spacing: 1px;
}

/* === RESPONSIVE BREAKPOINTS === */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
 
  
  .trusted-container {
    max-width: 900px;
  }
  
  .trusted-logos {
    gap: 40px;
  }
  
  .trusted-logos img {
    max-width: 110px;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }
  
  .product-image {
    height: 240px;
  }
  
  /* Reduce hover effects on tablets */
  .product-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .bagcraft-hero-container {
    flex-direction: column-reverse;
    gap: 30px;
    align-items: center;
  }
  
  .bagcraft-hero-image-wrap {
    margin-bottom: 20px;
  }
  
  .bagcraft-image-bg {
    width: 90vw;
    max-width: 400px;
  }
  
  .contact-outer-flex {
    flex-direction: column;
    gap: 30px;
    max-width: 650px;
  }
  
  .contact-right-form {
    max-width: 100%;
  }
}

/* Mobile and Large Phones */
@media (max-width: 768px) {
  .container {
    height: 70px;
    padding: 0 15px;
  }
  
  
  /* Hero Section Mobile */
  .bagcraft-hero {
    padding: 40px 0 30px 0;
  }
  
  .bagcraft-hero-main h1 {
    font-size: 2.2rem;
  }
  
  .bagcraft-hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  
  .bagcraft-hero-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
  
  .bagcraft-image-bg {
    width: 95vw;
    max-width: 350px;
  }
  
  /* Products Section Mobile */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 15px;
  }
  
  .bagcraft-products {
    padding: 50px 0;
  }
  
  .products-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .product-image {
    height: 200px;
  }
  
  /* Disable hover effects on mobile */
  .product-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .product-card:hover .product-image img {
    transform: none;
  }
  
  /* Services Section Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .services-title {
    font-size: 1.8rem;
  }
  
  /* Trust Us Section Mobile */
  .trustus-features {
    padding: 0 15px;
  }
  
  .trustus-title {
    font-size: 1.8rem;
    padding: 0 15px;
  }
  
  /* Trusted Industries Mobile */
  .trusted-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .trusted-logos {
    gap: 20px;
  }
  
  .trusted-logos img {
    max-width: 80px;
    max-height: 40px;
  }
  
  /* Contact Section Mobile */
  .contact-title {
    font-size: 1.8rem;
    padding: 0 15px;
  }
  
  .contact-outer-flex {
    padding: 0 15px;
  }
  
  .contact-right-form {
    padding: 20px 16px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .phone-country-dropdown {
    min-width: 80px;
    padding: 0 8px;
  }
  
  /* Footer Mobile */
  .footer-container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    padding: 0 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-menu-links {
    flex-direction: column;
    gap: 10px;
  }
  
  /* Product List Page Mobile */
  .product-list-page {
    padding: 0 15px;
  }
  
  .product-card-figma {
    flex-direction: column;
    gap: 16px;
    padding: 15px;
  }
  
  .product-card-main,
  .product-card-details {
    min-width: 0;
    width: 100%;
  }
  
  .product-card-image {
    width: 100%;
    height: 150px;
  }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .logo img.custom-logo {
    max-height: 40px;
  }
  
  .get-quote-btn {
    padding: 12px 20px;
    font-size: 20px;
  }
  
  /* Hero Section Small Mobile */
  .bagcraft-hero-main h1 {
    font-size: 1.9rem;
  }
  
  .bagcraft-hero-desc {
    font-size: 1rem;
  }
  
  /* Products Section Small Mobile */
  .products-grid {
    padding: 0 10px;
  }
  
  .product-content {
    padding: 16px 12px;
  }
  
  .bagcraft-products {
    padding: 30px 0;
  }
  
  .products-title {
    font-size: 20px;
  }
  
  /* Services Section Small Mobile */
  .services-grid {
    padding: 0 10px;
  }
  
  .services-card {
    padding: 20px 12px 16px 12px;
  }
  
  .services-title {
    font-size: 1.5rem;
  }
  
  /* Trust Us Section Small Mobile */
  .trustus-title {
    font-size: 1.5rem;
  }
  
  .trustus-features {
    padding: 0 10px;
  }
  
  .trustus-card {
    padding: 20px 15px;
  }
  
  /* Trusted Industries Small Mobile */
  .trusted-title {
    font-size: 1.2rem;
  }
  
  .trusted-logos img {
    max-width: 60px;
    max-height: 30px;
    padding: 6px 8px;
  }
  
  /* Contact Section Small Mobile */
  .contact-title {
    font-size: 1.5rem;
  }
  
  .contact-outer-flex {
    padding: 0 10px;
  }
  
  .contact-right-form {
    padding: 15px 12px;
  }
  
  input, select, textarea {
    font-size: 14px;
    padding: 10px 12px;
  }
  
  .form-submit-btn {
    font-size: 1rem;
    padding: 12px 0;
  }
  
  /* Footer Small Mobile */
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-about {
    font-size: 14px;
  }
  
  .footer-contact-list {
    font-size: 14px;
  }
  
  /* Product List Page Small Mobile */
  .product-card-title {
    font-size: 0.9rem;
  }
  
  .product-card-details-title {
    font-size: 0.85rem;
  }
  
  .product-card-enquiry-btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 8px 0;
  }
}


