/* General Styles */
body {
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    margin: 0;
}

header {
    background: white;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-top: 70px;
}

.logo {
    font-size: 1.5em;
    color: black;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding-top: px;
    animation: rotateSideways 8s linear infinite;
    font-weight: bold;
}

.nav-container {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    font-size: 16px;
    font-weight: bold;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: black;
    padding: 10px;
}

.cart-btn{
    background: none;
    color: black;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    position: absolute;
    right: 50px;
    margin-top: -40px;
}

.hamburger {
    display: none;
    font-size: 2em;
    cursor: pointer;
    color: black;
    user-select: none;
}
.cancel {
    z-index: 9999;
    position: relative;
    color: black;
    cursor: pointer;
    font-size: 2em;
}

.nav-links.show {
    display: block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    color: black;
    list-style: none;
    padding: 10px;
    top: 30px;
    left: 0;
    width: 150px;
}

.dropdown:hover .dropdown-content {
    display: block;
}


/* Responsive Navigation */
@media (max-width: 768px) {
    .hamburger,
    .cancel {
        display: block;
    }

    .nav-container {
        justify-content: flex-end;
    }

    .nav-links {
        display: none;
        flex-direction: column;
       position: absolute;
        background: rgb(195, 189, 189);
        width: 200px;
        top: 60px;
        left: -30px;
        text-align: center;
        z-index: 1000; 
        border-radius: 20px;
        margin-bottom: 15px;
    }

    .nav-links.show {
        display: flex;
    }
}


/* Main Section */
#home {
    text-align: center;
    padding: 50px 20px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    text-align: center;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.product-item {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background: #fff;
}

.product-item img {
    max-width: 100%;
    height: 290px;
}

button {
    background: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 15px 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    footer {
        padding: 20px;
    }
}

@keyframes rotateSideways {
    0% {
        transform: translateX(-50%) rotateY(0deg);
    }
    50% {
        transform: translateX(-50%) rotateY(180deg);
    }
    100% {
        transform: translateX(-50%) rotateY(360deg);
    }
}

/* Product Page Styles */

.product-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
}

.product-details {
    flex: 1;
    max-width: 50%;
}

.product-details h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.pre-order {
    font-style: italic;
    font-weight: bold;
    color: #666;
}

.description, .material, .weight, .final-sale {
    margin: 10px 0;
}

.size-selection {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.size-btn {
    background: white;
    border: 2px solid black;
    padding: 10px;
    cursor: pointer;
    font-size: 1em;
    color: black;
}

.size-btn.active, .size-btn:hover {
    background: black;
    color: white;
}

.add-to-cart {
    background: black;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.2em;
    cursor: pointer;
    width: 100%;
}

.product-image {
    flex: 1;
    max-width: 50%;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: 300px;
}


@media (max-width: 768px) {
    .product-page {
        flex-direction: column;
        text-align: center;
    }
    
    .product-details, .product-image {
        max-width: 100%;
    }
} 
.cart a {
    color: black;
    font-size: 1.2em;
    text-decoration: none;
}

.cart a:hover {
    text-decoration: underline;
}
/* Cart Page Styles */
.cart-page {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cart-page h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

#cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}
.cart-product-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-info {
    flex: 1;
    text-align: left;
    padding-left: 10px;
}

.cart-item .remove-btn {
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.cart-summary {
    margin-top: 20px;
    font-size: 18px;
}

.checkout-btn {
    background: black;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
}

.checkout-btn:hover {
    background: #333;
}


/* .image1:hover{
    content: url("pictures/img101-hover.jpg");
    transition: opacity 2s ease-in-out;
    opacity: 1;
    animation: fadeInOut 3s infinite alternate ease-in-out;
} */
.socials{
    margin: auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
}
.mail{
    max-width: 400px;
}
.mail h1{
    font-size: 20px;
    font-weight: 50;
}
#mails{
    font-size: 15px;
    width: 110%;
    height: 40px;
    border-radius: 4px;
    outline: none;
    resize: none;
    align-items: center;
    border: 1px solid;

}


#mails::placeholder {
    color: rgb(75, 75, 75);
    font-size: 16px;
    padding-top: 10px;
    padding-left: 20px;
    opacity: 1; /* Ensures full visibility */
}
#mails:focus {
    border: 1px solid gray; /* Change to desired color */
}
.social-btn{
    padding: 13px 205px;
    border-radius: 4px;
    
}
.social-icon a{
    font-size: 25px;
    text-decoration: none;
    color: black;
}
#insta{
margin-top: -70px;
float: left;
padding-left: 300px;
}
#tiktok{
    float: right;
    padding-right: 300px;
    margin-top: -70px;
}
@media (max-width: 768px) {
    .socials {
        flex-direction: column;
        text-align: center;
    }
    #mails{
        width: 100%;
    }
    .social-btn{
        padding: 13px 30px;
    }
    #insta{
        display: none;
    }
    #tiktok{
      display: none;
    }
}

/* form */
.contact-body{
    background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.form-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    margin-top: 70px;
    width: 80%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background-color: white;
    height: auto;
    line-height: 1.6;
    border-radius: 10px;
  }
  
  .form-container::before {
    content: "";
    position: absolute;
    top: 26%;  
    bottom: 25%;  
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background-color: #ccc;
  }
  

  .left-side,
  .right-side {
    flex: 1;
    padding: 20px;
    height: 100%;
    width: 100%;
   
  }
  .left-side h2{
    font-size: 30px;
  }
  
  input {
    display: block;
    margin: 10px 0;
    width: 100%;
    height: 50px;
  }

  input::placeholder{
    padding-left:10px;
  }

  #message{
    width: 50%;
    padding: 10px;
  }
  
  textarea{
    resize: none;
  }

  .contact-subbut{
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 17px;
    border-radius: 2px;
  }

  .right-side{
    text-align: center; 
    margin-top: 150px;
  }
  .right-side h2{
    font-size: 30px;
  }
  .right-side p{
    font-size: 20px;
  }
  .social-iconss {
    font-size: 0;  
  }
  #instaa{
    color: black;
    font-size: 40px;
    
  }
  #tiktokk{
    color: black;
    font-size: 40px;
    margin-left: 50px;
    
  }
  footer {
    margin-top: auto;  
    
  }
  .foot{
    margin-top: 350px;
    position: static;
  }

  @media (max-width: 600px) {
    .form-container{
        flex-direction: column;
    }
    .form-container::before{
        content: "";
         position: absolute;
        margin-top: 630px;
        left: 12%;
        transform: translateY(-50%); 
        width: 75%; 
        height: 1px;
        background-color: #ccc;
    }
    input{
        width: 85%;
    }
    .right-side{
        margin-top: -10px;
        text-align: center;
        width: 90%;
        margin-left: -7px;
        padding-top: 10px;
    }
    footer{
        margin-top: 50px;
    }
  }

  @media only screen and (max-width: 430px) {
    .right-side{
        margin-top: 20px;
        padding-bottom: 60px;
    }
  }

  
  @media (max-width: 1366px) {
    .form-container::before{
       
        top: 23%;
        bottom: 30%;
        
    }
    .input{
        width: 100%;  /* Ensure full width */
    padding: 0 10px; 
    }

    .right-side{
        margin-top: 70px;
       
    }

  }

  