/**
 * Custom Product Archive Styles
 * Version: 1.0.0
 */

/* Hide Shop Page Title Section */
.shop-page-title.category-page-title,
.shop-page-title.page-title {
    display: none !important;
}

/* Custom Product Grid */
.custom-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
}

.custom-product-item {
    position: relative;
    width: 100%;
}

.product-item-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Product Image */
.custom-product-item .product-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.custom-product-item .product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.custom-product-item .product-image:hover img {
    transform: scale(1.05);
}

/* Product Content */
.custom-product-item .product-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    min-height: 300px;
    justify-content: center;
}

/* Product Title - Royal 32px, bold, uppercase, black */
.custom-product-item .product-title {
    font-family: 'Royal', serif;
    font-style: normal;
    font-weight: 300;
    color: rgb(0, 0, 0);
    font-size: 32px;
    line-height: 32px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.custom-product-item .product-title a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.custom-product-item .product-title a:hover {
    color: rgb(0, 0, 0);
}

/* Product Short Description - button font, 20px, black, italic */
.custom-product-item .product-short-description {
    font-family: 'button', sans-serif;
    font-style: italic;
    font-weight: 300;
    color: rgb(0, 0, 0);
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
}

/* Explore Button - Source Sans Pro, 16px, plain text, italic */
.custom-product-item .product-explore-btn {
    font-family: "Source Sans Pro", "sans-serif";
    font-style: italic;
    font-weight: 300;
    color: rgb(57, 69, 75);
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

.custom-product-item .product-explore-btn:hover {
    text-decoration: underline;
}

/* Full Width Row */
.row-full-width {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.row-full-width > .col {
    padding-left: 0;
    padding-right: 0;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .custom-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-product-item .product-title {
        font-size: 24px;
        line-height: 24px;
    }

    .custom-product-item .product-short-description {
        font-size: 16px;
        line-height: 18px;
    }

    .custom-product-item .product-explore-btn {
        font-size: 14px;
        line-height: 14px;
    }
}

@media (max-width: 549px) {
    .custom-product-grid {
        grid-template-columns: 1fr;
    }
}
