:root {
  --color-hover: #FFCF01;
  --banner-height: 300px;
  --thumb-width: 280px;
  --banner-height-m: 250px;
}

/* ============================= */
/*            LOGO               */
/* ============================= */
.site-logo {
  height: 140px;
  transition: all 0.3s ease;
}

header.shrink .site-logo {
  height: 80px;
}
.site-logo-m {
  height: 120px;
  transition: all 0.3s ease;
}

header.shrink .site-logo-m {
  height: 60px;
}
/* ============================= */
/*           BANNER              */
/* ============================= */
.banner-wrapper {
  height: var(--banner-height);
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.banner-wrapper-m {
  height: var(--banner-height-m);
  overflow: hidden;
}

.banner-img-m {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}


/* ============================= */
/*        DESKTOP NAV MENU       */
/* ============================= */
.desktop-nav .nav-link {
  color: #fff;
}

.desktop-nav .nav-link:hover {
  color: #000;
  background: var(--color-hover);
}

.dropdown-menu {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dropdown-item {
  color: #fff;
}

.dropdown-item:hover {
  background: #FFCF01;
  color: #000;
}

/* Hide desktop nav on mobile */
@media (max-width: 991.98px) {
  .desktop-nav {
    display: none !important;
  }
}


/* ============================================= */
/*   PURCHASE PAGE — TABLET PORTRAIT STACK FIX    */
/* ============================================= */

/* Forces stacked images ONLY on tablet portrait */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .purchase-images .col-md-6,
  .purchase-images .col-12,
  .purchase-images .col-lg-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

.bg-grey {
  background-color: #343837; } 
  
 .bg-light-grey {
  background-color: #EFEFEF; }   
   
.bg-dark-blue {
  background-color: #00447d; }  
  
 .bg-yellow {
  background-color: #FFCF01; }   
 
   .bg-black {
  background-color: #000000; }   
  
   .bg-footer {
  background-color: #231F20; }  
  
   .bg-ytred {
  background-color: #FF0000; }    
   
   
.text-white {
  color: #FFFFFF !important; }
  
 .text-black {
  color: #000000 !important; }   
  
  .text-grey {
  color: #343837 !important; }
  
   .text-yellow {
  color: #FFCF01 !important; }
  
 .text-main {
  font-size: 24px;}
  
  .text-small {
  font-size: 19px;}
  
  .text-med {
  font-size: 21px;}

.text-lrg {
  font-size: 25px;}

.footer-link {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0d6efd;
}

.social-icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    display: inline-block;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}
.btn-close {
    background: none !important;
    opacity: 1 !important;
}
/* --- SMART MODERN COOKIE MODAL STYLE --- */

.cookie-modal {
  border-radius: 20px;
  border: none;
  padding: 1.5rem;
  background: linear-gradient(165deg, #ffffff 0%, #f4f6f9 100%);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.cookie-icon-wrapper {
  width: 80px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffe6c7, #ffd5ad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-right: 1.2rem;
}

/* --- MODERN BUTTONS --- */

.btn-modern {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: 0.2s ease-in-out;
}

.btn-accept {
  background: linear-gradient(135deg, #0077ff, #005ce6);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 91, 255, 0.4);
}
.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 91, 255, 0.5);
}

.btn-reject {
  background: linear-gradient(135deg, #eaeaea, #d6d6d6);
  color: #333;
}
.btn-reject:hover {
  background: linear-gradient(135deg, #dcdcdc, #c9c9c9);
  transform: translateY(-2px);
}

/* Backdrop */
.modal-backdrop.show {
  opacity: 0.45 !important;
}
