* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --green: rgb(73, 118, 55); 
    --ebay-green: rgb(134,184,23);
    --dark-blue: rgb(4, 38, 208); 
    --orange: rgb(255, 132, 10) ; 
    --blue: rgb(22, 136, 251);
    --electric-blue: #1F51FF;
    --cyan-blue: #00FFFF;
    --yellow: rgb(247,202,0);
    --neon-red: #ff0033;
    --neon-red-2: #ff3366;
    --neon-green: #39FF14;
    --neon-green-2: #39FF15;
    --mercari-purple: rgb(82,85,240); 
    --gray: rgb(116, 116, 118);   
}
body {
    font-family: Arial, sans-serif;
    background-color: white;
}
header {
    background-color: rgb(22, 136, 251);
    color: white;
    padding: 15px 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: top;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.header{
    display: block;
    margin: -10px;
    text-decoration: none;
}
.header-img{
    border-radius: 20px;
    max-width: 105px;
    display:inline-block;
    margin: 30px;
}
.header-p {
    color: white;
    margin: 20px;
    display: inline-block;
    padding-left: 200px;
}
.header-img-2{
    max-width: 100px;
    display:inline-block;
    margin: 30px;
    padding-left: 1400px;
}
.topnav {
    overflow: hidden;
    background-color: rgb(22, 136, 251);
    position: relative;
    font-family: sans-serif;
}

.topnav #myLinks {
    display: none;
    background-color: rgb(22, 136, 251);
    text-align: left;
    margin-left: 15px;
    border-bottom: 15px;
}

.topnav a {
    background-color: rgb(22, 136, 251);
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

.topnav a.icon {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;
}
.topnav a:hover {
    background-color: rgb(255, 132, 10);
    color: white;
    border-radius: 25px;
    
}
header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
header nav {
    flex-grow: 1;
    text-align: right;
}
.row-ad{
    display: block;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}
@media screen and (max-width: 400px) {
    .column-side, .column.middle {
            width: 90%;
        }
        }
.ad-banner{
    background: rgb(22, 136, 251);
    color:white;
    text-align: center;
    font-size: 45px;
    margin-bottom: 55px;
    margin-top: 25px;
    padding: 2px;
    font-family:  'sans-serif';
    transform: skew(-15deg);
}
.ad_image_container{
    object-fit: scale-down;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 55px;
    margin-bottom: 55px;
}
nav ul {
    list-style-type: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.container{
    margin: auto;
    padding-left: 7%;
    padding-right: 25px;
    width: 100%;
}
.footer {
    background-color: rgb(22, 136, 251);
    color: white;
    padding: 60px 0;
    text-align: center;
    list-style-position: inside;
}
.copyright{
    padding-top: 2%;
    padding-left: 13%;
    text-align: left;
}
.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    margin-right: 30%;
    margin-bottom: 3%;
    list-style-position: inside;
}
.footer-section {
    list-style: none;
    padding: 0;
    color:white;
    list-style-position: inside;
    text-align: left;
}
.footer-section li {
    margin-bottom: 10px;
    list-style-position: inside;
}
.footer-section li strong {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
    list-style-position: inside;
}
.footer-section a {
    color: white;
    text-decoration: none;
    list-style-position: inside;
}
.footer-section a:hover {
    color: white;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        list-style-position: inside;
    }
    
    .footer-section {
        margin-bottom: 20px;
        list-style-position: inside;
    }
}
.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 100px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card {
    background-color: white;
    width: 350px;
    margin: 15px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}
.product-card:hover {
    transform: scale(1.05);              
}
.product-card img {
    width: 300px;
    height: 300px;
    border-bottom: 2px solid #ccc;
    background-color: #f4f4f4 ;
}
.product-card h2 {
    font-size: 20px;
    margin: 10px 0;
    color: rgb(22, 136, 251);
}
.product-card p {
    color: black;
    font-size: 14px;
}
.product-card .price {
    color: #e67e22;
    font-weight: bold;
    font-size: 18px;
}
.product-card button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}
.product-card button:hover {
    background-color: rgb(22, 136, 251);
    color: white;
}
@media (max-width: 768px) {
.product-card {
    width: 100%;
}

.header{
    padding: 10px;
    border-bottom: 15px;
}
footer {
    padding: 10px;
}
nav ul li {
    margin: 0 5px;
}
}
::-webkit-scrollbar {
    width: 15px;
  }
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px rgb(222,121,33);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: rgb(222,121,33);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: rgb(22, 136, 251); 
}
.powered-by {
    background-color: white; 
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    color: black;
    margin-top: 10px;
    margin-bottom: 50px;
}
.powered-by a {
    color: rgb(22, 136, 251);
    text-decoration: none;
    font-weight: bold;
}
.powered-by a:hover {
    text-decoration: underline;
}
.powered-by img {
    max-width: 150px; 
    height: auto;
    vertical-align: middle; 
    padding-left: 5px;
    border-radius: 5px;
}
.powered-by a {
    display: inline-block;
    padding-left: 10px;
}
#review_settings {
    color: rgb(222,121,33);
    margin-bottom: 5px;
}
.commerce-logo{
    height: 50px;
    width: 100px;
    padding: 5px;
    border-radius: 2px;
    align-items: last baseline;
}

.glass {
    border-radius: 30px;
    padding: 8px 30px;
    margin:auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px); 
}
.glass:hover {
    transform: scale(1.05); 
}
.glass::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.3) 100%);
    transform: rotate(-45deg);
    animation: glass 5s infinite;
}
@keyframes glass {
    0% {
        left: -200%;
    }
    100% {
        left: 200%;
    }
}
.body-aside {
    flex: 1;
    background-color: white;
    color: white;
    padding: 20px;
    margin-left: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px   rgba(0, 0, 0, 0.1);
    text-align: center;
}
.body-aside h2 {
    font-size: 60px;
    padding: 10px;
    color: #10b70a ;
    margin-bottom: 10px;
    font-weight: bolder;
    font-family:  'sans-serif';
    transform: skew(-15deg);
}
.body-aside p {
    font-size: 14px;
    color: #555;
}
.body-aside img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}
.body-aside a {
    color: #0073e6;
    text-decoration: none;
}
.body-aside a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .body-aside {
        margin: 20px 0;
    }
}
.favorite {
    align-items: right;
    text-align: right;
    top: 10px;
    right: 50px;
    font-size: 20px;
    color: rgb(22, 136, 251);
    cursor: pointer;
    transition: color 0.3s;
}
.favorite:hover {
    color: rgb(222,121,33);
}
.favorite.active {
    color: rgb(222,121,33);
}
.badge {
    position: top;
    top: 20px;
    left: 10px;
    background-color: rgb(22, 136, 251);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}
.cookie-consent-modal {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(22, 136, 251);
    color: white;
    padding: 20px;
    font-family: Arial, sans-serif;
    z-index: 1000;
    border-radius: 15px;
  }
  .cookie-consent-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cookie-consent-message {
    font-size: 16px;
  }
  .cookie-consent-buttons {
    display: flex;
    gap: 10px;
  }

  .cookie-consent-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
  }
  .cookie-consent-button.accept {
    background-color: #4CAF50;
    color: white;
  }
  .cookie-consent-button.decline {
    background-color: #f44336;
    color: white;
  }
  .site-lock{
    padding-left: 30px;
  }
  .g_button{
    display: inline-flex;
    align-items: center;
  }
.body { 
    font-family: system-ui, 
    Arial, sans-serif; 
    display:flex; 
    min-height:100vh; 
    margin:0; 
}
.wrap { margin:auto;
        text-align:center; 
        padding:24px; 
        max-width:420px; 
        border-color: #555; 
        border-radius: 10px;
    }

h1 { 
    margin-top:0 
}

.btn { 
    display:inline-flex; 
    align-items:center; 
    gap:.6rem; 
    padding:.8rem 1.2rem;
    border-radius:999px; 
    border:0; cursor:pointer; 
    background:#4285F4; 
    color:#fff;
    font-size:1rem; 
    box-shadow:0 2px 6px rgba(0,0,0,.2); 
}
.btn img { 
    width:20px; 
    height:20px 
}
#status { 
    margin-top:16px; 
    font-size:.95rem; 
}
.header-img{
    border-radius: 20px;
    max-width: 105px;
    display:inline-block;
    margin: 30px;
}
#user-ico{
    width: 100px;
    height: 100px;
    align-items: center;
}
#buy-btn-2{
    background-color: var(--yellow);
    color:black;
    border-radius: 15px;
}
#buy-btn{
    background-color: var(--yellow);
    color:black;
    border-radius: 15px; 
}
#out-of-stock{
    background-color: var(--gray);
    color:white;
    border-radius: 15px; 
}
#buy-btn-2:hover{
    background-color: var(--blue);
    color:white;
    font-weight: bold;
    border-color: #ff0033;            
      box-shadow:
        0 0 6px  #ff0033,
        0 0 12px #ff0033,
        0 0 24px #ff3366; 
}
#buy-btn:hover{
    background-color: var(--blue);
    color:white;
    font-weight: bold;
    border-color: #ff0033;            
      box-shadow:
        0 0 6px  #ff0033,
        0 0 12px #ff0033,
        0 0 24px #ff3366; 
}
.pagination {
  display: inline-block;   
}
.pagination a {
  color: black;
  float: center;
  padding: 8px 16px;
  text-decoration: none;
  text-align: left;
  transition: background-color .3s;
  border-radius: 10px;
}
.pagination a:hover {
  background-color: var(--orange);
  color: white;
}
.slide {display:none;}
.slide-content{
    text-align: center;
    max-width: 210px;
    width: 200px;
    height: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slide-content img{
    border-radius: 15px;
}