*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

:root {
    --black: rgb(0, 0, 0);
    --white: rgb(255, 255, 255);
    --faded-white: rgb(246, 246, 246);
    --grey: rgb(92, 95, 106);
    --light-grey: rgb(182, 183, 188);
    --medium-grey: rgb(135, 138, 146);
    --red: rgb(255, 0, 0);
}


/* Notification and navbar  */
.notification-bar {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 40px;
    align-items: center;
    background-color: var(--black);
    color: var(--white);
    z-index: 10;
}

.notification-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    font-size: 14px;
    gap: 10px;
}

.notification-content a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.navbar {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 65px;
    justify-content: space-between;
    padding: 0px 25px;
    margin-top: 5px;
    z-index: 10;
    background-color: var(--white);
}

.navbar .left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

.navbar .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navbar .logo h3 {
    font-size: 20px;
    font-weight: 700;
}

.navbar ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 30px;
}

.navbar li a {
    text-decoration: none;
    color:  var(--grey);
    font-size: 14px;
}

.navbar .right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.navbar .search-box {
    display: flex;
    border: 1px solid var(--grey);
    border-radius: 5px;
    align-items: center;
    min-height: 45px;
    padding: 0 0 0 10px;
    gap: 10px;
}

.navbar .search-box input[type="text"] {
    border: none;
    min-height: 45px;
    outline: none;
    background-color: transparent;
}


/* Common for authentication */
.auth-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--light-grey);
    padding: 40px 20%;
    justify-content: center;
    align-items: center;
}

.auth-container h1 {
    margin-bottom: 20px;
}

.auth-container .box {
    display: flex;
    width: 100%;
    background-color: var(--white);
    border-radius: 16px;
    min-height: 60vh;
    align-items: center;
    justify-content: center;
    padding: 50px 0px;
}

.auth-container .box .section {
    display: flex;
    flex-direction: column;
    max-width: 320px;
    gap: 20px;
    align-items: center;
}

.auth-container button {
    cursor: pointer;
}

.auth-container .box .section .google-button {
    display: flex;
    flex-direction: row;
    width: 320px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--light-grey);
    background-color: var(--white);
    border-radius: 5px;
    margin-bottom: 10px;
    color: var(--grey);
    font-size: 14px;
    text-decoration: none;
}

.auth-container .divider {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-container .divider .line {
    width: 320px;
    height: 1px;
    background-color: var(--light-grey);
}

.auth-container .divider p {
    position: relative;
    background-color: var(--white);
    margin-top: -12px;
    padding: 5px;
    font-size: 12px;
    color: var(--grey);
}

.auth-container .section form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.auth-container .section .row {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.auth-container .section .col {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 320px;
}

.auth-container .section .col-half {
    display: flex;
    flex-direction: column;
    max-width: 150px;
    gap: 5px;
}

.auth-container .section .col-otp {
    display: flex;
    flex-direction: column;
    max-width: 45px;
    gap: 5px;
}

.auth-container .section form label {
    font-size: 14px;
    color: var(--grey);
}

.auth-container .section form input[type="text"],
.auth-container .section form input[type="password"] {
    height: 45px;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    padding: 0 5px;
    outline: none;
    font-size: 14px;
}

.auth-container .section form .otp-box {
    display: flex;
    height: 45px;
    max-width: 45px;
    text-align: center;
    font-size: 18px;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    padding: 0 5px;
    outline: none;
}

.auth-container .section form .disclaimer {
    font-size: 14px;
    padding: 5px;
    text-decoration: none;
    color: var(--black);
}

.auth-container .section form .forgot-password {
    text-decoration: none;
    color: var(--black);
    text-align: right;
    font-size: 12px;
    padding: 10px 0;
}

.auth-container .section form #timer {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 10px;
    text-align: center;
}

.auth-container .section form button {
    width: 100%;
    height: 44px;
    color: var(--white);
    background-color: var(--black);
    border-radius: 5px;
}

.form-error {
    font-size: 12px;
    color: var(--red);
    text-align: center;
}

.auth-container .section .error-message {
    font-size: 14px;
    color: var(--red);
    text-align: center;
    border: 1px solid var(--red);
    border-radius: 9px;
    padding: 10px 60px;
}

#resendBtn {
    cursor: not-allowed;
    background-color: #ccc;
    color: #666;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
}

#resendBtn.active {
    cursor: pointer;
    background-color: #28a745;
    color: white;
}

.footer {
    display: flex;
    width: 100%;
    background-color: var(--faded-white);
    flex-direction: column;
    align-items: center;
}

.footer .footer-details {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    padding: 50px 10px;
}

.footer .footer-details .col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.footer .foot-description {
    font-size: 14px;
    max-width: 275px;
    color: var(--grey);
}

.footer .footer-details .row {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.footer .footer-details .item-head {
    font-size: 14px;
    font-weight: 500;
    color: var(--medium-grey);
    text-transform: uppercase;
    margin-bottom: 30px;
    width: 100%;
    text-align: left;
}

.footer .footer-details .item-list {
    font-size: 14px;
    color: var(--grey);
    text-align: left;
    text-decoration: none;
    width: 100%;
}

.footer .footer-details .col svg {
    filter: grayscale(100%);
}

.footer .copyright {
    padding: 20px 0;
    color: var(--grey);
    font-size: 14px;
    border-top: 1px solid var(--light-grey);
    width: 1120px;
    text-align: center;
}


.page_404{ 
    display: flex;
    padding:40px 0; 
    background:#fff; 
    font-family: 'Arvo', serif;
    width: 100%;
    justify-content: center;
}

.page_404  img{ 
    width:100%;
    
}

.four_zero_four_bg{
    background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
    height: 400px;
    background-position: center;
    object-fit: cover;
 }
 
 
.four_zero_four_bg h1{
    font-size:80px;
}
 
.four_zero_four_bg h3{
	font-size:80px;
}
			 
.link_404{			 
	color: #fff!important;
    padding: 10px 20px;
    background: #39ac31;
    margin: 20px 0;
    display: inline-block;
}

.contant_box_404{ margin-top:-50px;}

.container {
    margin: 0;
    display: flex;
    width: 100%;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    margin-top: 10px;
    gap: 30px;
}

.container .row {
    width: 100%;
}

.link_404 {
    text-decoration: none;
}

.banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    background-color: var(--faded-white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
  
.banner-content {
    max-width: 50%;
}
  
.banner-title {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #333;
}
  
.banner-description {
    font-size: 16px;
    margin: 0 0 20px;
    color: #666;
}
  
.banner-button {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 12px 20px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    max-width: 150px;
}
  
.banner-button:hover {
    background-color: #333;
}
  
.banner-image img {
    max-width: 400px;
    border-radius: 8px;
}

.features {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 100px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    gap: 20px;
}
  
.feature {
    text-align: center;
    max-width: 300px;
}
  
.feature-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
  
.feature-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}
  
.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.account-page {
    display: flex;
    min-height: 100vh;
}
  
.sidebar {
    width: 250px;
    background-color: var(--white);
    padding: 20px;
    margin: 10px;
    border-right: 1px solid #ddd;
}
  
.sidebar h2 {
    margin: 0 0 20px;
}
  
.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
  
.menu-item {
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 10px;
}

.menu-item .links {
    text-decoration: none;
    color: var(--black);
}
  
.menu-item.active {
    background-color: #ddd;
    font-weight: bold;
}

.logout {
    text-decoration: none;
    color: var(--red);
    font-weight: 600;
}
  
.main-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}
  
.order-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.orders {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.orders img {
    width: 70px;
    height: 70px;
}
  
.order-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    gap: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.order-item:hover {
    transform: scale(1.01);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

#stocks-left {
    display: flex;
    padding: 10px 20px;
    border: 2px solid gold;
    text-align: center;
    justify-content: center;
    width: 70%;
    border-radius: 8px;
    color: rgb(255, 0, 0);
    background-color: rgba(255, 255, 0, 0.4);
}
  
.product-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}
  
.order-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 5px;
    text-decoration: none;
    color: var(--black);
}

.order-details p strong {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    max-width: 450px;
    text-overflow: ellipsis;
}
  
.order-status {
    margin-right: 20px;
}
  
.status {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}
  
.status.processing,
.status.pending,
.status.returned {
    background-color: #ffc107;
    color: #fff;
}
  
.status.delivered,
.status.accepted {
    background-color: #28a745;
    color: #fff;
}

.status.shipped {
    background-color: #0084ff;
    color: #fff;
}
  
.status.cancelled,
.status.rejected {
    background-color: #dc3545;
    color: #fff;
}
  
  
.order-actions {
    display: flex;
    gap: 10px;
}
  
.btn {
    font-size: 14px;
    padding: 8px 12px;
    color: #000;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    background-color: #f8f8f8;
    text-decoration: none;
    min-width: 110px;
}

.btn.hollow{
    background-color: transparent;
    color: transparent;
    border: none;
    cursor: default;
}

.btn.hollow:hover {
    background-color: transparent;
    color: transparent;
    border: none;
    cursor: default;
}
  
.btn:hover {
    background-color: #ddd;
}

.btn.success {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 0;
    gap: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.success:hover {
    background: linear-gradient(135deg, #006400, #228b22, #32cd32, #7cfc00);
    transform: scale(1.01);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn.cancel {
    background-color: #dc3545;
    color: white;
    border: none;
}
  
.btn.cancel.disabled {
    background-color: #f5c6cb;
    cursor: not-allowed;
}
  
.btn.return {
    background-color: #ffc107;
    color: black;
    border: none;
}
  
.btn.view-item {
    background-color: #fff;
}


.product-page {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.product-viewer {
    position: relative;
    max-width: 600px;
}

.product-page .product-section {
    display: flex;
    flex-direction: row;
    gap: 100px;
    justify-content: center;
}

.product-details {
    display: flex;
    flex-direction: column;
    max-width: 430px;
    width: 100%;
    gap: 10px;
}

.product-details .p-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product-details .p-row-half {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.slideshow-container {
    display: flex;
    flex-direction: column;
    max-width: 450px;
    max-height: 450px;
    width: 450px;
    height: 450px;
    position: relative;
    background-color: #F6F6F6;
}
  

.slides {
    display: none;
}
  

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
  
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
  

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
  
.dot {
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
  
.active, .dot:hover {
    background-color: #717171;
}
  
.fade {
    animation: fade 1.5s ease-in-out;
}

.zoom-wrapper {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    width: 100%;
}
  
.zoom-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 0.2s ease;
}
  
.zoom-wrapper img.zoomed {
    transform: scale(2); /* Adjust zoom level */
}

.strike {
    color: var(--red);
    text-decoration: line-through;
}

.rating-element {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 10px;
    border-radius: 16px;
    background-color: #dbdbdb;
    border: 1px solid var(--medium-grey);
}

.rating-element span {
    font-size: 12px;
}

.stock-element {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 10px;
    border-radius: 16px;
    border: 1px solid var(--medium-grey);
    font-size: 12px;
}

.off-element {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 10px;
    color: #ffffff;
    background-color: #000;
    border: 1px solid #000000;
    border-radius: 8px;
    font-size: 14px;
}

.colors {
    display: flex;
    gap: 10px;
}
  
.color-option {
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 1px solid #ccc;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.color-option:hover {
    border-color: #000;
}

.select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 430 500'%3E%3Cpath fill='white' d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    border-color: #000;
  }
  
  
.color-option {
    background-color: transparent;
}

.variants {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 10px;
}
  
.variants .variant-option {
    padding: 5px;
    border: 1px solid var(--black);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.variant-option.activated,
.variant-option.selected {
    background-color: var(--black);
    color: white;
    cursor: pointer;
}

.price-section {
    margin-top: 20px;
}
  
.slider-wrapper {
    position: relative;
    width: 100%;
}
  
.price-section input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    cursor: pointer;
}
  
.price-section input[type="range"]:focus {
    outline: none;
}
  
.price-section input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
}
  
.price-section input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid #ffffff;
    margin-top: -5px;
    cursor: pointer;
    transition: background 0.3s ease;
}
  
.price-section input[type="range"]::-webkit-slider-thumb:hover {
    background: #555555;
}
  
.tooltip {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}
  
.tooltip:before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #1a1a1a;
}

.quantity-selector {
    text-align: center;
    display: inline-block;
    margin-bottom: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    max-width: 120px;
}

.quantity-controls button {
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quantity-controls button:hover {
    background-color: #f0f0f0;
}

.quantity-controls input[type="number"] {
    border: none;
    text-align: center;
    font-size: 16px;
    width: 50px;
    padding: 0;
    appearance: textfield;
    -moz-appearance: textfield;
}

.quantity-controls input[type="number"]::-webkit-inner-spin-button,
.quantity-controls input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-controls input:focus {
    outline: none;
}

.quantity-controls button:disabled {
    color: #ccc;
    cursor: not-allowed;
}

.cart-section {
    display: flex;
    flex-direction: row;
    text-align: center;
}
  
.add-to-cart {
    background-color: #0a0a23; /* Dark navy color */
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 8px;
}
  
.add-to-cart:hover {
    background-color: #1c1c4a;
}

.add-to-cart-disabled {
    background-color: #ccc;
    color: #fff;
    cursor: not-allowed;
}
  
.wishlist {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}
  
.wishlist:hover {
    background-color: #f0f0f0;
    border-color: #aaa;
}
  
.heart-icon {
    font-size: 18px;
    color: #333;
}
  
.free-shipping {
    font-size: 12px;
    color: #666;
    margin-top: 12px;
}

.product-extras {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 10px 50px;
    justify-content: space-around;
}

.product-side-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.product-side-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.product-side-menu ul .side-list {
    display: flex;
    flex-direction: row;
    cursor: pointer;
    align-items: center;
    gap: 15px;
    padding: 5px 30px;
}

.product-side-menu .selected {
    background-color: #f0f0f0;
    border-radius: 5px;
}

.details-section {
    max-width: 800px;
    min-width: 800px;
    overflow-y: auto;
    word-wrap: break-word;
    padding: 10px;
    border-radius: 8px;
    background-color: #fff;
}

.details-section .details {
    margin-bottom: 10px;
    line-height: 1.5;
}

.details-section::-webkit-scrollbar {
    width: 8px;
}


.details-section::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 4px;
}


.reviews-container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    min-width: 800px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.rating-summary {
    text-align: left;
    margin-bottom: 20px;
}

.rating-summary h1 {
    font-size: 2.5rem;
    margin: 0;
}

.rating-summary p {
    color: #666;
    margin: 5px 0;
}

.review-btn {
    display: inline-block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: #444;
    color: var(--white);
    border: 1px solid #000;
    border-radius: 16px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.review-btn:hover {
    background-color: var(--white);
    color: var(--black);
}

.review-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    margin-right: 10px;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.review-name {
    font-weight: bold;
}

.review-time {
    color: #999;
    margin-left: 10px;
    font-size: 0.9rem;
}

.review-text {
    margin-bottom: 10px;
    color: #333;
}

.stars {
    color: #ffc107;
}
  
.load-more {
    text-align: center;
    margin-top: 20px;
}

.product-card-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    padding: 20px 20px;
    justify-content: center;
}

.product-card-section .section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.product-cards {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px 20px;
    width: 100%;
    justify-content: center;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: var(--black);
    gap: 10px;
    align-items: center;
    min-width: 215px;
    max-width: 250px;
}
  
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
  
.product-card .product-name { 
    font-size: 1rem;
    margin: 10px 0;
    max-height: 38px;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
  
.product-card p {
    font-size: 0.95rem;
    color: #666;
}

.page-name {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 10px 100px;
    margin-bottom: 20px;
}
  
.page-name .base-page {
    font-size: 14px;
    color: var(--medium-grey);
    text-decoration: none;
}
  
.page-name svg {
    fill: var(--medium-grey);
}
  
.page-name .current {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.container {
    display: flex;
    flex-direction: row;
    padding: 20px;
}

.filters {
    width: 300px;
    margin-right: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.filters h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list input {
    margin-right: 10px;
}

.color-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #ccc;
}

.variant-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.variant-filters button {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    background-color: #fff;
}

.variant-filters button:hover {
    background-color: #f0f0f0;
}

main {
    flex-grow: 1;
}

.applied-filters {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    margin-bottom: 20px;
}

.applied-filters .filters {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    width: 100%;
}

.filter-tag {
    background: #eee;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
}

.filter-tag button {
    margin-left: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.account-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding: 10px 30px;
}

.account-section .remove-button {
    margin-top: 10px;
    color: var(--red);
    background-color: transparent;
    border: 1px solid var(--red);
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
}

.account-section .remove-button:hover {
    color: var(--white);
    background: var(--red);
}

.account-section .account-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 50px;
    color: #666;
    margin-right: 10px;
    cursor: pointer;
    overflow: hidden;
}

.account-section .account-avatar .profile-overlay {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    font-size: 14px;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.account-section .account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-section .account-avatar:hover img {
    opacity: 0.5;
}

.account-section .account-avatar:hover .profile-overlay {
    opacity: 1;
}

.account-section .row {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 30px;
    justify-content: space-around;
}

.account-section .col {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    width: 100%;
    gap: 30px;
}

.account-section .action-button {
    width: 50%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #0095ff;
    color: #ffffff;
    background-color: #0095ff;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-left: 30px;
    text-decoration: none;
    cursor: pointer;
}

.account-section .action-button-disabled {
    cursor: not-allowed;
}

.account-section input[type="text"] {
    width: 50%;
    padding: 10px;
    border: 1px solid #0095ff;
    color: #0095ff;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-left: 30px;
    text-align: center;
}

.account-section .phone-btn {
    width: 50%;
    padding: 10px;
    border: 1px solid #0095ff;
    color: #0095ff;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-left: 30px;
    text-align: center;
    cursor: pointer;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 20;
    display: none;
    width: 300px;
}

.popup h3 {
    margin-top: 0;
}

.popup input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

.popup .share-icons {
    display: flex;
    justify-content: space-between;
}

.share-icons a {
    text-decoration: none;
    font-size: 20px;
    color: #000;
}


.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.share-btn {
    cursor: pointer;
}

.file-input-container {
    display: inline-block;
    position: relative;
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    background-color: #f8f9fc;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 280px;
}
  
.file-input-container:hover {
    background-color: var(--input-bg);
}
  
.file-input-container i {
    font-size: 24px;
    color: #888;
}
  
.file-input-container span {
    font-size: 14px;
    color: var(--medium-grey)
}
  
.file-input {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
  
.image-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
  
.image-item {
    position: relative;
    width: 70px;
    height: 70px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}
  
.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  
.image-preview-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
  
.image-preview-container .remove-btn {
    position: absolute;
    top: 1px;
    right: 1px;
    color: var(--white);
    background-color: var(--black);
    border: none;
    border-radius: 6px;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}
  
.image-preview-container .remove-btn:hover {
    background-color: rgba(255, 0, 0, 0.8);
    color: #fff;
}
  
#cropper-modal {
    display: flex;
    flex-direction: column;
    right: 10px;
    width: 100%;
    z-index: 10;
    gap: 10px;
    background-color: var(--white);
}
  
#cropper-modal .button {
    padding: 5px;
    color: var(--white);
    background-color: var(--black);
    cursor: pointer;
}

.account-section form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 50px 20px;
    background-color: var(--white);
    max-width: 600px;
}

.account-section form input[type="password"] {
    height: 45px;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    padding: 0 5px;
    outline: none;
    font-size: 14px;
}

.account-section form button {
    height: 44px;
    color: var(--white);
    background-color: var(--black);
    border-radius: 5px;
}

.address-manager {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 75%;
    padding: 30px 60px;
    height: auto;
}

.address-list {
    display: flex;

}

.address-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 15px 0;
    background: #fafafa;
    transition: box-shadow 0.3s;
}

.no-address {
    text-align: center;
    margin: 30px 0;
    font-size: 18px;
    color: #aaa;
}

.address-item:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.address-content p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.address-actions button {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.address-actions .edit-btn {
    background-color: #ffcc00;
    color: #333;
    margin-right: 10px;
}

.address-actions .edit-btn:hover {
    background-color: #ffb700;
}

.address-actions .delete-btn {
    background-color: #ff4d4f;
    color: #fff;
}

.address-actions .delete-btn:hover {
    background-color: #e63946;
}

.add-button-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.add-button-section .add-btn {
    display: block;
    padding: 10px 50px;
    background-color: #007bff;
    border: 1px solid #007bff;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    margin-top: 10px;
    align-self: center;
}

.add-button-section .add-btn:hover {
    background-color: white;
    color: #007bff;
}

#address-form {
    display: none;
    flex-direction: column;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fdfdfd;
    gap: 5px;
}

#address-form h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
    text-align: center;
}

#address-form label {
    font-size: 14px;
    color: var(--grey);
    padding: 5px 5px;
    margin-top: 10px;
}

#address-form .address-input {
    width: 100%;
    border: 1px solid #282828;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    color: #555;
    resize: none;
}

#address-form .group {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 20px;
}

#address-form .group .col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#address-form .address-input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.25);
}

.form-actions {
    text-align: center;
    margin-top: 10px;
}

.save-btn {
    background-color: #28a745;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    margin-right: 10px;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
}

.save-btn:hover {
    background-color: #218838;
}

.cancel-btn {
    background-color: #6c757d;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.cancel-btn:hover {
    background-color: #5a6268;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal {
    background-color: #fff;
    color: #000;
    width: 400px;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    margin: 0;
    font-size: 18px;
}

.close-button {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    border: none;
    background: none;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.order-summary input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.form-group textarea {
    resize: none;
    height: 100px;
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars span {
    cursor: pointer;
    font-size: 28px;
    color: #ffd700;
}

.review-stars span.gray {
    color: #ccc;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: flex-end;
    z-index: 1000;
}

.cart-overlay .shopping-cart {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    min-height: 100vh;
    min-width: 300px;
    max-width: 400px;
    z-index: 1001;
}

.cart-overlay .shopping-cart .close-cart {
    display: flex;
    background-color: transparent;
    border: none;
    font-size: 18px;
    outline: none;
    cursor: pointer;
}

.cart-overlay .shopping-cart .item-image {
    width: 100px;
    height: 100px;
}

.cart-overlay .shopping-cart .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cart-overlay .shopping-cart .cart-item {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
}

.cart-overlay .color {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.cart-overlay .item-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cart-overlay .item-name {
    max-height: 38px;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-overlay .item-info {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.cart-overlay .item-details .item-variant {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.cart-quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    max-width: 120px;
}

.cart-quantity-controls button {
    background-color: white;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cart-quantity-controls button:hover {
    background-color: #f0f0f0;
}

.cart-quantity-controls input[type="number"] {
    border: none;
    text-align: center;
    font-size: 16px;
    width: 50px;
    padding: 0;
    appearance: textfield;
    -moz-appearance: textfield;
}

.cart-quantity-controls input[type="number"]::-webkit-inner-spin-button,
.cart-quantity-controls input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-quantity-controls input:focus {
    outline: none;
}

.cart-quantity-controls button:disabled {
    color: #ccc;
    cursor: not-allowed;
}

.total-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    margin-top: 20px;
}
  
.total-label {
    font-size: 1em;
    font-weight: 500;
    color: #333;
}
  
.total-amount {
    font-size: 1.2em;
    font-weight: bold;
    color: #000;
}

.green {
    color: #00b925;
    font-weight: 500;
}

.red {
    color: #ff0000;
    font-weight: 500;
}
  
.cart-button.primary {
    display: flex;
    background-color: #101828;
    color: #fff;
    width: 100%;
    padding: 12px 16px;
    font-size: 1em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    justify-content: center;
}
  
.cart-button.primary:hover {
    opacity: 0.9;
}
  
.checkout-link {
    display: block;
    text-align: center;
    font-size: 0.9em;
    color: #6b7280;
    text-decoration: underline;
    margin-top: 12px;
}
  
.checkout-link:hover {
    color: #000;
}

.cart-page {
    display: flex;
    justify-content: space-around;
    padding: 30px;
}
  
.cart-items, .order-summary {
    display: flex;
    flex-direction: column;
    width: 48%;
    gap: 20px;
}
  
.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cart-item .cart-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.cart-item-name {
    max-height: 38px;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item .cart-row .cart-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-item .remove-btn {
    display: flex;
    height: 40px;
    width: 40px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 5px;
}
  
.item-details {
    margin-left: 20px;
    flex-grow: 1;
}

.order-summary {
    display: flex;
    flex-direction: column;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.order-summary .summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-summary .continue-shopping {
    color: var(--black);
}

.checkout-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.address-section,
.order-summary {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.address-section {
    flex: 2;
    margin-right: 20px;
}

.saved-address {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

.saved-address input {
    margin-left: auto;
    transform: scale(1.2);
}

.or-divider {
    text-align: center;
    margin: 20px 0;
    color: #888;
    font-size: 14px;
}

.in-cart {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    gap: 10px;
}

.in-cart .in-cart-products {
    display: flex;
    flex-direction: row;
    max-width: 235px;
    overflow: hidden;
    gap: 10px;
}

.in-cart .in-cart-products img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.in-cart .button,
.coupon-section .button {
    padding: 10px 10px;
    text-decoration: none;
    color: #ffffff;
    background-color: #007bff;
    border: 1px solid #007bff;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.order-summary ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.order-summary li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.order-summary .radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.order-summary .coupon-section {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
}

#sortFilter {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 5px 10px;
    outline: none;
    border-radius: 5px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: right;
    margin-top: 20px;
    margin-right: 20px;
}
  
.pagination li {
    margin: 0 5px;
    padding: 4px 8px;
    text-decoration: none;
    color: #007bff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}
.pagination a {
    padding: 4px 8px;
    text-decoration: none;
    color: #007bff;
    border: 1px solid #ddd;
    border-radius: 4px;
}
  
.pagination li.active {
    font-weight: bold;
    background-color: #e0e0e0;
    color: var(--black);
    pointer-events: none;
}
  
.pagination li:hover {
    background-color: #e0e0e0;
}

.wallet-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
    padding: 30px 30px;
}

.wallet {
    display: flex;
    flex-direction: column;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    align-items: center;
    padding: 20px 50px;
    background-color: #ececec;
}

.wallet-header {
    text-align: center;
    margin-bottom: 10px;
}

.wallet-card {
    background: linear-gradient(to right, #8a2be2, #6a0dad);
    border-radius: 15px;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px;
    height: 200px;
}

.wallet-balance {
    font-size: 2rem;
    font-weight: bold;
}

.wallet-card small {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
}

.card-icon img {
    width: 100px;
    height: 70px;
}

.wallet-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.wallet-buttons button {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.add-money {
    background-color: #007bff;
}

.withdraw-money {
    background-color: #dc3545;
}

.transactions-header {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.transactions-header button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.transaction {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.transaction td {
    padding: 12px;
}

.transaction-description {
    font-size: 1rem;
}

.transaction-details {
    font-size: 0.7rem;
    color: #666;
}

.transaction-amount {
    font-size: 1rem;
    font-weight: bold;
}

.amount-positive {
    color: #28a745;
}

.amount-negative {
    color: #dc3545;
}

.transaction-date {
    font-size: 0.8rem;
    color: #666;
}

.referral-container {
    display: flex;
    flex-direction: column;
    width: 70%;
    padding: 40px 80px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 20px;
}

.referral-container label {
    margin-bottom: 20px;

}

.referral-container h2 {
    margin-bottom: 20px;
}

.referral-container input {
    width: 50%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.referred-users {
   margin-top: 20px;
}

.referred-users h3 {
    margin-bottom: 10px;
}

.referral-container .referred-users ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.referral-container .referred-users ul li {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}


.referral-container #amount {
    padding: 5px 10px;
    color: #28a745;
    border: 1px solid #28a745;
    border-radius: 6px;
    max-width: 150px;
    text-align: center;
}

.placed-header {
    width: 100%;
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.placed-header.success {
    background: linear-gradient(90deg, #56ab2f, #a8e063);
}

.placed-header.failed {
    background: linear-gradient(90deg, #dc3545, #f8312f);
}

.placed-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 30px 0;
}

.placed-content h2 {
    font-size: 28px;
    color: #333;
}

.placed-content .order-name {
    font-size: 14px;
    font-weight: 700;
}

.placed-content .order-id {
    font-size: 14px;
    font-weight: 400;
    color: #5d5d5d;
}

.placed-content p {
    font-size: 16px;
    color: #555;
    margin: 10px 0 30px;
}

.radio-group-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
}

.radio-container {
    display: flex;
    align-items: center;
    position: relative;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fdfdfd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.radio-container:hover {
    border-color: #007bff;
    background: #f5f9ff;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-label {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.radio-mark {
    height: 16px;
    width: 16px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.radio-container input:checked ~ .radio-mark {
    border-color: #007bff;
    background: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

.radio-mark::after {
    content: '';
    height: 8px;
    width: 8px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.radio-container input:checked ~ .radio-mark::after {
    opacity: 1;
}

.jackpot-container {
    display: flex;
    flex-direction: column;
    background: #24243e;
    border-radius: 20px;
    padding: 20px;
    width: 360px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    justify-content: center;
    align-items: center;
}

.jackpot-header {
    margin-bottom: 20px;
}

.jackpot-header h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #f7b731;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.reels-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reel {
    width: 90px;
    height: 100px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.slot {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: calc(6 * 100%);
    animation: none;
}

.symbol {
    height: 100px;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.spin-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #e74c3c, #ff6b61);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, background 0.3s ease;
}

.spin-button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff6b61, #e74c3c);
}

.result-section {
    background: #fff;
    padding: 20px;
    width: 100%;
    border-radius: 10px;
    margin-top: 30px;
}

.result-title {
    font-size: 1.8em;
    color: #ff6f61;
    margin-bottom: 10px;
}

.winner-name,
.winner-prize {
    font-size: 1.2em;
    margin: 10px 0;
    color: #444;
}

.message {
    font-size: 1.2em;
    color: #777;
    margin: 10px 0;
}

.hidden {
    display: none;
}

.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    width: 80%;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.close-btn {
    align-self: flex-end;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    margin-bottom: 10px;
}

.coupons-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 15px;
    width: 80%;
    justify-content: center;
}

.coupon {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.coupon-code {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
    text-align: left;
}

.coupon-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    text-align: left;
}

.coupon-buttons {
    display: flex;
    gap: 10px;
}

.copy-btn {
    padding: 8px 12px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.copy-btn {
    background-color: #28a745;
    color: white;
}

.copy-btn:hover {
    background-color: #218838;
}

.about-main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.about-section h2, .team-section h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 10px 0;
    text-align: center;
}

.team-section {
    margin-top: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.team-member {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #34495e;
}

.team-member p {
    font-size: 1rem;
    color: #7f8c8d;
}

.contact-main {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-main h2, 
.contact-main h3 {
    color: #333;
    margin-bottom: 20px;
}

.contact-main p {
    color: #555;
    line-height: 1.6;
}

.contact-main ul {
    list-style: none;
    padding: 0;
}

.contact-main ul li {
    margin-bottom: 10px;
}

.contact-main ul li a {
    color: #007bff;
    text-decoration: none;
}

.contact-main ul li a:hover {
    text-decoration: underline;
}

.contact-section {
    margin-top: 40px;
}

.contact-section form {
    display: flex;
    flex-direction: column;
}

.contact-section form label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.contact-section form input, 
.contact-section form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.contact-section form input:focus, 
.contact-section form textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.25);
}

.contact-section form button {
    padding: 10px 15px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-section form button:hover {
    background-color: #0056b3;
}




@keyframes spin {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-500%);
    }
}


@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}


@media only screen and (max-width: 600px) {
    .navbar {
        max-width: 100%;
    }
    .navbar .left ul {
        display: none;
    }

    .navbar .left .logo h3 {
        display: none;
    }

    .navbar .search-box {
        display: none;
    }

    .banner {
        flex-direction: column;
        width: 100%;
    }

    .banner-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        white-space: nowrap;
        align-self: flex-start;
    }

    .features {
        flex-direction: column;
    }

    .product-cards {
        flex-direction: column;
    }

    .product-page .product-section {
        flex-direction: column;
    }

    .product-details {
        align-items: center;
    }

    .slideshow-container {
        width: 100%;
    }

    .product-extras {
        flex-direction: column;
    }

    .product-extras .product-side-menu ul {
        flex-direction: row;
        gap: 20px;
    }

    .sidebar {
        display: none;
    }

    .cart-page {
        flex-direction: column;
        width: 100%;
    }

    .cart-items, .order-summary {
        width: 100%;
    }

    .cart-item .cart-row {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: left;
        justify-content: space-between;
        gap: 20px;
        border: 1px dotted #000;
        padding: 10px;
    }

    .footer .footer-details {
        flex-direction: column;
        gap: 30px;
    }
}