@import url('https://fonts.googleapis.com/css2?family=Gaegu:wght@300;400;700&family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&family=Lexend+Tera:wght@100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

body{
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: #1c1c20;

    font-family: "Kantumruy Pro", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: black;
    margin: 0;

}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 70px 10px 25px; /* Adjust padding as needed */
}

nav ul {
    display: flex;
    gap: 20px; /* Adjust spacing between links */
    list-style: none;
    margin: 0;
    padding: 0;

    font-family: "Kantumruy Pro", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    
}

nav #current{
    color: rgb(206, 62, 62);
}

nav ul li a {
    text-decoration: none;
    color: #ddd5d5;
}

nav a:hover {
    text-decoration: none;
    color: rgb(202, 127, 127);
}

nav h1{
    font-family: "Gaegu", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #ddd5d5;
}

nav span{
    color: rgb(206, 62, 62);
    padding: 0;
    margin: 0;
}


.product-container {
    display: flex;

    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
    background-color: white;
    margin: 50px auto; 
}


/* Image section styling */
.image-section {
    flex: 2.5; /* Make image section bigger */
    padding: 20px;
    display: flex; /* Helps with centering */
    justify-content: center;
    align-items: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover; /* Ensures it looks good */
}

/* Details section styling */
.details-section {
    flex: 1.5;
    padding: 20px;
    color: black;
}

.details-section h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.details-section ul {
    list-style: none; /* Removes default bullets */
    padding-left: 0;
}

.details-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
    font-size: 1rem;

}

/* Custom bullet icon */
.details-section ul li::before {
    content: "✔"; 
    color: rgb(206, 62, 62); 
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.product-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.details-section del{
    color: gray;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(206, 62, 62);
    margin-bottom: 20px;
}

/* Add to Cart button styling */
.add-to-cart-btn {
    display: inline-block;
    background-color: rgb(206, 62, 62);;
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
    background-color: rgb(141, 48, 48);
}
