/* Tasket Styles */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Variables */
:root {
    /* Colors from Figma */
    --color-background: #FBF8F2;
    --color-text-primary: #141413;
    --color-text-secondary: #6B6B6B;
    --color-accent: #f0591c;
    --color-secondary-bg: #E6E4E0;
    --color-logo: #262626;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif; /* Fallback for Suisse BP Int'l */
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    /* Container widths */
    --container-width: 1400px;
    
    /* Navbar Variables */
    --nav-bg-height: calc(20em + calc(2em + 3em + 2.5em + 3em));
    --cubic-default: cubic-bezier(0.525, 0, 0, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.450s;
    --color-dark: #2b1d15;
}

/* Base Styles */
body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text-primary);
    overflow-x: hidden;
}

#smooth-wrapper {
    position: relative;
    overflow: visible;
    min-height: 100vh;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    perspective: 1000px;
    transform-style: preserve-3d;
}

#smooth-content {
    min-height: 100vh;
    overflow: visible;
    position: relative;
    z-index: 1;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1em; /* Match the nav-container padding */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-text-secondary);
}

/* Navigation */
a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible, button:focus-visible {
  outline: 1px solid var(--color-dark);
}

.nav {
  z-index: 100;
  color: var(--color-text-primary);
  position: relative;
  display: flex;
  justify-content: center;
  transition: color var(--duration-fast) var(--cubic-default);
}

.nav-inner {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 1em;
  display: flex;
  position: relative;
}

.nav-container {
  z-index: 1;
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
}

.resource-bg {
  color: #fff;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100svh;
  padding-bottom: 2em;
  padding-left: 2.5em;
  display: flex;
  position: relative;
}

.resource-bg__img {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.resource-bg__heading {
  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(100px, 15vw, 200px);
  font-weight: 500;
  line-height: 1;
  position: relative;
}

.nav-logo {
  width: 6.75em;
}

.nav-end {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

/* Mobile adjustments: hide desktop Shop Now button and enlarge menu button */
@media (max-width: 767px) {
  .nav-end .nav-button.is--primary {
    display: none;
  }

  .menu-button {
    width: 64px;
    height: 48px;
    padding: 10px 12px; /* wider for better tap target */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
  }

  .menu-button__line {
    width: 28px;
    height: 3px;
  }
}

.nav-button {
  border: none;
  border-radius: .25em;
  justify-content: center;
  align-items: center;
  height: 3em;
  padding-left: 1em;
  padding-right: 1em;
  font-size: 1em;
  line-height: 1.4;
  display: flex;
  transition: all var(--duration-fast) var(--cubic-default);
}

.nav-button.is--primary {
  color: #fff;
  background-color: #0033ad;
  border: none;
  border-radius: 0;
}

.nav-center__list {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
}

.nav-link {
  grid-column-gap: .375em;
  grid-row-gap: .375em;
  background-color: transparent;
  border-radius: .25em;
  justify-content: center;
  align-items: center;
  padding: .75em 1.25em;
  display: flex;
  border: none;
}

.nav-link__label {
  font-size: 1em;
  line-height: 1;
  position: relative;
}

.nav-link__dropdown-icon {
  width: .875em;
}

.nav-dropdown {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  width: 100%;
  padding-top: 2.5em;
  padding-bottom: 3em;
  position: absolute;
  left: 0;
  right: 0;
  transition: all var(--duration-fast) ease, transform var(--duration-normal) var(--cubic-default);
}

.nav-dropdown.visible {
  opacity: 100;
  pointer-events: auto;
  visibility: visible;
}

.nav-bg {
  background-color: var(--color-background);
  border-bottom-right-radius: .75em;
  border-bottom-left-radius: .75em;
  width: 100%;
  height: 0;
  position: absolute;
  inset: 0% 0% auto;
  transition: height var(--duration-normal) var(--cubic-default); 
}

.nav-dropdown__content {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  list-style: none;
  display: flex;
}

.nav-dropdown[aria-hidden="true"] {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  transition: opacity 0.2s;
}

.nav-dropdown[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.2s;
}


.nav-dropdown__content-li {
  flex: 1;
}

.nav-dropdown__link {
  color: #fff;
  background-color: #ebe7e4;
  border-radius: .25em;
  flex-flow: column;
  flex: 1;
  justify-content: flex-end;
  align-items: stretch;
  height: 20em;
  padding: 1.5em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-dropdown__link.is--static {
  color: #2b1d15;
  transition: background-color .2s cubic-bezier(.625, .05, 0, 1);
}

.nav-dropdown__link-inner {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.nav-dropdown__link-label {
  font-size: 1em;
  transition: transform .2s cubic-bezier(.625, .05, 0, 1);
}

.nav-dropdown__link-bubble {
  color: #fff;
  background-color: var(--color-accent);
  border-radius: 100em;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  padding: .25em;
  transition: transform .2s cubic-bezier(.625, .05, 0, 1);
  display: flex;
}

.icon {
  width: 100%;
  height: 100%;
}

.nav-dropdown__link-bg {
  position: absolute;
  inset: 0%;
}

.nav-dropdown__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .35s cubic-bezier(.625, .05, 0, 1);
}

.nav-dropdown__img-overlay {
  z-index: 1;
  opacity: .25;
  background-image: linear-gradient(#0000, #0000 50%, #000);
  transition: opacity .2s cubic-bezier(.625, .05, 0, 1);
  position: absolute;
  inset: 0%;
}

.page-bg {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background-color: #0000004d;
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: 0% 0% auto;
  transition: opacity var(--duration-fast) var(--cubic-default);
}

.menu-button {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  background-color: #0033ad;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  padding: .75em;
  display: none;
  transition: background-color 0.3s ease;
  border: none;
}

.menu-button:hover {
  background-color: var(--color-text-primary);
}

.menu-button.is--primary {
  color: var(--color-background);
  background-color: #0033ad;
}

.menu-button__line {
  background-color: var(--color-background);
  width: 100%;
  height: 2px;
  margin: 2px 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: none;
}

/* ———— SHOW DROPDOWN ———— */
.nav-dropdown{ 
 transition: all var(--duration-fast) ease, transform var(--duration-normal) var(--cubic-default);
}

[data-dropdown-toggle]:hover + .nav-dropdown,
[data-dropdown-toggle]:focus-visible + .nav-dropdown,
.nav-dropdown:hover,
.nav-dropdown:focus-within{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ———— STYLING WHEN DROPDOWN IS OPEN ———— */
:is(
  body:has([data-dropdown-toggle]:hover),
  body:has([data-dropdown-toggle]:focus-visible),
  body:has([data-dropdown-toggle]:focus-within),
  body:has(.nav-dropdown:hover),
  body:has(.nav-dropdown:focus-within)
){
  .nav-bg{
    height: var(--nav-bg-height);
  }
  .page-bg{
    opacity: 1;
  }
  .nav{
    color: var(--color-dark);
  }
  .nav-button{
    color: var(--color-dark);
  }
  .nav-button.is--primary{
    background-color: var(--color-dark);
    color: #FFF;
  }
}

/* ———— DROPDOWN TOGGLE ———— */
.nav-link__dropdown-icon{ 
  transition: transform var(--duration-normal) var(--cubic-default);
}
[data-dropdown-toggle]{
  transition: background-color var(--duration-fast) var(--cubic-default);
}

/* ———— DESKTOP HOVER AND FOCUS ———— */
@media screen and (min-width: 768px){
  [data-dropdown-toggle]:hover .nav-link__dropdown-icon,
  [data-dropdown-toggle]:focus .nav-link__dropdown-icon,
  [data-dropdown-toggle]:focus-within .nav-link__dropdown-icon,
  [data-dropdown-toggle]:has(+ .nav-dropdown:hover) .nav-link__dropdown-icon,
  [data-dropdown-toggle]:has(+ .nav-dropdown:focus-within) .nav-link__dropdown-icon{
    transform: rotate(180deg);
  }
  [data-dropdown-toggle]:hover,
  [data-dropdown-toggle]:focus,
  [data-dropdown-toggle]:focus-within,
  [data-dropdown-toggle]:has(+ .nav-dropdown:hover),
  [data-dropdown-toggle]:has(+ .nav-dropdown:focus-within){
    background-color: #EBE7E4;
  }
}

/* ————  DROPDOWN CONTENT LIST ITEMS ———— */
.nav-dropdown__content-li{
 transition: all var(--duration-normal) var(--cubic-default);
 transition-delay: 0.18s;
 opacity:0;
 transform: translate(4em, 0px);
}

.nav-dropdown__content-li:nth-child(2){ transition-delay:0.24s; }
.nav-dropdown__content-li:nth-child(3){ transition-delay:0.3s; }
.nav-dropdown__content-li:nth-child(4){ transition-delay:0.36s; }
.nav-dropdown__content-li:nth-child(5){ transition-delay:0.44s; }
body:has([data-dropdown-toggle]:hover) [data-dropdown-toggle]:hover + .nav-dropdown .nav-dropdown__content-li,
body:has([data-dropdown-toggle]:focus-visible) .nav-dropdown__content-li,
body:has([data-dropdown-toggle]:focus-within) .nav-dropdown__content-li,
body:has(.nav-dropdown:hover) .nav-dropdown__content-li,
body:has(.nav-dropdown:focus-within) .nav-dropdown__content-li{
  opacity: 1;
  transform: translate(0em, 0px);
}

/* ————  DROPDOWN LINKS + IMAGES ———— */
.nav-dropdown__link:hover .nav-dropdown__img-overlay,
.nav-dropdown__link:focus-visible .nav-dropdown__img-overlay{
  opacity: 0;
}

.nav-dropdown__link:hover .nav-dropdown__img,
.nav-dropdown__link:focus-visible .nav-dropdown__img{
  transform: scale(1.1);
}

/* ———— DROPDOWN LINKS ———— */
.nav-dropdown__link.is--static:hover,
.nav-dropdown__link.is--static:focus-visible{
  background: #D7D1CD;
}

/* ———— NAV LINKS ———— */
a.nav-link .nav-link__label::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform var(--duration-normal) var(--cubic-default);
  transform: scale(0, 1);
  transform-origin: right center;
}

a.nav-link:hover .nav-link__label::after,
a.nav-link:focus-visible .nav-link__label::after{
  transform: scale(1, 1);
  transform-origin: left center;
}

@media screen and (max-width: 991px) {
  .nav-inner {
    padding-top: 1.25em;
  }

  .nav-container {
    padding-left: 1.25em;
    padding-right: 1.25em;
  }

  .nav-button.md--hide {
    display: none;
  }

  .nav-link {
    padding-left: 1em;
    padding-right: 1em;
  }

  .nav-link__label {
    font-size: 1em;
  }

  .md--hide, .menu-button.md--hide {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .nav-logo {
    z-index: 1;
    position: relative;
  }

  .nav-end {
    z-index: 2;
    position: relative;
  }

  .nav-center {
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    height: 100dvh;
    position: absolute;
    top: 0;
    left: -1.25em;
    right: -1.25em;
    transform: translate(0, 1em);
  }

  .nav-center__list {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    height: 100%;
    padding-top: 8em;
    overflow: hidden scroll;
  }

  .nav-link {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1em 1.25em;
  }

  .nav-link__label {
    font-size: 2em;
  }

  .nav-dropdown {
    opacity: 100;
    pointer-events: auto;
    visibility: visible;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    inset: auto;
  }

  .nav-bg {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    height: 0;
  }

  .nav-dropdown__overflow {
    grid-template-rows: 0fr;
    width: 100%;
    display: grid;
    position: relative;
    overflow: hidden;
  }

  .nav-dropdown__overflow-inner {
    flex-flow: column;
    width: 100%;
    height: 1000000%;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .nav-dropdown__content {
    grid-gap: .75em;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 1em;
    padding-bottom: 1em;
    display: grid;
  }

  .nav-dropdown__link {
    aspect-ratio: 1;
    height: auto;
    padding: 1em;
  }

  .nav-dropdown__link-label {
    font-size: 1.25em;
  }

  .sm--hide {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  :root{
    --nav-bg-height: 100dvh;
  }
  .nav-dropdown__overflow{
    transition: grid-template-rows var(--duration-normal) var(--cubic-default);
  }
  .nav-center{
    transition: all var(--duration-normal) var(--cubic-default), opacity var(--duration-fast) var(--cubic-default);
  }
  .menu-button__line{
    transition: all var(--duration-normal) var(--cubic-default);
  }
   /* ———— STYLES WHEN MENU IS OPEN ———— */ 
  :is(
    [data-menu-status="open"]
  ){
    color: var(--color-dark);
    .menu-button__line:nth-of-type(1){
      transform: translate(0px, 0.125em) rotate(135deg);
      background-color: #FFF;
    }
    .menu-button__line:nth-of-type(2){
      transform: translate(0px, -0.175em) rotate(-135deg);
      background-color: #FFF;
    }  
    .nav-bg{
      height: var(--nav-bg-height);
    }
    .page-bg{
      opacity: 1;
    }
    .nav-button.is--primary{
      background-color: var(--color-dark);
      border-color: var(--color-dark);
      color: #FFF;
    }
    .nav-center{
      opacity: 1;
      visibility: visible;
      transform: translate(0px, 0em);
      transition-delay: 0.1s;
    }
  }
  [data-dropdown-toggle="open"] + .nav-dropdown .nav-dropdown__overflow{
    grid-template-rows: 1fr;
  }
  [data-dropdown-toggle="open"] + .nav-dropdown .nav-dropdown__content-li{
    opacity: 1;
    transform: translate(0em, 0px);
  }
  [data-dropdown-toggle="open"] .nav-link__dropdown-icon{
    transform: rotate(180deg);
  }

}

@media screen and (max-width: 479px) {
  .resource-bg__heading {
    font-size: clamp(40px, 15vw, 200px);
  }

  .nav-logo {
    width: 5em;
  }

  .nav-end {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
  }

  .nav-button.is--primary {
    height: 2.5em;
    padding-left: .75em;
    padding-right: .75em;
  }

  .nav-dropdown__link {
    padding: .75em;
  }

  .nav-dropdown__link-label {
    font-size: 1em;
  }

  .nav-dropdown__link-bubble {
    width: 1.25em;
    height: 1.25em;
    padding: .375em;
  }

  .xs--hide {
    display: none;
  }

  .menu-button {
    /* Keep the larger tap target on very small screens too to avoid a visual shrink
       when the stylesheet's smaller fallback (2.5em) applies. Match the 767px
       mobile sizing so the button remains consistent across small viewports. */
    width: 64px;
    height: 48px;
    padding: 10px 12px; /* wider for better tap target */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
  }

  .menu-button__line {
    width: 28px;
    height: 3px;
  }
}

/* Sustainability Section */
.sustainability-section {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background-color: #0033ad;
    margin: var(--spacing-xxl) 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    z-index: 2;
    padding: var(--spacing-xxl) 0;
}

.sustainability-content {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--spacing-xxl) var(--spacing-xl);
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100dvh - 2 * var(--spacing-xxl));
}

.sustainability-text {
    font-size: clamp(24px, 4vw, 42px); /* Responsive font size */
    line-height: 1.4;
    width: 100%;
    max-width: 1200px; /* Increased from 1000px */
    margin: 0 auto;
    text-align: center;
    font-weight: 400;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: keep-all;
    hyphens: none;
    padding: 0 var(--spacing-xl);
}

.sustainability-text span {
    display: inline-block;
}

/* Add consistent spacing to cardholders section */
.product-category-title:not(:first-of-type) {
    margin-top: var(--spacing-xxl);
}

.sustainability-text {
    color: #fff;
}

@media (max-width: 768px) {
    .sustainability-section {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }
    .sustainability-content {
        padding: var(--spacing-sm);
        width: 100%;
    }
    .sustainability-text {
        padding: 0;
        font-size: 20px;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .sustainability-text {
        font-size: 18px;
        line-height: 1.5;
    }
}

/* Fix for header padding */
header {
    padding: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: var(--spacing-lg) 0;
    margin-bottom: var(--spacing-xxl);
}

.hero-content {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-md);
    padding-top: 0;
}

.hero-title-container {
    width: 100%;
    padding-left: 0;
    margin: var(--spacing-lg) 0 var(--spacing-md);
    text-align: left;
}

.hero-image {
    margin: var(--spacing-md) 0;
}

.hero-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    gap: var(--spacing-sm);
}

.tasket-brandtext, .tasket-slogan, .tasket-owner {
    font-size: clamp(12px, 2vw, 14px);
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--color-text-secondary);
    margin: 0;
}

@media screen and (max-width: 768px) {
    .hero-top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }

    .tasket-brandtext, .tasket-slogan {
        display: none;
    }

    .tasket-owner {
        text-align: left;
        white-space: normal;
    }

    .collection-header {
        flex-direction: column;
    }
}

.tasket-brandtext {
    white-space: nowrap;
}

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

.tasket-owner {
    text-align: right;
    white-space: nowrap;
}

.hero-content {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--spacing-md);
    padding-top: 0; /* No need for space since navbar is not fixed */
}

.hero-title-container {
    width: 100%;
    padding-left: 0; /* Remove padding as container already has padding */
    margin-right: auto;
    margin-left: auto;
    margin-top: 10em; /* Add back spacing between nav and hero title */
    text-align: left;
}

.hero-h1-text {
    font-size: clamp(20px, 3vw, 24px);
    line-height: 1.2;
    margin: 0;
    color: var(--color-text-primary);
    text-align: left;
    margin-bottom: var(--spacing-xxl);
}

.hero-line {
    display: block;
    margin-bottom: 0.2em;
}

@media screen and (max-width: 768px) {
    .hero-line {
        display: inline;
        margin-bottom: 0;
    }
    .hero-line:after {
        content: " ";
    }
}

.hero-image {
    width: 100%;
    height: min(570px, 80vh);
    margin-top: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform-origin: center center;
    will-change: transform;
}

@media screen and (max-width: 768px) {
    .hero-image {
        height: min(400px, 70vh);
    }
    
    .hero-image img {
        object-position: center 20%;
    }
}

@media screen and (max-width: 480px) {
    .hero-image {
        height: min(300px, 60vh);
    }
}

.hero-scroll {
    font-size: 16px;
    line-height: 0.8125;
    text-transform: uppercase;
    color: var(--color-secondary-bg);
    text-align: right;
    padding-right: var(--spacing-md);
}

/* Product Section */
.product-section {
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 1;
}

.collection-title {
    font-size: 21.33px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

.collection-subtitle {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-xxl);
}

.collection-subtitle {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm); 
}

.collection-description {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--color-text-secondary);
    max-width: 45%;
    text-align: right;
    margin: 0;
    margin-bottom: var(--spacing-xs);
    margin-top: var(--spacing-xxl);
}

/* Mobile Styles for Collection Description */
@media (max-width: 600px) {
    .collection-description {
        max-width: 100%;
        width: 100%;
        text-align: left;
        margin-top: var(--spacing-md);
        font-size: 14px;
        line-height: 1.6;
        padding-right: 0;
    }
}

.bag-showcase {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xxl);
}

.product-category-title {
    font-size: 21.33px;
    line-height: 1.4;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.02em;
}

.product-category-description {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);    
}

/* Mobile Styles for Product Category Description */
@media (max-width: 600px) {
    .collection-header[style*="width: 33%"] {
        width: 100% !important;
    }
    .product-category-description {
        max-width: 100%;
        width: 100%;
        text-align: left;
        margin-top: var(--spacing-md);
        font-size: 14px;
        line-height: 1.6;
        padding-right: 0;
    }
}

/* Mobile Styles for DIY Body Text */
@media (max-width: 600px) {
    .tasket-diy_body {
        max-width: 100%;
        width: 100%;
        text-align: left;
        margin-top: var(--spacing-md);
        font-size: 14px;
        line-height: 1.6;
        padding-right: 0;
    }
}

/* Mobile Styles for Order Form */
@media (max-width: 600px) {
    .order-form-section .form-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .order-form-section .order-form-subtitle {
        text-align: center;
        width: 100%;
    }
    
    .order-form-section .sustainability-text {
        text-align: center;
        width: 100%;
        margin-bottom: var(--spacing-xl);
    }
    
    .order-form-section .form-description {
        text-align: center;
        max-width: 400px;
        margin: 0 auto var(--spacing-xl);
    }
    
    .order-form-section .form-group {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .order-form-section .form {
        width: 100%;
    }
    
    .order-form-section .form-field {
        text-align: left;
    }
    
    .order-form-section .form-label {
        text-align: left;
    }
    
    .order-form-section .form-submit-btn {
        margin: var(--spacing-md) auto;
    }

    .order-form-section [data-radiocheck-group] {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .order-form-section .radiocheck-field {
        align-self: flex-start;
        margin-bottom: var(--spacing-sm);
    }
}

.bag-image {
    flex: 1;
    height: 800px;
    overflow: hidden;
}

.bag-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xxl);
}

/* Special styling for cardholder grid */
#cardholder + .collection-header + .product-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 2;
}

#cardholder + .collection-header + .product-grid .product-item:first-child {
    max-width: 100%;
}

#cardholder + .collection-header + .product-grid .product-item:last-child {
    max-width: 100%;
}

#cardholder + .collection-header + .product-grid .product-envelope {
    height: auto;
    width: 100%;
}

#cardholder + .collection-header + .product-grid .product-envelope img:not(.buy-button-icon) {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
    .cardholder-image-2 {
        display: none;
    }
    
    #cardholder + .collection-header + .product-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl); /* Increased gap for better spacing on mobile */
    }
    
    #cardholder + .collection-header + .product-grid .product-envelope {
        height: auto; /* Allow height to be determined by content */
        max-height: 570px; /* Maximum height on mobile */
        margin-bottom: var(--spacing-md); /* Add space between image and content */
    }
    
    #cardholder + .collection-header + .product-grid img {
        object-fit: contain; /* Maintain aspect ratio */
        max-height: 100%;
    }

    #cardholder + .collection-header + .product-grid .product-details-container {
        margin-top: var(--spacing-md); /* Add space above details */
    }
}

.product-item {
    margin-bottom: var(--spacing-lg);
}

.product-envelope {
    width: 100%;
    height: 570px;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .product-envelope {
        height: auto; /* Let height be determined by content */
        margin-bottom: var(--spacing-xl); /* Increased spacing between image and text */
    }
    
    .product-envelope img {
        height: auto; /* Let image height scale naturally */
    }
}

.product-envelope img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

@media screen and (max-width: 768px) {
    .product-envelope img {
        object-position: center center;
        height: 100%;
        width: 100%;
    }
}

.product-title {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.product-details-container {
    margin-bottom: var(--spacing-sm);
}

.details-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--spacing-xs) 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--color-secondary-bg);
    cursor: pointer;
    text-align: left;
}

.details-toggle h4 {
    font-weight: 500;
    font-size: 14px;
    color: var(--color-accent);
    margin: 0;
}

.toggle-icon {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.details-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(45deg);
}

.product-details {
    font-size: 12px;
    line-height: 1.4;
    color: var(--color-text-secondary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.details-toggle[aria-expanded="true"] + .product-details {
    max-height: 50vh; 
    padding-top: var(--spacing-xs);
}

.product-details dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 8px;
    margin-bottom: var(--spacing-sm);
}

.product-details dt {
    font-weight: 500;
}

.product-details dd {
    margin: 0;
}

.product-price {
    margin-top: var(--spacing-sm);
    font-size: 14px;
    line-height: 1.4;
}

.product-price h4 {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-secondary);
}

.product-price dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
    font-size: 14px;
    line-height: 1.4;
}

.product-price dt {
    font-weight: normal;
}

.product-price dd {
    margin: 0;
    text-align: right;
}

.product-price p {
    font-size: 10px;
    color: var(--color-text-secondary);
    margin-top: var(--spacing-xs);
}

/* Color Selection Icons */
.color-options {
    display: flex;
    gap: 8px;
    margin-top: 0;
    margin-bottom: 8px;
}

/* Default color selection styling */
.color-icon {
    cursor: pointer;
    transition: transform 0.2s ease;
    border: none;
    outline: none;
    background: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    position: relative;
}

.color-icon::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: inherit;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Cardholder specific color selection styling */
#cardholder + .collection-header + .product-grid .color-options-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

#cardholder + .collection-header + .product-grid .color-icon {
    min-width: 120px;
    height: 32px;
    /* increase left padding so the circle doesn't sit flush against the pill edge */
    padding: 4px 12px 4px 18px;
    display: flex;
    justify-content: flex-start; /* keep circle and label aligned to the left */
    align-items: center;
    gap: 8px;
    /* unselected pill: match Add-to-Cart disabled background */
    background: #F2F0EC;
    border: 1px solid var(--color-text-secondary);
    border-radius: 8px;
    transition: background-color 0.18s ease, border-color 0.18s ease;
    cursor: pointer;
}

#cardholder + .collection-header + .product-grid .color-icon::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: static;
    transform: none;
    flex-shrink: 0;
    border: none;
    box-sizing: border-box;
    background-color: var(--color-circle, currentColor);
    margin-left: 16px; /* ensure consistent gap between circle and label */
}

#cardholder + .collection-header + .product-grid .color-icon::after {
    content: attr(data-color);
    color: var(--color-text-primary);
    font-size: 13px;
    font-family: var(--font-primary);
    font-weight: 400;
}

#cardholder + .collection-header + .product-grid .color-icon:hover {
  /* keep the pill background stable on hover (no white flash); only soften the border */
  border-color: rgba(0, 0, 0, 0.15);
}

/* active state styling handled elsewhere */

#cardholder + .collection-header + .product-grid .color-icon:focus-visible {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px var(--color-accent);
}

/* Default color options list */
.color-options-list {
    display: flex;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Size toggle styling: label above, buttons below, matching spacing and look of color strap */
.size-toggle {
  display: flex;
  flex-direction: column; /* stack label and buttons */
  gap: 8px;
  margin-bottom: 12px;
}

.size-label {
  font-weight: 500;
  font-size: 14px;
  color: var(--color-accent);
}

.size-toggle .size-btn {
  display: inline-block;
  padding: 8px 16px;
  min-width: 80px;
  background: var(--color-background);
  border: 1px solid var(--color-secondary-bg);
  border-radius: 6px;
  font-family: var(--font-primary);
  cursor: pointer;
}

.size-toggle .size-btn.active {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

/* Envelope / product-grid color buttons (use when the button provides a data-color label)
   Buttons that have a `data-color` attribute will render as pills with the circle on the left
   and the label text shown via the ::after pseudo-element. */
.product-grid .color-icon[data-color] {
  min-width: 120px;
  height: 32px;
  padding: 4px 12px 4px 18px; /* left padding so the circle isn't flush */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  background: #F2F0EC; /* match Add-to-Cart disabled */
  border: 1px solid var(--color-text-secondary);
  border-radius: 8px;
  transition: background-color 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.product-grid .color-icon[data-color]::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: static;
  transform: none;
  flex-shrink: 0;
  border: none;
  box-sizing: border-box;
  background-color: var(--color-circle, currentColor);
  margin-left: 8px;
}

.product-grid .color-icon[data-color]::after {
  content: attr(data-color);
  color: var(--color-text-primary);
  font-size: 13px;
  font-family: var(--font-primary);
  font-weight: 400;
}

.product-grid .color-icon[data-color].active {
  /* use the same darker grey / strong border used on envelope selected state */
  background: var(--color-secondary-bg); /* #E6E4E0 */
  border: 1px solid #444;
}

/* Slightly reduce width for the Black and Blue variation pills so they sit a bit narrower */
.product-grid .color-icon[data-color="Black"],
.product-grid .color-icon[data-color="Blue"] {
    min-width: 110px; /* a little smaller than the default 120px */
}

.color-icon:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
}

.color-icon:focus-visible {
    outline: 2px solid var(--color-accent);
    border-radius: 4px;
}

.color-icon.active {
    border: none;
    outline: none;
    box-shadow: none;
}

/* Make cardholder color-option buttons show a visible border both before and after selection.
   The global `.color-icon.active` rule above removes borders for the small circle tokens, but
   cardholder uses rectangular buttons and needs a visible outline. This more-specific selector
   restores and increases contrast for that case. */
#cardholder + .collection-header + .product-grid .color-icon {
  /* Match the disabled Add-to-Cart button background for the unselected pill */
  background: #F2F0EC; /* same as .buy-button:disabled */
  border: 1px solid var(--color-text-secondary);
  color: var(--color-text-primary);
}

#cardholder + .collection-header + .product-grid .color-icon.active {
  /* Slightly darker fill when selected */
  background: #D9D7D3; /* a bit darker grey */
  border: 2px solid #444; /* maintain a strong visible border */
  color: var(--color-text-primary);
}

.color-circle.split {
    overflow: hidden;
}

.color-circle.split::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #09378f; /* Blue */
}

.color-circle.split::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #191919; /* Black */
}

.color-circle.blue {
    background-color: #09378f; /* Blue */
}

.color-circle.grey-blue {
    overflow: hidden;
}

.color-circle.grey-blue::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #D3D3D3; /* Light grey */
}

.color-circle.grey-blue::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #6495ED; /* Light blue */
}

.color-circle.grey-split {
    overflow: hidden;
}

.color-circle.grey-split::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #D3D3D3; /* Light grey */
}

.color-circle.grey-split::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #000000; /* Black */
}

.product-variant {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.2s ease;
}

.product-variant.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.product-envelope {
    position: relative;
}

/* DIY Section */
.diy-section {
    margin-bottom: var(--spacing-xxl);
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background);
    position: relative;
    z-index: 3;
    transform: translate3d(0, 0, 0);
}

.tools-needed {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0 var(--spacing-xxl);
    align-items: start;
}

.tools-needed__separator {
    width: 1px;
    height: 100%;
    background-color: #D3D3D3;
    margin: 0;
}

.tools-needed__section {
    text-align: left;
}

.tools-needed__label {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.tools-needed__icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32px, 1fr));
    gap: var(--spacing-xs);
    align-items: start;
}

.tools-needed__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tools-needed__item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.tools-needed__icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: invert(50%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

.tools-needed__text {
    font-size: 12px;
    color: var(--color-text-secondary);
    text-align: center;
}

.tools-title {
    font-size: 24px;
    line-height: 1.4;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-primary);
    text-align: left;
}

.video-prompt {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-align: center;
    margin: var(--spacing-xs) 0 var(--spacing-xs);
}

@media screen and (max-width: 768px) {
    .product-envelope {
        height: auto; /* Let height be determined by content */
        margin-bottom: var(--spacing-xl); /* Increased spacing between image and text */
    }
    
    .product-envelope img {
        height: auto; /* Let image height scale naturally */
    }

    /* Mobile-specific color option styles */
    .color-options-list {
        gap: 12px;
        padding: 8px 0;
    }
    
    .color-options {
        margin: 8px 0;
    }

    .tools-needed__icons {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }

    .tools-title {
        text-align: center;
    }
    
.tools-needed__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-bottom: var(--spacing-xs);
}
    
    .tools-needed__text {
        font-size: 11px;
    }
}

.diy-section h2.about-section_title {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xs);
}

.diy-section h1.diy-section__title {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-primary);
    max-width: 800px;
}

.tasket-diy_body {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-secondary);
    margin-bottom: calc(var(--spacing-xxl) * 3);
    max-width: 800px;
}

.video-container {
    position: relative;
    padding-top: var(--spacing-md);
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-top: var(--spacing-lg);
}

@media screen and (max-width: 768px) {
    .video-container {
        padding-bottom: 75%; /* Taller aspect ratio for mobile */
    }
}

.video-container .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .diy-section h1 {
        font-size: 32px;
    }
    
    .tasket-diy_body {
        font-size: 14px;
    }
}

.tasket-diy_title {
    font-size: 21.33px;
    line-height: 1.4;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.tasket-diy_body {
    font-size: 16px;
    line-height: 1.4;
    max-width: 33%;
    margin: 0;
    text-align: left;
    letter-spacing: -0.02em;
    color: var(--color-text-secondary);
}

@media (max-width: 600px) {
    .tasket-diy_body {
        max-width: 100%;
        width: 100%;
        margin-top: var(--spacing-md);
        font-size: 14px;
        line-height: 1.6;
        padding-right: 0;
    }
}

.tasket-about_body {
    font-size: 14px;
    line-height: 1.4;
    max-width: 33%;
    margin: 0;
    
    text-align: left;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
}

.tasket-about_body-right {
    font-size: 14px;
    line-height: 1.4;
    max-width: 33%;
    margin: 0;
    text-align: right;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    float: right;
    clear: right;
}

.tasket-diy_video {
    width: 100%;
    height: 792px;
    overflow: hidden;
}

.tasket-diy_video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    padding: var(--spacing-xl) 0;
    background-color: #EEEBE6;
    position: relative;
}

.footer-separator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #D3D3D3;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Location Section */
.footer-section.location {
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.location-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--spacing-sm);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.status-text {
    font-weight: 500;
    color: var(--color-text-primary);
}

.location-time {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.location-address {
    font-style: normal;
    margin-bottom: var(--spacing-md);
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-text-primary);
}

/* Branding Section */
.footer-section.branding {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl) 0;
}

.footer-logo {
    width: 400px;
    height: auto;
    transform: translateY(-20px); /* Slight upward adjustment for visual balance */
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform;
}

.footer-section.branding {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
    transform: translateZ(0);
}

@media screen and (max-width: 991px) {
    .footer-logo {
        width: 300px;
    }
}

@media screen and (max-width: 768px) {
    .footer-logo {
        width: 250px;
        transform: translateY(0);
    }
}

/* Links Section */
.footer-section.links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-md);
    font-size: 12px;
}

.footer-links, .social-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a, .social-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .social-links a:hover {
    color: var(--color-text-primary);
}

.copyright {
    color: var(--color-text-secondary);
    font-size: 10px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }

    .footer-section.location {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-section.links {
        align-items: center;
    }

    .location-status {
        justify-content: center;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-content {
        height: auto; /* Reset height for mobile */
    }
    
    .hero-top {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tasket-brandtext, .tasket-slogan, .tasket-owner {
        margin-bottom: var(--spacing-xs);
        padding-right: 0;
    }
    
    .hero-content {
        justify-content: flex-start;
    }
    
    .hero-title-container {
        width: 100%;
        padding-left: 0;
    }
    
    .hero-h1-text {
        font-size: 24px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .bag-showcase {
        flex-direction: column;
    }
    
    .bag-image {
        height: 300px;
        
    }
    
    .collection-description {
        font-size: 14px;
    }
    
    .about-section {
        flex-direction: column-reverse;
    }
    
    .about_image {
        height: 400px;
    }
    
    .tasket-diy_video {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-h1-text {
        font-size: 20px;
    }
}

/* Pixelation Effect Styles */
.pixelated-render-image {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pixelated-render-image__before {
  padding-top: 75%;
}

.pixelated-render-image__before.is--portrait {
  padding-top: 133.333%;
}

.pixelated-render-image__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

/* Fix for pixelation effect */
.bag-image, .hero-image {
  position: relative;
}

.bag-image [data-pixelate-render-img], .hero-image [data-pixelate-render-img] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.bag-image .pixelated-render-image__before, .hero-image .pixelated-render-image__before {
  position: relative;
  width: 100%;
  z-index: 0;
}

.bag-image [data-pixelate-canvas], .hero-image [data-pixelate-canvas] {
  z-index: 2;
}

/* GSAP Scaling Video Animation Styles */
.resource-wrapper {
  position: relative;
  overflow: hidden;
}

.scaling-element-header {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: var(--spacing-xl) 5vw;
  display: flex;
  position: relative;
}

.scaling-element-header__h2 {
  text-align: center;
  max-width: 9em;
  margin-top: 0;
  margin-bottom: .25em;
  font-size: 5em;
  color: var(--color-text-primary);
  font-weight: 500;
  line-height: 1;
}

.scaling-element-header__eyebrow {
  color: #9d420a;
  text-transform: uppercase;
  font-size: 1.25em;
  font-weight: 400;
}

.scaling-element-video {
  grid-column-gap: 5vh;
  grid-row-gap: 5vh;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 10vh;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: relative;
}

.scaling-element__big-box {
  border-radius: 1em;
  width: 100%;
  position: relative;
}

.scaling-element__small-box {
  border-radius: 1em;
  width: 20em;
  position: relative;
}

.scaling-video__wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.scaling-video {
  will-change: transform;
  border-radius: 0em;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  isolation: isolate;
  transform: translateX(0) rotate(0.001deg);
  z-index: 10; /* Ensure it's above other elements */
}

.scaling-video__before {
  padding-top: 56.25%;
}

.scaling-video__video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  padding-right: 0;
  position: absolute;
  border-radius: inherit;
  pointer-events: auto !important; /* Ensure video is always clickable */
}

.scaling-video__svg {
  color: #fff;
  mix-blend-mode: overlay;
  width: 6.25em;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .scaling-element-header__h1 {
    font-size: 13.5vw;
  }

  .scaling-element__small-box {
    width: 15em;
  }

  .scaling-video__svg {
    width: 5em;
  }
}
