/** Shopify CDN: Minification failed

Line 360:0 Expected "}" to go with "{"

**/
/*
  Fișier: gdc-product-card.css
  Locație în Shopify: assets/gdc-product-card.css
  Includere în layout/theme.liquid:
    {{ 'gdc-product-card.css' | asset_url | stylesheet_tag }}
  
  Dependențe: Bootstrap 5 (trebuie încărcat înainte)
*/

/* =============================================
   VARIABILE
   ============================================= */
:root {
  --gdc-card-bg-color: #ffffff;
  --gdc-curve-color: #D5ED9F;
  --gdc-main-border-radius: 20px;
  --gdc-accent-color: #17AAC7; 
}

/* =============================================
   CARD CONTAINER
   ============================================= */
.gdc-product-card {
  background-color: var(--gdc-card-bg-color);
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.25));
  position: relative;
  z-index: 1;
  overflow: visible !important;
  display: flex;
  flex-direction: column;
}

/* =============================================
   COLUMN COUNT CARUSEL - RESPONSIVE
   ============================================= */
.resource-list.resource-list__carousel {
  --column-count: 1 !important;
  --mobile-card-size: 100cqw !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

@media (min-width: 576px) {
  .resource-list.resource-list__carousel {
    --column-count: 2 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* Tabletă */
@media (min-width: 768px) {
  .resource-list.resource-list__carousel {
    --column-count: 2 !important;
  }
}

/* Laptop */
@media (min-width: 1200px) {
  .resource-list.resource-list__carousel {
    --column-count: 3 !important;
  }
}

/* Desktop mare */
@media (min-width: 1700px) {
  .resource-list.resource-list__carousel {
    --column-count: 4 !important;
  }
}

.resource-list__item {
  overflow: visible !important;
  padding-top: 15px !important;
  padding-bottom: 60px !important;
  padding-left: 5px !important;   /* ← adăugat */
  padding-right: 5px !important;  /* ← adăugat */
  display: flex !important;
  flex-direction: column !important;
}

.resource-list__item .rounded-bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* =============================================
   PSEUDO-ELEMENTE DECORATIVE
   ============================================= */

.gdc-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--gdc-hover-color, var(--gdc-accent-color));
  clip-path: polygon(100% 0%, 0% 0%, 0% 35%, 100% 100%);
  border-top-left-radius: var(--gdc-main-border-radius);
  border-top-right-radius: var(--gdc-main-border-radius);
  transform: translateY(-5%);
  width: 50%;
  height: 95%;
  z-index: -1;
  transition: background-color 0.4s ease;
}

.gdc-product-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65px;
  height: 170px;
  background: var(--gdc-hover-color, var(--gdc-accent-color));
  clip-path: polygon(0 0, 100% 78%, 100% 100%, 0 100%);
  transform: translateY(15%);
  border-bottom-left-radius: var(--gdc-main-border-radius);
  border-bottom-right-radius: var(--gdc-main-border-radius);
  z-index: -1;
  transition: background-color 0.4s ease;
}

/* =============================================
   GRID ITEM - permite pseudo-elementelor să iasă
   ============================================= */
.product-grid__item {
  display: flex !important;
  flex-direction: column !important;
  overflow: visible !important;
}

.product-grid__item .gdc-product-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-grid__item .rounded-bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-grid__item .rounded-bottom .w-100.d-flex.justify-content-center {
  margin-top: auto !important;
}

/* =============================================
   ROUNDED BOTTOM
   ============================================= */
.rounded-bottom .w-100.d-flex.justify-content-center {
  margin-top: auto !important;
  padding-top: 10px !important;
  padding-bottom: 16px !important;
}

/* =============================================
   RESPONSIVE MOBIL
   ============================================= */
@media (max-width: 768px) {
  .product-grid__item {
    padding-bottom: 30px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .gdc-product-card::after {
    transform: translateY(5%);
  }

  .gdc-product-card::before {
    transform: translateY(-2%);
  }

  .gdc-price {
    padding-top: 25px !important;
  }
}
/* =============================================
   LIMITA LATIME CARD PE ECRANE MEDII
   ============================================= */
@media (max-width: 749px) {
  .product-grid {
    --mobile-columns: 2 !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    padding: 0 10px !important;
  }

  .product-grid__item {
    padding: 10px 5px 40px 5px !important;
    outline: none !important;
    border: none !important;
  }
}

@media (max-width: 400px) {
  .product-grid {
    grid-template-columns: 1fr !important;
    max-width: 420px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* =============================================
   HEADER PREȚ
   ============================================= */
.gdc-image-header {
  width: 100%;
  text-align: right;
  overflow: visible;
  z-index: 1;
  margin-top: -15px;
}

.gdc-price {
  z-index: 3;
}

.gdc-price-compare {
  font-size: 0.65em;
  opacity: 0.75;
}

/* =============================================
   ZOOM IMAGINE LA HOVER
   ============================================= */
.vesitable-img {
  overflow: hidden;
}

.vesitable-img img {
  transition: transform 0.4s ease;
}

.gdc-product-card:hover .vesitable-img img {
  transform: scale(1.2);
}

/* =============================================
   TRANZITIE CULOARE DECORATIUNI SVG
   ============================================= */
.gdc-deco-shape {
  fill: var(--gdc-accent-color);
  transition: fill 0.4s ease;
}

/* =============================================
   NUME PRODUS
   ============================================= */
.gdc-product-name {
  color: #1752C7 !important;
  line-height: 1.2em;
  font-size: 1.3rem;
  height: auto;
  overflow: visible;
  display: block;
  white-space: normal;
  padding-left: 35px;
  padding-right: 40px;
  margin-bottom: 12px;
}

/* =============================================
   DESCRIERE PRODUS
   ============================================= */
.gdc-product-description {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;

  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis;
  line-height: 1.4em;
  max-height: 4.2em;
  padding-left: 35px;
  padding-right: 35px;
  margin-top: 8px;
  white-space: normal;
}

/* =============================================
   BUTON ADAUGĂ ÎN COȘ
   ============================================= */
.gdc-add-to-cart .spinner-border {
  display: none;
}

.gdc-add-to-cart.is-loading .btn-text {
  visibility: hidden;
}

.gdc-add-to-cart.is-loading .spinner-border {
  display: inline-block;
}

.gdc-add-to-cart:hover {
  background-color: #17AAC7 !important;
  border-color: #17AAC7 !important;
  color: #ffffff !important;
}

.gdc-add-to-cart {
  padding: 12px 28px !important;
  font-size: 1rem !important;
  min-width: 160px !important;
}

/* =============================================
   UTILITĂȚI
   ============================================= */
.pointer {
  cursor: pointer;
}

.checkout-sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0%;
}

/* =============================================
   NAVBAR LOGO
   ============================================= */
.navbar-brand img {
  max-height: 260px;
  width: auto;
  height: auto;
}
/* =============================================
   FIX OVERFLOW PARENTS - shadow vizibil
   ============================================= */
.card-wrapper,
.card__inner,
.product-card-wrapper,
.grid__item,
.collection-product-card,
.product-card {
  overflow: visible !important;
}

@media (max-width: 1400px) {
  .navbar-brand img {
    max-height: 70px;
  }
  .gdc-product-name {
    color: #1752C7 !important;
    line-height: 1.0em;
    font-size: 1.0rem;
}

