
/* === GENERELT === */
* {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: lighter;
  }

  .arrow-icon {
    top: 80px;
    left: 20px;
    width: 20px;
}
  
  /* === ZARA BUTTON OG CONTAINER === */
  .zara-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
  }
  
  .zara-button {
    background-color: transparent;
    color: black;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .zara-button:hover {
    text-decoration: underline;
  }
  
  /* === NAVIGATION === */
  nav ul li a {
    text-decoration: none;
    color: black;
  }
  
  /* === PRODUKTSIDE LAYOUT === */
  .product-page {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-left: 80px;
    gap: 40px;
  }
  
  .product-image {
    flex: 1 1 300px;
    padding-left: 30px;
  }
  
  .product-image img {
    max-width: 100%;
  }

  
  .product-info {
    flex: 1 1 300px;
    padding-left: 150px;
  }
  
  .product-info h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  /* === PRIS OG HJERTE === */
  .price-container {
    position: relative;
    width: 90%;
  }
  
  .price {
    font-size: 20px;
    margin-bottom: 40px;
  }
  
  .heart-line {
    position: relative;
  }
  
  .short-line {
    width: 100%;
    margin: 10px 0;
    border-top: 1px solid #000;
  }
  
  .heart-checkbox {
    display: none;
  }
  
  .heart-label {
    position: absolute;
    top: 100%;
    right: 0;
    transform: translateY(-100%);
    font-size: 20px;
    cursor: pointer;
    color: #000;
    user-select: none;
    padding-bottom: 10px;
  }
  
  .heart-label::before {
    content: "♡";
  }
  
  .heart-checkbox:checked + .heart-label::before {
    content: "♥";
  }
  
  /* === "SHOP THE LOOK" HJERTER === */
  .look-heart {
    padding-top: 2px;
  }
  
  .look-heart-checkbox {
    display: none;
  }
  
  .look-heart-label::before {
    content: "♡";
    font-size: 18px;
    color: #000;
    cursor: pointer;
  }
  
  .look-heart-checkbox:checked + .look-heart-label::before {
    content: "♥";
    color: #000;
  }
  
  /* === PRODUKTINFO: FARVER, BESKRIVELSE, TILFØJ-KNAP === */
  .colors,
  .description,
  .buttons {
    padding-top: 40px;
    line-height: 2;
  }
  
  .info {
    margin-top: 150px;
    line-height: 2;
  }
  
  .colors span {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid #000;
    margin-right: 5px;
    cursor: pointer;
  }
  
  /* === TILFØJ-KNAP === */
  .add-btn {
    padding: 8px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    cursor: pointer;
    width: 70%;
    font-size: 18px;
    transition: all 0.3s ease;
  }
  
  .add-btn:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.05);
  }
  
  /* === "SHOP THE LOOK" SEKTION === */
  .shop-the-look {
    margin-top: 100px;
  }
  
  .shop-the-look h2 {
    font-size: 30px;
    margin-bottom: 10px;
    margin-left: 110px;
  }
  
  .look-items {
    padding-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 200px;
    flex-wrap: nowrap;
    padding-bottom: 150px;
  }
  
  .look-item {
    width: 200px;
    text-align: left;
  }
  
  .look-item img {
    width: 100%;
    height: auto;
  }



/* Responsiv styling til mobil */
@media (max-width: 768px) {

    .product-image img {
    width: 75%; /* Billedet fylder hele bredden af containeren */
    height: auto; /* Bevarer billedets proportioner */
    }

    .info { 
    margin-top: 50px; /*mellemrum mellem beskrivelse og info*/
    }

    .product-info {
    margin: 0; /* Fjern margin */
    padding: 0 10px; /* Tilføj lidt indrykning fra kanten for læsbarhed */
    text-align: left; /* Sørg for, at teksten er venstrejusteret */
    }

    /* Shop the Look: Kun "STRIBEDE BUKSER" vises */
    .look-item:nth-child(n+2) {
    display: none; /* Skjuler alle billeder fra det andet og frem */    
    }

    /* Juster layoutet for "SHOP THE LOOK" */
    .look-items {
    flex-direction: column; /* Ændrer layout til en kolonne */
    gap: 20px; /* Reducer afstanden mellem elementerne */
    }

    .look-item {
    margin-left: 75px ;
    width: 75%; /* Sørg for, at elementet fylder hele bredden */
    text-align: left; /* Centrer teksten under billedet */
    margin-bottom: -70px;
    }

    .shop-the-look h2 {
    text-align: left; /* Juster overskriften til venstre */
    margin-left: 75px;
    }

  }