/*
Theme Name: DIGIGrow Theme
Theme URI: https://digigrownow.com/
Author: Antigravity AI
Description: Premium Next-Gen Ultra-Modern Dark Theme for DIGIGrow & Maa Sharda IT Solution - Featuring Glassmorphism, Dynamic Animations & High-End UX.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: digigrownow
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-dark: #0a0c14;
  --bg-card: rgba(18, 22, 34, 0.7);
  --bg-card-solid: #121624;
  --yellow-accent: #ffcc00;
  --yellow-glow: rgba(255, 204, 0, 0.3);
  --green-bright: #00e676;
  --green-glow: rgba(0, 230, 118, 0.35);
  --text-white: #ffffff;
  --text-grey: #94a3b8;
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

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

html, body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(255, 204, 0, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(0, 230, 118, 0.04) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

img, svg {
  max-width: 100%;
  height: auto;
}

/* TOP HEADER BAR - GLASSMORPHISM */
.main-header {
  background: rgba(10, 12, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease;
}
.site-logo:hover {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.8px;
}

.nav-menu a {
  color: #e2e8f0;
  padding: 6px 0;
  position: relative;
  transition: color 0.25s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow-accent), var(--green-bright));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.nav-menu a:hover::after {
  width: 100%;
}

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

.mobile-toggle-btn {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 100002;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.mobile-toggle-btn.is-active {
  position: fixed;
  top: 16px;
  right: 16px;
  background: var(--yellow-accent);
  color: #000000;
  border-color: var(--yellow-accent);
  box-shadow: 0 4px 20px rgba(255, 204, 0, 0.5);
}

.search-icon {
  color: #ffffff;
  font-size: 17px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.05);
}

.search-icon:hover {
  color: var(--yellow-accent);
  background: rgba(255, 204, 0, 0.15);
  transform: scale(1.1);
}

.header-cart-btn {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 204, 0, 0.3);
  padding: 7px 16px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 13px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.header-cart-btn:hover {
  border-color: var(--yellow-accent);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
  transform: translateY(-1px);
}

.cart-count-badge {
  background: var(--yellow-accent);
  color: #000;
  font-weight: 900;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
}

/* ANIMATED FLASH SALE BANNER */
.yellow-banner {
  background: linear-gradient(90deg, #ffcc00, #ffa700, #ffe600, #ffcc00);
  background-size: 300% 100%;
  animation: bannerShine 4s linear infinite;
  color: #000000;
  font-weight: 900;
  font-size: 13.5px;
  text-align: center;
  padding: 9px 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.25);
}

@keyframes bannerShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* HERO SECTION - HIGH-IMPACT ULTRA MODERN DESIGN */
.hero-section {
  max-width: 1300px;
  margin: 45px auto;
  padding: 35px 30px;
  background: rgba(18, 22, 34, 0.6);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section h1, .hero-left h1, .hero-right h1 {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-section h2, .hero-left h2, .hero-right h2 {
  font-size: 34px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green-bright), #00b34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-subdesc {
  font-size: 14.5px;
  color: var(--yellow-accent);
  font-weight: 700;
  line-height: 1.65;
  margin-bottom: 26px;
}

.hero-cta-btn {
  background: linear-gradient(135deg, var(--green-bright) 0%, #00b33c 100%);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 230, 118, 0.4);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 230, 118, 0.6);
}

.hero-notice {
  font-size: 13px;
  color: #cbd5e1;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.hero-mockup-box {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.hero-mockup-box:hover {
  transform: scale(1.03) rotate(0.5deg);
}

.hero-mockup-box img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
}

/* SECTION HEADING */
.section-title-centered {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  margin: 60px 0 35px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 15px;
  position: relative;
}

.section-title-centered::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow-accent), var(--green-bright));
  margin: 10px auto 0;
  border-radius: 3px;
}

/* PRODUCT CATALOG GRID - LUXURY GLASS CARDS */
.products-grid-4col {
  max-width: 1300px;
  margin: 0 auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prod-card-dark {
  background: rgba(18, 22, 34, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.prod-card-dark:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 204, 0, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 204, 0, 0.15);
  background: rgba(22, 27, 42, 0.85);
}

.prod-box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 12px;
}

.prod-img-wrap {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.prod-card-dark:hover .prod-img-wrap img {
  transform: scale(1.08);
}

.prod-cat-tag {
  background: rgba(255, 204, 0, 0.12);
  border: 1px solid rgba(255, 204, 0, 0.25);
  color: var(--yellow-accent);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.prod-item-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.35;
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

.prod-card-dark:hover .prod-item-title {
  color: var(--yellow-accent);
}

.prod-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
}

.price-old {
  text-decoration: line-through;
  color: #64748b;
  font-size: 12.5px;
  font-weight: 700;
}

.price-new {
  color: var(--green-bright);
  font-weight: 900;
  font-size: 17.5px;
  text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
}

/* WHY MAA SHARDA SECTION */
.why-section {
  background: rgba(14, 17, 26, 0.8);
  backdrop-filter: blur(12px);
  padding: 70px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.why-header h2 {
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
}

.why-header p {
  max-width: 850px;
  margin: 0 auto 50px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: rgba(22, 27, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 35px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 0, 0.4);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.why-icon-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.1);
  border: 2px solid var(--yellow-accent);
  color: var(--yellow-accent);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
}

.why-card h3 {
  font-size: 19px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.65;
}

/* OFFER OF THE WEEK SECTION */
.offer-week-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 40px;
  background: rgba(18, 22, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.offer-title {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
}

.offer-subtitle {
  color: var(--yellow-accent);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
}

.offer-desc {
  font-size: 14.5px;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 30px;
}

.white-btn-cta {
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  color: #000000;
  padding: 15px 32px;
  border: none;
  border-radius: 30px;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  letter-spacing: 0.5px;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(255,255,255,0.25);
  transition: all 0.3s ease;
}

.white-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.4);
}

.offer-box-frame {
  border: 1px solid rgba(255, 204, 0, 0.3);
  padding: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(10, 12, 20, 0.8);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.offer-box-frame img {
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,0.9));
  transition: transform 0.4s ease;
}

.offer-box-frame:hover img {
  transform: scale(1.05);
}

/* ATTENTION ANNOUNCEMENT CARD */
.attention-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}

.attention-title {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
}

.attention-subgreen {
  color: var(--green-bright);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 28px;
}

.attention-box-card {
  background: rgba(18, 22, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  line-height: 1.7;
  font-size: 14px;
  color: #cbd5e1;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.attention-box-card h3 {
  text-align: center;
  font-size: 21px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 18px;
}

.attention-box-card h4 {
  color: var(--yellow-accent);
  font-size: 17px;
  font-weight: 800;
  margin: 24px 0 14px;
}

.attention-box-card ul {
  list-style: none;
  padding-left: 0;
}

.attention-box-card li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.attention-box-card li::before {
  content: "✓";
  color: var(--green-bright);
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}

.attention-box-card strong {
  color: var(--green-bright);
}

/* FOOTER - MODERN DARK GRADIENT */
.site-footer-dark {
  background: #06080e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 24px 24px;
  color: #94a3b8;
  font-size: 13.5px;
}

.footer-grid-3col {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer-col-dark h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
}

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

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

.footer-links-dark a {
  color: #cbd5e1;
  transition: color 0.25s ease;
}

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

.footer-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 12px;
  color: #64748b;
}

/* FLOATING CHAT WIDGET STYLES */
.floating-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chat-trigger-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e676, #00b33c);
  color: #ffffff;
  border: 2px solid #ffcc00;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 230, 118, 0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-trigger-btn:hover {
  transform: scale(1.1);
}

.floating-chat-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s ease;
}

.floating-chat-options.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-option-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 13px;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease;
  white-space: nowrap;
}

.chat-option-btn.whatsapp {
  background-color: #25D366;
}

.chat-option-btn.email {
  background-color: #EA4335;
}

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

@media (max-width: 1200px) {
  .hero-section { gap: 30px; }
  .hero-left h1 { font-size: 36px; }
  .hero-left h2 { font-size: 28px; }
  .products-grid-4col { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 1024px) {
  .nav-menu { gap: 16px; font-size: 12px; }
  .hero-section { grid-template-columns: 1fr; text-align: center; margin: 30px 16px; padding: 25px; }
  .hero-left h1 { font-size: 32px; }
  .hero-left h2 { font-size: 26px; }
  .hero-subdesc { max-width: 700px; margin: 0 auto 20px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .offer-week-section { grid-template-columns: 1fr; text-align: center; gap: 35px; padding: 25px; }
  .offer-title { font-size: 32px; }
  .offer-box-frame { margin: 0 auto; max-width: 400px; }
}

@media (max-width: 768px) {
  .mobile-toggle-btn { display: flex; align-items: center; justify-content: center; }

  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0a0c14;
    border-left: 2px solid var(--yellow-accent);
    flex-direction: column;
    padding: 85px 24px 30px;
    gap: 22px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.95);
    z-index: 100000;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-menu.mobile-active { right: 0; }
  .nav-menu a { font-size: 15px; font-weight: 800; display: block; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 12px; }
  .site-logo img { height: 48px !important; max-height: 48px !important; }
  .yellow-banner { font-size: 12px; padding: 6px 10px; }
  .hero-left h1 { font-size: 26px; }
  .hero-left h2 { font-size: 22px; }
  .hero-subdesc { font-size: 13px; }
  .hero-cta-btn { font-size: 14px; padding: 13px 28px; }

  .products-grid-4col {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 0 16px !important;
  }

  .prod-img-wrap { height: 170px !important; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid-3col { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom-bar { flex-direction: column; text-align: center; gap: 10px; }
  .attention-box-card { padding: 22px; }
}

@media (max-width: 480px) {
  .header-container { padding: 8px 12px; }
  .site-logo img { height: 42px !important; max-height: 42px !important; }
  .header-cart-btn { padding: 5px 12px; font-size: 11.5px; }
  .hero-section { margin: 20px 10px; padding: 20px 14px; }
  .hero-left h1 { font-size: 22px; }
  .hero-left h2 { font-size: 18px; }
  .hero-subdesc { font-size: 12px; }
  .section-title-centered { font-size: 20px; margin: 35px 0 20px; }

  .products-grid-4col {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 10px !important;
  }

  .prod-card-dark { padding: 12px; }
  .prod-img-wrap { height: 140px !important; }
  .prod-cat-tag { font-size: 9px !important; margin-bottom: 4px !important; }
  .prod-item-title { font-size: 12px !important; height: 32px !important; line-height: 1.3 !important; margin-bottom: 4px !important; }
  .price-old { font-size: 10px !important; }
  .price-new { font-size: 14px !important; }
}
