/* ============================================================
CALORIES CALCULATOR - ORGANIZED CSS
============================================================ */
/* ------------------------------------------------------------
BASE STYLES
------------------------------------------------------------ */
@media all and (min-width:1570px){

.module-calories-calculator{
height: 100vh;
}
}
@media all and (min-width:992px){
[data-calculator] .results-card-wrapper{
border-left: 1px solid var(--primary-night);

}
[data-calculator] .results-card-wrapper{
position: absolute !important;
    z-index: 2;
    background: transparent;
    height: 100%;
    top: 0;
    right: 0;
    width: 33.73%;
    box-shadow: -12px 0px 10px -10px rgba(0, 0, 0, 0.25);
}
#drinksapp{
position: relative;
}
  .module-calories-calculator{
    
    justify-content: center;
    align-items: center;
    position:relative;
  }
  [data-calculator] .toggle-view{
    margin-top:24px;
  }
  [data-calculator] .drink-item {
    width:96%;
  }
}
[data-calculator] .info-modal-body p{
padding-right:10px;
}
.module-calories-calculator, .image-and-text{
  transition: opacity 0.7s ease-in-out;
}
.module-calories-calculator .info-modal-body {
  max-height: 200px;
  overflow-y: auto;
}
[data-calculator] .drink-item__wrapper{
scrollbar-width: thin;
}
.module-calories-calculator {
  background: var(--primary-natural);
  padding: 80px 0;
  display: none;
  opacity: 0;
}
.module-calories-calculator .module-calories-calculator__content h2 {
  margin-bottom: 8px;
  font-weight: 400;
}
.module-calories-calculator .description {
  font-size: var(--body-small-fs);
  font-weight: 300;
  line-height: 28px;
  color: var(--primary-night);
}
.module-calories-calculator .description p:last-child {
  margin-bottom: 0;
}
[data-country-code="us"] .result-alert{
  border: 1px solid #BBBEF4 !important;
  background: #E4E5FE !important;
}
[data-country-code="us"] .alert-button-learn{
  background: #A6A9EC !important;
}
[data-country-code="us"] .alert-icon,[data-country-code="us"] .total-values span{
  display:none !important;
}
[data-country-code="us"] .progress-fill.good{
  background: #BBBEF4 !important;
}
[data-country-code="us"] .progress-bar-custom{
  background: #E9F3FE !important;
}
[data-country-code="us"] .alert-message{
  display:none;
}
/* ------------------------------------------------------------
HEADER & LAYOUT
------------------------------------------------------------ */
[data-calculator] .header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
  background: transparent !important;
}
[data-calculator] .carousel-content-wrapper {
  display: flex;
  align-items: start;
}
[data-calculator] .carousel-section-wrapper {
  flex: 0 0 66.66666667%;
  width: 66.66666667%;
  position: relative;
}
/* ------------------------------------------------------------
TOGGLE VIEW
------------------------------------------------------------ */
[data-calculator] .toggle-view {
  background: var(--primary-white);margin-top: 24px;
  border-radius: 10px;
  padding: 4px;
  display: inline-flex;
  gap: 4px;
  border: 1px solid #011013;
}
[data-calculator] .toggle-btn {
  padding: 8px 20px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  transition: all 0.3s;
  color: var(--primary-carbon);
  font-family: var(--font-regular);
}
[data-calculator] .toggle-btn.active {
  background: var(--primary-yellow);
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}
/* ------------------------------------------------------------
DRINKS LIST TITLE
------------------------------------------------------------ */
.drinks-list-title-mobile {
  display: none !important;
  color: #011013;
  cursor: pointer;
  font-weight: 500;
}
.drinks-list-title-mobile:hover {
  text-decoration: none;
}
[data-calculator] .drinks-list-title {
  color: var(--primary-night);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -0.32px;
  margin-bottom: 24px;
  display: flex;
  font-family: var(--font-regular);
}
/* ------------------------------------------------------------
SWIPER/CAROUSEL
------------------------------------------------------------ */
[data-calculator] .swiper {
  width: 100%;
}
[data-calculator] .swiper-wrapper {
  display: flex;
}
[data-calculator] .swiper-slide {
  width: auto;
  flex-shrink: 0;
}
[data-calculator] .swiper-pagination {
  position: relative;
  margin-top: 20px;
}
[data-calculator] .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  width: 10px;
  height: 10px;
}
[data-calculator] .swiper-pagination-bullet-active {
  background: #1a1a1a;
}
/* ------------------------------------------------------------
DRINK CARDS
------------------------------------------------------------ */
[data-calculator] .drink-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #00090B;
  height: 100%;
}
[data-calculator] .drink-icon {
  background: #E4E5FE;
  text-align: center;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
[data-calculator] .drink-icon img {
  object-fit: contain;
  width: fit-content;
  height: 140px;
}
[data-calculator] .drink-icon svg {
  width: 100px;
  height: 100px;
}
[data-calculator] .drink-details {
  background: var(--primary-lightest-yellow);
  padding: 20px;
  border-top: 1px solid #00090B;
}
[data-calculator] .drink-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 8px;
}
[data-calculator] .drink-name {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-night);
  line-height: 24px;
  font-family: var(--font-regular);
}
/* ------------------------------------------------------------
ABV BADGE & INPUT
------------------------------------------------------------ */
[data-calculator] .abv-badge {
  display: flex;
  align-items: center;
  gap: 5px;
}
[data-calculator] .abv-input {
  border: 1px solid var(--functional-dark-gray);
  text-align: center;
  font-weight: 400;
  background: white;
  font-size: 16px;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58px;
}
[data-calculator] .abv-input:focus {
  outline: 2px solid #d4ed8f;
  border-color: #d4ed8f;
}
[data-calculator] .abv-input::-webkit-outer-spin-button,
[data-calculator] .abv-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
[data-calculator] .abv-input[type="number"] {
  -moz-appearance: textfield;
}
/* ------------------------------------------------------------
DRINK TYPES
------------------------------------------------------------ */
[data-calculator] .drink-type:first-child {
  padding-top: 0;
}
[data-calculator] .drink-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 5px;
}
[data-calculator] .drink-type:last-child {
  border-bottom: none;
}
[data-calculator] .type-info {
  display: flex;
  gap: 8px;
  align-items: center;
}
[data-calculator] .type-name {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-carbon);
}
[data-calculator] .type-volume {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-carbon);
}
/* ------------------------------------------------------------
QUANTITY CONTROL
------------------------------------------------------------ */
[data-calculator] .quantity-control {
  display: flex;
  align-items: center;
  background: var(--primary-white);
  padding: 0 6px;
  border: 1px solid var(--primary-optimistic-cool);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
  border-radius: 25px;
  width: 82px;
  height: 30px;
  justify-content: center;
}
[data-calculator] .qty-btn {
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--primary-carbon);
  border: none;
}
[data-calculator] .qty-btn:hover {
  background: #f0f0f0;
  border-color: #999;
}
[data-calculator] .qty-display {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  height: 20px;
  width: 17px;
  color: var(--primary-carbon);
}
/* ------------------------------------------------------------
NAVIGATION BUTTONS
------------------------------------------------------------ */
[data-calculator] .swiper-slide:last-child {
  padding-right: 16px;
}
[data-calculator] .nav-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
[data-calculator] .nav-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--primary-night);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
[data-calculator] .nav-btn:hover:not(.swiper-button-disabled) {
  background: #f0f0f0;
  border-color: #999;
}
[data-calculator] .nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
/* ------------------------------------------------------------
RESULTS SECTION
------------------------------------------------------------ */
[data-calculator] .results-card-wrapper {
  position: relative;
  padding: 80px 0 0 32px;
}
[data-calculator] .results-card-wrapper:before {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  background: var(--primary-night);
  top: -24px;
  left: 0;
  z-index: 1;
  top: 0;
  bottom: 0;
  display:none;
}
[data-calculator] .results-card {
  border-radius: 20px;
  border: 1px solid var(--primary-night);
  background: var(--primary-white);
  margin-bottom: 24px;
  padding: 20px;
  min-height: 270px;
}
/* ------------------------------------------------------------
DRINK ITEMS IN RESULTS
------------------------------------------------------------ */
[data-calculator] .drink-item {
  background: var(--primary-lightest-yellow);
  border: 1px solid var(--primary-night);
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
[data-calculator] .drink-item-icon {
  width: 52px;
  height: 39px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  overflow: hidden;
  background: #E4E5FE;
}
[data-calculator] .drink-item-icon img {
  /* width: 100%; */
  height: 80%;
  object-fit: contain;
}
[data-calculator] .drink-item-details {
  flex: 1;
}
[data-calculator] .drink-item-name {
  color: var(--primary-night);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  font-family: var(--font-regular);
}
[data-calculator] .drink-item-stats {
  color: var(--primary-carbon);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
[data-calculator] .remove-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--primary-night);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
[data-calculator] .remove-btn:hover {
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.10);
}
/* ------------------------------------------------------------
EMPTY STATE
------------------------------------------------------------ */
[data-calculator] .empty-state {
  text-align: center;
}
[data-calculator] .empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}
[data-calculator] .empty-text {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--primary-carbon);
  line-height: 24px;
  font-family: var(--font-regular);
}
[data-calculator] .empty-subtext {
  /* color: var(--primary-carbon); */
  color: var(--primary-night);
  line-height: 28px;
  font-weight: 300;
  font-size: 16px;
}
[data-calculator] .empty-subtext p {
  margin-bottom: 8px;
}
[data-calculator] .empty-subtext p:last-child {
  margin-bottom: 0;
}
/* ------------------------------------------------------------
TOTAL SECTION
------------------------------------------------------------ */
[data-calculator] .total-section {
  margin-top: 40px;
  border-top: 1px solid rgba(0, 9, 11, 0.10);
  padding-top: 8px;
}
[data-calculator] .total-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
[data-calculator] .total-label {
  font-size: 16px;
  font-weight: 500;
  color: #666;
}
[data-calculator] .total-values {
  font-size: 16px;
  font-weight: 700;
  color: #00090B;
}
/* ------------------------------------------------------------
PROGRESS BAR
------------------------------------------------------------ */
[data-calculator] .progress-container {
  margin-bottom: 20px;
  margin-top: 16px;
}
[data-calculator] .progress-bar-custom {
  width: 100%;
  height: 8px;
  background: #E9F3FE;
  border-radius: 10px;
  overflow: hidden;
}
[data-calculator] .progress-fill {
  height: 100%;
  border-radius: 10px;
  transition: all 0.3s ease;
}
[data-calculator] .progress-fill.good {
  background: var(--secondary-dark-mint);
}
[data-calculator] .progress-fill.warning {
  background: var(--secondary-dark-mint);
}
[data-calculator] .progress-fill.danger {
  background: #F3300E;
}
/* ------------------------------------------------------------
ALERTS
------------------------------------------------------------ */
[data-calculator] .result-alert {
  border-radius: 12px;
  flex-direction: column;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  border-radius: 14px;
}
[data-calculator] .alert-wrapper {
  display: flex;
  gap: 12px;
  width: 100%;
}
[data-calculator] .result-alert.good {
  border: 1px solid var(--secondary-dark-mint);
  background: #f1fdf9;
}
[data-calculator] .result-alert.warning {
  border: 1px solid var(--secondary-dark-mint);
  background: #f1fdf9;
}
[data-calculator] .result-alert.danger {
  border: 1px solid var(--secondary-dark-tangerine);
  background: #FDDFD0;
}
[data-calculator] .alert-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 16px;
}
[data-calculator] .alert-content {
  flex: 1;
}
[data-calculator] .alert-message {
  color: var(--primary-night);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: -0.32px;
  margin-bottom: 24px;
}
[data-calculator] .alert-button {
  background: #f44336;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
}
[data-calculator] .alert-button:hover {
  background: #d32f2f;
}

[data-country-code="us"] .result-alert.danger .alert-button {
background: #A6A9EC !important
}
[data-calculator] .result-alert.danger .alert-button {
  border-radius: 40px;
  border: 1px solid var(--primary-night);
  background: #F3300E;
  display: flex;
  padding: 9px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: var(--primary-night);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  font-family: var(--font-regular);
  text-align:center;
}
[data-calculator] .alert-button-learn {
font-family: var(--font-regular);
  border-radius: 40px;
  border: 1px solid var(--primary-night);
  background: #AAE9D3;
  display: flex;
  padding: 9px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: var(--primary-night);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
[data-calculator] .alert-button-learn:hover {
  background: #e3f2fd;
}
/* ------------------------------------------------------------
BUTTONS
------------------------------------------------------------ */
[data-calculator] .btn-custom {
  border: 1px solid var(--functional-dark-gray);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  width: 100%;
  line-height: 24px;
  color: #000;
  display: flex;
  padding: 9px 18px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex: 1 0 0;
  border-radius: 40px;
  font-family: var(--font-regular);
}
[data-calculator] .btn-custom-wrapper {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
[data-calculator] .btn-primary-custom {
  background: var(--functional-dark-gray);
  pointer-events: none;
}
[data-calculator] .btn-primary-custom.btn-enabled {
  background: var(--primary-carbon);
  color: var(--primary-white);
}
[data-calculator] .btn-primary-custom.btn-enabled:hover, [data-calculator] .btn-primary-custom.btn-enabled:focus-visible {
  color: var(--primary-carbon);
  background: #f5f5f5;
}
[data-calculator] .btn-primary-custom.btn-enabled,
[data-calculator] .btn-secondary-custom.btn-enabled {
  pointer-events: auto;
  border: 1px solid #011013;
}
[data-calculator] .btn-secondary-custom {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #e0e0e0;
  pointer-events: none;
}
[data-calculator] .btn-secondary-custom:hover,
[data-calculator] .btn-primary-custom:not([disabled]):hover {
  background: #f5f5f5;
}
/* ------------------------------------------------------------
WARNING BOX
------------------------------------------------------------ */
[data-calculator] .warning-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
[data-calculator] .warning-box .warning-icon{
  display: block;
  margin-top: -9px;
}
[data-calculator] .warning-box .warning-icon:focus-visible, [data-calculator] .warning-box .warning-icon:focus-within {
  outline: 2px dotted var(--primary-carbon);
  outline-offset: 2px;
}
[data-calculator] .warning-text {
  color: var(--primary-carbon);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
[data-calculator] .warning-text p {
  font-family: var(--font-regular);
  margin-bottom: 0;
}
/* ------------------------------------------------------------
MODALS
------------------------------------------------------------ */
[data-calculator] .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
[data-calculator] .modal-overlay:before {
  content: '';
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.4;
  background: var(--primary-carbon);
  z-index: -1;
}
[data-calculator] .modal-content {
  display: flex;
  width: 403px;
  padding: 40px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--primary-white);
  border-radius: 24px;
}
[data-calculator] .modal-title {
  color: var(--primary-night);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
[data-calculator] .modal-subtitle {
  color: var(--primary-night);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}
[data-calculator] .modal-buttons {
  display: flex;
  gap: 16px;
}
[data-calculator] .modal-btn {
  display: flex;
  padding: 9px 18px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 40px;
  border: 1px solid var(--primary-carbon);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--primary-night);
}
[data-calculator] .modal-btn-secondary {
  background: var(--primary-carbon);
  color: var(--primary-white);
}
[data-calculator] .modal-btn-primary:hover {
  background: #333;
  color: var(--primary-white);
}
[data-calculator] .modal-btn-primary {
  background: transparent;
}
[data-calculator] .modal-btn-secondary:hover {
  background: #e0e0e0;
  color: var(--primary-night);
}
/* Info Modal */
[data-calculator] .info-modal-content {
  width: 657px;
  padding: 40px;
  border-radius: 24px;
  background: var(--primary-white);
  position: relative;
}
[data-calculator] .info-modal-header {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
[data-calculator] .info-modal-header .info-icon-large svg{
    vertical-align: baseline;

}
[data-calculator] .info-modal-title {
  color: var(--primary-night);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  font-family: var(--font-regular);
  padding-right: 23px;
  margin-bottom: 8px;
}
[data-calculator] .title-icon-wrapper{
  column-gap: 8px;
  margin-bottom: 24px;
}
[data-calculator] .info-modal-body p {
  color: var(--primary-carbon);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}
[data-calculator] button.close-modal-btn {
  background: none;
  border: 0;
  position: absolute;
  right: 30px;
  top: 30px;
  height: 30px;
  width: 30px;
}
/* ------------------------------------------------------------
VIEW LOADER
------------------------------------------------------------ */
[data-calculator] .view-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(4px);
}
[data-calculator] .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #1a1a1a;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ------------------------------------------------------------
SKELETON LOADER
------------------------------------------------------------ */
[data-calculator] .skeleton-container {
  max-width: 1168px;
}
[data-calculator] .skeleton-loader {
  background: var(--primary-natural);
  position: absolute;
  z-index: 11;
}
/* Header Skeleton */
[data-calculator] .skeleton-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
[data-calculator] .skeleton-header-content {
  flex: 1;
}
[data-calculator] .skeleton-title {
  height: 40px;
  width: 300px;
  background: linear-gradient(90deg, #e0e0e0 25%, #d0d0d0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 16px;
}
[data-calculator] .skeleton-description {
  height: 20px;
  width: 500px;
  background: linear-gradient(90deg, #e0e0e0 25%, #d0d0d0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 8px;
}
[data-calculator] .skeleton-description:last-child {
  width: 400px;
}
/* Toggle Skeleton */
[data-calculator] .skeleton-toggle {
  background: var(--primary-white);
  border-radius: 10px;
  padding: 4px;
  display: flex;
  gap: 4px;
  border: 1px solid var(--primary-night);
  width: 200px;
}
[data-calculator] .skeleton-toggle-btn {
  height: 40px;
  flex: 1;
  background: linear-gradient(90deg, #f0f0d0 25%, #e0e0c0 50%, #f0f0d0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
/* Content Wrapper */
[data-calculator] .skeleton-content-wrapper {
  display: flex;
  align-items: start;
  gap: 32px;
}
/* Carousel Section */
[data-calculator] .skeleton-carousel-section {
  flex: 0 0 66.66666667%;
  width: 66.66666667%;
  position: relative;
}
[data-calculator] .skeleton-cards {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  overflow: hidden;
}
[data-calculator] .skeleton-card {
  background: white;
  border-radius: 16px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  height: 400px;
  overflow: hidden;
}
[data-calculator] .skeleton-card-icon {
  background: #E4E5FE;
  height: 160px;
  background: linear-gradient(90deg, #d4d5ee 25%, #c4c5de 50%, #d4d5ee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
[data-calculator] .skeleton-card-details {
  background: var(--primary-lightest-yellow);
  padding: 20px;
  height: calc(100% - 160px);
}
[data-calculator] .skeleton-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
[data-calculator] .skeleton-card-title {
  height: 24px;
  width: 120px;
  background: linear-gradient(90deg, #e0e0d0 25%, #d0d0c0 50%, #e0e0d0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
[data-calculator] .skeleton-abv {
  height: 32px;
  width: 80px;
  background: linear-gradient(90deg, #e0e0d0 25%, #d0d0c0 50%, #e0e0d0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
[data-calculator] .skeleton-drink-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
[data-calculator] .skeleton-type-info {
  display: flex;
  gap: 8px;
  flex: 1;
}
[data-calculator] .skeleton-type-name,
[data-calculator] .skeleton-type-volume {
  height: 20px;
  background: linear-gradient(90deg, #e0e0d0 25%, #d0d0c0 50%, #e0e0d0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
[data-calculator] .skeleton-type-name {
  width: 80px;
}
[data-calculator] .skeleton-type-volume {
  width: 60px;
}
[data-calculator] .skeleton-quantity-control {
  width: 82px;
  height: 30px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 25px;
}
/* Navigation Buttons Skeleton */
[data-calculator] .skeleton-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
[data-calculator] .skeleton-nav-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border: 1px solid var(--primary-night);
}
/* Results Section Skeleton */
[data-calculator] .skeleton-results-section {
  flex: 1;
  position: relative;
}
[data-calculator] .skeleton-results-section::before {
  position: absolute;
  content: '';
  width: 1px;
  height: calc(540px + 24px);
  background: var(--primary-night);
  top: -24px;
  left: -32px;
}
[data-calculator] .skeleton-results-card {
  border-radius: 20px;
  border: 1px solid var(--primary-night);
  background: var(--primary-white);
  padding: 20px;
  margin-bottom: 30px;
  min-height: 344px;
}
[data-calculator] .skeleton-empty-icon,
[data-calculator] .skeleton-empty-text,
[data-calculator] .skeleton-empty-subtext {
  background: linear-gradient(90deg, #e0e0e0 25%, #d0d0d0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
[data-calculator] .skeleton-empty-icon {
  width: 64px;
  height: 64px;
  margin: 40px auto 16px;
  border-radius: 50%;
}
[data-calculator] .skeleton-empty-text {
  height: 24px;
  width: 200px;
  margin: 0 auto 32px;
}
[data-calculator] .skeleton-empty-subtext {
  height: 16px;
  width: 280px;
  margin: 0 auto 8px;
}
[data-calculator] .skeleton-empty-subtext:last-child {
  width: 250px;
}
/* Buttons Skeleton */
[data-calculator] .skeleton-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  z-index: 1;
  position: relative;
}
[data-calculator] .skeleton-btn {
  height: 42px;
  flex: 1;
  background: linear-gradient(90deg, #e0e0e0 25%, #d0d0d0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 40px;
}
/* Warning Box Skeleton */
[data-calculator] .skeleton-warning {
  display: flex;
  gap: 12px;
  z-index: 1;
  position: relative;
  align-items: flex-start;
}
[data-calculator] .skeleton-warning-icon {
  width: 14px;
  height: 14px;
  background: linear-gradient(90deg, #e0e0e0 25%, #d0d0d0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 50%;
  flex-shrink: 0;
}
[data-calculator] .skeleton-warning-text {
  flex: 1;
}
[data-calculator] .skeleton-warning-line {
  height: 16px;
  width: 100%;
  background: linear-gradient(90deg, #e0e0e0 25%, #d0d0d0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 8px;
}
[data-calculator] .skeleton-warning-line:last-child {
  width: 80%;
}
/* Shimmer Animation */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ============================================================
MEDIA QUERIES
============================================================ */
/* ------------------------------------------------------------
TABLET (max-width: 991.98px)
------------------------------------------------------------ */
@media all and (max-width: 1024px) {
[data-calculator] .drink-item{
width: 96%;
}
    [data-calculator] .drink-item__wrapper {
        height: 130px !important;
        overflow: auto;
    }

[data-calculator] .total-section{
margin-top: 10px;
}
}
@media all and (min-width:768px) and (max-width:992px){
.image-and-text .image-wrapper img{
object-fit: cover !important;
}
#drinksapp{
position:relative;
}
[data-calculator] .results-card-wrapper{
position: absolute;
    z-index: 5;
    right: 0;
    top: 0;
    width: 42%;
    border-left: 1px solid var(--primary-night);
    height:100%;
}
}
@media all and (max-width: 991.98px) {
  [data-calculator] .skeleton-loader{
    width: 100%;
    padding-right: 32px;
  }
  [data-calculator] .drink-item__wrapper {
    height: 120px;
    overflow: auto;
  }
  [data-calculator] .carousel-section-wrapper,
  [data-calculator] .skeleton-carousel-section {
  flex: 0 0 58% !important;
        width: 57% !important;
        position: relative;
        position: relative;
    width: 55% !important;
    position: relative;
  }
  [data-calculator] .skeleton-card {
    min-width: 290px;
  }
}
@media all and (min-width: 991.98px) {
  /* .module-calories-calculator{
  height: 92vh;
  align-items:center;
} */
  [data-calculator] .drink-item__wrapper {
    height: 187px;
    overflow: auto;
  }
  [data-calculator] .swiper-wrapper {
    padding-top: 24px;
  }
}
/* ------------------------------------------------------------
MOBILE (max-width: 767.98px)
------------------------------------------------------------ */
@media screen and (max-width: 991px) and (orientation: landscape) {
[data-calculator] .header{
padding-right:20px;
}
  [data-calculator] .results-card-wrapper{
   
    justify-content: center;
    display: flex;
  }
  [data-calculator] .warning-box{
    justify-content: center;
  }
  [data-calculator] .results-card-wrapper > div:first-child, [data-calculator] .alert-button-learn{
    width: 100%;
  }
  [data-calculator] .info-modal-content {
    width: 90% !important;
  }
  [data-calculator] .btn-custom-wrapper{
    margin-top: 16px;
  }
}
@media (max-width: 767.98px) {
.module-calories-calculator .info-modal-body{
padding-right: 10px;
}
  [data-calculator] .drink-header, [data-calculator] .drink-type{
    margin-bottom: 8px;
  }
  [data-calculator] .drink-type:last-child{
    margin-bottom: 0px;
  }
  .image-and-text .row{
    flex-direction: column-reverse;
    gap: 30px;
  }
  [data-calculator] .nav-btn{
    width: 56px;
    height: 56px;
  }
  [data-calculator] .nav-btn svg{
    width: 21px;
    height: 21px;
  }
  [data-calculator] .btn-custom-wrapper{
    margin-top: 16px;
  }
  [data-calculator] button.close-modal-btn{
    right: 16px;
    top: 16px;
  }
  /* General Layout */
  .module-calories-calculator {
    padding: 40px 0 !important;
    padding-bottom: 0 !important;
    min-height: 99vh;
  }
  [data-calculator] .skeleton-cards{
    gap: 12px;
  }
.module-calories-calculator .module-calories-calculator__content h2, .module-calories-calculator .description {
    display: none;
  }
  .module-calories-calculator .container-fluid {
  }
  .module-calories-calculator .header {
    margin-bottom: 32px;
  }
  /* Drinks List Title */
  .drinks-list-title-desktop {
    display: none !important;
  }
  .drinks-list-title-mobile {
    display: flex !important;
  }
  /* Header */
  [data-calculator] .header {
    flex-direction: column;
    gap: 20px;
  }
  [data-calculator] .modal-buttons{
    flex-direction: column;
    width: 100%;
  }
  [data-calculator] .modal-title{
    text-align: center;
    font-family: var(--font-regular);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.32px;
    margin-bottom: 8px;
  }
  [data-calculator] .modal-subtitle{
    color: var(--primary-carbon);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    margin-bottom: 32px;
  }
  [data-calculator] .modal-content{
    width:327px;
  }
  [data-calculator] .modal-content{
    padding:24px;
  }
  [data-calculator] .summary-modal-content {
    display: flex;
    width: 347px;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    background: var(--primary-white);
    border-radius: 20px;
    border: 1px solid var(--primary-carbon);
    position: relative;
  }
  [data-calculator] .summary-modal-content button.close-modal-btn{
    right: 20px;
    top: 20px;
  }
  [data-calculator] .summary-modal-title {
    color: #0F172B;
    font-family: var(--font-regular);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: -0.32px;
  }
  [data-calculator] .summary-modal-body .total-header{
    margin-bottom: 0
  }
  [data-calculator] .summary-modal-body .total-section{
    padding-bottom:0;
  }
  [data-calculator] .summary-modal-body .total-label{
    color: #45556C;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.312px;
  }
  [data-calculator] .summary-modal-body .total-values{
    color: #0F172B;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.312px;
  }
  [data-calculator] .summary-modal-body{
    width:100%;
  }
  /* Toggle */
  [data-calculator] .toggle-view {
    width: 100%;
  }
  [data-calculator] .toggle-btn {
    flex: 1;
    padding: 8px 20px;
    font-size: 14px;
  }
  /* Carousel Layout */
  [data-calculator] .carousel-content-wrapper {
    flex-direction: column;
    justify-content: space-between;
    height: 86vh;
    width: calc(100vw - 16px);
  }
  [data-calculator] .carousel-section-wrapper {
    flex: 1 !important;
    width: 100% !important;
    padding-bottom: 55px;
  }
  [data-calculator] .skeleton-empty-subtext, [data-calculator] .skeleton-empty-subtext,[data-calculator] .skeleton-empty-icon{
    display:none;
  }
  [data-calculator] .skeleton-results-card{
    min-height: auto;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  /* Drink Cards */
  [data-calculator] .drink-card {
    display: flex;
    border-radius: 12px;
  }
  [data-calculator] .drink-icon {
    height: auto;
    width: 225px;
    border-right: 1px solid var(--primary-night);
    border-radius: 12px 0 0 12px;
    min-height: 175px;
  }
  [data-calculator] .drink-icon img {
    object-fit: cover;
    width: auto;
  }
  [data-calculator] .drink-details {
    padding: 12px 16px;
    width: 100%;
    border-top:unset;
  }
  [data-calculator] .drink-name {
    font-size: 18px;
  }
  [data-calculator] .abv-input {
    max-width: 50px;
  }
  [data-calculator] .abv-badge {
    font-size: 16px;
  }
  [data-calculator] .type-name,
  [data-calculator] .type-volume {
    color: var(--primary-night);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
  }
  [data-calculator] .drink-item__wrapper {
    height: 150px;
    overflow: auto;
  }
  /* Drink Items */
  [data-calculator] .drink-item {
    flex-direction: row;
    width:97%;
    align-items: flex-start;
  }
  [data-calculator] .remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
  }
  /* Results Section */
  [data-calculator] .results-card-wrapper {
    padding: 0;
    padding-right: calc(var(--bs-gutter-x));
    padding-bottom: 20px;
    width: 100%;
  }
  [data-calculator] .results-card-wrapper::before {
    display: none;
  }
  [data-calculator] .results-card-wrapper::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100vw;
    background: var(--primary-white);
    z-index: 0;
    left: -16px;
    top: 0;
  }
  [data-calculator] .results-card-wrapper > div:first-child {
    position: relative;
    z-index: 1;
  }
  [data-calculator] .results-card {
    border: 0;
    border-radius: 0;
    min-height: auto;
    margin: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  [data-calculator] .results-card::before {
    position: absolute;
    content: '';
    height: 1px;
    width: 100vw;
    background: var(--primary-night);
    top: 0;
    left: -16px;
    z-index: 1;
    display: flex;
  }
  /* Empty State */
  [data-calculator] .empty-icon,
  [data-calculator] .empty-subtext {
    display: none;
  }
  [data-calculator] .info-modal-body p{
    color: var(--primary-carbon);
    font-family: var(--font-light);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
/*     display: flex; */ 
    flex-direction: column;
  }
  [data-calculator] .info-modal-body p:lastichild{
    margin-bottom:0;
  }
  [data-calculator] .info-modal-content{
    padding: 16px;
    width: 327px;
  }
  [data-calculator] .empty-state {
    padding: 0 !important;
  }
  [data-calculator] .empty-text {
    margin-bottom: 12px !important;
  }
  /* Modal */
  [data-calculator] .info-modal-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    padding-right: 40px;
  }
  /* Skeleton Styles */
  [data-calculator] .skeleton-loader {
    width: 100%;
    left: 0;
    padding-left: 16px;
  }
  [data-calculator] .skeleton-container {
    padding-right: 16px;
  }
  [data-calculator] .skeleton-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-right: 16px;
  }
  [data-calculator] .skeleton-title {
    width: 250px;
    height: 32px;
  }
  [data-calculator] .skeleton-description {
    width: 100%;
  }
  [data-calculator] .skeleton-toggle {
    width: 100%;
  }
  [data-calculator] .skeleton-content-wrapper {
    flex-direction: column;
    gap: 0;
  }
  [data-calculator] .skeleton-carousel-section {
    flex: 1 !important;
    width: 100% !important;
    padding-bottom: 80px;
  }
  [data-calculator] .skeleton-card {
    display: flex;
    min-width: 334px;
    height: auto;
  }
  [data-calculator] .skeleton-card-icon {
    width: 170px;
    height: auto;
    min-height: 150px;
    border-radius: 12px 0 0 12px;
  }
  [data-calculator] .skeleton-card-details {
    flex: 1;
    padding: 12px 16px;
  }
  [data-calculator] .skeleton-results-section {
    padding-left: 0;
    width: 100%;
    padding-right: 16px;
  }
  [data-calculator] .skeleton-results-section::before {
    display: none;
  }
  [data-calculator] .skeleton-results-section::after {
    content: '';
    height: 100%;
    width: 100vw;
    background: var(--primary-white);
    position: absolute;
    top: 1px;
    left: -16px;
  }
  [data-calculator] .skeleton-results-card {
    border: 0;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    z-index: 1;
  }
  [data-calculator] .skeleton-results-card::before {
    position: absolute;
    content: '';
    height: 1px;
    width: 100vw;
    background: var(--primary-night);
    top: 0;
    left: -15px;
  }
  [data-calculator] #drinksapp {
    padding: 24px;
  }
  drink-item__wrapper {
    height: 245px;
    overflow: auto;
  }
}
