/* Flavours */
.sf-desktop {
    display: grid;
    grid-template-columns: 150px 350px 1fr;
    gap: 58px;
}
.sf-seasons button {
    display: block;
    width: 150px;
    margin-bottom: 24px;
    padding: 16px 24px !important;
    border-radius: 30px;
    border: 1px solid #EEEEEE !important;
    background: #fff !important;
    cursor: pointer;
	color: #595959 !important;
}
.sf-seasons button.active, .sf-seasons button:hover {
    background: #C88A3D !important;
    color: #fff !important;
}
.sf-seasons button.active .sf-icon, .sf-seasons button:hover .sf-icon {
    color: #fff !important;
}
.sf-flavour {
    padding: 0 0 12px 0;
	margin-bottom: 35px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
	line-height: 25px;
	color:  #0C0C0C;
}
.sf-flavour.active, .sf-flavour:hover {
    border-bottom-color: #5E3428;
}
.sf-display img {
    max-width: 100%;
    height: auto;
}

.sf-seasons button.active .sf-icon-img, .sf-seasons button:hover .sf-icon-img {
    filter: invert(100%) sepia(70%) saturate(0) hue-rotate(0) brightness(160%) contrast(100%);
}
.sf-seasons h6, .sf-flavours h2, .sf-display h2 {
	font-size: 28px;
	line-height: 36px;
	margin: 0 0 24px 0;
	color: #0C0C0C;
}
.sf-flavours-wrapper {
	height: 380px;
	/*overflow-y: scroll;
	scrollbar-width: thin;*/
    padding-right: 15px;
}
/* ---------- GLOBAL TRANSITIONS ---------- */
.sf-seasons button,
.sf-flavour {
    transition: 
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}
/* ---------- SEASON BUTTONS ---------- */
.sf-seasons button {
    transform: translateX(0);
}
.sf-seasons button:hover {
    transform: translateX(4px);
}
.sf-seasons button.active {
    box-shadow: 0 6px 18px rgba(194, 139, 71, 0.35);
}
/* ---------- FLAVOUR LIST ---------- */
.sf-flavour {
    opacity: 0;
    transform: translateY(10px);
    animation: sfFadeUp 0.45s ease forwards;
}
.sf-flavour:hover {
    transform: translateX(6px);
}
.sf-flavour.active {
    color: #5E3428;
}
/* ---------- IMAGE AREA ---------- */
.sf-display {
    position: relative;
    overflow: hidden;
}
.sf-image {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
    transition: 
        opacity 0.45s ease,
        transform 0.45s ease;
}
.sf-image.is-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}
/* ---------- TITLE ANIMATION ---------- */
.sf-title {
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.35s ease;
}
.sf-title.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* ---------- KEYFRAMES ---------- */
@keyframes sfFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 990px) {
	.sf-desktop {
		grid-template-columns: 150px 260px 1fr;
        gap: 20px;
	}
}
/* ================= DESKTOP / MOBILE SWITCH ================= */

.sf-mobile { display: none; }
@media (max-width: 767px) {
    .sf-desktop {
        position: relative;
    }

    .sf-mobile {
        display: block;
    }
	.sf-mobile {
        position: relative;
    }

    .sf-mobile-seasons {
    padding: 12px 0;
  }
  .sf-mobile-seasons.is-fixed {
    position: fixed;
    top: var(--mobile-header-height, 66px);
    z-index: 999;
    background: #FFF6EE;
  }
  /* Space so content doesn't jump */
  .sf-mobile-spacer {
    height: 0;
  }
  
  .sf-desktop {
    display: none;
  }
  .sf-mobile h6 {
	  color: #0C0C0C;
  }

  .seasonal-flavours .sf-mobile-seasons {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 0;
    background: #FFF6EE;
    z-index: 999;
  }

  .seasonal-flavours .sf-mobile-seasons.is-fixed {
    position: fixed;
    top: var(--mobile-header-height, 66px);
     box-sizing: border-box;        
    width: auto !important;
    margin-bottom: 0;
    z-index: 999;
  }

  /* when pinned, bar is absolutely positioned INSIDE .sf-mobile */
  .seasonal-flavours .sf-mobile-seasons.is-pinned {
    position: absolute;
    left: 0;
    right: 0;
    width: auto !important;
    margin-bottom: 0;
    z-index: 2;
  }

  .seasonal-flavours .sf-mobile-spacer { height: 0; }

  /* end marker exists for measurements */
  .seasonal-flavours .sf-mobile-bottom { height: 1px; margin-top: 32px;}
  .seasonal-flavours { position: relative; overflow-x: clip; }
  .seasonal-flavours .sf-mobile { position: relative; }
  
}

:root {
  --mobile-header-height: 66px;
}
/* ================= MOBILE LAYOUT ================= */
.sf-mobile-seasons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
	justify-content: space-evenly;
}
.sf-mobile-seasons button {
	padding: 0 !important;
	border: 0;
	border-radius: 0 !important;
    background: transparent !important;
}
.sf-mobile-seasons button .img-wrapper {
    width: 56px;
	height: 56px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff !important;
	padding: 18px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sf-mobile-seasons button.active .img-wrapper {
	background: #c28b47 !important;
}
.sf-mobile-seasons button .sf-label {
	font-size: 14px;
	color: #595959;
	margin-top: 12px;
	display: block;
}
.sf-mobile-seasons button.active .sf-label {
    color: #5E3428 !important;
}
.sf-mobile-seasons button.active img {
    filter: invert(100%) sepia(70%) saturate(0) hue-rotate(0) brightness(160%) contrast(100%);
}
.sf-mobile-seasons img {
    max-width: 60px !important;
}
.sf-mobile-cards {
    display: grid;
    gap: 6px;
}
.sf-mobile-card {
    background: #FFF1E0;
    padding: 16px;
    border-radius: 24px;
	display: flex;
    gap:12px;
}
.sf-mobile-card img {
	border-radius: 8px !important;
    float: none !important;
    width: auto;
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px)!important;
    display:block;
}
.sf-mobile-card h4 {
	font-size: 14px;
	font-family: "DM Sans", Sans-serif;
    line-height: 20px;
    float: none !important;
    width: auto;
    flex: 1 1 50%;
    margin: 0;
}

.sf-flavours-wrapper .simplebar-track.simplebar-vertical{
    width: 6px; 
}



@media only screen and (max-width: 377px) {
    .seasonal-flavours .sf-mobile { position: relative; }
	.sf-mobile-seasons {
		gap: 9px;
	}
	.sf-mobile-seasons button .sf-label {
		font-size: 12px;
	}
}

/* Flavours end here */ 