/* --- M A C - M I N I --- */
.macmini-product-card {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 800px;
    padding: 0.6rem;
    gap: 0.6rem;
    margin: 1rem auto;
    background: #fafafa;
    box-sizing: border-box;
    border-radius: 6px;
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
}
.macmini-img img{
    width: 100%;
    max-width: 380px;
    object-fit: cover;
    border-radius: 8px; 
}
.macmini-info {
    /* gap: 0.4rem; */
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    flex: 1;
    background: #fafafa;
}
.macmini-title {
    font-size: 1.8rem;
    /* height: 50%; */
    letter-spacing: -0.8px;
    padding: 0;
    margin: 0;
    color: #1D1D1F;
}
.macmini-description {
    font-size: 1.12rem;
    font-weight: 500;
    color: #555;
    padding: 0;
    margin: 0;
} 
.macmini-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1D1D1F;
    padding: 0.2rem 0.6rem;
    display: inline-block;
}
.macmini-buy-btn {
    width: 100%;
    padding: 0.7rem;
    border: none;
    color: white;
    background: black;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s ease-out;
    font-weight: 500;
    /* Polished CHATGPT */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.macmini-buy-btn:hover {
    opacity: 0.9;
}
@media (max-width: 768px) {
    .macmini-product-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .macmini-info {
        align-items: center;
    }
    .macmini-img {
        max-width: 100%;
    }
}

.mac-mini-product-bundle-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.mac-mini-product-bundle {
    margin: 18px 0;
    padding: 0 16px 10px;
    /* width: 313.33px; */
    max-width: 100%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    flex: 0 1 300px;
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #1D1D1F;
    background: #f5f5f7;
    border-radius: 16px;
}
.product-bundle-details {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.product-bundle-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-bundle-image img {
    width: 100%;
    /* max-width: 340px; */
    /* max-height: 270px; */
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
}
.macbundle-eyebrow img {
    width: 100%;
    max-width: 40px;
    object-fit: cover;
    padding: 0 0 10px;
    flex: 1;
}
.product-bundle-specs-header ul {
    margin: 0;
}
.product-bundle-specs-header ul{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-weight: 600;
    line-height: 27px;
    font-size: 1.5rem;
}
.product-bundle-specs-header li {
    list-style: none;
}
.product-bundle-specs-list {
    padding-top: 14px;
}
.product-bundle-specs-list ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.product-bundle-specs-list li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    line-height: 23px;
    font-size: 0.9rem;
}
.mac-attr-feat-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}
.mac-attr-feat-ai {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
}
.mac-attr-feat-ai img {
    width: 100%;
    max-width: 20px;
}
.apple-ai {
    padding-left: 4px;
}
.mac-attr-feat-cn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
}
.mac-attr-feat-cn img {
    width: 100%;
    max-width: 20px;
    padding-left: 3px;
}
.product-bundle-price-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 8px 0;
}
.current-price-typography {
    padding: 8px 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0.025px;
}
.price-separator {
    padding: 6px 0;
    letter-spacing: -0.125px;
}
.price-explore-emi {
    margin: 6px 0;
}
.price-explore-emi a {
    text-decoration: none;
    color: #0071E3;
    letter-spacing: 0.015px;
}
.price-explore-emi a:hover {
    text-decoration-line: underline;
}
.select-mac-product {
    border: none;
    color: white;
    background: #0071E3;
    width: 100%;
    font-size: 0.9rem;
    padding: 8px 15px;
    margin: 6px 0 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.select-mac-product:hover {
    opacity: 0.895;
}
@media (max-width:1335px) {
    .mac-mini-product-bundle-container {
    /* flex-direction: column; */
    justify-content: center;
    /* flex-wrap: wrap; */
}
}
