/**
 * File: single-product-tech-stack.css
 * Purpose: Forces 5 boxes to span the full width of the parent container (Left Column).
 * Design: Sharp borders, zero-radius, and elite typography.
 */

.daf-tech-stack-full-width {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important; /* Forces 5 equal columns */
    gap: 15px !important;
    width: 100% !important;
    margin: 30px 0 !important; /* Spacing between Gallery and Overview */
}

.daf-tech-item {
    background: #ffffff !important;
    border: 1px solid #e1e4e8 !important;
    padding: 15px 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.2s ease !important;
}

.daf-tech-item:hover {
    border-color: #2271b1 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}

/* SVG Icon Container */
.daf-tech-icon-box {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0 !important;
}

.daf-tech-icon-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* Info Logic */
.daf-tech-details {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.2 !important;
}

.daf-tech-tag {
    font-size: 10px !important;
    color: #94a3b8 !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

.daf-tech-val {
    font-size: 13px !important;
    color: #1e293b !important;
    font-weight: 700 !important;
}

/* 🚀 Responsive: Stack for Tablets and Mobile */
@media (max-width: 1100px) {
    .daf-tech-stack-full-width {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .daf-tech-stack-full-width {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}