/************************* SHARED PANEL STYLE *****************************/

/* Shared rounded + subtle shadow for all branded panels */
.hero,
.hero_short,
.card-gradient,
.faq-grid,
.coupon-card,
.cart-panel {
    border-radius: 1.5rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}


/************************* HERO ****************************************/

.hero {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    padding-top: 4rem;
    margin-top: 130px;
}
.hero_short {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    min-height: 20vh;
    display: flex;
    padding-top: 4rem;
    margin-top: 130px;
}


/************************ CARD FULL WIDTH ******************************/
  .custom-card-container {
    position: relative;
    /* On ajoute une marge haute pour laisser de la place au personnage qui dépasse */
    margin-top: 80px; 
  }

  .card-gradient {
    background: linear-gradient(105deg, #ff6a3d 0%, #ff9e2c 50%, #d4e049 100%);
    border: none;
    min-height: 300px;
    overflow-x: clip; /* clip lateral overflow without trimming the image's top overhang */
  }

  .card-gradient h2,
  .card-gradient p {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .character-img {
    position: absolute;
    bottom: 0; /* Aligné sur le bas de la card */
    left: 20px; /* Ajustez selon le besoin */
    width: auto;
    max-height: 130%; /* L'image dépasse de 30% par le haut */
    z-index: 10;
    pointer-events: none; /* Pour que l'image ne gêne pas les clics sur le texte */
  }

  /* Mobile: keep image as background decoration so text stays readable */
  @media (max-width: 768px) {
    .character-img {
      max-height: 100%;
      left: 0;
      opacity: 0.25;
    }
    .card-gradient .display-6 {
      font-size: 1.6rem;
    }
    .card-gradient .lead {
      font-size: 1rem;
    }
  }









  /************************* TAGCLOUD + VC ****************************************/

  /* CSS Custom minimal pour coller au design */
.avatar-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.btn-book {
    background-color: #d1d5db; /* Gris clair style bouton désactivé/neutre */
    color: white;
    font-weight: 600;
    border: none;
}
.btn-book:hover {
    background-color: #9ca3af;
    color: white;
}

/* Pour forcer les coins très ronds des cards */
.card-custom {
    background-color: #fff;
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.badge-time {
    font-size: 0.8rem;
    padding: 0.5em 1em;
}

/* Couleur rose pour les boutons de nav */
.btn-outline-custom-pink {
    color: #d63384;
    border-color: #d63384;
}
.btn-outline-custom-pink:hover {
    background-color: #d63384;
    color: white;
}

/* Level circle - grey/muted style */
.level-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #6b7280;
    background-color: #e5e7eb;
    flex-shrink: 0;
}

/* Orientation/Category badge colors */
.badge-orientation-1 { background-color: #10b981 !important; } /* General - Green */
.badge-orientation-2 { background-color: #3b82f6 !important; } /* Business - Blue */
.badge-orientation-3 { background-color: #8b5cf6 !important; } /* Exam Prep - Purple */
.badge-orientation-4 { background-color: #f59e0b !important; } /* Coffee & Chat - Amber */
.badge-orientation-default { background-color: #6b7280 !important; } /* Default - Gray */

/* Category color dot in dropdown */
.category-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

/* Tag Cloud Styles */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 15px;
}
.tag-cloud-item {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.tag-cloud-item:hover {
    transform: translateY(-2px);
    filter: brightness(0.92);
}
.tag-cloud-item.size-1 { font-size: 0.75rem; }
.tag-cloud-item.size-2 { font-size: 0.85rem; }
.tag-cloud-item.size-3 { font-size: 0.95rem; }
.tag-cloud-item.size-4 { font-size: 1.05rem; }
.tag-cloud-item.size-5 { font-size: 1.15rem; font-weight: 600; }

/* Tag Cloud Alignment */
.tag-cloud {
    align-items: flex-end;
}

/* Expandable Tag with Inline Card */
.tag-cloud-item {
    position: relative;
    vertical-align: bottom;
}
.tag-cloud-item.expanded {
    padding: 8px;
    border-radius: 16px;
}
.tag-cloud-item .tag-label {
    display: inline-block;
    transition: margin 0.3s ease;
}
.tag-cloud-item.expanded .tag-label {
    margin-bottom: 8px;
    font-weight: 600;
}
.tag-cloud-item .tag-card-container {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}
.tag-cloud-item.expanded .tag-card-container {
    max-height: 350px;
    opacity: 1;
}
.tag-cloud-item .tag-card-container .card {
    margin: 0;
    min-width: 220px;
}















/************************* TRAINER CARD ****************************************/

/* Trainer Card - List Layout (shared component) */
.trainer-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}
.trainer-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12) !important;
    color: inherit;
    text-decoration: none;
}
.trainer-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .trainer-avatar {
        width: 80px;
        height: 80px;
    }
}
.trainer-expertise-badge {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
    border-radius: 0.5rem;
}
.trainer-languages {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.trainer-language-flag {
    width: 28px;
    height: auto;
}
.trainer-info-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 1rem;
    color: #6b7280;
}
.trainer-info-item i {
    color: #d63384;
}
.trainers-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.trainer-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #6b7280;
}
.stat-item i {
    color: #d63384;
    font-size: 0.9rem;
}
.stat-item strong {
    color: #374151;
}
.trainer-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}
.trainer-rating .stars {
    color: #fbbf24;
}
.trainer-rating .count {
    color: #9ca3af;
    font-size: 0.8rem;
}
.view-profile {
    font-size: 0.875rem;
    color: #d63384;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.trainer-card:hover .view-profile {
    text-decoration: underline;
}


/* Trainer Card - Column Layout (vertical cards for grids, matches product-card hover) */
.trainer-card-col {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trainer-card-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12) !important;
    color: inherit;
    text-decoration: none;
}


/************************* TRAINER DETAIL PAGE ********************************/

/* Profile Card */
.profile-card {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: visible;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}
.profile-header {
    background: linear-gradient(105deg, #ff6a3d 0%, #ff9e2c 50%, #d4e049 100%);
    padding: 2rem;
    border-radius: 1.5rem 1.5rem 0 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    object-fit: cover;
    margin-top: -90px;
    z-index: 20;
    flex-shrink: 0;
}

/* Stats Cards */
.stat-card {
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.25rem;
}
.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
}
.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Language badges */
.language-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 2rem;
    margin: 0.25rem;
}
.language-badge img {
    width: 24px;
    height: auto;
}

/* Level gauge */
.level-gauge {
    display: inline-flex;
    gap: 3px;
    margin-left: 8px;
}
.gauge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e5e7eb;
}
.gauge-dot.active-1 { background: #ef4444; }
.gauge-dot.active-2 { background: #ef4444; }
.gauge-dot.active-3 { background: #f59e0b; }
.gauge-dot.active-4 { background: #f59e0b; }
.gauge-dot.active-5 { background: #10b981; }
.gauge-dot.active-6 { background: #10b981; }


/* Expertise table */
.expertise-table {
    width: 100%;
}
.expertise-table th {
    background: #f9fafb;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    color: #374151;
}
.expertise-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f3f4f6;
}
.expertise-table tr:last-child td {
    border-bottom: none;
}

/* About section */
.about-item {
    margin-bottom: 1.5rem;
}
.about-item:last-child {
    margin-bottom: 0;
}
.about-question {
    font-weight: 600;
    color: #d63384;
    margin-bottom: 0.5rem;
}
.about-answer {
    color: #4b5563;
    line-height: 1.7;
}

/* Video section */
.video-container {
    border-radius: 1rem;
    overflow: hidden;
    background: #000;
}
.video-container video {
    width: 100%;
    display: block;
}
.video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    border-radius: 1rem;
}

/* Rating stars */
.rating-stars {
    color: #fbbf24;
    font-size: 1.25rem;
}
.rating-stars .inactive {
    color: #e5e7eb;
}

/* Tags */
.tag-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: #f3f4f6;
    color: #374151;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    margin: 0.2rem;
}

/* Certif badge */
.certif-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 0.5rem;
    margin: 0.25rem;
}
.certif-badge i {
    color: #f59e0b;
}


/************************* SECTION CARD ****************************************/

/* Section Card - reusable content block with header/body (used with card-custom) */
.section-card {
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.section-header {
    background: #f9fafb;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}
.section-header i {
    color: #D0084A;
    font-size: 1.25rem;
}
.section-header h5 {
    margin: 0;
    font-weight: 600;
    color: #1f2937;
}
.section-body {
    padding: 1.5rem;
}


/***************************** PRICE CARD *****************************/

/* CSS Personnalisé minimal pour le branding */
:root {
    --brand-color: #D0064A; /* Couleur marron tirée de l'image */
}

.text-brand { color: var(--brand-color) !important; }

/* Bouton personnalisé style outline */
.btn-brand-outline {
    color: var(--brand-color);
    border-color: var(--brand-color);
    border-width: 2px;
    font-weight: 700;
}
.btn-brand-outline:hover {
    background-color: var(--brand-color);
    color: white;
}

/* Ruban "Popular" (Corner Ribbon) */
.ribbon-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-top-right-radius: inherit;
}
.ribbon {
    background-color: var(--brand-color);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    text-align: center;
    transform: rotate(45deg);
    position: absolute;
    padding: 5px 0;
    width: 120px;
    top: 15px;
    right: -30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.ribbon-popular {
    background-color: #1d2124;
}

/* Price table - expertise-style rows */
.price-table {
    width: 100%;
}
.price-section-header {
    background: #f9fafb;
    padding: 1rem 1.5rem !important;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.price-section-header i {
    color: #D0084A;
    font-size: 1.25rem;
}
.price-section-header h3 {
    margin: 0;
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}
.price-row td {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid #f3f4f6 !important;
}
.price-row:last-child td {
    border-bottom: none !important;
}
.price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
}
.price-badge-yes {
    background: #ecfdf5;
    color: #059669;
}
.price-badge-no {
    background: #f3f4f6;
    color: #9ca3af;
}

/* Ajustement image pour qu'elle remplisse bien */
.card-img-top {
    height: 250px;
    object-fit: cover;
}


/************************* MODALS ****************************************/

/* Modal content inherits card-custom look & feel */
.modal-content.modal-card-custom {
    background-color: #fff;
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    overflow: hidden;
}
.modal-card-custom .modal-header {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    border-radius: 0;
}
.modal-card-custom .modal-header .modal-title {
    font-weight: 600;
    color: #1f2937;
}
.modal-card-custom .modal-header .btn-close {
    opacity: 0.6;
}
.modal-card-custom .modal-body {
    padding: 1.5rem;
}
.modal-card-custom .modal-footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    border-radius: 0;
}

/* Floating close button for modals without a header bar */
.modal-close-floating {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    padding: 0.6rem;
}
.modal-close-floating:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.9);
}

/* Modal header image — edge-to-edge inside modal-body */
.modal-header-img {
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    line-height: 0;
}
.modal-header-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Booking modal form sections */
.modal-form-section {
    background-color: #f9fafb;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.modal-form-section h5 {
    font-weight: 600;
    color: var(--brand-color);
    margin-bottom: 1rem;
}
.modal-form-section .form-control {
    border-radius: 50rem;
    background-color: #fff;
    border: 1px solid #e5e7eb;
}
.modal-form-section .form-control:focus {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 0.2rem rgba(208, 6, 74, 0.15);
}


/************************* CART ****************************************/

/* Cart item row — flex layout for modal, sidebar, and page cart */
.cart-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    gap: 0.75rem;
}
.cart-item:last-of-type {
    border-bottom: none;
}
.cart-item-info {
    flex: 1;
    min-width: 0;
}
.cart-item-info h6 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
}
.cart-item-info .cart-item-qty {
    font-size: 0.8rem;
    color: #6b7280;
}
.cart-item-price {
    font-weight: 700;
    white-space: nowrap;
    color: #1f2937;
}
.cart-item-remove {
    background: none;
    border: none;
    color: #d1d5db;
    padding: 0.25rem;
    cursor: pointer;
    transition: color 0.15s ease;
    font-size: 0.9rem;
}
.cart-item-remove:hover {
    color: var(--brand-color);
}

/* Cart total row */
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0.5rem;
    border-top: 2px solid #e5e7eb;
    margin-top: 0.5rem;
}
.cart-total-label {
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}
.cart-total-amount {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.15rem;
}

/* Cart empty state */
.cart-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: #9ca3af;
}
.cart-empty i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.3;
}

/* Cart coupon badge */
.cart-coupon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: #eff6ff;
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3em 0.75em;
    border-radius: 50rem;
}

/* Cart discount line */
.cart-discount {
    color: #2563eb;
    font-size: 0.85rem;
}

/************************* FAQ GRID ****************************************/

/* Gradient wrapper for FAQ cards */
.faq-grid {
    background: linear-gradient(105deg, #ff6a3d 0%, #ff9e2c 50%, #d4e049 100%);
    padding: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (max-width: 767px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Individual FAQ card */
.faq-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
}
.faq-card h5 {
    color: #0d5c63;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}
.faq-card p {
    color: #374151;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
}


/************************* COUPON CARD *************************************/

.coupon-card {
    background: linear-gradient(105deg, #ff6a3d 0%, #ff9e2c 50%, #d4e049 100%);
    padding: 1.5rem;
    text-align: center;
}
.coupon-card h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}


/************************* CART PANEL **************************************/

/* Add-to-cart panel on product detail */
.cart-panel {
    background: linear-gradient(105deg, #ff6a3d 0%, #ff9e2c 50%, #d4e049 100%);
    padding: 1.5rem;
}
.cart-panel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
}
.cart-panel-card {
    background-color: rgba(248, 241, 208, 0.9);
    border-radius: 1.25rem;
    padding: 1.5rem;
}
.cart-panel-card .form-control,
.cart-panel-card .form-select {
    border-radius: 50rem;
    background-color: #fff;
    border: 1px solid #e5e7eb;
}
.cart-panel-card .form-control:focus,
.cart-panel-card .form-select:focus {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 0.2rem rgba(208, 6, 74, 0.15);
}


/* Sidebar card blocks */
.sidebar-card {
    background-color: #fff;
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}
.sidebar-card h4 {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}


/************************ TIMELINE (shared) ******************************/

/* Base timeline — vertical line on the left, dot per item */
.timeline {
    position: relative;
    padding-left: 2rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #d63384, #ff9e2c);
}
.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d63384;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #d63384;
}
.timeline-date {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}
.timeline-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}
.timeline-location {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}
.timeline-desc {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
}


/************************ TIMELINE NUMBERED variant (green circles, base layout) *******/

/* More left padding to fit the larger circles */
.timeline-numbered {
    padding-left: 4rem;
}
/* Remove the global line — we use per-item lines instead */
.timeline-numbered::before {
    display: none;
}
/* Green line segment between items (not on last) */
.timeline-numbered .timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: -2.75rem;
    top: 40px;
    bottom: 0;
    width: 3px;
    background: #c8e038;
}
/* Replace small dot with green numbered circle */
.timeline-numbered .timeline-item::before {
    content: attr(data-step);
    left: -4rem;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #c8e038;
    color: #1a1a2e;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #c8e038;
}
.timeline-numbered .timeline-item {
    padding-bottom: 2rem;
}

/************************* PRODUCTS GRID ********************************/

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.products-grid .product-card-wrapper {
    display: flex;
}
.products-grid .product-card-wrapper > .product-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.products-grid .product-card-wrapper > .product-card > .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1199.98px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    .products-grid { grid-template-columns: 1fr; }
}