/* ==========================================================================
   VENELA FOOD PRODUCTS - BRAND DESIGN SYSTEM & STYLESHEET
   Inspired by Badshah Masala, crafted for elegance, responsiveness & speed.
   ========================================================================== */

:root {
  --primary-red: #7B1113;
  --primary-red-dark: #4A0A0C;
  --primary-red-light: #9B1B1E;
  --accent-gold: #D4AF37;
  --accent-gold-dark: #B8860B;
  --accent-gold-light: #FDF4DC;
  --accent-saffron: #E67E22;
  --accent-emerald: #1B4D3E;
  --bg-warm: #FAF7F2;
  --bg-card: #FFFFFF;
  --text-dark: #1E1B18;
  --text-muted: #655E57;
  --card-border: rgba(212, 175, 55, 0.2);
  --shadow-sm: 0 4px 20px rgba(123, 17, 19, 0.06);
  --shadow-md: 0 10px 30px rgba(123, 17, 19, 0.12);
  --shadow-lg: 0 20px 45px rgba(123, 17, 19, 0.18);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

html {
  background-color: var(--bg-warm) !important;
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-warm) !important;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 85%, rgba(123, 17, 19, 0.06) 0%, transparent 45%);
  background-attachment: fixed;
  color: var(--text-dark);
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, .brand-font {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
}

/* --- Top Announcement Bar --- */
.announcement-bar {
  background: linear-gradient(90deg, #4A0A0C 0%, #7B1113 50%, #4A0A0C 100%);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 8px 0;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
.announcement-bar a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
}
.announcement-bar a:hover {
  text-decoration: underline;
}

/* --- Navbar & Header (Glassmorphism & Transparent) --- */
.navbar-wrapper-sticky {
  position: sticky;
  top: 15px;
  z-index: 1030;
  padding: 0 20px;
  margin-bottom: 20px;
}

.navbar-venela {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(25px) saturate(190%);
  -webkit-backdrop-filter: blur(25px) saturate(190%);
  border-radius: 60px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 35px 0 rgba(123, 17, 19, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  padding: 10px 24px;
  transition: var(--transition-normal);
  max-width: 1280px;
  margin: 0 auto;
}

.navbar-venela:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 45px 0 rgba(123, 17, 19, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  border-color: var(--accent-gold);
}

.navbar-brand-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.15));
}
.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0;
}
.brand-subtext {
  font-size: 0.68rem;
  color: var(--accent-gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
}

/* Search Bar in Capsule */
.search-wrapper {
  position: relative;
  max-width: 420px;
  width: 100%;
}
.search-input {
  border: 1px solid #e2d7c5;
  border-radius: 50px;
  padding: 8px 45px 8px 20px;
  font-size: 0.88rem;
  transition: var(--transition-fast);
  background-color: rgba(252, 250, 247, 0.9);
}
.search-input:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.1);
  background-color: #ffffff;
  outline: none;
}
.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-red);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.search-btn:hover {
  background: var(--primary-red-dark);
}

/* Live Search Suggestions Dropdown */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  margin-top: 8px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 1050;
  display: none;
  border: 1px solid var(--card-border);
}
.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--text-dark);
  border-bottom: 1px solid #f5efe6;
  transition: var(--transition-fast);
  cursor: pointer;
}
.suggestion-item:last-child {
  border-bottom: none;
}
.suggestion-item:hover {
  background-color: var(--accent-gold-light);
}
.suggestion-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

/* Action Icons (Wishlist & Cart) */
.header-action-btn {
  position: relative;
  background: #f8f3eb;
  border: 1px solid rgba(139, 0, 0, 0.08);
  color: var(--text-dark);
  font-size: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.header-action-btn:hover {
  color: var(--primary-red);
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(139, 0, 0, 0.15);
}
.action-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--primary-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

/* Main Header Navigation Menu Links */
.main-nav-menu {
  background: #fbf8f3;
  padding: 4px;
  border-radius: 50px;
  border: 1px solid rgba(139, 0, 0, 0.08);
}
.main-nav-link {
  color: var(--text-dark) !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 16px !important;
  border-radius: 30px;
  transition: var(--transition-fast);
  text-transform: capitalize;
  white-space: nowrap;
}
.main-nav-link:hover {
  color: var(--primary-red) !important;
  background: rgba(139, 0, 0, 0.06);
}
.main-nav-link.active {
  background: var(--primary-red);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.25);
}

/* Hero Image Only Showcase */
.modern-hero-section {
  position: relative;
  padding-top: 30px;
  padding-bottom: 40px;
  overflow: hidden;
}

.hero-visual-wrapper {
  position: relative;
  padding: 10px;
  width: 100%;
}

.hero-img-card {
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
  box-shadow: 0 20px 50px rgba(139, 0, 0, 0.12), 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  padding: 20px;
  position: relative;
}

.hero-img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 65px rgba(139, 0, 0, 0.18), 0 14px 32px rgba(0, 0, 0, 0.08);
}

.hero-img-main {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

.hero-img-card:hover .hero-img-main {
  transform: scale(1.015);
}

.glass-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 10px 16px;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float-slow 4s ease-in-out infinite;
}

.card-rating {
  top: -12px;
  left: -15px;
}

.card-product {
  bottom: -15px;
  right: -10px;
  animation-delay: 2s;
}

.thumb-dish {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

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

/* Buttons */
.btn-venela {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #111;
  font-weight: 700;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.4);
  transition: var(--transition-normal);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.btn-venela:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 183, 3, 0.6);
  color: #000;
}
.btn-venela-red {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition-normal);
}
.btn-venela-red:hover {
  background: var(--primary-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}
.btn-venela-outline {
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
  background: transparent;
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 20px;
  transition: var(--transition-fast);
}
.btn-venela-outline:hover {
  background: var(--primary-red);
  color: #ffffff;
}

/* --- Section Headers --- */
.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.section-sub-title {
  color: var(--primary-red);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 5px;
}
.section-main-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}
.section-main-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* --- Category Cards --- */
.category-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 15px;
  text-align: center;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}
.category-icon-wrapper {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 2rem;
  color: var(--primary-red);
  transition: var(--transition-fast);
}
.category-card:hover .category-icon-wrapper {
  background: var(--primary-red);
  color: var(--accent-gold);
}
.category-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.category-count {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- Product Cards --- */
/* --- Premium Product Cards Redesign --- */
.product-card {
  background: linear-gradient(145deg, #ffffff 0%, #fffcf7 100%);
  border-radius: 24px;
  border: 1px solid rgba(235, 222, 202, 0.9);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(139, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(139, 0, 0, 0.14), 0 8px 18px rgba(0, 0, 0, 0.05);
  border-color: rgba(255, 183, 3, 0.7);
}

.product-badge-wrap {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  backdrop-filter: blur(8px);
}

.badge-bestseller {
  background: linear-gradient(135deg, #8b0000 0%, #b31212 100%);
  color: #ffffff;
}

.badge-discount {
  background: linear-gradient(135deg, #ffc107 0%, #e6a100 100%);
  color: #1a0000;
}

.badge-organic {
  background: linear-gradient(135deg, #2b9348 0%, #1e6b33 100%);
  color: #ffffff;
}

.product-wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-wishlist-btn:hover, .product-wishlist-btn.active {
  color: #dc3545;
  background: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(220, 53, 69, 0.25);
}

.product-img-box {
  height: 230px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #FFFFFF 0%, #FAF2E6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.product-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 10px 20px rgba(123, 17, 19, 0.12));
}

.product-card:hover .product-img {
  transform: scale(1.09) translateY(-4px);
  filter: drop-shadow(0 15px 25px rgba(123, 17, 19, 0.18));
}

.quick-view-overlay {
  position: absolute;
  bottom: -50px;
  left: 0; right: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  text-align: center;
  transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.product-card:hover .quick-view-overlay {
  bottom: 0;
}

.btn-quick-view {
  background: var(--primary-red);
  border: none;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2);
  transition: var(--transition-fast);
}

.btn-quick-view:hover {
  background: var(--primary-red-dark);
  transform: scale(1.05);
}

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

.product-category-name {
  font-size: 0.72rem;
  color: var(--accent-gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3rem;
  transition: var(--transition-fast);
}

.product-card:hover .product-title {
  color: var(--primary-red);
}

.product-rating {
  font-size: 0.8rem;
  background: #fffdf5;
  border: 1px solid #ffecb3;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
  width: fit-content;
}

.product-rating span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.product-pack-select {
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid #ebd9c5;
  padding: 6px 12px;
  margin-bottom: 16px;
  background-color: #faf6f0;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-pack-select:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
  outline: none;
}

.product-price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px dashed #f0e6d6;
}

.price-box {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.current-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-red);
  font-family: 'Playfair Display', serif;
}

.original-price {
  font-size: 0.8rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

.btn-add-cart {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(139, 0, 0, 0.28);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, #a80000 0%, var(--primary-red-dark) 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
}

.btn-add-cart i {
  color: var(--accent-gold);
  font-size: 0.95rem;
}

/* --- Features / Why Choose Venela --- */
.why-us-section {
  background: linear-gradient(180deg, #fff7ea 0%, #ffffff 100%);
  padding: 60px 0;
}
.feature-box {
  text-align: center;
  padding: 25px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  height: 100%;
  transition: var(--transition-normal);
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 65px;
  height: 65px;
  background: var(--accent-gold-light);
  color: var(--primary-red);
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
}

/* --- Recipe & Blog Section --- */
.recipe-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: var(--transition-normal);
}
.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.recipe-img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}
.recipe-body {
  padding: 20px;
}
.recipe-tag {
  color: var(--primary-red);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.recipe-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 6px 0 10px 0;
}

/* --- Offcanvas Shopping Cart --- */
.offcanvas-cart {
  width: 420px !important;
}
.cart-header {
  background: var(--primary-red);
  color: #ffffff;
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0e7d8;
  align-items: center;
}
.cart-item-img {
  width: 65px;
  height: 65px;
  border-radius: 10px;
  object-fit: cover;
  background: #faf5ee;
}
.cart-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
}
.cart-qty-btn:hover {
  background: #eee;
}

/* --- Checkout Modal --- */
.checkout-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  position: relative;
}
.checkout-step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}
.step-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px auto;
  font-weight: 700;
}
.checkout-step-item.active .step-circle {
  background: var(--primary-red);
  color: #ffffff;
}

/* --- Footer --- */
.footer-venela {
  background: #190303;
  color: #d1c5b4;
  padding: 60px 0 20px 0;
  border-top: 4px solid var(--accent-gold);
}
.footer-heading {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}
.footer-heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
  margin-top: 8px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #d1c5b4;
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}
.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}
.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: var(--transition-fast);
  text-decoration: none;
}
.social-icon-btn:hover {
  background: var(--accent-gold);
  color: #000;
}

/* Floating Quick Buttons */
.floating-cart-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: #ffffff;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 1040;
  cursor: pointer;
  transition: var(--transition-normal);
}
.floating-cart-btn:hover {
  transform: scale(1.1);
}

/* Hero Section - Clean Standalone Image (No Background Effect) */
.hero-image-banner-section {
  position: relative;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
  overflow: hidden;
  padding: 10px 0;
}

.hero-banner-card {
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0;
  transform: none !important;
  filter: none !important;
}

.hero-banner-card:hover {
  transform: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.hero-standalone-image {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent !important;
  filter: none !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

@media (max-width: 768px) {
  .hero-standalone-image {
    max-height: 420px;
    transform: none !important;
    object-fit: contain;
  }
}

/* --- 5 FEATURED PRODUCTS AUTOMATIC SCROLLING SHOWCASE --- */
.featured-scroll-section {
  background: linear-gradient(180deg, #fffbf7 0%, #ffffff 100%);
  border-top: 1px solid rgba(214, 40, 40, 0.08);
  border-bottom: 1px solid rgba(214, 40, 40, 0.08);
}

.featured-ticker-wrapper {
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.featured-ticker-wrapper::before,
.featured-ticker-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.featured-ticker-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fffbf7 0%, rgba(255, 251, 247, 0) 100%);
}

.featured-ticker-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.featured-ticker-track {
  display: flex;
  width: max-content;
  animation: featuredMarquee 25s linear infinite;
  will-change: transform;
}

.featured-ticker-wrapper:hover .featured-ticker-track {
  animation-play-state: paused;
}

@keyframes featuredMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

/* Theme Card Styling matching reference screenshot */
.featured-mini-card {
  width: 280px;
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 16px !important;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.featured-mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(214, 40, 40, 0.12) !important;
  border-color: rgba(214, 40, 40, 0.25) !important;
}

.featured-img-box {
  background-color: #f7f6f4;
  border-radius: 14px;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 12px;
}

.featured-card-img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.featured-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.featured-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 14px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-card-sub {
  font-size: 0.82rem;
  color: #71717a;
  margin-bottom: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.featured-card-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #d62828;
}

.featured-btn-add {
  background-color: #d62828;
  color: #ffffff;
  font-weight: 700;
  border-radius: 50px;
  padding: 6px 18px;
  border: none;
  font-size: 0.88rem;
  box-shadow: 0 4px 12px rgba(214, 40, 40, 0.25);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.featured-btn-add:hover {
  background-color: #b81d1d;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(214, 40, 40, 0.35);
}



.hero-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
  letter-spacing: -0.5px;
}

.hero-highlight-text {
  color: #ffc107;
  font-weight: 800;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 193, 7, 0.5);
  display: inline-block;
}

.hero-lead-text {
  color: #ffffff;
  font-size: 1.25rem;
  max-width: 740px;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
}

.btn-hero-primary {
  background: linear-gradient(135deg, #ffb703 0%, #d99b00 100%);
  color: #1a0000;
  border: none;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(255, 183, 3, 0.35);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #ffe380 0%, #ffb703 100%);
  color: #000000;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 30px rgba(255, 183, 3, 0.5);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-outline:hover {
  background: #ffffff;
  color: var(--primary-red);
  border-color: #ffffff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.25);
}

.hero-trust-bar {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Modern Professional Dark Footer Design System */
.footer-venela {
  background: linear-gradient(180deg, #1c0303 0%, #0d0101 100%) !important;
  color: rgba(255, 255, 255, 0.9);
  border-top: 3px solid var(--primary-red);
  position: relative;
  margin-bottom: 0 !important;
  padding-bottom: 2rem !important;
}

.footer-venela .text-secondary {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-venela .text-light-subtle {
  color: rgba(255, 255, 255, 0.8) !important;
}

.text-gold {
  color: #fca5a5 !important; /* Soft premium crimson accent */
}

.footer-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(139, 0, 0, 0.25);
  border: 1px solid rgba(220, 38, 38, 0.35);
  color: #f87171;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-feature-icon:hover {
  background: var(--primary-red);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-heading {
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 8px;
  letter-spacing: 0.5px;
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-subscribe-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  font-size: 0.9rem;
  padding: 10px 14px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.footer-subscribe-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-red);
  box-shadow: 0 0 10px rgba(139, 0, 0, 0.4);
}

.btn-gold-action {
  background: linear-gradient(135deg, #b91c1c 0%, #8b0000 100%);
  color: #ffffff;
  border: none;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-gold-action:hover {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.35);
}

.payment-badge {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.hover-underline:hover {
  text-decoration: underline !important;
  color: #ffffff !important;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .modern-hero-section {
    min-height: 75vh;
    border-radius: 16px;
    margin: 0 8px 20px 8px;
  }
  .hero-main-title {
    font-size: 2.2rem;
  }
  .hero-lead-text {
    font-size: 1rem;
  }
  .btn-hero-primary, .btn-hero-outline {
    width: 100%;
    font-size: 1rem;
  }
  .offcanvas-cart {
    width: 100% !important;
  }
}

/* ==========================================================================
   DEDICATED SHOP PAGE & ABOUT US PAGE EXTRA STYLES
   ========================================================================== */

/* --- Page Hero Header --- */
.page-hero-header {
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.92) 0%, rgba(102, 0, 0, 0.95) 100%),
              url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?w=1600&q=80') center/cover no-repeat;
  padding: 60px 0 50px 0;
  border-radius: 24px;
  margin-bottom: 40px;
  box-shadow: 0 12px 30px rgba(139, 0, 0, 0.2);
}

.page-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.page-hero-lead {
  font-size: 1.15rem;
  color: #fff3c4;
  max-width: 680px;
  margin: 0 auto;
}

/* --- Shop Controls & Sorting Toolbar --- */
.shop-toolbar-card {
  background: #ffffff;
  border: 1px solid #f0e2d0;
  border-radius: 50px;
  padding: 12px 24px;
  box-shadow: 0 4px 20px rgba(139, 0, 0, 0.05);
}

.filter-pill-btn {
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 20px;
  transition: var(--transition-fast);
}

.filter-pill-btn.active {
  background: var(--primary-red);
  color: #ffffff !important;
  border-color: var(--primary-red);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.25);
}

/* --- About Us Story Components --- */
.about-hero-section {
  background: linear-gradient(135deg, #8b0000 0%, #4a0000 100%);
  border-radius: 28px;
  color: #ffffff;
  padding: 70px 40px;
  box-shadow: 0 16px 40px rgba(139, 0, 0, 0.25);
}

.about-story-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f0e6d6;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: var(--transition-normal);
}

.about-story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(139, 0, 0, 0.12);
}

.about-img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-frame:hover img {
  transform: scale(1.04);
}

.about-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 183, 3, 0.18);
  color: #b36b00;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 183, 3, 0.4);
}

.value-card-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid #f2e8d8;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  transition: var(--transition-fast);
}

.value-card-box:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(139, 0, 0, 0.1);
}

.value-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff3c4 0%, #ffe066 100%);
  color: var(--primary-red);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 4px 12px rgba(255, 183, 3, 0.3);
}

/* Timeline Cards */
.timeline-item-card {
  position: relative;
  padding-left: 30px;
  border-left: 3px solid var(--accent-gold);
  margin-bottom: 30px;
}

.timeline-item-card::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-red);
  border: 3px solid #ffffff;
}

.timeline-year {
  font-weight: 800;
  color: var(--primary-red);
  font-size: 1.1rem;
}

/* --- READY-TO-COOK SHOWCASE SECTION (IMAGE LEFT, MATTER RIGHT) --- */
.ready-mix-showcase-section {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ready-mix-img-card,
.ready-mix-img-wrapper {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

.ready-mix-img {
  max-height: 480px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
  background: transparent;
  display: block;
}

/* --- WORDS OF LOVE (TESTIMONIALS SECTION) --- */
.words-of-love-section {
  background: #fdfbf7;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(214, 40, 40, 0.1) !important;
  border-color: rgba(214, 40, 40, 0.2) !important;
}

.testimonial-quote {
  font-style: italic;
}

/* --- NEWSLETTER BANNER SECTION --- */
.newsletter-banner-section {
  position: relative;
  background-image: url('assets/images/newsletter_bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.5px;
}

.newsletter-form {
  max-width: 580px;
  width: 100%;
}

.newsletter-input-wrap {
  position: relative;
  width: 100%;
}

.newsletter-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.22) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 50px !important;
  padding: 14px 60px 14px 28px !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
}

.newsletter-input:focus {
  outline: none !important;
  background: rgba(255, 255, 255, 0.3) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}

.newsletter-submit-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.35rem;
  padding: 6px 14px;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.newsletter-submit-btn:hover {
  transform: translateY(-50%) translateX(4px);
  color: #ffc107;
}

@media (max-width: 768px) {
  .newsletter-title {
    font-size: 1.8rem;
  }
  
  .featured-mini-card {
    width: 220px !important;
  }

  .product-badge-wrap {
    top: 8px;
    left: 8px;
  }

  .product-badge {
    font-size: 0.6rem;
    padding: 3px 8px;
  }

  .product-wishlist-btn {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .announcement-bar {
    font-size: 0.72rem;
    padding: 5px 8px;
    line-height: 1.3;
  }
}

/* ==========================================================================
   MOBILE & TABLET FULL RESPONSIVENESS OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 991.98px) {
  .navbar-wrapper-sticky {
    padding: 0 10px;
    top: 10px;
    margin-bottom: 15px;
  }
  
  .navbar-venela {
    padding: 8px 16px;
    border-radius: 40px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-subtext {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .brand-logo-img {
    width: 38px;
    height: 38px;
  }

  .hero-standalone-image {
    max-height: 320px !important;
  }

  .section-main-title {
    font-size: 1.75rem;
  }

  .offcanvas-cart {
    width: 100% !important;
    max-width: 100% !important;
  }

  .category-card {
    padding: 16px 10px;
  }

  .category-icon-wrapper {
    width: 58px;
    height: 58px;
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .announcement-bar {
    font-size: 0.74rem;
    padding: 7px 10px;
    line-height: 1.4;
  }

  .navbar-wrapper-sticky {
    padding: 0 8px;
    top: 6px;
  }

  .navbar-venela {
    padding: 8px 14px;
    border-radius: 30px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .header-action-btn {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }

  .hero-banner-card {
    padding: 20px 12px !important;
    border-radius: 24px !important;
  }

  .hero-standalone-image {
    max-height: 250px !important;
  }

  .product-card {
    border-radius: 20px;
  }

  .product-img-box {
    height: 170px;
    padding: 12px;
  }

  .product-info {
    padding: 14px;
  }

  .product-title {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .product-price {
    font-size: 1.05rem;
  }

  .btn-venela {
    padding: 9px 18px;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
  }

  .floating-cart-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  .section-title-wrap {
    padding-bottom: 30px !important;
  }

  .section-main-title {
    font-size: 1.35rem;
  }

  .category-card {
    padding: 16px 10px;
  }

  .category-icon-wrapper {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .category-title {
    font-size: 0.88rem;
  }

  .category-count {
    font-size: 0.72rem;
  }

  /* Prevent any horizontal scrolling on small mobile viewports */
  body, html {
    overflow-x: hidden !important;
  }
}
