:root {
    --primary-color: #ff0000;
    --secondary-color: #333;
    --dark-bg: #000000;
    --card-bg: #1e1e1e;
    --text-color: #f1f1f1;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
}

.logo-container {
    text-align: center;
    padding: 20px 0;
}

.footer-container {
    width: 100%;
}

.heroh1 {
    font-size: 45px;
}

.lead {
    font-size: 28px;
}

.logo {
    max-height: 120px;
}


.navbar {
    margin-bottom: 30px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    font-family: "Eagle Lake", serif;
    font-weight: 400;
    font-style: normal;
}


.product-card {
    background-color: var(--card-bg);
    border: none;
    border-radius: 5px;
    overflow: hidden;
    /* transition: transform 0.3s ease; */
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
}

.card-img-top {
    height: 300px !important;
    object-fit: cover;
}


.product-img {
    height: 300px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.product-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.product-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #cc0000;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Product Detail Page */
.product-detail-img {
    width: 100%;
    cursor: pointer;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
}

.product-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.size-selector {
    margin-bottom: 20px;
}

.size-selector label {
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.size-radio {
    display: none;
}

.size-label {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #444;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-radio:checked+.size-label {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: #333;
    border: none;
    color: white;
    font-size: 1.2rem;
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #444;
    background-color: transparent;
    color: white;
    margin: 0 10px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


@media screen and (max-width:768px) {
    .heroh1 {
        font-size: 22px !important;
    }

    .lead {
        font-size: 15px;
    }

}