/* =========================================================
   Dhana Pyrotech — Home + Header redesign
   Direction: Clean light (white + crimson/gold accents)
   ========================================================= */

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

:root {
  --dp-ink: #2b2118;
  --dp-ink-soft: #4a4038;
  --dp-ember: #c0392b;
  --dp-gold: #c8860a;
  --dp-gold-soft: #e8a317;
  --dp-cream: #ffffff;
  --dp-sand: #f5f0ea;
  --dp-muted: #6b6560;
  --dp-white: #ffffff;
  --dp-line: rgba(43, 33, 24, 0.1);
  --dp-radius: 4px;
  --dp-font-display: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
  --dp-font-body: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
}

/* ---------- Global polish on home ---------- */
body.dp-home {
  font-family: var(--dp-font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--dp-ink);
  background: var(--dp-sand);
  font-variant-numeric: tabular-nums;
}

body.dp-home h1,
body.dp-home h2,
body.dp-home h3,
body.dp-home h4,
body.dp-home h5,
body.dp-home h6 {
  font-family: var(--dp-font-display);
  letter-spacing: -0.02em;
}

/* ---------- Notice strip ---------- */
body.dp-home .dp-notice {
  background: #fff8dc !important;
  border-bottom: 1px solid #f0d060;
}

body.dp-home .dp-notice marquee div,
body.dp-home .dp-notice .dp-notice-text {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #b91c1c !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Header / Menu — light ---------- */
body.dp-home header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

body.dp-home header .header-bottom {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--dp-line);
  box-shadow: 0 2px 16px rgba(43, 33, 24, 0.06);
  padding: 14px 0 !important;
  margin: 0 !important;
}

body.dp-home header .header-bottom .logo {
  width: auto !important;
  max-width: 280px;
}

body.dp-home header .header-bottom .logo img {
  width: auto !important;
  max-width: 100%;
  max-height: 118px !important;
  height: auto !important;
  filter: none;
  transition: transform 0.35s ease;
}

body.dp-home header .header-bottom .logo a:hover img {
  transform: scale(1.04);
}

body.dp-home .main-menu2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.dp-home .main-menu2 li {
  margin: 0 !important;
}

body.dp-home .main-menu2 li a {
  color: var(--dp-ink) !important;
  font-family: var(--dp-font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 16px !important;
  border-radius: var(--dp-radius);
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
}

body.dp-home .main-menu2 li a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--dp-ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

body.dp-home .main-menu2 li a:hover,
body.dp-home .main-menu2 li:hover > a {
  color: var(--dp-ember) !important;
  background: transparent !important;
}

body.dp-home .main-menu2 li a:hover::after {
  transform: scaleX(1);
}

body.dp-home header .customer-area2 .btn,
body.dp-home .dp-btn {
  background: linear-gradient(135deg, var(--dp-ember), #e74c3c) !important;
  color: var(--dp-white) !important;
  border: none !important;
  border-radius: var(--dp-radius) !important;
  font-family: var(--dp-font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 22px !important;
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.dp-home header .customer-area2 .btn:hover,
body.dp-home .dp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(192, 57, 43, 0.35);
  color: var(--dp-white) !important;
}

/* MeanMenu mobile — light */
body.dp-home .mean-container .mean-bar {
  background: var(--dp-white) !important;
  border-bottom: 1px solid var(--dp-line);
}

body.dp-home .mean-container a.meanmenu-reveal {
  color: var(--dp-ember) !important;
}

body.dp-home .mean-container .mean-nav {
  background: var(--dp-white) !important;
}

body.dp-home .mean-container .mean-nav ul li a {
  color: var(--dp-ink) !important;
  border-top-color: var(--dp-line) !important;
  font-family: var(--dp-font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.dp-home .mean-container .mean-nav ul li a:hover {
  color: var(--dp-ember) !important;
  background: var(--dp-sand) !important;
}

body.dp-home .mobile-menu.home2 {
  background: transparent;
}

/* ---------- Hero slider (unique 3D flip per slide) ---------- */
.dp-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
  margin: 0;
  padding: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.dp-hero-main {
  line-height: 0;
}

.dp-hero-swiper {
  width: 100%;
  height: clamp(380px, 52vw, 680px);
  min-height: 380px;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.dp-hero-swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.dp-hero-swiper .swiper-slide {
  overflow: hidden;
  background: #111;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.dp-hero-swiper .swiper-slide-shadow,
.dp-hero-swiper .swiper-slide-shadow-left,
.dp-hero-swiper .swiper-slide-shadow-right,
.dp-hero-swiper .swiper-slide-shadow-creative {
  background: rgba(0, 0, 0, 0.4);
}

.dp-hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Slide 1 — horizontal Y-axis flip */
.dp-hero-swiper[data-active-flip="flip-y"] .swiper-slide-active img {
  filter: saturate(1.05);
}

/* Slide 2 — vertical X-axis flip */
.dp-hero-swiper[data-active-flip="flip-x"] .swiper-slide-active img {
  filter: brightness(1.03);
}

/* Slide 3 — diagonal tilt flip */
.dp-hero-swiper[data-active-flip="flip-tilt"] .swiper-slide-active img {
  filter: contrast(1.04);
}

.dp-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  transform: translateY(-50%);
  width: 52px;
  height: 72px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s ease;
}

.dp-hero-arrow::after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 22px;
  color: #fff;
}

.dp-hero-arrow-prev {
  left: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.dp-hero-arrow-prev::after {
  content: '\f053';
}

.dp-hero-arrow-next {
  right: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.dp-hero-arrow-next::after {
  content: '\f054';
}

.dp-hero-arrow:hover {
  background: rgba(192, 57, 43, 0.88);
}

.dp-hero-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px !important;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.dp-hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 !important;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.dp-hero-pagination .swiper-pagination-bullet-active {
  background: var(--dp-ember);
  border-color: #fff;
  transform: scale(1.2);
}

.dp-hero-welcome {
  background: #fff;
  border-bottom: 1px solid var(--dp-line);
}

.dp-hero-welcome marquee {
  display: block;
  padding: 11px 0;
  font-family: var(--dp-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--dp-ember);
  letter-spacing: 0.02em;
}

.dp-hero-welcome strong {
  font-weight: 800;
}

/* ---------- Intro ---------- */
.dp-intro {
  padding: 48px 0 28px;
  text-align: center;
  background: var(--dp-white);
}

.dp-intro .dp-brand-mark {
  font-family: var(--dp-font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--dp-ink);
  line-height: 1.05;
  margin: 0 0 12px;
}

.dp-intro .dp-brand-mark span {
  color: var(--dp-ember);
}

.dp-intro p {
  max-width: 520px;
  margin: 0 auto 22px;
  color: var(--dp-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.dp-intro-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.dp-btn-outline {
  background: transparent !important;
  color: var(--dp-ember) !important;
  border: 2px solid var(--dp-ember) !important;
  box-shadow: none !important;
}

.dp-btn-outline:hover {
  background: var(--dp-ember) !important;
  color: var(--dp-white) !important;
}

/* ---------- Section titles ---------- */
.dp-section {
  padding: 70px 0;
  background: var(--dp-white);
}

.dp-section-title {
  text-align: center;
  margin-bottom: 40px;
}

.dp-section-title .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dp-ember);
  margin-bottom: 10px;
}

.dp-section-title h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0;
  color: var(--dp-ink);
}

.dp-section-title h2 span {
  color: var(--dp-gold);
}

/* ---------- Brand logo slider — light section ---------- */
.dp-brands {
  background: var(--dp-sand);
  padding: 64px 0 72px;
  overflow: hidden;
}

.dp-brands .dp-section-title {
  margin-bottom: 36px;
}

.dp-brands .dp-section-title h2 {
  color: var(--dp-ink);
}

.dp-brands .dp-section-title h2 span {
  color: var(--dp-ember);
}

.dp-brand-slick .slick-list {
  margin: 0 -10px;
}

.dp-brand-slick .slick-slide {
  padding: 0 10px;
  box-sizing: border-box;
  height: auto;
}

.dp-brand-slick .slick-track {
  display: flex !important;
  align-items: stretch;
}

.dp-brand-slide {
  height: 100%;
}

.dp-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130px;
  min-height: 130px;
  padding: 16px 20px;
  box-sizing: border-box;
  background: var(--dp-white);
  border: 1px solid var(--dp-line);
  border-radius: var(--dp-radius);
  box-shadow: 0 4px 16px rgba(43, 33, 24, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dp-brand-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(43, 33, 24, 0.1);
  border-color: rgba(192, 57, 43, 0.2);
}

.dp-brand-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 88px;
  object-fit: contain;
  object-position: center;
}

.dp-brand-slick .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--dp-line);
  border-radius: 50%;
  background: var(--dp-white);
  color: var(--dp-ember);
  cursor: pointer;
  font-size: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.dp-brand-slick .slick-prev { left: -6px; }
.dp-brand-slick .slick-next { right: -6px; }

.dp-brand-slick .slick-prev:before,
.dp-brand-slick .slick-next:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 14px;
  color: inherit;
  opacity: 1;
}

.dp-brand-slick .slick-prev:before { content: '\f053'; }
.dp-brand-slick .slick-next:before { content: '\f054'; }

/* ---------- Categories ---------- */
.dp-categories {
  background: var(--dp-white);
}

/* ---------- Popular category cards ---------- */
.dp-popular {
  background: var(--dp-sand);
}

.dp-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.dp-cat-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  background: var(--dp-white);
  border: 1px solid var(--dp-line);
  border-radius: var(--dp-radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(43, 33, 24, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dp-cat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 57, 43, 0.25);
  box-shadow: 0 12px 28px rgba(43, 33, 24, 0.12);
}

.dp-cat-card-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 18px;
  background: var(--dp-sand);
}

.dp-cat-card-media-photo {
  background: linear-gradient(180deg, #fff 0%, var(--dp-sand) 100%);
}

.dp-cat-card-media img {
  display: block;
  width: 100%;
  max-width: 130px;
  max-height: 112px;
  object-fit: contain;
  object-position: center;
}

.dp-cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: var(--dp-white);
  font-size: 1.75rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.dp-cat-tone-gold { background: linear-gradient(145deg, #f4d03f, #b7950b); }
.dp-cat-tone-brown { background: linear-gradient(145deg, #d4845c, #a0522d); }
.dp-cat-tone-green { background: linear-gradient(145deg, #7cb342, #558b2f); }
.dp-cat-tone-blue { background: linear-gradient(145deg, #5c9fd4, #2e6da4); }
.dp-cat-tone-red { background: linear-gradient(145deg, #e57373, #c0392b); }
.dp-cat-tone-orange { background: linear-gradient(145deg, #ffb74d, #f57c00); }
.dp-cat-tone-purple { background: linear-gradient(145deg, #bb8fce, #8e44ad); }
.dp-cat-tone-teal { background: linear-gradient(145deg, #48c9b0, #16a085); }

.dp-cat-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: 16px 14px 18px;
  text-align: center;
}

.dp-cat-card-body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--dp-ink);
}

.dp-cat-card-link {
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dp-ember);
}

.dp-cat-card:hover .dp-cat-card-link {
  color: var(--dp-gold);
}

@media (max-width: 576px) {
  .dp-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .dp-cat-card-media {
    min-height: 124px;
    padding: 14px;
  }

  .dp-cat-card-media img {
    max-width: 96px;
    max-height: 92px;
  }

  .dp-cat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.45rem;
  }

  .dp-cat-card-body h3 {
    font-size: 0.92rem;
  }
}

/* ---------- Feature strips — light cards with soft color ---------- */
.dp-feature-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

@media (max-width: 991px) {
  .dp-feature-row {
    grid-template-columns: 1fr;
  }
}

.dp-feature {
  position: relative;
  min-height: 220px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--dp-radius);
  color: var(--dp-white);
  text-decoration: none !important;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  transition: transform 0.35s ease;
  box-shadow: 0 4px 16px rgba(43, 33, 24, 0.08);
}

.dp-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(43, 33, 24, 0.55));
  z-index: -1;
  transition: background 0.35s ease;
}

.dp-feature:hover {
  transform: translateY(-3px);
  color: var(--dp-white) !important;
}

.dp-feature:hover::before {
  background: linear-gradient(160deg, rgba(192, 57, 43, 0.15), rgba(43, 33, 24, 0.65));
}

.dp-feature h3 {
  margin: 0 0 6px;
  font-size: 1.55rem;
  color: inherit;
}

.dp-feature p {
  margin: 0 0 14px;
  opacity: 0.9;
  font-size: 0.95rem;
}

.dp-feature .dp-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffeaa7;
}

.dp-f-spark { background: linear-gradient(145deg, #f4d03f, #b7950b); }
.dp-f-pots { background: linear-gradient(145deg, #d4845c, #a0522d); }
.dp-f-chakkar { background: linear-gradient(145deg, #7cb342, #558b2f); }
.dp-f-aerial { background: linear-gradient(145deg, #5c9fd4, #2e6da4); }
.dp-f-fancy { background: linear-gradient(145deg, #e57373, #c0392b); }
.dp-f-gift { background: linear-gradient(145deg, #ffb74d, #f57c00); }

.dp-feature-row-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 767px) {
  .dp-feature-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ---------- Statement — light band ---------- */
.dp-statement {
  background: linear-gradient(180deg, #fff5f5 0%, var(--dp-white) 100%);
  color: var(--dp-ink);
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid var(--dp-line);
  border-bottom: 1px solid var(--dp-line);
}

.dp-statement h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 16px;
  color: var(--dp-ink);
}

.dp-statement h2 span {
  color: var(--dp-ember);
}

.dp-statement p {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--dp-muted);
  line-height: 1.6;
}

.dp-delivery {
  padding: 80px 0;
  background: var(--dp-white);
}

.dp-delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 991px) {
  .dp-delivery-grid {
    grid-template-columns: 1fr;
  }
}

.dp-delivery-copy h3 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dp-ember);
  margin: 0 0 10px;
}

.dp-delivery-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 16px;
}

.dp-delivery-copy h2 span {
  color: var(--dp-ember);
}

.dp-delivery-copy p {
  color: var(--dp-muted);
  margin-bottom: 24px;
}

.dp-delivery-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(43, 33, 24, 0.1));
  animation: dpFloat 4.5s ease-in-out infinite;
}

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

/* ---------- Testimonials ---------- */
.dp-testimonials {
  background: var(--dp-sand);
  padding: 70px 0 90px;
}

.dp-testi-slick {
  margin: 0 -12px;
}

.dp-testi-slick .slick-slide {
  padding: 12px;
}

.dp-testi {
  background: var(--dp-white);
  border: 1px solid var(--dp-line);
  border-top: 3px solid var(--dp-ember);
  border-radius: var(--dp-radius);
  padding: 22px 20px 16px;
  min-height: 180px;
  outline: none;
  box-shadow: 0 2px 12px rgba(43, 33, 24, 0.04);
}

.dp-testi p {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--dp-ink);
  margin: 0 0 14px;
  font-style: italic;
}

.dp-testi .meta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dp-muted);
}

.dp-testi .stars {
  color: var(--dp-gold);
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 2px;
}

.dp-testi-slick .slick-dots li button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(43, 33, 24, 0.2);
  font-size: 0;
  cursor: pointer;
}

.dp-testi-slick .slick-dots li.slick-active button {
  background: var(--dp-ember);
}

.dp-testi-slick .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.dp-testi-slick .slick-arrow {
  position: absolute;
  top: 42%;
  z-index: 3;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--dp-line);
  border-radius: 50%;
  background: var(--dp-white);
  color: var(--dp-ember);
  cursor: pointer;
  font-size: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.dp-testi-slick .slick-prev { left: -8px; }
.dp-testi-slick .slick-next { right: -8px; }

.dp-testi-slick .slick-prev:before,
.dp-testi-slick .slick-next:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 14px;
  color: inherit;
  opacity: 1;
}

.dp-testi-slick .slick-prev:before { content: '\f053'; }
.dp-testi-slick .slick-next:before { content: '\f054'; }

/* ---------- Promo banner ---------- */
.dp-promo-banner {
  display: block;
  line-height: 0;
  overflow: hidden;
  background: var(--dp-white);
}

.dp-promo-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.dp-promo-banner:hover img {
  transform: scale(1.01);
}

/* ---------- Footer — use theme default, light text fix only if needed ---------- */
body.dp-home footer.footer2 {
  background: inherit !important;
  margin-top: 0;
}

body.dp-home footer .copyright-content p,
body.dp-home footer .copyright-content p a {
  color: inherit;
}

body.dp-home footer .main-menu2 li a {
  color: inherit !important;
  font-size: 13px;
}

body.dp-home .bottom-btn .buyiconsize {
  max-width: 120px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  body.dp-home header .header-bottom .logo {
    max-width: 200px;
  }

  body.dp-home header .header-bottom .logo img {
    max-height: 88px !important;
  }

  body.dp-home header .customer-area2 {
    justify-content: flex-end !important;
  }

  body.dp-home header .customer-area2 .btn {
    padding: 10px 14px !important;
    font-size: 11px;
  }

  .dp-hero-swiper {
    height: clamp(340px, 48vw, 520px);
    min-height: 340px;
  }

  .dp-hero-arrow {
    display: none;
  }

  .dp-hero-welcome marquee {
    font-size: 15px;
  }

  .dp-brand-logo {
    height: 112px;
    min-height: 112px;
    padding: 14px 16px;
  }

  .dp-brand-logo img {
    max-height: 72px;
  }
}

@media (max-width: 576px) {
  body.dp-home header .header-bottom .logo {
    max-width: 160px;
  }

  body.dp-home header .header-bottom .logo img {
    max-height: 72px !important;
  }

  .dp-hero-swiper {
    height: 320px;
    min-height: 280px;
  }

  .dp-hero-welcome marquee {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dp-delivery-visual img {
    animation: none !important;
  }
}
