*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    display: grid;
    grid-template-columns: 70% 30%;
    max-width: 1200px;
    margin: 0 auto;

}
header{
    background-color: #c7cc19;
    color: #fff;
    padding: 20px;
    text-align: center;
    grid-column: 1 /span 2;
}
nav{
    background-color: #ffa486;
    color: #fff;
    text-align: center;
    padding: 10px;
    grid-column: 1 /span 2;
}
nav ul{
list-style: none;

}
nav ul li{
    display: inline;
    margin-right: 20px;
}
.product-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    padding: 20px;
    grid-column: 1;
}
.product-card{
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px ;
    padding: 10px;
    width: 100%;
    text-align: center;
}
.product-card img{
    max-width: 100%;
    height: auto;}
.sidebar{
    background-color: #199cff;
color: #fff;
padding: 10px;
grid-column:2 ;
}
.social-icons{
    margin-top: 20px;
}
.social-icons a{
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}
@media (max-width: 576px) {
    .product-list{
        grid-template-columns: 1fr;
    }
.product-card{
    width: 100%;
    margin-bottom:20px ;
}    
.sidebar{
    grid-column: 1/ span 2;
}
.footer{
    grid-template-columns: 1fr;
}
}
.footer{
    background-color: #333;
    color: #fff;
    text-align: center;
    padding:20px;
    grid-column: 1/ span 2;
    display: grid;
}
.footer-items{
    padding: 10px;
}
@media (min-width: 768px) {
    .footer{
        grid-template-columns: repeat(3,1fr);
    }
}
.button{
    background-color: #04aa6d;
    border: none;
        color: white;
        padding: 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
}
.button1{
    border-radius:2px ;
}
.button3{
    border-radius: 8px;
}
.button4{
    border-radius: 12px;
}
.button5{
    border-radius: 50%;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f4f6f8;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* HEADER */
.header {
    background: #22c55e;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
}

/* PRODUCT DETAIL */
.product-detail {
    display: flex;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE */
.product-image img {
    width: 200px;
    border-radius: 12px;
    object-fit: cover;
}

/* INFO */
.product-info h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.price {
    color: #e11d48;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.desc {
    line-height: 1.6;
    margin-bottom: 25px;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.btn.primary {
    background: #22c55e;
    color: white;
}

.btn.primary:hover {
    background: #16a34a;
}

.btn.secondary {
    background: #e5e7eb;
    color: #333;
}

.btn.secondary:hover {
    background: #d1d5db;
}

/* FOOTER */
.footer {
    margin-top: 40px;
    background: #1f2937;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 25px;
    border-radius: 12px;
}

.footer .col {
    width: 30%;
    font-size: 14px;
}
