
.hero-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: contents;
    justify-content: center;
}
.hero-banner img{
    color: transparent;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.category-section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.category-slider small {
    font-size: 18px;
}

.accessories-category-circle {
    width: 155px;
    height: 155px;
    border-radius: 50%;
    overflow: hidden;
}

.accessories-category-circle img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slick Slider Customization */
.category-slider {
    margin: 0 -10px;
}

.category-slider .slick-slide {
    padding: 0 10px;
}

/* Arrows */

.category-slider .slick-prev,
.category-slider .slick-next {
    z-index: 10;
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25),
        rgba(255, 255, 255, 0.08)
    );
    border-radius: 50%;
    border: 1px solid #666;
    transition: 0.3s ease;
}

.category-slider .slick-prev i,
.category-slider .slick-next i {
    color: #666;
    font-size: 20px;
    line-height: 50px;
}

.category-slider .slick-prev:hover i,
.category-slider .slick-next:hover i {
    color: #fff;
}

.category-slider .slick-prev:hover,
.category-slider .slick-next:hover {
    background: var(--secondary);
    border: 1px solid #fff;
}

.category-slider .slick-prev {
    left: -5px;
}

.category-slider .slick-next {
    right: -5px;
}

.category-slider .slick-prev,
.category-slider .slick-next {
    top: calc(50% - 15px);
}

.category-slider .slick-prev:before,
.category-slider .slick-next:before {
    display: none;
}


/* Product Card */

.section-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right-section{
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-single-cards {
    padding: 8px;
}

.product-card {
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Image Container */
.product-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8f8f8;
}

.product-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slider-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.product-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Product Image Arrows */
.product-image-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(115 115 115 / 80%);
    border: 1px solid #fff;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.product-image-arrow:hover {
    background: rgb(115 115 115 / 80%);
    border: 1px solid #fff;
    transform: translateY(-50%) scale(1.1);
}

.product-arrow-prev {
    left: 15px;
}

.product-arrow-next {
    right: 15px;
}

/* Show arrows on hover */
.product-image-container:hover .product-image-arrow {
    display: flex !important;
}

/* Quick View Button */
.quick-view-btn {
    position: absolute;
    bottom: 10px;
    left: 10%;
    transform: translateX(-50%);
    background: #fff;
    color: #333;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 10;
    cursor: pointer;
    align-items: center;
    opacity: 1;
    visibility: visible;
}

.quick-view-btn:hover {
    background: var(--secondary);
    color: #fff;
}

.quick-view-btn i {
    font-size: 16px;
}

.out-of-stock-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
    cursor: not-allowed !important;
    align-items: center;
    visibility: visible;
}

.out-of-stock-btn i {
    width: 44px;
    height: 40px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #333;
    font-size: 18px;
    line-height: 44px;
}

.out-of-stock-btn span {
    background: #fff;
    color: #e74c3c;
    padding: 12px 15px;
    border-radius: 5px;
    flex-grow: 1;
    text-align: center;
    font-weight: 600;
}


/* Info section */
.product-info {
    padding: 16px 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Product name (1 line ellipsis) */
.product-name {
    font-size: 1rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 70%;
    min-width: 0;
}

/* Product code */
.product-info small {
    width: 30%;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

/* Price container */
.product-price-container {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

/* Currency symbol */
.currency {
    font-size: 15px;
    font-weight: 800;
    color: #4b4b4b;
    line-height: 1;
}

/* Price */
.product-price {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1;
}

/* VAT */
.product-vat {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
}

.featured-section .slider-arrows{
    display: flex;
    gap: 10px;
    align-items: center;
}

.featured-section .slider-arrows .slick-prev,
.featured-section .slider-arrows .slick-next{
    position: static;
    transform: none;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #333;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 !important;
    flex-shrink: 0;
    z-index: 100;
}

.featured-section .slider-arrows .slick-prev i,
.featured-section .slider-arrows .slick-next i{
    color: #333;
    font-size: 16px !important;
}

.featured-section .slider-arrows .slick-prev:before,
.featured-section .slider-arrows .slick-next:before{
    display: none;
}

.featured-section .slider-arrows .slick-prev:hover,
.featured-section .slider-arrows .slick-next:hover{
    background: var(--secondary);
    color: #fff;
}

/* Desktop - show arrows */
@media (min-width: 769px) {
    .featured-section .slider-arrows {
        display: flex !important;
        gap: 10px;
        align-items: center;
        visibility: visible;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .product-image-container {
        height: 280px;
    }

    .product-info {
        padding: 12px 10px;
    }

    .product-name {
        font-size: 12px;
    }

    .product-price,
    .currency {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-image-container {
        height: 240px;
    }

    .product-info {
        padding: 10px 8px;
    }

    .product-name {
        font-size: 10px;
    }

    .product-price,
    .currency {
        font-size: 13px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .category-section-title{
        font-size: 20px;
    }
    .category-slider .slick-slide {
        padding: 0 8px;
    }
    .accessories-category-circle {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
    }
    .category-slider .slick-prev,
    .category-slider .slick-next {
        top: calc(50% - 20px);
    }
    .quick-view-btn{
        bottom: 5px;
        left: 15%;
    }
    .out-of-stock-btn{
        display: none;
    }
}
