* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
/*#update-screen {
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0f172a;
  color: #f1f5f9;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 9999;
}
#update-screen h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: pulse 3s infinite;
  font-family: 'Comic Sans MS', cursive, sans-serif;
}
@keyframes pulse {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}
#update-screen img{
    width: 400px;
}
*/



body {
    color: #333;
    line-height: 1.6;
    background-color: black;
    color: white;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 40px;
    overflow: hidden;
    position: relative;
}
header {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-bottom: 20px;
}
nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
#view-cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background-color: #040;
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}
#view-cart:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: red;
}        
#cart-count {
    background-color: white;
    padding:  0px 7px;
    color: black;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@700&display=swap');
.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.1rem, 3vw, 3rem);
    background: linear-gradient(90deg, white, #FF4EC7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin: 0;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.logo h1:hover {
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.logo a{
    text-decoration: none;
}
.scrolling-text-container {
    width: 100%;
    overflow: hidden;
    color: black;
    padding: 2px 6px;
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
}
.scrolling-text {
    white-space: nowrap;
    display: inline-block;
    animation: scrollText 50s linear infinite;
    padding-left: 100%;
    color: silver;
}
@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
        color: gray;
    }
}
main {
    padding: 2rem 0;
}
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
    position: relative;
    padding-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #8e6c88;
}
.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
    overflow-x: auto;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
}
.category-tabs::-webkit-scrollbar {
    display: none; 
}
.category-tab {
    padding: 0.8rem 0.5rem;
    cursor: pointer;
    border: 1px solid transparent;
    margin: 0 8px;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 2px 0px rgba(192,192,192,0.5);
    transition: all 0.2s ease;
    min-width: 150px; 
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0; 
}
.category-tab.active {
    border-color: dimgray;
    border-bottom-color: none;
    margin-bottom: -1px;
    border-bottom: 0px;
    color: #00D5FF;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.1);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 15px;
    padding-top: 50px;
}
.product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 20px;
    color: black;
    background-color: white;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    filter: contrast(130%);
    background-color: white;
    color: black;
}
.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.product-info {
    padding: 1.5rem;
}
.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: monospace;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 2px;
    word-spacing: 5px;

}
.product-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.price {
    position: absolute;
    top: 5px;
    left: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    background-color: black;
    color: yellowgreen;
    padding: 0 5px;
    padding-bottom: 10px;
    border-radius: 5px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}
.product-card:hover .price{
    transition: 0.9s;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 44% 96%, 50% 75%, 0% 75%);
    background-color: yellowgreen;
    color: black;
}
.btn {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background-color: #9000AD;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    padding: 15px 0;
}
.btn:hover {
    background-color: blue;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: black;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    width: 40%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}
.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: yellow;
}
.close-modal:hover{
    color: red;
    transition: 0.3s;
}
.modal-title {
    margin-bottom: 1.5rem;
    color: #8e6c88;
}
.option-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-weight: bold;
    color: silver;
}
.option-group select, 
.option-group input[type="text"], 
.option-group input[type="number"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 17px;
    margin: 10px 0;
}
.quantity-selector {
    display: flex;
    align-items: center;
    margin: 2rem 0;
}
.quantity-selector label {
    margin-right: 1rem;
    font-weight: 500;
}
.quantity-selector button {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quantity-selector input {
    text-align: center;
    margin: 0 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    width: 70px;
}
.cart-sidebar {
    position: fixed;
    display: block;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    font-size: 12px;
    padding: 2rem;
    padding-bottom: 70px;
    overflow-y: auto;
    color: purple;
}
.cart-sidebar.active {
    right: 0;
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}
.cart-title {
    font-size: 1.5rem;
    color: #8e6c88;
}
.close-cart {
    font-size: 1.7rem;
    cursor: pointer;
    color: brown;
}
.close-cart:hover{
    color: red;
    transition: 0.3s;
}
.cart-items {
    margin-bottom: 2rem;
    overflow-y: auto;
}
.cart-item {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}
.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 1rem;
}
.cart-item-details {
    flex-grow: 1;
}
.cart-item-name {
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.cart-item-options {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}
.cart-item-price {
    font-weight: bold;
    color: #8e6c88;
}
.cart-item-quantity button {
    width: 30px;
    height: 27px;
    background: black;
    color: white;
    padding: 0 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 20px;

}
.cart-item-quantity input {
    width: 40px;
    text-align: center;
    margin: 0 0.5rem;
    padding: 0.3rem;
}
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px; /* Ger avstånd mellan - , rutan och + */
    margin-top: 8px;
}

.cart-item-quantity input {
    width: 60px !important; /* Tvingar bredden så siffran syns */
    height: 28px;
    text-align: center;
    border-radius: 4px;
}
.remove-item {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.cart-summary {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}
.summary-total {
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}
.checkout-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 0px;
    font-size: 1rem;
}
.checkout-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: black;
    color: white;
    padding: 2rem;
    padding-bottom: 3.5rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    z-index: 1002;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.checkout-form .close-cart:hover{
    color: red;
}
.close-cart{
    color: silver;
    font-weight: bold;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
}
.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1re
}
.order-confirmation {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    z-index: 1003;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: center;
}
.confirmation-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}
.confirmation-message {
    margin-bottom: 2rem;
}
.order-details {
    text-align: left;
    margin-bottom: 1.5rem;
}
.continue-shopping {
    margin-top: 1.5rem;
}
/* ===== Overlay ===== */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
}
.overlay.active {
    display: block;
}
#scrollToTopBtn {
    display: none;
    position: fixed;
    top: 50%;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: gray;
    color: black;
    cursor: pointer;
    padding: 10px 15px;
    font-size: 18px;
    transition: opacity 0.3s;
}
#scrollToTopBtn:hover {
    background-color: silver;
    color: black;
    transition: 0.4s;
}
.footer {
    background-color: black;
    padding: 40px 0 20px;
    font-family: 'Arial', sans-serif;
    border-top: 1px solid #4D4D4D;
    margin-top: 100px;
    padding-top: 70px;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
    padding-bottom: 50px;
}
.footer-brand {
    flex: 1;
    min-width: 250px;
}
.footer ul li{
    font-size: 15px;
    padding-left: 10px;
}
.footer-brand h2 {
    color: white;
    margin-bottom: 10px;
    font-size: 24px;
}
.footer-brand p {
    color: silver;
    font-size: 15px;
    line-height: 1.5;
}
.footer-links {
    flex: 1;
    min-width: 150px;
}
.footer-container h3 {
    color: greenyellow;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 5px;
}
.footer-container h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #d4a762;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links ul li {
    margin-bottom: 10px;
}
.footer-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}
.footer-links ul li a:hover {
    color: gray;
}
.footer-newsletter {
    flex: 1;
    min-width: 250px;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.social-icons a {
    color: #666;
    font-size: 25px;
    margin: 0 5px;
    transition: color 0.3s;
    font-size: 2rem;
}
.social-icons i{
    color: gray;
    border-radius: 50%;
    font-size: 2.2rem;
    box-shadow: 0 2px 10px;
    padding: 5px;
}
.social-icons a:hover {
    color: brown;
    transition: 0.3s;
    transform: translateY(-1px);
}
.social-icons i:hover{
    box-shadow: 0 10px 10px;
}
.fa-facebook:hover{
   color: #1877F2;
    transition: 0.3s;
}
.social-icons  .fa-instagram{
    padding: 5px 7px;
}
.fa-instagram:hover{
    color: red;
    transition: 0.3s;
}
.fa-twitter:hover{
    color: skyblue;
    transition: 0.3s; 
}
.fa-pinterest:hover{
   color: brown;
   transition: 0.3;
}
.newsletter-form {
    display: flex;
    gap: 5px;
    margin-top: 10px;
    padding: 20px 0;
}
.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
.newsletter-form button {
    background-color: brown;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}
.newsletter-form button:hover {
    background-color: red;
}
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    text-align: center;
    touch-action: none;
}
#expandedImage {
    width: auto;
    height: 100%;
    padding: 0 0;
    background-color: white;
    border-radius: 10px;
}
.modal-content {
    max-width: 90%;
    margin: 5% auto;
    display: block;
    animation: zoom 0.3s;
    border-radius: 0px;
    margin-top: 2%;
}
@keyframes zoom {
    from {transform: scale(0.5)}
    to {transform: scale(1)}
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.close-btn:hover {
    color: #ccc;
    transform: rotate(90deg);
    color: red;
}
 .footer-bottom {
    background-color: black;
    text-align: center;
    padding: 50px 0;
    font-size: 14px;
    color: white;
    border-top: 1px solid #4D4D4D;
}
.footer-bottom p sub{
    font-size: 8px;
}
.pattern{
    padding: 10px 0;
    color: red;
    text-transform: uppercase;
}
.bold{
    font-weight: bold;
}


/*
-----------------------------REVIEW
*/
/* Reviews & Ratings Section */
.reviews-section {
    margin: 40px 0;
    margin-top: 100px;
}
.reviews-section h2{
    position: relative;
    display: inline-block;
    font-size: 24px; 
}
.reviews-section h2::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -5px; 
  width: 70%;
  height: 3px; 
  background-color: #ff6f61; 
  border-radius: 2px; 
}
.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px;
    color: black;
}
.review-card {
    width: 400px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: black;
    color: silver;
}
.review-card:hover{
    color: white;
    transition: 0.3s;
}
.review-card:hover .reviewer-name{
    color: darkcyan;
    transition: 0.3s;
}
.reviewer-name{
    color: cyan;
}
.review-header {
    display: flex;
    align-items: ;
    margin-bottom: 15px;
}
.review-photo {
    width: 50px;
    height: 50px;
    padding: 5px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    background-color: silver;
    box-shadow: rgb(204, 219, 232) 0px 0px 10px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}
.reviewer-name {
    font-weight: bold;
    margin-bottom: 5px;
}
.stars {
    color: #f39c12;
    font-size: 15px;
    margin-bottom: 10px;
}
.review-text {
    font-style: italic;
    margin-bottom: 15px;
}
.review-date {
    font-size: 12px;
    color: silver;
}
/*
    User comments
*/
.comment-box {
  font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
  background: #1a1a1a;
  padding: 1.8rem;
  border-radius: 12px;
  max-width: 100%;
  margin: 2rem auto 0;
  border: 1px solid #333;
  margin-top: 100px;
  box-shadow: rgb(204, 219, 232) 0px 0px 5px 0px inset, rgba(255, 255, 255, 0.1) -3px -3px 6px 1px inset;
}
.comment-box h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  margin-left: 5px;
}
.comment-box h2 strong{
    color: greenyellow;
}
.comment-box textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #444;
  border-radius: 8px;
  resize: vertical;
  min-height: 120px;
  background: #2a2a2a;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}
.comment-box textarea:focus {
  outline: none;
  border-color: #007BFF;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}
.comment-box textarea::placeholder {
  color: #777;
}
.comment-box button {
  padding: 0.8rem 1.8rem;
  background: yellowgreen;
  border: none;
  color: black;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
.comment-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.comment-box button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.comments {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.comment {
  background: #2a2a2a;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #007BFF;
  animation: fadeIn 0.3s ease-out;
  position: relative;
}
.comment img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
   background: #EEAECA;
    background: radial-gradient(circle,rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
    padding: 5px;
}
.comment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #444, transparent);
}
.comment-text {
  color: #eee;
  line-height: 1.6;
  margin: 0.5rem 0;
  font-size: 1.05rem;
}
.quiz-section {
    margin: 40px 0;
    background: #020024;
    background: linear-gradient(201deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    padding: 30px;
    border-radius: 10px;
}
.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    color: white;
}
.quiz-question {
    margin-bottom: 20px;
    display: none;
}
.quiz-question.active {
    display: block;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: black;
}
.quiz-option:hover, 
.quiz-option.selected {
    background: #f39c12;
    color: black;
}
.quiz-option {
    padding: 10px 15px;
    background: #020024;
    background: linear-gradient(191deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    color: black;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.quiz-option img{
    width: 40px;
    box-shadow: rgb(204, 219, 232) 0px 0px 10px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
    border-radius: 50%;
}
.quiz-progress {
    height: 7px;
    background: white;
    margin-bottom: 20px;
    border-radius: 20px;
}
.quiz-progress-bar {
    height: 100%;
    background: #f39c12;
    border-radius: 5px;
    width: 0%;
    transition: width 0.3s;
}
.quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.quiz-btn {
    padding: 10px 20px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.quiz-btn:hover{
    background-color: black;
    transition: 0.3s;
}
.quiz-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}
.quiz-result {
    display: none;
    text-align: center;
    padding: 20px;
    color: black;
}
.quiz-result h3 {
    color: #f39c12;
}
.scent-recommendation {
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
#scent{
    color: cyan;
    font-size: 2rem;
}
.image-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.product-image {
    display: none;
    width: 100%;
}
.product-image.active {
    display: block;
}
.prev-btn,
.next-btn {
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    background: white;
    color: black;
    padding: 10px 13px;
    cursor: pointer;
    z-index: 2;
    font-size: 1rem;
    font-weight: bold;
    border: 0.5px solid gray;
}
 .prev-btn:hover,
.next-btn:hover {
    color: blue;
    background-color: silver;
    transition: 0.3s;
}
.prev-btn {
    left: 0px;
}
.next-btn {
    right: 0px;
}
.menu-icon{
    display: none;
}

















/*
----------------------------------------------------------------------------------------------------------------------------
____________________________________________________---------__________--------__________---------____________------------______________----------
*/

@media (max-width: 900px){
    .reviews-section{
        margin-top: 50px;
        padding: 0 15px;
    }
    .reviews-container{
        justify-content: center;
        gap: 15px;
    }
    .review-card {
        width: 100%;
        max-width: 450px;
        flex: 1 1 calc(45% - 20px);
        min-width: 300px;
        margin: 0 auto;
        padding: 15px;
        background: linear-gradient(145deg, #1a1a1a, #000);
        border: 1px solid gray;
        font-size: 13px;
    }
    .review-photo{
        width: 35px;
        height: 35px;
    }

}
@media (max-width: 780px){
    body{
        background-color: black;
        color: black;
    }
    .container{
        
        padding-top: 50px;
    }
     .logo h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.1rem, 3vw, 3rem);
        background: linear-gradient(90deg, white, #FF4EC7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
        margin: 0;
        letter-spacing: 1.5px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    .modal{
        width: 100%;
    }
   .products-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 1rem;
        background: none;
        background-color: ;
    }
    .section-title{
        color: white; !important;
    }
    .product-card{
        padding: 0 0;
        padding-bottom: 20px;
        margin: 10px 0;
    }
    .product-card img {
        height: 150px;
    }
    .btn{
        background-color: blue;
    }
    .btn:hover{
        background-color: darkblue;
    }
    .modal-content{
        margin-top: 10%;
    }
    #expandedImage{
        width: 85%;
        height: auto;
    }
    .modal .modal-content{
        width: 80%;
        border-radius: 5px;
    }
    .close-btn{
        top: 10px;
        right: 45px;
        font-size: 30px;
    }
    .close-btn:hover{
        transform: rotate(0deg);
    }
   .menu-icon {
        position: fixed;
        top: 30px; /* Flyttad upp lite för bättre look */
        left: 20px;
        display: block;
        color: white;
        font-size: 35px;
        z-index: 2000; /* Måste vara högre än menyn */
        cursor: pointer;
    }
    .category-tabs {
        display: block; /* Alltid flex, men gömd via transform */
        flex-direction: column;
        justify-content: flex-start; /* Centrerar länkarna vertikalt */
        align-items: center;
        position: fixed;
        top: 0;
        right: 100%; /* Startar helt utanför skärmen till höger */
        width: 100%;
        height: 100vh; /* Tar hela skärmens höjd */
        background-color: rgba(0, 0, 0, 0.9); /* Svart med lite transparens */
        z-index: 1500;
        transition: right 0.4s ease-in-out; /* Skapar glid-effekten */
        padding-top: 60px;
        border: none;
    }
    /* När menyn har klassen .show, glider den in */
    .category-tabs.show {
        right: 0 !important;
    }
    .category-tab {
        width: 100%;
        margin: 15px 0;
        padding: 15px;
        font-size: 1.5rem; /* Större text för fullscreen */
        background: transparent;
        color: white;
        border: 0px;
        border-bottom: 1px solid #333;
        border-radius: 0;
        box-shadow: none;
    }
    .category-tab:hover{
        color: red;
        transition: 0.4s;
    }
     .category-tab.active {
        margin-bottom: -1px;
        color: red;
        font-weight: bold;
        background-color: rgba(0, 0, 0, 0.1);
    }

    #scrollToTopBtn {
        top: 90%;
        font-size: 0.7rem;
    }
    header{
        padding: 3rem 0;
        background: none;
        background-color: rgba(0, 0, 0, 0.1);
    }
    .scrolling-text-container{
        padding: 0 0;
    }
    .scrolling-text{
        color: gray;
        animation: scrollText 50s linear infinite;
        font-size: 14px;
    }
    #view-cart {
        padding: 0.4rem 1.2rem;
        margin-bottom: 10px;
        background-color: #030;
    }
    .section-title {
        text-align: center;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        color: white;
        position: relative;
        padding-bottom: 1rem;
    }
    .footer-container h3{
        color: yellow;
    }
    .social-icons{
        padding-bottom: 20px;
        justify-content: space-around;
    }
    .footer-links ul li a{
        border-radius: 5px;
        border-bottom: 1px solid #6C6B73;
        padding: 10px 5px;
        display: block;

    }
    .newsletter-form input{
        border-radius: 0px;
    }
    .newsletter-form button{
        border-radius: 0px;
    }
     .social-icons i{
        font-size: 2rem;
        margin: 0 0;
    }
     .price {
        font-size: 1.2rem;
    }
    #update-screen h1{
        font-size: 2rem;

    }
     .prev-btn,
    .next-btn {
        width: 45px;
        height: 45px;
        top: 88%;
        margin: 0 5px;
        border-radius: 50%;
        background-color: black;
        color: white;
        border: 1px solid silver;
    }
    .review-card{
        color: white;
        height: 230px;
        aspect-ratio: 3/2;
        clip-path: ellipse(95% 100% at 50% 0%);
        background: linear-gradient(
          90deg,
          rgba(1, 0, 20, 1) 0%,
          rgba(5, 5, 80, 1) 40%,
          rgba(10, 60, 120, 1) 100%
        );
        border: 0px;
    }
    .review-date{
        color: silver;
    }
    .quiz-section{
        margin: 10px;
        padding: 10px 20px;
        background: #020024;
        background: linear-gradient(
          90deg,
          rgba(1, 0, 20, 1) 0%,
          rgba(5, 5, 80, 1) 40%,
          rgba(10, 60, 120, 1) 100%
        );
    }
    #quiz-next{
        background-color: white;
        color: black;
    }
    #quiz-next:hover{
        background-color: silver;
        transition: 0.3s;

    }
    .quiz-result{
        color: black;
    }
    .quiz-result h3{
        text-align: center;
        color: cyan;
    }
    .quiz-result p{
        color: gray;
        text-align: left;
        font-size: 14px;
    }
    .quiz-question h3{
        margin: 10px 0;
        font-size: 17px;
    }
    .quiz-container{
        color: white;
    }
    .quiz-container p{
        font-size: 14px;
    }
    .quiz-option{
        font-size: 15px;
        color: white;
    }
    .quiz-options{
        color: black;
    }
    .reviews-section{
        padding: 10px;
    }
    .reviews-section h2{
        color: white;
    }
    .quiz-nav{
        padding: 20px 0;
    }
    #update-screen img{
        width: 300px;
    }
    .comment-text {
        font-size: 0.8rem;
    }
    .comment img{
        width: 30px;
        height: 30px;
    }

}
@media (max-width: 600px){
    .category-tabs{
        width: 100%;
    }
    .cart-sidebar {
        height: auto;
        padding-top: 5px;
    }
    .cart-header{
        position: relative;
        padding-top: 0px;
        margin: 0 0;
    }
    .cart-title{
        font-size: 18px;
        margin-top: 5px;
    }
    .close-cart{
        position: absolute;
        right: 0px;
        top: 5px;
    }
    .cart-items{
    }
    .cart-items img{
        width: 60px;
        height: 60px;
    }
    .cart-summary {
        border-top: 1px solid silver;
        margin-top: 0.5rem;
    }
}

/* ===== Responsive Styles ===== */
@media (max-width: 500px) {
    .container{
    }
    header{
        padding: 1rem 0;
    }
    .header-content {
        flex-direction: column;
        padding: 1rem;
    }
    nav ul {
        margin-top: 1rem;
    }
    nav ul li {
        margin-left: 1rem;
    }
    .modal{
        width: 100%;
    }
    .products-grid {
        grid-template-columns: repeat(1, 1fr); 
        gap: 1rem;
    }
    .product-card{
        box-shadow: 0 0 5px gray;
    }
    .product-card img{
        height: 200px;
    }
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
    .footer-links, .footer-newsletter {
        min-width: 100%;
    }
    .category-tabs {
        width:  100%;
        margin: 10px auto;
        display: flex;
        justify-content: flex-start;
        padding: 10px 20px;
        padding-top: 120px;
        border-radius: 10px;
        box-shadow: 0 0 0;
    }
    .category-tab {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0.4rem;
        border-radius: 5px;
    }
    .modal-content{
        margin-top: 15%;
    }
   .close-btn{
        top: 5px;
        right: 30px;
       }
   .modal .modal-content{
        width: 90%;
        border-radius: 5px;
    }
    .reviews-section h2{
        font-size: 19px;
    }
    .comment-box h2{
        font-size: 20px;
    }
    .comment-box button{
        font-size: 12px;
    }
    .comment-box textarea{
        font-size: 14px;
    }
    .cart-sidebar {
        position: fixed;
        display: block;
        top: 0;
        right: -350px;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1001;
        font-size: 12px;
        padding: 2rem;
        padding-bottom: 70px;
        overflow-y: auto;
        color: purple;
    }
    .cart-header{

    }
    .cart-title{
        color: green;
    }
    .cart-items{
        padding-top: 30px;
        padding-left: 2rem;
        padding-bottom: 0px;
    }
    .close-cart{
        color: black;
    }
    .prev-btn,
    .next-btn {
        top: 65%;
    }
}
