/* =====================================================
   D2F CORE FOUNDATION
   ===================================================== */

/* ---------- CSS VARIABLES ---------- */

.row {
  margin-left: -16px;
  margin-right: -16px;
}

.main_body {
  margin-top:30px;
}

.reviewRatingStar {
  display:inline;
}

.colouredIcon {
  display:none;
}

.social-block .colouredIcon {
  display:initial;
}

:root {
  /* ===============================
     BRAND & COLOUR SYSTEM
     =============================== */

  --d2f-brand: #e600a5;

  --d2f-muted-text: #777;
  --d2f-light: #ffffff;

  /* Headings */
  --d2f-heading-color: var(--header-color);

  /* Links */
  --d2f-link: var(--d2f-brand);

  /* Surfaces */
  --background: #000;
  --d2f-soft: #f3f3f3;
  --d2f-section-alt: #f3f3f3;
  --d2f-usp-alt: #ffe7f8;

  --surface-1: #fff;
  --surface-2: #f3f3f3; 
  --surface-3: #f8f8f8; 
  --stroke: #D1D5DB;

  /* ===============================
     TYPOGRAPHY
     =============================== */

  --font-sans: "Inter", system-ui, -apple-system,
               BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;

  --d2f-heading: "Urbanist", system-ui, sans-serif;
  --small-text: 0.9rem;

  /* ===============================
     LAYOUT
     =============================== */

  --d2f-container-sm: 720px;
  --d2f-container-md: 1024px;
  --d2f-container-lg: 1200px;

  /* ===============================
     SPACING SCALE (8pt-based)
     =============================== */

  --space-1: 0.5rem;   /* 8px */
  --space-2: 0.75rem;  /* 12px */
  --space-3: 1rem;     /* 16px */
  --space-4: 1.5rem;   /* 24px */
  --space-5: 2rem;     /* 32px */
  --space-6: 3rem;     /* 48px */
  --space-7: 4rem;     /* 64px */
  --space-8: 5.5rem;   /* 88px */

  --d2f-xs: var(--space-1);
  --d2f-sm: var(--space-3);
  --d2f-md: var(--space-5);
  --d2f-lg: var(--space-7);
  --d2f-xl: var(--space-8);

  /* ===============================
     RADIUS
     =============================== */

  --d2f-radius-xs: 4px;
  --d2f-radius-sm: 8px;
  --d2f-radius-md: 16px;
  --d2f-radius-lg: 24px;
  --d2f-radius-xl: 32px;


  /* ===============================
     NAV / HEADER (unchanged)
     =============================== */

  --topbar: #df0068;
  --topbar-text: #ffffff;
  --topbar-icons: #ffffff;
  --nav-links: #ffffff;
  --nav-links-bg: #a51254;
  --nav-bg: #313131;
  --dropdown-bg: #000000;
  --background: #48493b;
  --cart-color: #ffffff;
  --nav-cart: #ffffff;

  --logo-mob-max-width: 250px;
  --logo-desktop-max-width: 500px;
  --logo-mob-shrink: 0.8;
  --logo-desktop-shrink: 0.7;

  --topbar-h: auto;
  --nav-h: auto;

  --mm-font-title: "Urbanist", system-ui, sans-serif;
}

/* =====================================================
   BASE RESET
   ===================================================== */

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

html {
  font-size: 16px;
}

body {
  font-size: 1rem;
  line-height: 1.6;
}

html,
body {
  margin: 0;
  font-family: var(--font-sans);
  overflow-x: hidden;
}
.container {
max-width: var(--d2f-container-lg);
}


a[href],
button,
.btn,
[role="button"] {
  cursor: pointer;
}


/* =====================================================
   BODY COPY
   ===================================================== */

body {
  line-height: 1.65;
}

@media (max-width: 768px) {
  body {
    line-height: 1.7;
  }
}

/* =====================================================
   HEADINGS
   ===================================================== */

h1, h2, h3, h4, h5 {
  margin-top: 0;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--d2f-heading-color);
}

.d2f-light {
  color: var(--d2f-light) !important;
}

/* =====================================================
   PARAGRAPHS
   ===================================================== */

p {
  margin-top: 0;
  margin-bottom: 1em;
}



/* =====================================================
   LINKS — 
   ===================================================== */

a {
  color: inherit;
  text-decoration: none;
}

.d2f-section a:not(.btn) {
  color: var(--d2f-link);
  /* text-decoration: underline; */
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.15em;
  /* text-decoration-color:
    color-mix(in srgb, var(--d2f-link) 60%, transparent); */
}

.d2f-section a:not(.btn):hover,
.d2f-section a:not(.btn):focus-visible {
  color: color-mix(in srgb, var(--d2f-link) 85%, black);
  /* text-decoration-color: var(--d2f-link); */
}

/* Headings with links */
.d2f-section h1 a,
.d2f-section h2 a,
.d2f-section h3 a {
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

/* Buttons never inherit link styles */
.btn,
.btn:hover,
.btn:focus-visible {
  text-decoration: none !important;
  color: inherit;
}

/* Optional utility */
a.inline-link {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.d2f-filters,
.d2f-filters a,
.d2f-breadcrumbs,
.d2f-products-header,
.d2f-products-toolbar,
.d2f-pagination {
  color: inherit;
}


.d2f-filters a {
  color: inherit !important;
  text-decoration: none !important;
}
.d2f-filters a:hover {
  color: var(--d2f-link) !important;
  text-decoration: underline !important;
}



/* =================================================
   BASE BODY TEXT
================================================= */

body {
  line-height: 1.65;
}

/* Mobile body */
@media (max-width: 768px) {
  body {
    line-height: 1.7;
  }
}

/* =================================================
   HEADINGS – BASE RESET
================================================= */

h1, h2, h3, h4, h5 {
  margin-top: 0;
  font-weight: 500;
  color: var(--d2f-heading-color) !important;
}

.d2f-light {
color: var(--d2f-light) !important;
}
/* =================================================
   DESKTOP HEADING SCALE 
================================================= */

h1, h2, h3, h4, h5 {
  margin-top: 0;
  font-family: inherit;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 1.875rem; 
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 0.9em;
}

h2 {
  font-size: 1.625rem;  
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 0.85em;
}

h3 {
  font-size: 1.3125rem;  
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 0.75em;
}

h4 {
  font-size: 1rem;     
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 0.65em;
}

h5 {
  font-size: 0.875rem;  
  line-height: 1.45;
  font-weight: 600;
  margin-bottom: 0.5em;
}

@media (max-width: 768px) {

  h1 {
    font-size: 1.625rem;  
    line-height: 1.3;
    margin-bottom: 0.85em;
  }

  h2 {
    font-size: 1.375rem;
    line-height: 1.35;
    margin-bottom: 0.8em;
  }

  h3 {
    font-size: 1.1875rem;  
    line-height: 1.4;
    margin-bottom: 0.7em;
  }

  h4 {
    font-size: 0.9375rem;  
    line-height: 1.45;
    margin-bottom: 0.6em;
  }

  h5 {
    font-size: 0.8125rem; 
    line-height: 1.5;
    margin-bottom: 0.45em;
  }

}

.d2f-feature-title {
  margin-bottom: var(--space-6);
}
@media (max-width: 1024px) {
.d2f-feature-title {
  text-align:left !important;
  margin-bottom: var(--space-4);
}
}
/* =================================================
   PARAGRAPHS
================================================= */

p {
  margin-top: 0;
  margin-bottom: 1em;
}

/* =================================================
   RADIUS
================================================= */

.radius-xs { border-radius: var(--d2f-radius-xs); }
.radius-sm { border-radius: var(--d2f-radius-sm); }
.radius-md { border-radius: var(--d2f-radius-md); }
.radius-lg { border-radius: var(--d2f-radius-lg); }
.radius-xl { border-radius: var(--d2f-radius-xl); }


/* =================================================
   BREADCRUMBS
================================================= */


.d2f-breadcrumbs {
  font-size: .9rem;
  margin-bottom: var(--space-3);
}

.d2f-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}


/* =========================
   PAGINATION
========================= */

.d2f-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin: var(--space-5) 0;
color: currentColor;
}

.page-numbers {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-numbers button {
  all: unset;
  cursor: pointer;

  font-size: .95rem;
  font-weight: 500;
  color: currentColor;
  padding: 4px 2px;

  transition: color .2s ease;
}

.page-numbers button:hover {
 
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-numbers button.is-active {
  
  font-weight: 600;
}

.page-arrow {
  width: 28px;
  height: 28px;
  border-radius: 999px;

  background: transparent;
  color: var(--currentColor); 

  border: none;

  font-size: 14px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition:
    background-color .2s ease,
    color .2s ease,
    opacity .2s ease;
}

.page-arrow:hover:not(:disabled) {
  background: var(--d2f-brand); ;
  color: #fff;
}

.page-arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* =========================
   D2F ARROW (CANONICAL)
========================= */

.d2f-arrow {
  appearance: none;
  -webkit-appearance: none;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 999px;

  background: transparent;
  color: currentColor;
  border: 1px solid color-mix(in srgb, currentColor 85%, transparent);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease,
    opacity 0.2s ease;
}

.d2f-arrow:hover:not(:disabled) {
  background: var(--d2f-brand);
  border-color: color-mix(in srgb, var(--d2f-brand) 85%, transparent);
  color: var(--d2f-light);
}

.d2f-arrow:active:not(:disabled) {
  transform: scale(0.98);
}

.d2f-arrow:disabled {
  opacity: 0.25;
  background: transparent;
  cursor: not-allowed;
}

.d2f-arrow:focus,
.d2f-arrow:focus-visible {
  outline: none;
}

.d2f-arrow-icon {
  width: 18px;
  height: 18px;
  display: block;
}



.d2f-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  flex-shrink: 0;
  color: currentColor;
}

.d2f-icon--sm { width: 1rem; height: 1rem; }
.d2f-icon--lg { width: 1.5rem; height: 1.5rem; }

.d2f-icon {
  vertical-align: middle;
}

.d2f-icon--solid {
  fill: currentColor;
  stroke: none;
}


.d2f-icon--menu {
  width: 24px;
  height: 24px;
}

.d2f-icon--cart {
  width: 24px;
  height: 24px;
}


.mobile-header button {
  width: 44px;
  height: 44px;
}
.nav-cart svg {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-cart {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;

  min-width: 18px;
  height: 18px;
  padding: 0 5px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--nav-links-bg);
  color: #fff;

  font-size: 11px;
  line-height: 1;

  border-radius: 999px; /* perfect circle / pill */
  box-sizing: border-box;
}


.nav-burger {
  display: flex;
  align-items: center;
  justify-content: center;

padding: 0;
}

.nav-burger svg {
  width: 30px;
  height: 30px;
  display: block;
}
#closeMenu svg,
.mobile-close svg {
  width: 20px;
  height: 20px;
}
.mobile-prev svg, .mobile-next svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}




.mobile-header span {
  text-align: center;
  justify-self: center;
}


/* =================================================
   SECTION MODS
================================================= */

.section-intro h2 {
  font-size: 1.5rem;
  line-height: 1.4;
}

.section-grid > h2 {
  margin-bottom: 0.45em;
}

.hero + section {
  margin-top: 1.25rem;
}
.pt-mod {
padding-top: var(--space-4) !important;
}
    /* @media (max-width: 1023px) {
padding-top: var(--space-1) !important;

} */


    /* =====================================================
   CONTAINERS
   ===================================================== */
    
    .d2f-container {
        width: 100%;
        max-width: var(--d2f-container-lg);
        margin: 0 auto;
        padding: 0 20px;
    }
    
    @media (min-width: 900px) and (max-width: 1199px) {
        .d2f-container {
            max-width: var(--d2f-container-md);
        }
    }
    
    @media (min-width: 2000px) {

        /* =====================================================
   Max Setting
   ===================================================== */
        .max-wide {
            max-width: 2000px;
            margin: 0 auto;
        }
        .max-rad {
            border-radius: 12px;
        }
        .max-mt {
            margin-top: 20px;
        }
    }
   

/* =====================================================
   SECTIONS — VERTICAL RHYTHM
   ===================================================== */

.d2f-section {
  padding-block: var(--space-7);
}

.d2f-section-tight {
  padding-block: var(--space-6); 
}

.d2f-section-loose {
  padding-block: var(--space-7); 
}

.d2f-section-break {
  padding-block: var(--space-7);
}

.d2f-section-soft {
        background: var(--d2f-section-alt);
}
@media (max-width: 768px) {
  .d2f-section {
    padding-block: var(--space-5); 
  }

  .d2f-section-loose,
  .d2f-section-break {
    padding-block: var(--space-4); 
  }
}
    /* =====================================================
   BUTTONS / NAV / UI
   ===================================================== */
    

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: inherit;
  font-weight: 500;
  line-height: 1;

  padding: 1rem 1.3rem;
  border-radius: 0.25rem;

  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;

  transition:
    background-color .2s ease,
    color .2s ease,
    border-color .2s ease;
color: #fff !important;
  max-width: max-content;
}

/* .btn-second {
  color: currentColor !important;
  background: transparent;
  border: 1px solid currentColor !important;
}

.btn-tert {
  color: var(--d2f-light) !important;
  background: transparent;
  border: 1px solid var(--d2f-light);
} */


    /* =====================================================
   OPTIONAL: SMALL UI TEXT
   ===================================================== */
    
    .small,
    .meta,
    .helper-text {
        color: #666;
    }


    
    .d2f-text-left {
        text-align: left;
    }
    
    .d2f-text-center {
        text-align: center;
    }
    
    .d2f-text-right {
        text-align: right;
    }
    
    @media (min-width: 1024px) {
        .d2f-text-center-desktop {
            text-align: center;
        }
        .d2f-text-left-desktop {
            text-align: left;
        }
        .d2f-text-right-desktop {
            text-align: right;
        }
    }

 /* =====================================================
   PRODUCT CARDS
   ===================================================== */


.d2f-prod-card {
  display: flex;
  flex-direction: column;
  opacity: 0;
  cursor: pointer;
  transform: translateY(24px);
  transition:
    opacity .6s ease,
    transform .6s ease;
}

.d2f-prod-card.is-visible {
  opacity: 1;
  transform: none;
}

/* ===============================
   PRODUCT IMAGE
   =============================== */

.d2f-prod-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--d2f-radius-sm);
}

.d2f-prod-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform .7s cubic-bezier(0.22, 1, 0.36, 1);
}



/* ===============================
   HOVER OVERLAY
   =============================== */

.d2f-prod-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-4);

  opacity: 0;
  transform: translateY(22%);
  transition:
    opacity .35s ease,
    transform .6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===============================
   HOVER / FOCUS STATES
   =============================== */

.d2f-prod-card:hover .d2f-prod-image img,
.d2f-prod-card:focus-within .d2f-prod-image img {
  transform: scale(1.08);
}

.d2f-prod-card:hover .d2f-prod-overlay,
.d2f-prod-card:focus-within .d2f-prod-overlay {
  opacity: 1;
  transform: translateY(0);
}


@media (hover: hover) and (pointer: fine) {
  .d2f-prod-card:hover .d2f-prod-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (hover: none), (pointer: coarse) {
  .d2f-prod-overlay {
    display: none;
  }
}



/* ===============================
   TEXT
   =============================== */

.d2f-prod-title {
  display: inline-block;
  margin-top: var(--space-2);
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}

.d2f-prod-card:hover .d2f-prod-title {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  color: var(--d2f-heading-color);
}


.d2f-prod-price {
  color: color-mix(in srgb, currentColor 75%, white);
}

.d2f-load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: var(--space-5);
}

.d2f-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s cubic-bezier(0.22, 1, 0.36, 1),
    transform .7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.d2f-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  .d2f-prod-overlay {
    opacity: 1;
    transform: none;
    background: linear-gradient(
      to top,
      rgba(0,0,0,.45),
      rgba(0,0,0,0) 70%
    );
  }
}
.d2f-products .d2f-prod-card {
  opacity: 1 !important;
  transform: none !important;
}


    /* ===============================
   HERO CTA BUTTON GROUP 
   =============================== */
    
    .d2f-hero-cta-group {
        display: flex;
        gap: 14px;
        align-items: center;
        margin-top: 6px;
    }
    .d2f-hero-cta-group,
.section-cta,
.cta-group {
  margin-top: var(--space-4); /* 24px */
}
    
    @media (max-width: 900px) {
        .d2f-hero-cta-group {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }
        .getintouchbtn {
            display: none;
        }
    }
  
    /* =====================================
   REVIEWS */

    
    .review-carousel {
        background: var(--d2f-section-alt);
        padding: clamp(36px, 6vw, 60px) 20px;
        text-align: center;
        overflow: hidden;
    }
    
    .review-track {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        min-height: 200px;
    }
    
    .review-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transform: translateX(700px);
        transition: transform .8s ease, opacity .35s ease;
        will-change: transform, opacity;
    }
    
    .review-slide.active {
        opacity: 1;
        transform: translateX(0);
        position: relative;
    }
    
    .stars {
        letter-spacing: 4px;
        color: currentColor;
        margin-bottom: 18px;
    }
    
    .review-text {
        line-height: 1.6;
        max-width: 700px;
        margin: 0 auto 14px;
        color: currentColor;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        height: calc(1.15rem * 1.6 * 2);
    }
    
    .review-author {
  color: color-mix(in srgb, currentColor 75%, white);
    }
    
    .review-dots {
        margin-top: 22px;
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    
    .review-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #777;
        opacity: .5;
    }
    
    .review-dots .dot.active {
        opacity: 1;
        background: #000;
    }

    
    @media (max-width: 768px) {
        .review-text {
            line-height: 1.55;
            height: calc(1.05rem * 1.55 * 2);
        }
        .review-track {
            min-height: 180px;
        }
        .stars {
            margin-bottom: 14px;
        }
        .review-dots {
            margin-top: 18px;
        }
    }

/* =====================================================
   PEAK BAR
   ===================================================== */

.d2f-peak {
  background: var(--d2f-section-alt);
}

.d2f-peak-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);

  padding-block: var(--space-4);
  border-bottom: 1px solid color-mix(in srgb, currentColor 10%, transparent);
}

.d2f-peak-text {
  margin: 0;
  max-width: 70%;
  line-height: 1.45;
}



/* Tablet */
@media (max-width: 900px) {
  .d2f-peak-text {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .d2f-peak-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }

  .d2f-peak-text {
    max-width: 420px;
    margin-inline: auto;

    font-size: 0.95rem;
    line-height: 1.4;
  }

  .d2f-peak-text span {
    display: block;
    margin-bottom: 2px;
    font-weight: 700;
  }

  .d2f-peak-inner .btn {
    align-self: center;
  }
}

 /* =====================================================
   REVEAL ANIMATION (GLOBAL)
   ===================================================== */
    
    .d2f-reveal {
        opacity: 0;
        transform: translateY(30px);
    }
    
    .d2f-reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .d2f-reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1), transform .7s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform, opacity;
    }
    
    .d2f-reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .d2f-delay-1 {
        transition-delay: .12s;
    }
    
    .d2f-delay-2 {
        transition-delay: .25s;
    }

@media (max-width: 480px) {
  .d2f-badges {
    gap: 14px;
  }

  .d2f-badges img {
    height: 52px;
  }
}

.d2f-usp-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.d2f-usp-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.d2f-usp {
background: var(--d2f-usp-alt);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);

}
.d2f-usp
p {
  margin-bottom: 0 !important;
}

.d2f-usp.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.d2f-usp,
.d2f-usp-list {
  min-height: 3.5rem;
}

@media (max-width: 768px) {
  .d2f-usp-grid {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .d2f-usp-grid li {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateX(200px);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;

    opacity: 0;

    transition:
      transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.35s ease;
  }

  .d2f-usp-grid li.is-active {
    transform: translate(-50%, -50%) translateX(0);
    opacity: 1;
  }

  .d2f-usp-grid li.is-exiting {
    transform: translate(-50%, -50%) translateX(0);
    opacity: 0;
  }

.d2f-usp,
.d2f-usp-list {
  min-height: 2.5rem !important;
}
}

.d2f-grid {
  display: grid;
  gap: var(--d2f-sm);
}

.d2f-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .d2f-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   FOOTER 1 – MAIN GRID
   ========================= */

.footer-1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
}

.contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;

}

.shop-logo {
  max-width: 280px;
  height: auto;
background: #fff;
padding: 8px;
border-radius: 12px
}

.contact-wrap p {
  margin: 0;
  line-height: 1.6;
}

/* .telephoneLink,
.emailLink {
  margin-left: 8px;
} */

.f2-heading-text {
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-link,
.footer-1 ul li a {
  display: inline-block;
  padding: 6px 0;
  opacity: 0.9;
}

.footer-link:hover,
.footer-1 ul li a:hover {
  opacity: 1;
}

.footer-1 .line {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 24px;
}

footer ul li:nth-child(n + 7) {
  display: none;
}

/* =====================================================
   FOOTER — BASE STRUCTURE
   ===================================================== */

footer {
  display: block;
  width: 100%;
}

.footer-1 {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(40px, 6vw, 72px) 0;
  align-items: start;
}

/* Container alignment (if wrapped) */
footer .d2f-container,
footer > div {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
}

/* =====================================================
   LOGO + CONTACT BLOCK
   ===================================================== */

.contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 320px;

}

.contact-wrap a {
  display: inline-block;
}

.shop-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 8px;

}

/* Address + contact text rhythm */
.contact-wrap p {
  margin: 0;
  line-height: 1.6;
}

/* Icon + text rows */
.contact-wrap p svg {
  vertical-align: middle;
  margin-right: 8px;
}

.contact-wrap p a {
  vertical-align: middle;
  display: inline-block;
}

/* =====================================================
   FOOTER COLUMNS (LINK GROUPS)
   ===================================================== */

footer .accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Column headings */
.f2-heading-text {
  font-weight: 600;
  line-height: 1.3;
}

/* Link lists */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li:last-child {
  margin-bottom: 0;
}

/* =====================================================
   DIVIDER LINE
   ===================================================== */

.footer-1 .line {
  grid-column: 1 / -1;
  height: 1px;
  margin-top: clamp(24px, 4vw, 40px);
}

/* =====================================================
   FOOTER BOTTOM BAR
   ===================================================== */

.footer-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  padding: 24px 0;
  flex-wrap: wrap;
}

/* Copyright */
.copytext-wrap {
  display: flex;
  flex-direction: column;
  gap: 0px;
  font-size: 0.875rem;
}

/* Payment icons */
.payment-icons-wrap {
  max-width: 360px;
}

.payment-icons-wrap svg {
  max-width: 100%;
  height: auto;
}

/* =====================================================
   D2F BADGE
   ===================================================== */

.footer-3 {
  display: flex;
  justify-content: center;
  padding: 24px 0 32px;
background: #1a1a1a;
}

.footer-3 svg {
  max-width: 260px;
  height: auto;
}



/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */

@media (max-width: 1024px) {
  .footer-1 {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
    text-align: center;
  }

      .footer-2 {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

  .contact-wrap {
    max-width: none;
  }

  footer .accordion {
    text-align: center;
  }

   .copytext-wrap {
        align-items: center;
  }

}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */

@media (max-width: 768px) {
  .footer-1 {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }

  .contact-wrap {
    align-items: center;
    text-align: center;
  }

  .shop-logo {
    margin-inline: auto;
  }

  footer .accordion {
    text-align: center;
  }

  .footer-2 {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .copytext-wrap {
    align-items: center;
  }

  .payment-icons-wrap {
    max-width: 300px;
    margin-inline: auto;
  }
}
/* =====================================================
   FOOTER COMPACT MODE (reduces visual height)
   ===================================================== */

/* Reduce top-heavy feeling */
.footer-1 {
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
  gap: clamp(16px, 3vw, 32px);
}

/* Logo block tighter */
.contact-wrap {
  gap: 10px;
}

.shop-logo {
  max-width: 220px;
  margin-bottom: 4px;
}

/* Headings closer to content */
.f2-heading-text {
  margin-bottom: 6px;
}



/* D2F badge pulled up */
.footer-3 {
  padding-top: 16px;
  padding-bottom: 24px;
}



/* =========================
   FOOTER 1 – MAIN GRID
   ========================= */

.footer-1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
}

.contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;

}

.shop-logo {
  max-width: 280px;
  height: auto;
background: #fff;
padding: 8px;
border-radius: 12px
}

.contact-wrap p {
  margin: 0;
  line-height: 1.6;
}

/* .telephoneLink,
.emailLink {
  margin-left: 8px;
} */

.f2-heading-text {
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-link,
.footer-1 ul li a {
  display: inline-block;
  padding: 6px 0;
  opacity: 0.9;
}

.footer-link:hover,
.footer-1 ul li a:hover {
  opacity: 1;
}

.footer-1 .line {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 24px;
}

footer ul li:nth-child(n + 7) {
  display: none;
}

/* =====================================================
   FOOTER — BASE STRUCTURE
   ===================================================== */

footer {
  display: block;
  width: 100%;
}

.footer-1 {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(40px, 6vw, 72px) 0;
  align-items: start;
}

/* Container alignment (if wrapped) */
footer .d2f-container,
footer > div {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
}

/* =====================================================
   LOGO + CONTACT BLOCK
   ===================================================== */

.contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 320px;

}

.contact-wrap a {
  display: inline-block;
}

.shop-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 8px;

}

/* Address + contact text rhythm */
.contact-wrap p {
  margin: 0;
  line-height: 1.6;
}

/* Icon + text rows */
.contact-wrap p svg {
  vertical-align: middle;
  margin-right: 8px;
}

.contact-wrap p a {
  vertical-align: middle;
  display: inline-block;
}

/* =====================================================
   FOOTER COLUMNS (LINK GROUPS)
   ===================================================== */

footer .accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Column headings */
.f2-heading-text {
  font-weight: 600;
  line-height: 1.3;
}

/* Link lists */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li:last-child {
  margin-bottom: 0;
}

/* =====================================================
   DIVIDER LINE
   ===================================================== */

.footer-1 .line {
  grid-column: 1 / -1;
  height: 1px;
  margin-top: clamp(24px, 4vw, 40px);
}

/* =====================================================
   FOOTER BOTTOM BAR
   ===================================================== */

.footer-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  padding: 24px 0;
  flex-wrap: wrap;
}

/* Copyright */
.copytext-wrap {
  display: flex;
  flex-direction: column;
  gap: 0px;
  font-size: 0.875rem;
}

/* Payment icons */
.payment-icons-wrap {
  max-width: 360px;
}

.payment-icons-wrap svg {
  max-width: 100%;
  height: auto;
}

/* =====================================================
   D2F BADGE
   ===================================================== */

.footer-3 {
  display: flex;
  justify-content: center;
  padding: 24px 0 32px;
background: #1a1a1a;
}

.footer-3 svg {
  max-width: 260px;
  height: auto;
}

/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */

@media (max-width: 1024px) {
  .footer-1 {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
    text-align: center;
  }

      .footer-2 {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

  .contact-wrap {
    max-width: none;
  }

  footer .accordion {
    text-align: center;
  }

  .copytext-wrap {
        align-items: center;
  }


}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */

@media (max-width: 768px) {
  .footer-1 {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }

  .contact-wrap {
    align-items: center;
    text-align: center;
  }

  .shop-logo {
    margin-inline: auto;
  }

  footer .accordion {
    text-align: center;
  }

  .footer-2 {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .copytext-wrap {
    align-items: center;
  }

  .payment-icons-wrap {
    max-width: 300px;
    margin-inline: auto;
  }
}
/* =====================================================
   FOOTER COMPACT MODE (reduces visual height)
   ===================================================== */

/* Reduce top-heavy feeling */
.footer-1 {
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
  gap: clamp(16px, 3vw, 32px);
}

/* Logo block tighter */
.contact-wrap {
  gap: 10px;
}

.shop-logo {
  max-width: 220px;
  margin-bottom: 4px;
}

/* Headings closer to content */
.f2-heading-text {
  margin-bottom: 6px;
}



/* D2F badge pulled up */
.footer-3 {
  padding-top: 16px;
  padding-bottom: 24px;
}


/* =====================================================
HEADER (OLD)
   ===================================================== */


.shop-logo-wrap {
    flex: 8;
    margin: auto;
}

.topHeaderBasketLink:hover {
    text-decoration: none;
}

.shop-logo {
    max-width: 100%;
    margin-bottom: 10px;
}

footer .shop-logo {
    max-width: 220px;
}

.mob-sub-header {
    text-align: center;
    width: 100%;
    background-color: #000;
    color: white;
}

.mob-sub-header .column {
    display: inline-block;
}

.mob-sub-header .column:first-child {
    margin-right: 10px;
}

.d-upper-header div div svg,
.mob-sub-header .column svg {
    margin-top: -5px;
}

.d-upper-header div .cart svg {
    margin-top: -8px;
    margin-right: 2px;
}

.d-upper-header div div svg:hover {
    transform: scale(1.2);
}

.d-upper-header div div svg {
    transition: all 1s;
    transform-origin: 50% 50%;
}

.dropdown-menu {
    background-color: #EFEFEF;
    font-size: 1.3rem;
    padding: 0;
}

.florist-msg {
    text-wrap: nowrap;
}

.telephoneLink {
    font-family: var(--d2f-number-font);
}

@media (max-width: 991px) {
    .navbar {
        align-items: flex-start;
    }
    .shop-logo {
        margin: 15px 0;
    }
    .d-upper-header-wrap {
        display: none;
    }
    .nav-item {
        text-align: center;
    }
    .header-2-navbar .nav-item .nav-link {
        color: #000;
    }
    .dropdown-menu {
        background-clip: initial;
        border: initial;
        border-radius: initial;
        text-align: center;
    }
    .dropdown .dropdown-menu .dropdown-item:last-child {
        padding-bottom: 1rem;
    }
    .dropdown-item.active,
    .dropdown-item:active,
    .dropdown-item:hover {
        color: initial;
        text-decoration: none;
        background-color: initial;
    }
    .florist-msg {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .d-upper-header {
        max-width: var(--container-width);
        margin: 0 auto;
    }
    .d-upper-header .left,
    .d-upper-header .right {
        display: flex;
    }
    .d-upper-header .left {
        margin-left: 15px;
    }
    .d-upper-header .right {
        margin-right: 15px;
    }
    .d-upper-header .right .cart {
        border: 1px solid #000;
        border-radius: 50px;
        padding: 7px 13px 3px 11px;
        color: #fff;
        background-color: #000;
        cursor: pointer;
        font-family: var(--d2f-number-font);
    }
    .d-upper-header .left div,
    .d-upper-header .right div {
        padding: 8px 5px 0 0;
    }
    .navbar-expand-lg {
        flex-flow: column !important;
    }
    .header-2-dropdown-menu {
        top: 38px !important;
        left: -1px;
    }
    .header-2-dropdown-menu .dropdown-item {
        padding: 0.25rem 12px 0.25rem 12px;
    }
    .mob-sub-header {
        display: none;
    }
    .dropdown-menu {
        background-color: #000;
        border-radius: 0 0 0.25rem 0.25rem;
    }
    .dropdown-item {
        color: #fff;
    }
    .nav-item:hover,
    .nav-item:active,
    .dropdown-item.active,
    .dropdown-item:active,
    .dropdown-item:hover {
        background-color: #fff;
        color: #000;
    }
    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active,
    .navbar .navbar-nav .nav-link:active {
        color: #000;
    }
    .navbar .navbar-nav .nav-link {
        color: inherit;
    }
    .header-2-navbar .nav-item {
        color: #fff;
    }
    .navbar-collapse {
        justify-content: center;
        background-color: #000;
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
   margin: 0 auto;
    }
}
@media (min-width: 1200px) {
    .d-upper-header {
        max-width: var(--container-width);
    }
}

@media (max-width: 1200px) {
    footer .d2f-container, footer > div {
      max-width: 90% !important;
    }

    .d2f-section {
      padding: 2.4rem 0 !important;  
    }
}

.mob-sub-header {
   display: none;
}

@media (max-width: 769px) {
  .d2f-grid-4 {
    display:block !important;
    grid-template-columns:none !important;
  }

  .d2f-prod-card {
    margin-bottom: 1rem;
  }

}
