* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

hr {
    width: 90%;
    margin: auto;
    opacity: 0.6;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1% 5%;
    width: 100%;
  
}

.content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2%;
    width: 100%;
    padding: 30px 5%;
      height: 70%;
}

.contentLeft,
.contentRight {
    width: 22%;
    padding: 12px;
}

.contentCenter {
    width: 48%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contentCenter img {
    max-width: 100%;
    height: 550px;
    display: block;
    padding: 4px 8px;
    border-radius: 12px;
}

.navLeft {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 60%;
}

ol {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 50%;

}


ol li a {
    text-decoration: none;
    text-transform: uppercase;
    color: rgb(51, 32, 32);

}

.icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 60%;
    width: 100%;
    padding: 20px 30px;
}


.contentLeft,
.contentRight {
    width: calc(100%/5-10px);
}

.titleContainer {
    display: flex;
    flex-direction: column;
}

.titleContainer span {
    color: orangered;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
}

.titleContainer h3 {
    text-transform: uppercase;
    font-size: 3.5rem;
    line-height: 1;
    margin: 0;
}

.price {
    margin: 0;
}

.description div {
    text-transform: uppercase;
    font-weight: 700;
}

.description p {
    font-size: small;
    color: rgb(71, 71, 71);
}

.readMore {
    border: none;
    background: none;
    cursor: pointer;
    padding: 6px 0;
    text-transform: uppercase;
    font-weight: bold;

}

.price {
    font-size: 1.25rem;
    font-weight: 700;
}

.rightHeadLine {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.sizeContainer {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    width: 100%;
}

.size {
    display: inline-block;
    border: 1px solid #ddd;
    padding: 6px 10px;
    margin-right: 6px;
    border-radius: 6px;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 8px;
    margin-top: 8px;

}

.color-item {
    gap: 4px;
    align-items: center;
    text-align: center;
    padding: 10px;
    width: 80px;
    margin: auto;
}

.color-item:nth-child(1) {
    border: 1px solid orangered;
    border-radius: 20px;
}

.color-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;

}

.actions {
    display: block;
    gap: 10px;
    margin-top: 12px;
}

.btn {
    padding: 12px 18px;
    border-radius: 24px;
    cursor: pointer;
    font-weight: 700;
    width: 100%;
}

.btn.primary {
    background: orangered;
    color: #fff;
    border: none;

}

.btn.outline {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    margin-bottom: 12px;
}

.productFooter {
    width: 100%;
    padding: 0 5% 24px;
}

.footerCards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
}

.footerCard {
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 0;
}

.footerCard img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 14px;
    background: #f2ede7;
    flex-shrink: 0;
}

.footerCard h4 {
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.footerCard p {
    font-size: 0.82rem;
    color: rgb(90, 90, 90);
    line-height: 1.45;
}

.footerHighlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 16px 8px 0;
}

.highlightItem {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.highlightItem span {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    color: orangered;
    flex-shrink: 0;
}

.highlightItem h5 {
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.highlightItem p {
    font-size: 0.74rem;
    color: rgb(100, 100, 100);
    line-height: 1.35;
}

@media (max-width: 1100px) {

    .footerCards,
    .footerHighlights {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {

    .footerCards,
    .footerHighlights {
        grid-template-columns: 1fr;
    }

    .footerCard {
        align-items: flex-start;
    }
}