/* ===== PAKHIR BASHA - MAIN STYLESHEET ===== */

:root {
  --red: #C8102E;
  --red-dark: #a00d24;
  --red-light: #ff2d50;
  --green: #006A4E;
  --green-dark: #004d38;
  --green-light: #00895f;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --gray: #6c757d;
  --dark: #1a1a2e;
  --text: #2d2d2d;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Hind Siliguri', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 50px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-title span { color: var(--red); }
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  background: rgba(200,16,46,0.10);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  text-decoration: none;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,16,46,0.30);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,0.40);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,106,78,0.30);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,106,78,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(26,26,46,0.995);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 0;
  transition: var(--transition);
  border-bottom: 2px solid var(--red);
}
#navbar.scrolled {
  background: rgba(26,26,46,0.99);
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 114px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo img {
  height: 110px;
  width: 110px;
  max-width: 110px;
  max-height: 110px;
  min-width: 110px;
  min-height: 110px;
  flex: 0 0 110px;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(1.18);
  transform-origin: left center;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text .brand-name {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.1;
}
.nav-logo-text .brand-tagline {
  color: var(--red);
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(200,16,46,0.2);
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  padding-top: 114px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,106,78,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.3);
  color: #ff8096;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-tag .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  color: #ff6b8a;
  background: linear-gradient(135deg, var(--red), #ff6b8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: center; }
.stat-item .num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-item .num span { color: var(--red); }
.stat-item .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 460px;
}
.hero-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.hero-img-card:hover { transform: scale(1.03); }
.hero-img-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.hero-img-card:first-child {
  grid-column: 1 / -1;
}
.hero-img-card:first-child img { height: 240px; }

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0 30px;
  letter-spacing: 0.5px;
}
.marquee-track span::before {
  content: '★  ';
  color: rgba(255,255,255,0.6);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== FEATURED PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .product-img img { transform: scale(1.07); }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.7), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-info { padding: 20px; }
.product-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.product-info p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 14px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
}
.price span { font-size: 0.75rem; font-weight: 500; color: var(--gray); }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.step-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 34px;
  background: var(--red);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(200,16,46,0.4);
}
.step-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(200,16,46,0.1), rgba(0,106,78,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  transition: var(--transition);
}
.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-card p { font-size: 0.88rem; color: var(--gray); }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-main-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-float {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--red);
}
.about-float .big { font-size: 2rem; font-weight: 800; color: var(--red); }
.about-float .small { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 2px; }
.about-content .badge { margin-bottom: 16px; }
.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.about-content p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.about-feature .icon {
  width: 32px; height: 32px;
  background: rgba(0,106,78,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,16,46,0.2);
}
.review-stars {
  color: #FFB800;
  font-size: 1rem;
  margin-bottom: 14px;
}
.review-text {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer-info .name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
}
.reviewer-info .location {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ===== ORDER FORM ===== */
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.order-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}
.order-info p { color: var(--gray); margin-bottom: 24px; }
.order-benefits { display: flex; flex-direction: column; gap: 14px; }
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.benefit-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; flex-shrink: 0;
}
.benefit-item span { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.order-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}
.form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
}
.form-group label span { color: var(--red); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  font-family: inherit;
  outline: none;
}
.form-control:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200,16,46,0.08);
}
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border: 2px dashed var(--light-gray);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--gray);
  background: var(--off-white);
  cursor: pointer;
  transition: var(--transition);
}
.file-label:hover { border-color: var(--red); color: var(--red); }
input[type="file"] { display: none; }
.form-btns {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.form-btns .btn { flex: 1; justify-content: center; font-size: 0.93rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(0,106,78,0.08);
  border-radius: var(--radius);
  color: var(--green);
  font-weight: 700;
  margin-top: 14px;
}
.form-status {
  display: none;
  text-align: center;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  margin-top: 14px;
  background: rgba(0,106,78,0.08);
  color: var(--green);
}
.form-status.is-error {
  background: rgba(200,16,46,0.08);
  color: var(--red);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.contact-card:hover {
  transform: translateX(6px);
  border-color: rgba(200,16,46,0.3);
  box-shadow: var(--shadow-lg);
}
.contact-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-icon.red { background: rgba(200,16,46,0.12); color: var(--red); }
.contact-icon.green { background: rgba(0,106,78,0.12); color: var(--green); }
.contact-icon.blue { background: rgba(37,99,235,0.10); color: #2563eb; }
.contact-icon.wa { background: rgba(37,211,102,0.12); color: #25D366; }
.contact-card-text .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray);
  margin-bottom: 3px;
}
.contact-card-text .value {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--dark);
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.social-btn {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn.fb { background: #1877f2; color: white; }
.social-btn.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-btn.yt { background: #FF0000; color: white; }
.social-btn:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 380px; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-tooltip {
  background: var(--dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wa-bounce 2s infinite;
  text-decoration: none;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
}
.wa-btn svg { width: 30px; height: 30px; }
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 92px;
  width: 92px;
  max-width: 92px;
  max-height: 92px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 14px;
  transform: scale(1.18);
  transform-origin: left center;
}
.footer-brand h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 28px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--red); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--red); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
  padding: 130px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.page-header p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--red); font-weight: 600; }

/* ===== PRODUCT VISUAL CARDS (CSS Illustrations) ===== */
.pv-wrap {
  width: 100%; height: 100%; min-height: 240px;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; cursor: pointer;
}
.pv-c1, .pv-c2 {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.07); pointer-events: none;
}
.pv-c1 { width:220px; height:220px; top:-75px; right:-75px; }
.pv-c2 { width:180px; height:180px; bottom:-60px; left:-60px; }
.pv-c3 {
  position: absolute; width:120px; height:120px;
  border-radius:50%; background:rgba(255,255,255,0.04);
  top:50%; left:50%; transform:translate(-50%,-50%);
  pointer-events:none;
}
.pv-svg-icon {
  width:115px; height:115px; position:relative; z-index:2;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.28));
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
}
.product-card:hover .pv-svg-icon,
.showcase-card:hover .pv-svg-icon { transform: scale(1.12) translateY(-6px); }
.pv-photo {
  position: relative;
  z-index: 2;
  width: min(82%, 280px);
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.28));
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
}
.showcase-card:hover .pv-photo { transform: scale(1.08) translateY(-4px); }
.pv-photo-tshirt {
  width: min(86%, 285px);
  max-height: 230px;
}
.pv-photo-mug {
  width: min(80%, 250px);
  max-height: 210px;
}
.pv-photo-cap {
  width: min(88%, 295px);
  max-height: 210px;
}
.pv-name {
  color:rgba(255,255,255,0.93); font-size:0.88rem; font-weight:800;
  margin-top:11px; position:relative; z-index:2;
  text-shadow:0 2px 8px rgba(0,0,0,0.35); letter-spacing:0.3px;
}
/* T-shirt gradients */
.pv-ts1 { background: linear-gradient(140deg, #C8102E 0%, #7a0019 100%); }
.pv-ts2 { background: linear-gradient(160deg, #e0294a 0%, #9b001f 100%); }
.pv-ts3 { background: linear-gradient(120deg, #a50d24 0%, #d41f3e 100%); }
/* Mug gradients */
.pv-mg1 { background: linear-gradient(140deg, #006A4E 0%, #002f23 100%); }
.pv-mg2 { background: linear-gradient(160deg, #008a62 0%, #004035 100%); }
.pv-mg3 { background: linear-gradient(120deg, #00503c 0%, #007a57 100%); }
/* Cap gradients */
.pv-cp1 { background: linear-gradient(140deg, #1a1a2e 0%, #0f3460 100%); }
.pv-cp2 { background: linear-gradient(160deg, #16213e 0%, #1c4080 100%); }
.pv-cp3 { background: linear-gradient(120deg, #0d2d55 0%, #1a2a4a 100%); }
/* Showcase tall variant */
.showcase-card .pv-wrap { min-height:320px; }

/* ===== BILINGUAL TEXT ===== */
.bn {
  display: block;
  font-size: 0.82em;
  opacity: 0.72;
  font-weight: 400;
  margin-top: 3px;
  line-height: 1.4;
}
h1 .bn, h2 .bn, h3 .bn { font-weight: 500; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .order-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-float { bottom: -16px; right: -16px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links { display: none; position: fixed; top: 114px; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 20px; gap: 4px; border-top: 2px solid var(--red); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .about-float { display: none; }
  .form-btns { flex-direction: column; }
}
