/* Product Category Page Styles */

.shop__section {
    background-color: #ffffff;
}

.shop__header {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.product__view--label {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.shop__header--select {
    min-width: 200px;
}

.product__view--select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
}

.product__view--select:focus {
    outline: none;
    border-color: #520608;
    box-shadow: 0 0 5px rgba(82, 6, 8, 0.3);
}

.product__showing--count {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Product Grid */
.product__section--inner {
    width: 100%;
}

.product__items {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product__items:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product__items--thumbnail {
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    aspect-ratio: 1;
}

.product__items--thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product__items--link {
    display: block;
    width: 100%;
    height: 100%;
}

.product__primary--img {
    display: block;
}

.product__secondary--img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.product__items:hover .product__primary--img {
    opacity: 0;
}

.product__items:hover .product__secondary--img {
    opacity: 1;
}

.product__items--content {
    padding: 15px;
}

.product__items--content__title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 10px 0;
    line-height: 1.4;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__items--content__title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product__items--content__title a:hover {
    color: #520608;
}

.product__items--price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.product-weight-select {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-size: 13px;
    cursor: pointer;
}

.product-weight-select:focus {
    outline: none;
    border-color: #520608;
}

.current__price {
    font-size: 18px;
    font-weight: 700;
    color: #520608;
    display: block;
    margin: 5px 0;
}

.product__items--action__cart--btn {
    background-color: #520608;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.product__items--action__cart--btn:hover {
    background-color: #721c1e;
    transform: translateY(-2px);
}

.product__items--action__cart--btn__icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Breadcrumb */
.breadcrumb__section {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    padding: 80px 0;
    margin-bottom: 40px;
}

.breadcrumb__section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.breadcrumb__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb__content--title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb__content--menu {
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb__content--menu__items {
    margin: 0 15px;
    font-size: 16px;
}

.breadcrumb__content--menu__items:not(:last-child)::after {
    content: '/';
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.6);
}

/* Shipping Section Styles */
.shipping__section {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.shipping__style2--inner {
    background-color: #fff;
    border: 1px solid #eee;
}

.shipping__style2--items {
    flex: 1;
    padding: 30px 20px;
    text-align: center;
}

.shipping__style2--icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #520608;
}

.shipping__style2--icon svg {
    width: 100%;
    height: 100%;
}

.shipping__style2--content__title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
}

.shipping__style2--content__desc {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .product__view--mode {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop__header {
        flex-direction: column;
    }

    .product__showing--count {
        margin-top: 10px;
    }

    .breadcrumb__content--title {
        font-size: 28px;
    }

    .shipping__style2--inner {
        flex-direction: column;
    }

    .shipping__style2--items {
        border-bottom: 1px solid #eee;
        padding: 20px;
    }

    .shipping__style2--items:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .row-cols-2 > .col {
        flex: 0 0 calc(50% - 15px);
    }

    .product__items--content {
        padding: 10px;
    }

    .product__items--content__title {
        font-size: 13px;
        min-height: 36px;
    }

    .product__items--price {
        margin: 10px 0;
    }

    .current__price {
        font-size: 16px;
    }

    .product__items--action__cart--btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}
