.product-card {
    width: 293px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    background: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.product-image-container {
    /* width: 293px; */
    height: 242px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: rgba(0, 0, 0, 0.5);
}

.image-pagination {
    position: absolute;
    bottom: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5.5px;
}

.pagination-dot {
    width: 8.96px;
    height: 8.96px;
    background: white;
    border-radius: 9999px;
}

.pagination-dot.inactive {
    opacity: 0.5;
}

.pagination-dot.small-1 {
    width: 7.96px;
    height: 7.96px;
}

.pagination-dot.small-2 {
    width: 6.97px;
    height: 6.97px;
}

.pagination-dot.small-3 {
    width: 5.97px;
    height: 5.97px;
}

.pagination-dot.small-4 {
    width: 4.98px;
    height: 4.98px;
}

.product-price-row {
    align-self: stretch;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FC0606;
    font-size: 24px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    letter-spacing: 0.48px;
}

.heart-icon {
    width: 31px;
    height: 31px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heart-icon i {
    color: #FC0606;
    font-size: 24px;
}

.product-title {
    align-self: stretch;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    font-size: 18px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
}

.product-specs {
    align-self: stretch;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    line-height: 25px;
}

.spec-divider {
    width: 25px;
    align-self: stretch;
    border-left: 1px solid #E7E7E7;
    height: 25px;
}

.spec-value-unit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.spec-value {
    color: black;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    line-height: 25px;
}

.spec-unit {
    color: black;
    font-size: 14px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
}

.view-more-section {
    align-self: stretch;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.view-more-header {
    align-self: stretch;
    background: white;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.divider-line {
    flex: 1;
    height: 0px;
    border-top: 1px solid #E7E7E7;
}

.view-more-text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
}

.view-more-text span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    font-size: 14px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    line-height: 16px;
}

.view-more-text i {
    color: #888888;
}

.specs-details {
    width: 100%;
    background: white;
    overflow: hidden;
    border: 1px solid #F6F6F6;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.specs-details.open {
    display: flex;
}

.spec-row {
    align-self: stretch;
    padding: 4px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.spec-row:nth-child(even) {
    background: #F6F6F6;
}

.spec-label {
    flex: 1;
    opacity: 0.70;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    font-size: 14px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
}

.spec-detail {
    flex: 1;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    font-size: 12px;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    line-height: 16px;
}

.product-buttons {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-view-details {
    align-self: stretch;
    padding: 16px 18px;
    background: linear-gradient(0deg, white 0%, #ECECEC 50%, white 50%, #ECECEC 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-view-details span {
    color: #6D6D6D;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 16px;
    letter-spacing: 0.5px;
}

.btn-secondary-red {
    align-self: stretch;
    padding: 16px 18px;
    border: 2px solid #FC0606;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: transparent;
    text-decoration: none;
}

.btn-secondary-red span {
    color: black;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 16px;
    letter-spacing: 0.5px;
}

.btn-secondary-gray {
    align-self: stretch;
    padding: 16px 18px;
    border: 2px solid #888888;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: transparent;
    text-decoration: none;
}

.btn-secondary-gray span {
    color: black;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 16px;
    letter-spacing: 0.5px;
}

.product-details {
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.detail-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
}

.detail-label,
.detail-value {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    font-size: 10px;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    line-height: 12px;
}

/* Slider controls styling */
.slider-controls {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-controls-inner {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #FC0606;
    border: none;
    cursor: pointer;
    border-radius: 0;
    width: 100%;
}

.slider-nav.prev {
    padding: 10px 20px 10px 12px;
}

.slider-nav.next {
    padding: 10px 12px 10px 20px;
}

.slider-nav .nav-icon {
    width: 24px;
    height: 24px;
    position: relative;
    overflow: hidden;
}

.slider-nav .nav-icon::after {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    left: 4px;
    top: 4px;
    background: black;
}

.slider-nav.prev .nav-icon::after {
    clip-path: polygon(30% 0%, 10% 50%, 30% 100%, 30% 100%, 70% 50%, 30% 0%);
    transform: rotate(180deg);
}

.slider-nav.next .nav-icon::after {
    clip-path: polygon(30% 0%, 10% 50%, 30% 100%, 30% 100%, 70% 50%, 30% 0%);
}

.slider-nav .nav-text {
    color: black;
    font-size: 20px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    line-height: 28px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        width: 100%;
    }

    .product-image-container {
        width: 100%;
    }
}