body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    flex-direction: column;
}

.navbar {
    z-index: 2;
    position: fixed;
    height: 5vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #f4f4f4;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.menu-left {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 20px;
}

.menu-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 20px;
    justify-content:end;
}

.menu-item {
    position: relative;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-item a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.menu-item a:hover {
    color: #007BFF; 
}

.menu-item:hover {
    transform: translateY(-2px); 
}

.loader {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #333;
    animation: fade-in-out 1.5s infinite;
    padding-top: 10px;
    transform: translate(12%, 5%);
}

.letter {
    animation: bounce 1.5s infinite;
    display: inline-block;
}

.letter:nth-child(odd) {
    animation-delay: 0.1s;
}

.letter:nth-child(even) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fade-in-out {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px 0;
    list-style: none;
    z-index: 10;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
}

.menu-item:hover .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown li {
    padding: 10px 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.dropdown li:hover {
    background-color: #f4f4f4;
    transform: translateX(5px);
}

.dropdown a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.dropdown a:hover {
    color: #007BFF;
}

.btn {
    background-color: #333;
    color: #fff;
    padding: 8px 15px;
    border: none;
    width: 100px;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn:hover {
    background-color: #555;
}

.product-page{
    padding-top:5vh;
    height:100vh;
    width:100%;
    display: flex;
    flex-direction: row;
}
.thumbnails{
    img{
        width:100%;
        height:30vh;
    }
}

.product-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px; 
    margin: 0 auto; 
}

.product-title {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.review-section {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.stars {
    color: #f1c40f;
    margin-right: 10px;
}

.review-count {
    font-size: 1rem;
    color: #666;
}

.product-price {
    font-size: 30px;
    font-weight: bold;
    color: #e74c3c; 
    margin-top: 5vh;
    margin-bottom: 15px;
}

.product-description {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    text-align: justify; 
}

.product-meta {
    color: #666;
    margin-top: 20px;
}

.product-meta p {
    margin: 5px 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #333;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.quantity {
    width: 60px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.add-to-cart {
    padding: 12px 25px;
    border: none;
    background-color: #007BFF;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #0056b3;
}
.wishlist, .compare {
    border: 1px solid #ddd;
    border-radius: 5px;
    background: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    height:42px;
    width:50px;
}

.wishlist:hover, .compare:hover {
    background-color: #007BFF;
    color: #fff;
    border-color: #007BFF;
}


.info{
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    margin: 20px;
    padding:10px;
    gap:50px;
    border-top: 2px solid #b4b4b482;
    border-bottom: 2px solid #b4b4b482;
}
    .info-btn{
        background-color: #b4b4b482;
        color: #000000;
        padding: 8px 15px;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        text-transform: uppercase;
    }

.footer {
    background-color: #1c1c1c;
    color: #bdbdbd;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 10vh;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    margin: 0 15px;
    min-width: 200px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-column p, .footer-column ul, .footer-column a {
    font-size: 14px;
    color: #bdbdbd;
    line-height: 1.6;
    margin: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #bdbdbd;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer .social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #bdbdbd;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #ffffff;
}

.subscribe-form {
    display: flex;
    margin-top: 10px;
}

.subscribe-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.subscribe-form button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #0056b3;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    text-decoration: none;
    color: #007bff;
}

.footer-bottom a:hover {
    color: #0056b3;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.footer-links li a {
    font-size: 14px;
    text-decoration: none;
    color: #bdbdbd;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #ffffff;
}
footer {
    background-color: #1c1c1c;
    color: #bdbdbd;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 10vh;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    margin: 0 15px;
    min-width: 200px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-column p, .footer-column ul, .footer-column a {
    font-size: 14px;
    color: #bdbdbd;
    line-height: 1.6;
    margin: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #bdbdbd;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer .social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #bdbdbd;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #ffffff;
}

.subscribe-form {
    display: flex;
    margin-top: 10px;
}

.subscribe-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.subscribe-form button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #0056b3;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    text-decoration: none;
    color: #007bff;
}

.footer-bottom a:hover {
    color: #0056b3;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.footer-links li a {
    font-size: 14px;
    text-decoration: none;
    color: #bdbdbd;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #ffffff;
}

.product-page {
    padding-top: 5vh;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.product-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 60%;
}

.sizes-info {
    width: 100%; 
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    margin-left: -150px;
}

.sizes-info table {
    width: 100%;
    text-align: left;
}

.sizes-info th, .sizes-info td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.sizes-info h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.comment-section {
    width: 100%;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.comment-section h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.comment-form {
    display: flex;
    flex-direction: column;
}

.comment-form textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: none;
}

.comment-form button {
    padding: 10px 20px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
}

.comment-form button:hover {
    background-color: #0056b3;
}

footer {
    position: relative;
    top: 10px;
}

.comment-form {
    width: 80%;  
    max-width: 500px;  
    padding: 0 700px 0 0 ;  
    font-size: 14px;  
    margin-left: auto;  
    margin-right: 0; 
}

.image-container {
    width: 300px;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.main-image {
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
}

.image-container:hover .main-image {
    opacity: 0;
}

.image-container:hover::after {
    content: url('image2.jpg');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.comment-form {
    width: 75%;  
    max-width: 450px;  
    padding: 5px;  
    font-size: 14px; 
    margin-left: auto;  
    margin-right: 0;  
}

textarea {
    width: 90%;
    height: 90px;
    padding: 5px;
    font-size: 14px;
}

button {
    margin-top: 10px;
    width: 428px;
    padding: 5px 14px;
    background-color: #0056b3;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.comments-list {
    margin-top: 20px;
}

.comment-item {
    background-color: white;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.delete-btn {
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

.delete-btn:hover {
    background-color: #e60000;
}

.delete-all-btn {
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    margin-top: 15px;
}

.delete-all-btn:hover {
    background-color: #e60000;
}