/* Universal Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body */
  body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    padding-top: 60px;
  }
  
  /* Header */
  header {
    background-color: white;
    color: #2f38b6;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  header .logo a {
    font-size: 24px;
    font-family: 'Charmonman';
    font-weight: bold;
    text-decoration: none;
    color: #2f38b6;
  }
  header .logo h3{
    font-size: 10%;
    font-family: 'Times New Roman';
    color: #000000;
    margin: 2px;
    line-height: 1.5;
  }
   .info h3{
    font-family:'Times New Roman';
    font-style: italic;
    
  }
  
  /* Container */
  .container {
    margin: 20px auto;
    width: 80%;
    max-width: 1000px;
  }
  
  /* Slider */
  .slider {
    position: relative;
    margin: 20px 0;
    max-width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #f0f0f0;
  }
  
  .slides {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .slide {
    min-width: 100%;
    position:static;
    top: 0;
    left: 100%;
    height: 100%;
    display: none;
    
  }
  
  .slide.active {
    display: block;
    left: 0;
  }
  .slide:not(.active) {
    left: -100%;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* Navigation Buttons */
  button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
  }
  
  button.prev {
    left: 10px;
  }
  
  button.next {
    right: 10px;
  }
  
  /* Gender and Color Selection */
  .gender-selection, .color-selection {
    margin: 20px 0;
  }
  
  .gender-btn, .size-btn {
    padding: 10px 20px;
    border: 1px solid #ccc;
    cursor: pointer;
    margin: 5px;
  }
  
  .gender-btn.selected, .size-btn.selected, .color-circle.selected {
    background: #2f38b6;
    color: white;
  }
  
  .color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    border: 2px solid transparent;
  }
  
  .color-circle.white {
    background: rgb(247, 245, 220);
  }
  
  .color-circle.black {
    background: black;
  }
  
  .color-circle.blue {
    background: rgb(60, 159, 235);
  }
  
  .color-circle.selected {
    border: 3px solid #2f38b6;
  }
  
  /* Size Selection */
  .size-selection {
    margin: 20px 0;
  }
  
  .size-btn.selected {
    background: #2f38b6;
    color: white;
  }
  
  /* Quantity Selection */
  .quantity-selection {
    margin: 20px 0;
  }
  
  input[type="number"] {
    padding: 10px;
    border: 1px solid #ccc;
    width: 50px;
  }
  
  /* File Upload */
  .file-upload {
    margin: 20px 0;
  }
  
  input[type="file"] {
    padding: 10px;
    border: 1px solid #ccc;
  }
  
  /* Size Chart */
  .size-chart-btn {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #2f38b6;
    color: white;
    border: none;
    border-radius: 5px;
  }
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }
  .popup-content {
    background: white;
    margin: 100px auto;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    width: 90%;
    max-width: 500px;
  }
  
  .popup-content table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .popup-content table, th, td {
    border: 1px solid #ccc;
  }
  
  .popup-content table th, td {
    padding: 8px;
    text-align: left;
  }
  
  .popup .close-btn {
    font-size: 24px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }
  
  /* Shop Button */
  .shop-btn{
    background: #2f38b6;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
  }
  .but{
    background: #2f38b6;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }
  .error {
    border: 2px solid red !important;
    color: red !important;
  }
  
  /* Footer */
  footer {
    margin-top: 20px;
  }
  
  .footer-section h3 {
    margin-bottom: 1rem;
  }
  
  .footer-section a {
    text-decoration: none;
    color: #8e68e7;
  }
  .footer-section p{
    font-family: 'Times New Roman';
  }
  
  .footer-section a:hover {
    text-decoration: underline;
  } 
  /* Form Styling */
  #contact-form {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
  }
  
  /* Input Fields Styling */
  #contact-form input[type="text"],
  #contact-form input[type="tel"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
  }
  
  /* Focus Effect on Inputs */
  #contact-form input[type="text"]:focus,
  #contact-form input[type="tel"]:focus {
    border-color: #2f38b6;
    outline: none;
  }
  
  /* Label Styling */
  #contact-form label {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
    text-align: left;
  }
  
  /* Submit Button Styling */
  #contact-form button[type="submit"] {
    background-color: #2f38b6;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s ease;
  }
  
  /* Submit Button Hover Effect */
  #contact-form button[type="submit"]:hover {
    background-color: #1e2c94;
  }
  .social-icon {
    margin: 0 0.5rem;
  }  
  .payment-options {
    margin-top: 20px;
  }
  
  .radio-option {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    background: #fff;
  }
  
  .radio-option input {
    margin-right: 10px;
  }
  
  .radio-option img {
    width: 30px;
    margin-left: 5px;
  }
  
  .extra {
    color: gray;
    font-size: 12px;
    margin-left: 5px;
  }
  
  .card-details input {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .card-details label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 5px;
  }
  
  .card-details label input {
    margin-right: 5px;
  } 