/* ATT Product Card — Frontend Styles */

.att-product-card {
    display: flex;
    background: #fff;
    border: 1px solid black !important;
    border-radius: 15px !important;
    overflow: hidden;
    padding: 7px;
}

/* Vertical layout: image on top */
.att-product-card-layout-vertical {
    flex-direction: column;
}

/* Horizontal layout: image left, details right */
.att-product-card-layout-horizontal {
    flex-direction: row;
}

/* Image */
.att-product-card-image {
    position: relative;
    flex-shrink: 0;
}

.att-product-card-layout-horizontal .att-product-card-image {
    width: 40%;
}

.att-product-card-image a {
    display: block;
}

.att-product-card-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Sale badge */
.att-product-card-sale-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e74c3c;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 3px;
    line-height: 1.4;
}

/* Details */
.att-product-card-details {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.att-product-card-layout-horizontal .att-product-card-details {
    width: 60%;
}

/* Title */
.att-product-card-title {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

.att-product-card-title a {
    color: inherit;
    text-decoration: none;
    font-family: 'Source Sans Pro', sans-serif !important;
    line-height: 1.3em !important;
}

.att-product-card-title a:hover {
    text-decoration: underline;
}

/* Rating */
.att-product-card-rating .star-rating {
    font-size: 0.9rem;
}

/* Price */
.att-product-card-price {
    font-size: 1rem;
    font-weight: 600;
}

.att-product-card-price del {
    opacity: 0.6;
    font-weight: 400;
}

.att-product-card-price ins {
    text-decoration: none;
}

/* Summary */
.att-product-card-summary {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.att-product-card-summary p:last-child {
    margin-bottom: 0;
}

/* Add to cart */
.att-product-card-add-to-cart .cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.att-product-card-add-to-cart .quantity .qty {
    width: 60px;
    padding: 6px 8px;
}

.att-product-card-add-to-cart .single_add_to_cart_button {
    white-space: nowrap;
}

/* Variable product dropdowns */
.att-product-card-add-to-cart .variations select {
    width: 100%;
}

.att-product-card-add-to-cart .variations {
    width: 100%;
    margin-bottom: 8px;
}

/* Meta (SKU, categories, tags) */
.att-product-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 8px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.85rem;
    color: #666;
}

.att-product-card-meta a {
    color: inherit;
}

.att-product-card-meta a:hover {
    text-decoration: underline;
}
