/* Custom overrides */
.navbar-nav > li.has-dropdown > ul.dropdown-menu {
    width: 320px;
    min-width: 320px;
}

/* Category grid */
.category-grid {
    padding: 90px 0;
    background-color: #ffffff;
}

.product-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.product-card .product-media {
    display: block;
    background-color: #f9f9f9;
}

.product-card .product-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.product-card .product-body {
    padding: 22px 22px 26px;
}

.product-card .product-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-card .product-title a {
    color: #1b1a1a;
}

.product-card .product-title a:hover {
    color: #e11d07;
}

.product-card .product-meta {
    font-size: 14px;
    color: #9b9b9b;
}

.empty-state {
    text-align: center;
    padding: 60px 0;
    background: #f9f9f9;
    border-radius: 8px;
}

/* Product details */
.product-details {
    padding: 90px 0;
    background-color: #ffffff;
}

.product-details-media {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.product-details-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.product-details-body {
    padding: 10px 0;
}

.product-details-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-details-meta {
    font-size: 15px;
    color: #9b9b9b;
    margin-bottom: 18px;
}

.product-details-meta span {
    color: #1b1a1a;
    font-weight: 600;
}

.product-details-text {
    font-size: 16px;
    color: #9b9b9b;
    line-height: 28px;
}

.product-details-actions {
    margin-top: 26px;
}

@media (max-width: 991px) {
    .product-card .product-media img {
        height: 210px;
    }
    .product-details-media img {
        height: 320px;
    }
}
