/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  --primary: #cf2027;      /* Vivid red matching the stamp logo */
  --primary-hover: #b0181e;
  --secondary: #d97706;    /* Amber/Honey glaze of crisp baguette */
  --secondary-hover: #b45309;
  --dark: #1a1613;         /* Deep rich dark wood/charcoal */
  --dark-light: #2c2520;   /* Muted warm dark */
  --light: #fafaf9;        /* Warm cream background */
  --white: #ffffff;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-400: #a8a29e;
  --gray-600: #78716c;
  --gray-800: #44403c;
  
  --font-title: 'Lexend', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Be Vietnam Pro', 'Segoe UI', system-ui, sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(26, 22, 19, 0.05);
  --shadow-md: 0 8px 24px rgba(26, 22, 19, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 22, 19, 0.12);
  --shadow-glow: 0 0 20px rgba(207, 32, 39, 0.25);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 16px;
}

/* ==========================================
   BASE STYLES & RESET
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--light);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.divider {
  width: 70px;
  height: 4px;
  background: var(--primary);
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}

.divider.align-left {
  margin-left: 0;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background-color: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline:hover {
  background-color: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-zalo {
  background-color: #0068ff;
  color: var(--white);
}

.btn-zalo:hover {
  background-color: #0056d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 104, 255, 0.3);
}

.text-center {
  text-align: center;
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 250, 249, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 22, 19, 0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-sm);
  background-color: rgba(250, 250, 249, 0.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-stamp {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--dark);
  letter-spacing: -0.5px;
}

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

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-800);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-hotline {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), #e11d48);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(207, 32, 39, 0.2);
}

.btn-hotline:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(207, 32, 39, 0.35);
}

.phone-pulse {
  animation: pulse 1.5s infinite;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--dark);
  cursor: pointer;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background-color: #15110e;
  color: var(--white);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(207, 32, 39, 0.15) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(to right, #ffffff, #f3f4f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.hero-content .badge {
  display: inline-block;
  background-color: rgba(207, 32, 39, 0.15);
  border: 1px solid rgba(207, 32, 39, 0.3);
  color: #f87171;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero-content .tagline {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.hero-content .description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 3rem;
}

.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-outline:hover {
  background-color: var(--white);
  color: var(--dark);
}

.hero-features {
  display: flex;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.h-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.h-feat-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transform: rotate(2deg);
  transition: var(--transition);
  border: 4px solid rgba(255, 255, 255, 0.05);
}

.image-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--white);
  padding: 10px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.badge-stamp {
  width: 80px;
  height: 80px;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ==========================================
   SECTION COMMON
   ========================================== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.sub-title {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 850;
  letter-spacing: -0.5px;
}

.section-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ==========================================
   MENU & CART LAYOUT
   ========================================== */
.menu-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(207, 32, 39, 0.15);
}

.product-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--gray-100);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-tag.highlight {
  background-color: var(--secondary);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-desc {
  color: var(--gray-600);
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gray-100);
  padding-top: 15px;
}

.product-price {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.btn-add-cart {
  background-color: var(--gray-100);
  color: var(--dark);
  border: none;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 20px;
}

.btn-add-cart:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* ==========================================
   CART SIDEBAR
   ========================================== */
.cart-sidebar {
  background-color: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--gray-100);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.cart-header h3 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-header h3 i {
  color: var(--primary);
}

.cart-count {
  background-color: var(--primary);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.cart-items {
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 20px;
}

/* Scrollbar for cart items */
.cart-items::-webkit-scrollbar {
  width: 6px;
}
.cart-items::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 3px;
}
.cart-items::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 3px;
}

.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-400);
}

.cart-empty i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-qty {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--gray-400);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gray-800);
  transition: var(--transition);
}

.btn-qty:hover {
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.cart-item-qty {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 16px;
  text-align: center;
}

.cart-totals {
  border-top: 2px solid var(--gray-100);
  padding-top: 16px;
  margin-bottom: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--gray-600);
}

.total-row.highlight {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-top: 12px;
}

.total-row.highlight #cart-total {
  color: var(--primary);
}

.cart-form h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 6px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--gray-400);
  font-family: var(--font-body);
  font-size: 0.88rem;
  background-color: var(--white);
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(207, 32, 39, 0.15);
}

.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

/* ==========================================
   STORY SECTION
   ========================================== */
.story-section {
  background-color: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.story-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.stamp-glow-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-stamp {
  width: 100%;
  height: 100%;
  animation: spin 35s linear infinite;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: 2px solid rgba(207, 32, 39, 0.2);
  animation: pulse-ring 2s infinite ease-out;
  z-index: 1;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.15); opacity: 0; }
}

.story-text h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--gray-600);
  margin-bottom: 1.2rem;
}

.stats-row {
  display: flex;
  gap: 32px;
  margin-top: 2rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 850;
  color: var(--primary);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ==========================================
   BUSINESS INFORMATION (SEO & PROFILE)
   ========================================== */
.business-section {
  background-color: var(--white);
}

.business-card {
  background-color: #faf9f6;
  border: 1px solid #e5e3dd;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.business-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background-color: var(--primary);
}

.biz-badge {
  position: absolute;
  top: 30px;
  right: 40px;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #059669;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.biz-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

.biz-company-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

.biz-foreign-name, .biz-short-name {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.biz-foreign-name .label, .biz-short-name .label {
  font-weight: 600;
  color: var(--gray-800);
}

.biz-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 2rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 1.5rem;
}

.biz-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.biz-item i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 3px;
  background-color: rgba(207, 32, 39, 0.08);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.biz-title {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.biz-value {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
}

.biz-value.highlight-text {
  font-family: var(--font-title);
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.05rem;
}

.biz-value.text-bold {
  font-weight: 700;
}

.biz-address-block {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px;
}

.addr-title {
  font-size: 1.05rem;
  font-weight: 750;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.addr-title i {
  color: var(--primary);
}

.addr-text {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
}

.addr-text.phone-highlight a {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.addr-text.phone-highlight a:hover {
  color: var(--secondary);
}

.certification-box {
  margin-top: 1.5rem;
  border-top: 1px dashed var(--gray-200);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cert-stamp {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.certification-box h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.certification-box p {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* ==========================================
   CONTACT & MAP SECTION
   ========================================== */
.contact-section {
  background-color: var(--gray-100);
  border-top: 1px solid var(--gray-200);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

.contact-form-box {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-form-box h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.contact-form-box p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--gray-400);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 16px;
  background-color: var(--light);
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(207, 32, 39, 0.15);
}

.contact-map h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.contact-map p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.contact-map p i {
  color: var(--primary);
}

.map-placeholder {
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  background-color: #e8ecef;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bounce-pin {
  font-size: 2.5rem;
  color: var(--primary);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
  animation: bounce 2s infinite ease-in-out;
}

.marker-info {
  background-color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--gray-200);
  margin-top: 8px;
  pointer-events: auto;
}

.marker-info h4 {
  font-size: 0.85rem;
  color: var(--primary);
}

.marker-info p {
  font-size: 0.72rem;
  margin-bottom: 0;
  color: var(--gray-600);
}

.map-lines {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.map-tip {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-style: italic;
  margin-top: 12px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 64px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}

.footer-stamp {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  padding: 2px;
  border-radius: 50%;
}

.footer-logo span {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 12px;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact li i {
  color: var(--primary);
  margin-top: 4px;
}

.footer-contact li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

.tax-info {
  font-weight: 500;
}

/* Floating cart icon for mobile */
.cart-floating-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  box-shadow: 0 8px 24px rgba(207, 32, 39, 0.4);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 99;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-floating-btn:hover {
  transform: scale(1.05);
}

.cart-floating-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--secondary);
  color: var(--white);
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Tablet & Mobile View */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .menu-layout {
    grid-template-columns: 1fr;
  }
  
  .cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 380px;
    height: 100vh;
    z-index: 1001;
    overflow-y: auto;
    border-radius: 0;
    transition: right 0.4s ease;
  }
  
  .cart-sidebar.open {
    right: 0;
  }
  
  .cart-floating-btn {
    display: flex;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  
  .footer-col.brand-col {
    grid-column: span 2;
  }
}

/* Mobile View Only */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    transition: left 0.3s ease;
    border-top: 1px solid var(--gray-200);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }
  
  .btn-hotline {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.6rem;
  }
  
  .hero-content .description {
    margin: 0 auto 2rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-image-wrapper {
    order: -1;
  }
  
  .image-frame {
    height: 300px;
  }
  
  .hero-img {
    height: 100%;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  
  .story-text h2 {
    font-size: 1.8rem;
  }
  
  .stats-row {
    justify-content: center;
  }
  
  .biz-badge {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 1rem;
    display: inline-flex;
  }
  
  .biz-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .biz-details {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .footer-col.brand-col {
    grid-column: span 1;
  }
  
  .bottom-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .cart-sidebar {
    width: 100%;
  }
}
