/* ==========================
   1. LAYOUT & GRID
========================== */
.creed-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.creed-slider-custom .creed-slide-item {
    width: 20.18%;
    padding: 10px;
    box-sizing: border-box;
}

/* ==========================
   2. SẢN PHẨM (PRODUCT CARD)
========================== */
.creed-product-card {
    padding: 10px;
    text-align: left;
    border-radius: 10px;
}
.creed_custom-featured-product .flickity-page-dots{
    bottom: 0;
}
.product-card {
    position: relative;
    background-color: rgb(var(--background));
    color: rgb(var(--text-color));
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.08);
}

.product-card__figure {
    position: relative;
}

.product-card__info {
    padding-top: 10px;
    text-align: left;
}

/* ==========================
   3. HÌNH ẢNH & HOVER
========================== */
.creed-product-image img {
    max-width: 100%;
    height: auto;
}

.product-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.creed-slide-item:hover .product-card__image {
    transform: scale(1.05);
}

.product-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.product-card__figure:hover .product-hover-image {
    opacity: 1;
}

.product-card__figure:hover .product-main-image {
    opacity: 0;
}

.creed_product-cat .box-image img {
    max-height: 172px;
    width: 100%;
    object-fit: contain;
}

/* ==========================
   4. THÔNG TIN SẢN PHẨM
========================== */
.creed-product-title {
    font-size: 16px;
    margin: 10px 0;
}

.creed-product-price {
    margin-bottom: 10px;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.price-sale {
    color: #e74c3c;
    font-weight: bold;
}

.product-card__variant-list {
    margin-top: 10px;
    text-align: center;
}

.thumbnail-swatch {
    width: 24px;
    height: 24px;
    object-fit: cover;
    margin-right: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    display: inline-block;
}

.variant-thumb {
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 3px;
    width: 48px !important;
    height: 48px !important;
    transition: border-color 0.3s ease;
}

.variant-thumb.is-active {
    border-color: #000;
}

/* ==========================
   5. NÚT & HÀNH ĐỘNG
========================== */
.creed-add-to-cart .button {
    background-color: #008c44;
    color: #fff;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
}


/* ==========================
   7. RESPONSIVE
========================== */
@media (max-width: 768px) {
    .creed-slider-custom .creed-slide-item,
    .creed-grid-products .medium-3{
        width: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
}

@media (min-width:600px) {
    .product-card__figure {
        min-height: 350px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .creed-slider-custom .creed-slide-item,
    .creed-grid-products .medium-3 {
        width: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}
