/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
/* Scroll Progress Bar*/
#progress-container {
    position: fixed ;
    top: 1px;
    left: 0;
    width: 100%;
    height: 15px;
    z-index: 99990;
    /* background: #f3f3f3; */
  }
  
  #progress-bar {
    position: fixed;
    top: 0.3px;
    left: 0;
    width: 0%;
    height: 6px;
    width: 0;
    background: linear-gradient(90deg, rgba(27, 27, 27, 0.762) 0%, rgb(61, 61, 61) 50%, rgba(38, 38, 38, 0.679) 100%);
    box-shadow: 0 0 4px rgba(255, 244, 221, 0.7), 0 0 10px rgba(255, 255, 255, 0.496);
    transition: width 0.09s ease-in-out;
    /* border-radius: 10px; */
  }
h1 {
    text-align: center;
    margin: 20px 0;
    font-size: 36px;
    color: #333;
}

/* Sandals Section */
.sandals-section {
    padding: 40px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sandals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Sandal Card */
.sandal-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.sandal-card:hover {
    transform: translateY(-5px);
}

/* Sandal Image */
.sandal-image img {
    width: 100%;
    aspect-ratio: 2/2.5;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #e0e0e0;
}

/* Sandal Info */
.sandal-info {
    padding: 20px;
    text-align: center;
}

.sandal-info h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.sandal-info .price {
    font-size: 18px;
    color: #28a745;
    margin-bottom: 10px;
}

.sandal-info .rating {
    font-size: 14px;
    color: #ffb400;
    margin-bottom: 10px;
}

.sandal-info .description {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.sandal-info .size {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.sandal-info .reviews {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}

/* Buy Now Button */
.buy-now {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #55abe4;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.buy-now:hover {
    background-color: #2779d1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sandals-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 28px;
    }

    .sandal-info h2 {
        font-size: 18px;
    }

    .buy-now {
        font-size: 14px;
    }
}
