* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f9f9f9;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.product-info h1 {
    font-size: 32px;
    margin: 15px 0;
}

.price {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.description {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #555;
}

.stock {
    margin-bottom: 20px;
    font-weight: 600;
}

.add-to-cart {
    padding: 14px 30px;
    border: none;
    background: #111;
    color: white;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s ease;
}

.add-to-cart:hover {
    background: #333;
}

.breadcrumb {
    font-size: 14px;
    color: #888;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.product-gallery img {
    width: 100%;
    border-radius: 6px;
}

.product-title {
    font-size: 32px;
    margin: 15px 0;
}

.price-wrapper {
    margin: 15px 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.current-price {
    font-size: 24px;
    font-weight: bold;
}

.in-stock {
    color: green;
    font-weight: 600;
}

.out-stock {
    color: red;
    font-weight: 600;
}

.short-description {
    margin: 20px 0;
    color: #555;
    line-height: 1.6;
}

.quantity-wrapper {
    margin: 20px 0;
}

.quantity-wrapper input {
    width: 80px;
    padding: 8px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 15px;
    background: #111;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

.add-to-cart-btn:hover {
    background: #333;
}

.product-description-section {
    margin-top: 80px;
}

.product-description-section h2 {
    margin-bottom: 15px;
}
.tabular-description table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tabular-description th,
.tabular-description td {
    border: 1px solid #eee;
    padding: 12px 15px;
    text-align: left;
}

.tabular-description th {
    background-color: #f5f5f5;
    font-weight: 600;
    width: 35%;
}

.tabular-description tr:nth-child(even) {
    background-color: #fafafa;
}
.related-products {
    margin-top: 100px;
}

.related-products h2 {
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.related-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.related-card:hover img {
    transform: scale(1.05);
}

.related-info {
    margin-top: 10px;
}

.related-info h4 {
    font-size: 14px;
    margin: 5px 0;
}