body {
  background-color: white;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}

html {
  height: 100%;
}

.shop-dropdown {
    position: relative;
    margin: 10px 0;
}


.sizeguide {
  display: flex;
    flex-direction: column;
    margin-left: 35px;
    margin-top: 20px;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-block;
}

.cart-counter {
    position: absolute;
    top: 12px;
    right: 22px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
    height: 12px;
    line-height: 14px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    display: none;
}

.cart-counter.active {
    display: block;
}

/* Add a subtle animation when the count changes */
@keyframes cartBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.cart-counter.bounce {
    animation: cartBounce 0.3s ease;
}

.loyaltyrewardsection {
  margin: 0 32px;
    padding: 5px;
    background-color: #eeeeee;
    text-transform: uppercase;
}

.shop-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding-right: 20px;
}

.dropdown-arrow {
    font-size: 0.8em;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 10px;
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.shop-submenu {
    margin-top: 10px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
}


.shop-submenu.expanded {
    max-height: 500px;
    transition: max-height 1s ease-in;
}

.submenu-item {
    display: block;
    padding: 8px 0;
    font-size: 0.9em;
    opacity: 0.9;
    transition: opacity 0.2s ease, padding-left 0.2s ease;
}

.submenu-item:hover {
    opacity: 1;
    padding-left: 5px;
}

/* Ensure proper spacing between menu items */
#navmenucontents > a,
#navmenucontents .shop-dropdown {
    display: block;
    margin: 15px 0;
}


/* Fixed positioning for banner to overlay on image */
.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    flex-direction: row;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

/* Hero overlay styles */
.hero-overlay {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.shimmer-text {
  position: relative;
  display: inline-block;
  color: #fff;
    background: {{ tier_info.color }};
  padding: 10px 20px;
  overflow: hidden;
  border-radius: 6px;
}

.shimmer-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #474545;
    margin: 0;
    letter-spacing: 1px;
}

.hero-button {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 550;
    text-transform: uppercase;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s 
ease;
}

/*.hero-button:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}*/

/* Adjust marquee to be below fixed banner */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    background-color: #000000;
    top: 54px; /* Adjust based on your banner height */
    left: 0;
    right: 0;
    z-index: 9;
}


/* Hide search banner on homepage or position it after the hero */
.searchbanner {
  display: flex;
  width: 100%;
}

/* Main picture frame takes full viewport */
.mainpicframe {
    position: relative;
    display: flex;
    background-color: #2b2f33;
    justify-content: center;
}

.mainpic {
    height: 100vh;
    
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
}

.sub {
  height: 30vh;
}

/* Ensure sidenav appears above everything */
.sidenav, .sidenavright {
    z-index: 100;
}

p {
  margin: 0;
  padding: 0;
}

.bannerimg {
height: 30px;
}

.cart-item{
  padding:30px;
}

.cartheader{
  display: flex;
  justify-content: center;
  margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    margin-bottom: 25px;
    font-style: normal;
}

.sidenav {
  height: 100%;
  position: fixed;
  width: 0;
  top: 0;
  left: 0;
  background-color: #fdfdfd;
  overflow-x: hidden;
  transition: 1s;
  padding-top: 60px;
}

.sidenavright {
  height: 100%;
  position: fixed;
  width: 0;
  top: 0;
  right: 0;
  background-color: #fdfdfd;
  overflow-x: hidden;
  transition: 1s;
  padding-top: 60px;
}

#registerlogin {
      display: inline-flex;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 30px;
    justify-content: center;
}

.sidenav a {
  padding: 30px 8px 8px 8px;
    text-decoration: none;
    font-size: 1rem;
    color: #818181;
    overflow: hidden;
    white-space: nowrap;
    justify-content: center;
    display: flex;
    transition: 0.3s;
}

.sidenavright p {
  padding: 8px 8px 8px 8px;
  overflow: hidden;
  text-decoration: none;
  font-size: 1rem;
  color: #818181;
  transition: 0.3s;
}

#firstandlast {
      width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    flex-direction: column;
}

.sidenav a:hover {
  color: #111;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.sidenavright a:hover {
  color: #111;
}

.sidenavright .closebtn {
  position: absolute;
    top: 0;
    left: 0;
    margin-top: 7px;
    font-size: 36px;
    margin-left: 20px;
    color: #818181;
}



#mainimg {
  position: relative;
  overflow: hidden;
  touch-action: pan-y pinch-zoom; /* Allow vertical scroll but handle horizontal swipes */
}

#main-product-img {
  transition: opacity 0.3s ease;
}

/* Swipe indicators (dots) */
.swipe-indicators {
  display: none;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  gap: 8px;
}

.swipe-indicators .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.payment-options-section {
  padding: 20px 25px;
  border-radius: 8px;
  margin: 20px 25px;
}

#paymentmethods {
  display: flex;
  justify-content: space-evenly;
}

.payment-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.payment-option p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
}

.payment-text {
  color: #333;
  font-weight: 400;
}

.payment-logo {
  height: 20px;
  width: auto;
}

.klarna-logo {
  height: 18px;
}

.clearpay-logo {
  height: 22px;
  background: white;
  padding: 2px 8px;
  border-radius: 4px;
}

.payment-divider {
  text-align: center;
  padding: 5px 0;
  color: #999;
  font-size: 13px;
  font-style: italic;
}

.swipe-indicators .dot.active {
  background-color: rgba(255, 255, 255, 1);
}

/* Show indicators only on mobile */
@media (max-width: 768px) {
  .swipe-indicators {
    display: flex;
  }
  
  .payment-options-section {
    margin: 15px 20px;
    padding: 15px 20px;
  }
  
  .payment-option p {
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
}

#navmenucontents {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  margin-left: 20px;
}

#navmenucontentsright {
  display: flex;
    flex-direction: column;
    margin-top: 40px;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
}

.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  flex-direction: column;
}

#hrmain {
  width: 70%;
  margin-top:50px;
  margin-bottom: 50px;
}

#hrnavbar {
  width: 80%;
}

.orders-section {
    margin-top: 50px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.orders-title {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
}

.order-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.order-number {
    font-weight: 600;
    font-size: 1rem;
}

.copyright {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  align-items: center;
  margin-top: 10px;
}

.order-date {
    color: #666;
    font-size: 0.9rem;
}

.order-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-confirmed {
    background-color: #fff3cd;
    color: #856404;
}

.status-processing {
    background-color: #cfe2ff;
    color: #084298;
}

.status-shipped {
    background-color: #d1ecf1;
    color: #0c5460;
}

.status-delivered {
    background-color: #d4edda;
    color: #155724;
}

.status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.order-items-preview {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

.no-orders {
    text-align: center;
    padding: 40px;
    color: #666;
}

.no-orders-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

@media (max-width: 600px) {
    .order-details {
        flex-direction: column;
        align-items: flex-start;
    }
}

.cardsection{
  display: grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns with equal width */
  grid-template-rows: repeat(2, auto); /* 2 rows with automatic height based on content */
  grid-gap: 5px; /* Space between the cards */
  padding:50px 5px;
}

.cardclo{
  line-height: 0.2;
}

#image-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

#cardcontent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 0;
    margin-left: 2px;
}

.cardimg{
 width: 100%;
 max-width: 400px;
 border-radius: 2px;
}

.cardtitle {
  font-size: 0.8rem;
  font-family:Helvetica, Helvetica Neue, Arial, Lucida Grande, sans-serif;
  font-weight: 301;
  text-transform: uppercase;

}

.cardcolour {
  color: grey;
}

#subreg {
      display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
}

.sizingbuttons{
  padding-left: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  width: 70%;
  max-width: 300px;

}

#subscribeForm {
  display: flex;
  flex-direction: row;
}

.sizbutton {
  border: none;
  transition: border 0.3s ease;
  color: #000000;
  border-radius: 2px;
  margin: 4px;
  background-color: transparent;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  height: 45px;
  width: 50px;
}

.quantitysection {
  display: flex;
}

/* Add these styles to your buttons.css or style.css file */

/* Out of stock size button styles */
.sizbutton.out-of-stock {
  background-color: #f5f5f5 !important;
  color: #999 !important;
  cursor: not-allowed !important;
  position: relative;
  opacity: 0.6;
  pointer-events: none; /* Prevents all mouse events */
}

/* Add a diagonal line through out of stock sizes */
.sizbutton.out-of-stock::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #999;
  transform: rotate(-15deg);
  pointer-events: none;
}



/* Ensure selected state doesn't apply to out of stock buttons */
.sizbutton.out-of-stock.selected {
  border: none !important;
}

/* Hover state for out of stock buttons - no change on hover */
.sizbutton.out-of-stock:hover {
  background-color: #f5f5f5 !important;
  transform: none !important;
}

.input {
  width: 100%;
  height: 10px;
  padding: 12px;
  border: 1.5px solid lightgrey;
  outline: none;
  box-shadow: 0px 0px 20px -18px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}

.input:hover {
  border: 2px solid lightgrey;
  box-shadow: 0px 0px 20px -17px;
}

.input:focus {
  border: 2px solid grey;
}

.trolley {
  height: 24px;
}


.leftbanner,
.rightbanner {
    display: flex;
    align-items: center;
}

.doce-wrapper {
    text-align: center;
    color: white; 
}

.bannerimg {
    max-height: 100%;
    
}

.addtocart {
  display: flex;
  padding: 30px;
}

#cartItems {
  max-height: 80vh;
  overflow-y: auto;
}

.addtocartbutton {
    border: 1px solid black;
    color: white;
    border-radius: 2px;
    margin: 4px;
    background-color: black;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1rem;
    width: 100%;
    height: 50px;
}


.quantity-container {
  display: flex;
  padding-left: 30px;

}

.quantity-button {
  width: 30px;
    height: 30px;
    font-size: 20px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: center;
}

.quantity-input {
  width: 40px;
  height: 30px;
  text-align: center;
  border: none;
  margin: 0 10px;
  font-size: 16px;
  padding: 0 5px;
  background: none;
  border-radius: 4px;
}


.doce {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
  font-size: 1.2rem;
}

.docefont {
  margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1rem;
}

.productinfo {
  padding: 25px;
  display: flex;
  justify-content: space-between;
}

#main-product-img {
  opacity: 1.0;
  transition: opacity 0.5s ease;
  max-width: 600px; /* Smooth opacity transition */
}

#mainimg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.thumbnail_container {
  padding: 10px;
}

.thumbnail_container img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}


.aw25speel {
    font-size: 0.8rem;
    font-weight: 450;
    margin-top: 40px;
    line-height: 23px;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0px 125px;
}

.featuredproducts {
  font-size: 1.5rem;
    font-weight: 450;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}

a {
  text-decoration: none;
  color: black;
}

.marquee-content {
    display: inline-block;
     /* Adjust this value for more or less spacing */
    font-family: "Montserrat", sans-serif;
    padding-top:1px;
    font-size: 0.75rem;
}

.buttonsection {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  bottom: 20;
  width: 100%;
}

.spp {
  height: 100vh;
    width: 100vh;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    object-position: 10% center;
    z-index: 0;
    margin: 0;
    padding: 0;
}

.desktopimg {
  display: none;
}

.spb {
  width: 96%;
  bottom: 85%;
    position: absolute;
    z-index: 1;
    margin-top: 30px;
}

.image-button {
  position: relative;
}

#docelogo {
  height: 30px;
}

#comingsoon {
    position: absolute;
    font-family: "Cormorant", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: center;
    bottom: 38%;
    left: 16%;
    color: white;
    font-size: 5em;
    padding: 100px;
}

.email_subscribe {
    position: absolute;
    left: 23%;
    bottom: 37%;
    display: flex
;
}



.mainbox {
  margin: 20px;
}


/* Newsletter Popup Overlay */
.newsletter-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 10000;
    backdrop-filter: blur(5px);

}

.newsletter-popup-overlay.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Newsletter Popup Modal */
.newsletter-popup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    z-index: 10001;
    display: none;
    text-align: center;
}

.newsletter-popup-modal.show {
    display: block;
    animation: slideUpBounce 0.5s ease;
}

/* Newsletter Popup Close Button */
.newsletter-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.newsletter-popup-close:hover {
    color: #000;
}

/* Newsletter Icon */
.newsletter-icon {
    font-size: 56px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

/* Newsletter Popup Body */
.newsletter-popup-body h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #000;
}

.newsletter-popup-body p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 25px 0;
}

/* Newsletter Form */
#newsletterPopupForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.newsletter-popup-input {
    font-family: 'Montserrat', sans-serif;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.newsletter-popup-input:focus {
    outline: none;
    border-color: #000;
}

.newsletter-popup-btn {
    font-family: 'Montserrat', sans-serif;
    padding: 15px 30px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-popup-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Newsletter Disclaimer */
.newsletter-popup-disclaimer {
    font-size: 12px !important;
    color: #999 !important;
    margin: 15px 0 !important;
    font-style: italic;
}

/* Skip Link */
.newsletter-skip-link {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 15px;
}

.newsletter-skip-link:hover {
    color: #000;
}

/* Animations */
@keyframes slideUpBounce {
    0% {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    60% {
        transform: translate(-50%, -52%);
        opacity: 1;
    }
    80% {
        transform: translate(-50%, -48%);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Prevent body scroll when popup is open */
body.newsletter-popup-open {
    overflow: hidden;
}



.subscribe {
  font-size: 1rem;
    border: 1px solid black;
    margin-bottom: 10px;
    width: 60%;
    border-radius: 2px;
    max-width: 350px;
    min-width: 200px;
    height: 35px;
    color: grey;
    font-family: "Montserrat", sans-serif;
}

.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 9998;
    backdrop-filter: blur(5px);
}

/* Cookie Consent Modal */
.cookie-consent-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    z-index: 9999;
    display: none;
    text-align: center;
}

.cookie-consent-modal.show {
    display: block;
}

.cookie-consent-overlay.show {
    display: block;
}

/* Cookie Icon */
.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Cookie Title */
.cookie-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

/* Cookie Content */
.cookie-content-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

/* Cookie Buttons Container */
.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

/* Cookie Buttons */
.cookie-btn {
    font-family: 'Montserrat', sans-serif;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tsmp {
  width: 100%;
  object-fit: cover;
}

.accept-btn {
    background-color: #000;
    color: white;
    flex: 1;
    font-size: 1.2rem;
    min-width: 120px;
}

.accept-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.reject-btn {
    background-color: #f0f0f0;
    color: #000;
    flex: 1;
    min-width: 120px;
}

.reject-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

/* Cookie Link */
.cookie-link {
    display: block;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #666;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #000;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.subscribe:focus {
  outline: none;
}

.subbutton{
        color: black;
    border-radius: 2px;
    background-color: #f7f7f7;
    font-weight:400;
    border: 0.5px solid black;
    height: 35px;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;

}

#socialicon {
  margin-right: 5px;
}

#socialicons {
  display: flex;
    flex-direction: column;
}

.footer {
    background-color: #fdfdfd;
    width: 100%;
    margin-top: auto;
}

#Usefullinks {
      display: flex;
    flex-direction: column;
    padding: 20px 30px;
    text-transform: uppercase;
}

.product-details-section {
  max-width: 600px;
  margin: 40px auto 20px;
  padding: 0 20px;
}

.expandable-section {
  margin-bottom: 0;
}

.klarna-payment-info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.klarna-payment-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  color: #333;
}

.payment-text {
  font-weight: 500;
}

.klarna-logo {
  height: 20px;
  width: auto;
  vertical-align: middle;
}

.learn-more-link {
  color: #333;
  text-decoration: underline;
  font-size: 14px;
}

.learn-more-link:hover {
  color: #000;
}

.expandable-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.expandable-header:hover {
  opacity: 0.7;
}

.expandable-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.expand-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.expand-icon.rotated {
  transform: rotate(45deg);
}

body.cookie-modal-open {
    overflow: hidden;
}

.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.expandable-content.expanded {
  max-height: 2000px; /* Adjust based on content */
  padding-bottom: 20px;
}

.product-details-text {
  padding: 0 0 10px;
  line-height: 1.6;
}

.product-list {
  list-style: none;
  padding-left: 0;
  margin: 10px 0;
}

.product-list li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.product-list li:before {
  content: "•";
  position: absolute;
  left: 0;
}

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
}

.size-guide-table th,
.size-guide-table td {
  border: 1px solid #e0e0e0;
  padding: 8px 12px;
  text-align: left;
}

.size-guide-table th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.floating-register-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding:5px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 998;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
}

.floating-register-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #1a1a1a 0%, #4d4d4d 100%);
}

.floating-register-btn:active {
  transform: scale(0.95);
}

/* Show only on mobile devices */
@media (max-width: 768px) {
  .floating-register-btn {
    display: flex;
  }
  
  /* Hide for logged-in users */
  body.user-logged-in .floating-register-btn {
    display: none;
  }
}

/* Register Popup Overlay */
.register-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

.register-popup-overlay.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Popup Content */
.register-popup-content {
  background: white;
  border-radius: 4px;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: slideUp 0.3s ease;
  overflow: hidden;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.register-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-popup-close:hover {
  color: #000;
}

/* Popup Body */
.register-popup-body {
  padding: 40px 30px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.register-popup-body h2 {
  margin: 0 0 15px 0;
  font-size: 24px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

.register-popup-body p {
  margin: 0 0 25px 0;
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* CTA Button */
.register-popup-cta {
  background: #000;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  max-width: 250px;
}

.register-popup-cta:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.register-popup-cta:active {
  transform: translateY(0);
}

/* Disclaimer */
.register-popup-disclaimer {
  font-size: 12px !important;
  color: #999 !important;
  margin-top: 20px !important;
  font-style: italic;
}

.founders {
  width: 100%;
    height: 80vh;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
}

/* Mobile responsive */
@media (max-width: 650px) {
  .product-details-section {
    padding: 0 15px;
  }

  .newsletter-popup-modal {
      padding: 30px 20px;
       width: 95%;
   }
    
   .newsletter-popup-body h2 {
       font-size: 22px;
  }
    
  .newsletter-popup-body p {
      font-size: 14px;
  }
    
  .newsletter-icon {
      font-size: 48px;
  }

  .size-guide-table {
    font-size: 0.9rem;
  }
  
  .size-guide-table th,
  .size-guide-table td {
    padding: 6px 8px;
  }

  .mainpic {
    height: 70vh;
    width: 100%;
    object-fit: cover;
  }

  .sub {
    height: 40vh;
  }
  .aw25speel {
    padding: 0 45px;
  }

  .featuredproducts {
    font-size: 1.5rem;
    font-weight: 450;
    display: flex;
    margin-top: 120px;
    justify-content: flex-start;
    padding: 0px 5px;
  }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* For bigger than phone */
@media only screen and (min-width: 500px) {
  .spp {
    display: block;
        height: 100vh;
        width: 100%;
        object-fit: cover;
        margin: 0 auto;
        object-position: center 35%;
  }

  .cookie-consent-modal {
        padding: 30px 20px;
        width: 95%;
    }
    
    .cookie-title {
        font-size: 20px;
    }
    
    .cookie-content-text {
        font-size: 14px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }


  #comingsoon {
    bottom: 17%;
    left: 18%;
    font-size: 1.6em
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

.tscolumn {
  display: grid;
  grid-template-columns:1fr 1fr;
}

.tscolumnleft {
  max-height: 500px;
}

.tscolumnright {
  background-color: black;
  display: flex;
  flex-direction: column;
  padding:60px;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 650px) {

  .cardsection {
    padding:50px 150px;

  }



  #cartItems {
    height: 200vh;
  }

  .footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
 }
 

  .cardclo {
  max-width: 400px;
  }


}

@media only screen and (min-width: 1200px) {

  .aw25speel {
    padding: 0 300px;
  }
}


@media only screen and (min-width: 900px) {

  .cardsection {
        grid-template-columns: repeat(3,1fr);
  }
}

@media only screen and (max-width: 599px) {
  .tscolumn {
    display: flex;
    flex-direction: column;
  }

  .cookie-consent-modal.show {
    width: 75%;
  }
  .newsletter-popup-modal {
    width: 85%;
  }

    .founders {
    height: 40vh;
    
  }



}


@media only screen and (max-width: 499px) {
  .cardtitle {
    font-size: 0.7rem;
    line-height: 1.2;
    margin: 3px 0;
  }
  
  #cardcontent {
    line-height: 1.2;
    margin-left: 2px;
    padding: 0 2px;
  }
  
  .cardclo {
    line-height: 1.2;
  }
}



/* For smaller screens */
@media only screen and (max-width: 499px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .tsmp {
    max-height: 550px;
  }

  .register-popup-content {
    max-width: 95%;
    margin: 20px;
  }
  
  .register-popup-body {
    padding: 30px 20px;
  }
  
  .register-popup-body h2 {
    font-size: 20px;
  }
  
  .register-popup-body p {
    font-size: 14px;
  }
  
  .floating-register-btn {
    left: 15px;
  }
}
  

  .tscolumnright {
    padding:25px;
  }
  
  .hero-button {
    font-size: 0.7rem;
    padding: 12px 30px;
  }
  
  .hero-overlay {
      gap: 25px; /* Add space between items when stacked */
  }
}