﻿:root {
 	--background-color-main: white;
  --background-color-menu: black;
  --background-color-head:  rgb(255, 255, 255);
  --border-color-menu: black;
  --normal-color-option: white;
  --border-size-menu: 1px;
  --hover-color-option: yellow;
  --white: white;
  --green: lightgreen;
  --black: black;
  --display-width : 100%;
  --display-height : 424px;
  --base-breadcrumb-color: black;
  --menu-icon-left: 20px;
}

  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

 h1 { padding-left:10px; padding-bottom: 5px;} 
 h2 { padding-left:10px; padding-bottom: 5px; } 
 h3 { padding-left:10px; padding-top:10px; padding-bottom: 5px;}
 h4 { padding-left:10px; padding-bottom: 5px; }

 span.tick { 
  width:30px;
  height:40px;
  background-image: url('../media/tick.png');
  background-repeat: no-repeat;
  background-size: contain;
  padding:10px;
  }

body {
  display:flex;
  justify-content: center;
  margin: 0px auto;
  align-items: center;
  padding:0px;
  background-color: var(--background-color-main);
}


/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #13a8c6;
  font-family: Arial;
  width: var(--display-width);
  z-index:2;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 26px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
    /* width: var(--display-width); */
}

/* Dropdown button */
.dropdown .dropbtn {
  height:100%;
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: rgb(13, 88, 216);
  cursor:pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position:absolute;
  top:240px;
  background-color: #f9f9f9;
  width: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Mega Menu header, if needed */
.dropdown-content .header {
  background: rgb(13, 88, 216);
  padding: 16px;
  color: white;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 10px;
  background-color: white;
  height: auto;
}

.column2 {
  float: left;
  width: 60%;
  padding: 10px;
  background-color: white;
  height: auto;
}

.column3 {
  float: left;
  width: 200px;
  padding: 10px;
  background-color: white;
  height: auto;
}

.columnAd {
  width:80%;
}
IMG.columnAd  {
  width:80%;
}
/* Style links inside the columns */
.column a, .column3 a  {
  float: none;
  width: 100%;
  color: black;
  padding: 14px 26px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a background color on hover */
.column a:hover,.column3 a:hover {
  background-color: #ddd;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

#search {
  width: 300px;
  height:40px;
}

#search INPUT {
  border-radius:15px;
  height:40px;
  width:400px;
  background-image: url(../media/search.png);
  background-repeat: no-repeat;
  background-position: right center;
  padding-left: 10px;
}

#search A {
  position: relative;
  top:-40px;
  left:180px;
  width:40px;
  height:40px;
  color: transparent;
  font-size: 30px;
}
  
/* The side navigation menu */
.sidenav {
  border: var(--border-color-menu) var(--border-size-menu) solid;
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  z-index: 100;
  background-color:var(--background-color-menu); /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 20px;
  color: var(--normal-color-option);
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: var(--hover-color-option);

}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#wrapper {
  margin:0;
  width:var(--display-width);
}

.candle_in_hand
{
  background: url(../media/candle\ in\ hand.jpg);
  background-size: cover;
} 

#header {
  width: var(--display-width);
  min-height:200px;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-end;
  background-color: var(--background-color-head);
  }
  
  #main {
  width: var(--display-width);
  display:flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding:20px;
  justify-content: space-evenly;
  align-items: flex-start;
}
.display_in_rows {
  width: var(--display-width);
  display:flex;
  flex-direction: row;
  gap: 4px;
  justify-content: space-evenly;
  align-items: flex-start; 
}
.display_in_rows A {
text-decoration: none;
}

#footer {
  left:0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 100px; 
  width: var(--display-width);
  background-color: var(--base-breadcrumb-color);
  color: var(--background-color-main);

}

#footer A {
  display: flex;
  text-decoration: none;
  align-content: center;
  align-items: center;
  height: 100px;
  padding-left:20px;
  color: var(--background-color-main);
  
}
  
#menu-open {
 text-decoration: none;
 background-image: url(../media/menu.png);
 left: 15px;
 top: 330px;
 position: absolute;
 z-index: 999;
 transition-duration: 1s;
 transition-delay: 0S;
 transition-timing-function: ease-in-out;
}

#menu-open:hover {
 cursor: hand;
 transform: rotate(360deg) translateZ(10px);
}

.logo {
 padding-left: 30px;
 width:450px;
 height:200px; 
}

.candles {
  width:200px;
  height:200px;
  padding: 0px;
}

#login {
 position:fixed;
 display:none;
 background-color: white;
 color: white;
 padding:3px;
 z-index: 99099;
}

#login .box {
  padding: 10px;
  margin: 50px;
  width:500px;
  height:300px;
  background: #3b75d8;
  border-radius: 5px;
}

#login .closeLogin {
  position: absolute;
  top: 50px;
  left: 460px;
  font-size: 46px;
  margin-left: 50px;
  color: red;
  text-decoration: none;
}

FORM {
  display: flex;
  flex-direction: column;
  align-items: center;
}

INPUT, BUTTON {
  height:30px;
  padding: 10px 0 10px 0;
  border-radius: 3px;
  text-align: center;
  vertical-align: middle;
}

#admin, #user_menu, .log_out {
  display: none;
}


#msg, #val, #code {
  display: none;
  padding-top:20px;
}

  #menu_open_button { 
  display: none; } 
  
  #menu_open_button { 
  position:absolute;
  left:var(--menu-icon-left);
  top: 200px;
  left: -14px;
  width: 40px;
  height: 40px; 
  background-image: url("../media/menu_off.png");
  background-size: cover;
  }

  #menu_open_button:hover { 
  background-image: url("../media/menu_on.png");
  background-size: cover;
  }

  .navbar {
    display:block;
  }

  #user A  {
    position:absolute;
    left:var(--menu-icon-left);
    top: 70px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    background-image: url("../media/user_off.png");
            background-size: cover;
            transition: background-image 0.3s ease-in-out;
        }

  #user A:hover {
  background-image: url("../media/user_over.png");
  }
  
  #trolley A  {
    position:absolute;
    left:var(--menu-icon-left);
    top: 110px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    background-image: url("../media/trolley_off.png");
            background-size: cover;
            transition: background-image 0.3s ease-in-out;
        }
 #trolley_count {
    width: 40px;
    height: 40px;
    color:#3b75d8;
    position:absolute;
    left:var(--menu-icon-left);
    top: 150px;
    width: 40px;
    height: 40px;
    text-align: center;
    text-decoration: none;
  }

  #trolley A:hover {
  background-image: url("../media/trolley_over.png");
  }


  .clickable {
   cursor:pointer; 
  }

   .login_title {
    font-size: 20px;
    color:white;
    padding-right:10px;
    text-shadow: 1px 1px 2px black;
   }

 .login_input {
    font-size: 20px;
    color:black;
    padding-right:10px;
    border: 2px #000 solid;
    text-shadow: 1px 1px 2px white;
   }


/* scrolling images */
.carousel {
 margin: 0px auto;
 width: 100svw;
 height: 350px;
 border: 0px;
 display: flex;
 overflow-x: auto;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.card {
 width: 1024px;
 height: 350px;
 padding: 0;
 border-radius: 5px;
 flex: 0 0 5em;
}

.group {
  width: 5120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  animation: spin 30s infinite linear;
}

@keyframes spin {
   from { translate: 0; }
   to   { translate: -100%; }
}

.card img {
 width:  1024px;
 height: 350px;
 object-fit: fill ;
}

DIV.productBox {
  display:flex;
  flex-direction: column;
  justify-content:center;
  align-content: center;
  width: 250px;
  height: 270px;
  background:#13a8c6;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 5px;
  border: 1px black solid;
  text-decoration: none;
}
A.noline {
  text-decoration: none;
  color:white;
}
.blue {
  color:#3b75d8;
}
H3.productTitle {
  font-size: 18px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  margin: 5px;
  color:yellow;
}
IMG.productThumb {
  width:180px;
  height:180px;
  padding-left:25px;
}
.productBox .productPrice {
  padding-left:6px;
  color:white;
}

DIV.title {
  width: var(--display-width);
}

INPUT.userinput {
 margin-left:20px;
 width: 600px;
 float: right;
}

.middle {
  align-self: flex-start;
  justify-self: center;
  text-align: center;
}

BUTTON.addbtn , #return {
  margin:5px;
  padding:5px;
  border-radius: 50%;
  border: 5px blue solid;
  width:60px;
  height:60px;
  text-align: center;
  justify-self: center;
  vertical-align: middle;
  background-color: bisque;
  cursor: grabbing;
}
BUTTON.addbtn:hover, #return:hover {
  background-color: yellow;
}
BUTTON.disabled {
  background-color: grey;
  opacity: 0.6;
  cursor: not-allowed;
}

.blurb {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size:20px;
  padding-left:10px;
}
p {
  align-self: flex-start;
  padding-top:5px;
  max-width: var(--display-width);
  width:100svw;
}
.underline {
  text-decoration: underline;
}
.container { 
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  width: 100%;
  background-color: white; 
  gap: 4px;
  flex-wrap: wrap;
  height:auto;
  border-bottom: 2px black solid;
  /* overflow: scroll; */
}
.container div {  
  padding: 2px;  font-size: 1.2em; 
}

.container .column {
  width:33.3%;
  height:40px;
}

.box10 {  width:100px; }
.box20 {  width:200px; }
.box30 {  width:300px; }
.box40 {  width:500px; }
.box50 {  width:500px; }
        
.delete {
  width: 50px;
  height: 50px;
  background-image: url('../media/bin.png');
  background-repeat: no-repeat;
  background-size: 75% 75%;
  border-radius: 50%;
  background-position: 50% 50%;
}        
.checkout {
  width: 50px;
  height: 50px;
  background-image: url('../media/checkout.png');
  background-repeat: no-repeat;
  background-size: 75% 75%;
  border-radius: 50%;
  background-position: 50% 50%;
  font-size: 18px;
}
 
.checkout_div1 div
{
  display: flex;
  width: 30svw;
}
.checkout_div2 div
{
  display: flex;
  width: 70svw;
  font-size: 18px;
  text-align: left;
}
.column input
{
  width:100%;
}
.title
{
  display: flex;
  color:black;
  text-align: center;
  width:100%;
  font-size: 18px;
}

#checkout_col
{
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  width: 100svw;
  background-color: white; 
  gap: 2px;
  flex-wrap: wrap;
  height:auto;
  border-bottom: 2px black solid;
  text-align: left;
}

.delete:hover,.checkout:hover {
  background-color: yellow;
} 

.red {
 color: red;
 font-size:22px;  
}
.green {
 color: green;
 font-size:22px;  
}
.blue {
 color: blue;
 font-size:22px;  
}
.phone {
  font-size: 20px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.email {
  font-size: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 800;
}

#notice {
  position:absolute;
  left: 0px;
  top: 0px;
  width: var(--display-width);
  height:auto;
  color:red;
  background-color:rgb(207, 202, 173);
  font-size:22px;  
  text-align: center;
}

#admin_options {
    width: var(--display-width);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
    border: 2px black solid;
    border-radius: 5px;
    gap: 4px;
}

.dashnav UL {
  width: 400px;
  height:auto;
  display:flex;
  flex-direction: column;
  gap: 5px;
}

.dashnav LI, .dashnav LI A {
  width:100%;
  height:40px;
  background-color: #000;
  border-radius: 50%; /* rounded */
  align-items: center;
  justify-content: center;
  list-style-type: none;
  text-decoration: none;
  font-size: 18px;
  color: white;
}

.dashnav LI A {
  width:100%;
  height:100%;
}

.dashnav LI A:hover {
 background-color: #3b75d8;
 } 

.box, A.options {
    width:100%;
    height:auto;
    background-repeat: no-repeat;
    border: 2px black solid;
    border-radius: 5px;
    color: black;
    background-color: bisque;
    text-align: center;
    font-size: 20px;
    margin:5px;
}
.lrgbox {
    width:800px;
    height:50px;
    background-repeat: no-repeat;
    margin: 2px;
    border: 2px black solid;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: black;
    background-color: bisque;
    border: 2px black solid;
    border-radius: 2px;
    text-align: center;
    font-size: 20px;
    margin:10px;
    align-self: flex-start;
}


  .product-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            width: 250px;
            min-height:250px;
            height:auto;
            border: 2px solid #000;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

  .product-lrgcard {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            width: 100%;
            height:auto;
            border: 2px solid #000;
        }

        .product-lrgcard:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4245e4 0%, #8ec5fc 100%);
            border-radius: 10px;
            border: 1px solid #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            margin-bottom: 15px;
        }

        .product-lrgimage {
            width: 90%;
            height: auto;
            background: linear-gradient(135deg, #4245e4 0%, #8ec5fc 100%);
            border-radius: 10px;
            border: 1px solid #000;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            margin-bottom: 15px;
        }

        .product-name {
            font-size: 1.3em;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .product-price {
            font-size: 1.5em;
            color: #667eea;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .product-rating {
            display: flex;
            gap: 3px;
            margin-bottom: 10px;
        }

        .star {
            color: #ffc107;
            font-size: 18px;
        }

        .stock-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85em;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .in-stock {
            background: #d4edda;
            color: #155724;
        }

        .low-stock {
            background: #fff3cd;
            color: #856404;
        }

        .out-stock {
            background: #f8d7da;
            color: #721c24;
        }

        .btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: transform 0.2s;
        }

        .btn:hover {
            transform: scale(1.02);
        }

        .btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    display: none;
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

.cart-notification.success {
    background: #28a745;
}

.cart-notification.warning {
    background: #ffc107;
    color: #333;
}

.cart-notification.info {
    background: #17a2b8;
}

.cart-notification.error {
    background: #dc3545;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
#cart-container {
    width: 100svw;
    border-radius: 10px;
    border: 2px solid #000000;
  
}
#cart-container::before {
  content: 'Your Basket ';
  width:100svw;
  clear: both;
  height: 40px;
  text-align: center;
  font-size: 24px;  
}
#cart-items {
    max-height: 200px;
    width:100%;   
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 2px solid #5665a6;
    overflow-y: auto;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    vertical-align: center;  
} 

 .cart-item  {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    justify-items: center;
    justify-content: center;
    alignment-baseline: middle;
    width: 100svw;
    max-width:1028px;
    height:40px;
    background: #819fbb;
    color:white;
    border-radius: 5px;
    margin-bottom: 2px;
    padding: 10px 0px;
    margin: 10px 0px;
}

#cart-badge {
    background: #6f7f47;
    color: white;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 25px;
    display: none;
    width:40px;
    height:40px;
    align-content: center;
    text-align: center;
    vertical-align: middle;
}
.cart-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    width: auto;
    max-width:500px;
}
.cart-id {
    width: 40px;
    margin-right: 20px;
    float:left;
}
.cart-item-info h4 {
    font-size: 18px;
    color: white;
}
.cart-item-image {
    font-size: 18px;
    color: blue;
    padding-left: 10px;
    padding-right: 10px;
}

.cart-item-price {
    color: #ffffff;
    margin-right: 20px;
}

.cart-item-controls {
    display: flex;
    width:300px;
    justify-content: center;
    padding-left: 10px;;
    align-items: center;
}

.qty-btn-add, .qty-btn-delete, .qty-btn-minus {
    display: block;
    width: 20px;
    height: 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
   }

.qty-btn-add {
    background-image: url('../media/plus_off.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;  
}   
.qty-btn-add:hover {
    background-image: url('../media/plus_over.png');
}
.qty-btn-minus {
    background-image: url('../media/minus_off.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;  
}   
.qty-btn-minus:hover {
    background-image: url('../media/minus_over.png');
}
.qty-btn-delete {
    background-image: url('../media/delete_off.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;  
}   
.qty-btn-delete:hover {
    background-image: url('../media/delete_over.png');
}
.blue-bg {
     background: #667eea;
}  
.blue:hover {
    background: #5568d3;
}

.red-bg {
     background: #db3838;
}  
.red:hover {
    background: #923535;
}

.quantity {
    min-width: 30px;
    font-weight: 600;
    padding:10px;
}

.item-subtotal {
    font-weight: 600;
    color: #caca2b;
    padding-left: 20px;
    padding-right: 20px;
}

.empty-cart {
    padding: 40px;
    color: #666;
}

.add-to-basket-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s;
}

.add-to-basket-btn:hover {
    transform: scale(1.05);
}

.add-to-basket-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

            .cookie-popup {
                position: fixed;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                padding: 25px;
                box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
                z-index: 10001;
                transform: translateY(100%);
                transition: transform 0.4s ease;
            }

            .cookie-popup.bottom {
                bottom: 0;
            }

            .cookie-popup.top {
                top: 0;
                box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
                transform: translateY(-100%);
            }

            .cookie-popup.show {
                transform: translateY(0);
            }

            .cookie-popup.dark {
                background: rgba(33, 33, 33, 0.98);
                color: white;
            }

            .cookie-popup.dark .cookie-text h3,
            .cookie-popup.dark .cookie-text p {
                color: white;
            }

            .cookie-popup.dark .cookie-text a {
                color: #8ec5fc;
            }

            .cookie-content {
                max-width: 1200px;
                margin: 0 auto;
                display: flex;
                align-items: center;
                gap: 30px;
                flex-wrap: wrap;
            }

            .cookie-icon {
                font-size: 50px;
                flex-shrink: 0;
            }

            .cookie-text {
                flex: 1;
                min-width: 300px;
            }

            .cookie-text h3 {
                color: #333;
                font-size: 1.3em;
                margin: 0 0 10px 0;
                font-weight: 600;
            }

            .cookie-text p {
                color: #666;
                line-height: 1.6;
                margin: 0 0 10px 0;
            }

            .cookie-text a {
                color: #667eea;
                text-decoration: none;
                font-weight: 600;
            }

            .cookie-text a:hover {
                text-decoration: underline;
            }

            .cookie-actions {
                display: flex;
                gap: 15px;
                flex-wrap: wrap;
            }

            .cookie-btn {
                padding: 12px 30px;
                border: none;
                border-radius: 25px;
                cursor: pointer;
                font-size: 16px;
                font-weight: 600;
                transition: all 0.3s;
                white-space: nowrap;
                font-family: inherit;
            }

            .cookie-accept {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
            }

            .cookie-accept:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
            }

            .cookie-decline {
                background: #e0e0e0;
                color: #333;
            }

            .cookie-decline:hover {
                background: #d0d0d0;
            }

            .cookie-settings {
                background: transparent;
                color: #667eea;
                border: 2px solid #667eea;
            }

            .cookie-settings:hover {
                background: #667eea;
                color: white;
            }

            .cookie-popup.dark .cookie-decline {
                background: #555;
                color: white;
            }

            .cookie-popup.dark .cookie-decline:hover {
                background: #666;
            }

            .cookie-close {
                position: absolute;
                top: 15px;
                right: 15px;
                background: none;
                border: none;
                font-size: 24px;
                color: #999;
                cursor: pointer;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: all 0.3s;
                font-family: Arial, sans-serif;
                line-height: 1;
            }

            .cookie-close:hover {
                background: #f0f0f0;
                color: #333;
            }

            .cookie-popup.dark .cookie-close:hover {
                background: #444;
                color: white;
            }

            @media (max-width: 768px) {
                .cookie-content {
                    flex-direction: column;
                    text-align: center;
                }

                .cookie-actions {
                    width: 100%;
                    justify-content: center;
                }

                .cookie-btn {
                    flex: 1;
                    min-width: 100px;
                }
            }
#images {
  width:100svw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2px;
  height:auto;
}
#images IMG {
  width:200px;
  height:auto;
display: flex;
}

#intro {
  display: block;
  width: var(--display-width);
}
            /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-width: 600px) {
  #menu_open_button { display: block; left:20px; }
  .card { flex: 0 0 100%; }
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
  #footer {width:100svw;}
  .navbar { display: none;}
  body { display: block; }
  :root { --display-width: 100svw; }
  #search { left: 0px; }
  .container div { font-size: 0.75em;}
  .box { border-radius: 0px;
  background-color: white;
  }
 .column, .column2 {
  display: flex;
  flex-direction: column;
  float:none;
  width:100svw;
 }
  /* scrolling images */

 .carousel,.card {
 width: 100svw;
}

.group {
  width: 100svw;
}
 .cart-item-info h4 {
    font-size: 12px;
    color: white;
}
.cart-item-image {
    font-size: 12px;
    color: blue;
    padding-left: 10px;
    padding-right: 10px;
}

}
