#wrapper{
    font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}

header{
    text-align:center;
    margin-bottom:2rem;
    padding-top: 2rem;
    
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header > a:first-of-type{
    color:currentColor;
    text-decoration:none;
}

header a{
    box-sizing:border-box;
}

header a:visited{
    text-decoration:none;
}

header .btnSecondary{
    margin-top:.5rem;
}

header > div{
    display: flex;
    flex-direction: column;
}

form{
    box-sizing:border-box;
    width:100%;
    max-width:1024px;
    margin:0 auto;
    padding:24px;
}

@media (max-width: 720px) {
    form{
        padding:0;
    }
}

.errorMsg{
    margin:auto;
    text-align:center;
    color:#DC2626;
}

/* Alerts */
.alert {
    box-sizing:border-box;
    width:100%;
    max-width:1080px;
    border-radius: var(--radius);
    padding: .75rem 1rem;
    font-size: .85rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid;
}

.alert-error   { background: rgba(224,92,92,.08);  border-color: var(--error);   color: #f08080; margin-top:1rem; }
.alert-success { background: rgba(92,184,126,.08); border-color: var(--success); color: #80d4a0; margin-top:1rem; }
.alert-flash { background: rgba(201, 168, 76,.08); color: #c9a84c; margin-top:1rem; }
.alert-success a{
    color: #80d4a0;
}

.alert ul { padding-left: 1.1rem; }
.alert ul li:not(:first-of-type) { margin-top: .25rem; }

/* WINDOW */

/* Overlay styling */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

#overlay.show {
    display: flex;
}

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

/* Window styling - matching bookBox design */
#overlay .window {
    border-radius:12px;
    box-shadow:0 10px 40px rgba(0, 0, 0, 0.2);
    padding:16px;
    max-width:440px;
    width:90%;
    position:relative;
    animation:slideUp 0.3s ease;
}

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

/* Close button */
#overlay .closeWin {
    position:absolute;
    top:16px;
    right:16px;
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:18px;
    font-weight:300;
    font-family:arial;
    transition:all 0.2s ease;
    line-height:1;
}

#overlay .closeWin:hover {
    transform:rotate(90deg);
}

/* Form styling */
#overlay form {
    display:flex;
    flex-direction:column;
}

#overlay label {
    font-size:16px;
    font-weight:600;
    margin-bottom:8px;
}

#overlay input[type="email"], #overlay input[type="text"] {
    width:100%;
    padding:14px 16px;
    font-size:16px;
    transition:all 0.2s ease;
    outline:none;
    box-sizing:border-box;
}

#overlay input[type="email"]:focus, #overlay input[type="text"]:focus {
}

#overlay input[type="email"]::placeholder, #overlay input[type="text"]::placeholder  {
}

#overlay input[type="submit"] {
    padding:14px 24px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:all 0.2s ease;
    margin-top:8px;
}

#overlay input[type="submit"]:hover {
    transform:translateY(-1px);
}

#overlay input[type="submit"]:active {
    transform:translateY(0);
}

#overlay input[type="submit"]:disabled{
}

/* Responsive design */
@media (max-width: 768px) {
    #overlay .window {
        max-width: 90%;
        padding: 24px;
    }
    
    #overlay .closeWin {
        top: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}

.bookBox{
    box-sizing:border-box;
    max-width:1024px;
    width:100%;
    margin-bottom:24px;
    padding:24px;
    
    display:none;
}

.bookBox:first-of-type{
    display:block;
}

.bookBox h2{
    font-size:16px;
    font-weight:600;
    
    display:flex;
    align-items:center;
}

.bookBox h2 svg{
    margin-right:8px;
}

.bookBox h3{
    font-size:18px;
    font-weight:600;
}

.bookBox ul{
    
}

.selectList li{
    margin-top:16px;
    padding:16px;
    font-size:16px;
    
    display:flex;
    justify-content:space-between;
    align-items:center;
    
    cursor:pointer;
}

.selectList li.selected{
    cursor:default;
}

.selectList li .checkmark{
    display:none;
    width:32px;
    height:32px;
}

.selectList li.selected .checkmark{
    display:block;
}

.selectList li:hover{
}

.selectList li > div > div:last-of-type{
    font-size:14px;
}

/* COLUMN */

.c-8{
    width:12.5%;
}

.text-gray-600 {
  color:rgb(75, 85, 99);
}

/* SERVICES */

#serviceBox > div{
/*    margin-top: 1.5rem;*/
    margin-bottom: 1.5rem;
}

/* STEP FOOTER */

#stepFooter{
    box-sizing:border-box;
    width:100%;
    height: 7rem;
    padding:clamp(1rem, 2vw, 2rem) clamp(4rem, 3vw, 6rem);
    background: #0e0d0b;
    color:#c9a84c;
    cursor:pointer;
    animation:slideUp 0.3s ease;
    
    display:none;
    flex-direction:row;
    
    position: fixed;
    bottom: 0;
    left: 0;
}

#stepFooter > div{
    width:50%;
    display:flex;
}

#stepFooter > div:first-of-type{
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
}

#stepFooter > div:last-of-type{
    align-items: center;
    justify-content:flex-end;
}

#stepFooter p{
    color:#e8e0d0;
}

/* CALENDER */

/* CALENDER HEADER */

#datepicker-container{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

#datepicker-container button{
    margin:0 8px;
    border:none;
    background-color:transparent;
    cursor:pointer;
}

#datepicker-container input{
    border:none;
    font-size:112%;
}

#calender{
    margin-top:16px;
}

#calender ul > li:first-child button{    
    cursor:default;
}

#calender li{
    display:flex;
}

#calender li > div{
    box-sizing:border-box;
    padding: .5rem;
    align-content:center;
}

@media (max-width: 512px) {
    #calender li > div{
        padding:3px;
    }
}

#calender li button{
    width:100%;
    height:100%;
    padding: .5rem;
    border:none;
    border:solid 1px transparent;
    background-color:transparent;
    
    cursor:pointer;
}

#calender li button > span.textBtn{
    display:inline-block;
}

#calender li button > span.timeBtn{
    display:none;
}

#calender li button.unavailable, #calender li button.expired{
    cursor:not-allowed;
}

#calender li button.unavailable span:first-of-type{
    opacity:.64;
}

#calender li button.active{
}   

/* CALENDER PHONE */

@media (max-width: 720px) {
    #calender ul{
        display:flex;
        flex-flow:row wrap;
    }
    
    #calender li{
        width:50%;
    }
    
    #calender li:first-child{
        width:100%;
    }
    
    #calender li > div{
        width:100%;
    }
    
    #calender ul > li:first-child button{
        cursor:default;
    }
    
    #calender ul > li:first-child button.selected{
        cursor:default;
    }
    
    
    #calender ul > li:first-child > div{
        width:14.28%;
    }
    
    /* Hide times */
    #calender li > div:first-child{
        display:none;
    }
    
    #calender li button > span.timeBtn{
        display:inline-block;
    }

    #calender li button > span.textBtn{
        display:none;
    }
    
    #calender ul li:not(:first-child) > div{
        display:none;
    }
    
    #calender.mon ul li:not(:first-child) > div:nth-child(2){
        display:inline-block;
    }
    
    #calender.tue ul li:not(:first-child) > div:nth-child(3){
        display:inline-block;
    }
    
    #calender.wed ul li:not(:first-child) > div:nth-child(4){
        display:inline-block;
    }
    
    #calender.thu ul li:not(:first-child) > div:nth-child(5){
        display:inline-block;
    }
    
    #calender.fri ul li:not(:first-child) > div:nth-child(6){
        display:inline-block;
    }
    
    #calender.sat ul li:not(:first-child) > div:nth-child(7){
        display:inline-block;
    }
    
    #calender.sun ul li:not(:first-child) > div:nth-child(8){
        display:inline-block;
    }
}

@media (max-width: 420px) {
    #calender li:first-child{
        height:100%;
        flex-flow:row wrap;
        justify-content:space-evenly;
    }
    
    #calender ul > li:first-child > div{
        width:25%;
    }
}

/* CONFIRM */

#confirmBox{
    gap:1rem;
}

.confrimInput, #confirmBox input{
    padding:16px;
}

.confrimInput{
}

.confrimInput > div:first-child{
    font-size:80%;
}

#confirmBox input{
    font-size:16px;
    border-color:transparent;
    cursor:pointer;
}

#confirmBox input.disabled{
    cursor:inherit;
}

#termsConfirm label{
    display:flex;
    flex-direction: column;
}

#termsConfirm label > div{
    width:100%;
    max-width:480px;
    margin-top:0.6rem;
}

#termsConfirm label > div:last-of-type{
    box-sizing: border-box;
    margin-top:0.4rem;
    padding-left:25px;
}

@media (max-width: 512px) {
    #termsConfirm label > div:last-of-type{
        padding-left:0;
    }
}

#termsConfirm label > div input{
    margin-right:7px;
}


/* LOGIN */

main{
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 6vw, 5rem) 1.5rem;
}

.card-wrapper{
    width: 100%;
    max-width: 440px;
    background: #1c1a16;
    border: 1px solid #2e2a22;
    position: relative;
    overflow: hidden;
    padding: 2.5rem 2.8rem 2rem;
    animation: fadeUp 0.6s ease both;
}

@media (max-width: 512px) {
    .card-wrapper{
        padding: 2.5rem 1rem 2rem;
    }
}

.card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

.card-head{
    text-align: center;
    position: relative;
    z-index: 1;
}

.card-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8a6e30;
    margin-bottom: 0.9rem;
}

.card-title {
/*  font-family: 'Cormorant Garamond', serif;*/
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.15;
    color: #e8e0d0;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 0.78rem;
    color: #8a8070;
    letter-spacing: 0.04em;
}

.field {
  margin-bottom:1.4rem;
}

.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8070;
  margin-bottom: 0.55rem;
}

.input-wrap {
  position: relative;
}

.input-wrap input {
  position: relative;
  z-index: 1;
}

.field input {
    box-sizing: border-box;
    width: 100%;
    background: #161410;
    border: 1px solid #2e2a22;
    color: #e8e0d0;
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    padding: 0.78rem 1rem 0.78rem 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    border-radius: 0;
}

.field input:focus {
  border-color: #8a6e30;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.input-wrap svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #4a4438;
  pointer-events: none;
  transition: color 0.2s;
}

.field-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.45rem;
}

.forgot-link {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: #8a8070;
  text-decoration: none;
  transition: color 0.2s;
}

.forgot-link:hover {
  color: #c9a84c;
}

.btn-primary {
  width: 100%;
  background: transparent;
  border: 1px solid #8a6e30;
  color: #c9a84c;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background:rgba(201,168,76,0.12);
  border-color:#c9a84c;
  box-shadow: 0 0 20px rgba(201,168,76,0.1);
}

.or-sep {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.4rem 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4a4438;
}

.or-sep::before, .or-sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #2e2a22;
}

.card-foot {
  padding: 0 2.8rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  color: #8a8070;
  letter-spacing: 0.04em;
}

.card-foot a {
  color: #8a6e30;
  text-decoration: none;
  transition: color 0.2s;
}

.card-foot a:hover {
  color: #c9a84c;
}

/* DASHBOARD */

#dashboard main{
    max-width:1080px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
}

.pageHeader {
    width:100%;
  margin-bottom: 3rem;
  border-bottom: 1px solid #2e2a22;
  padding-bottom: 1.8rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.pageHeader h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 2.9rem);
  line-height: 1.1;
  color: #e8e0d0;
}

.userPill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #1c1a16;
  border: 1px solid #2e2a22;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
}

.avatar {
  width: 32px;
  height: 32px;
  background: rgba(201,168,76,0.12);
  border: 1px solid #8a6e30;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: #c9a84c;
}

.userPill span {
  font-size: 0.8rem;
  color: #8a8070;
  letter-spacing: 0.05em;
}

.stats {
    width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: #2e2a22;
  border: 1px solid #2e2a22;
  margin-bottom: 3rem;
}

.stat {
  background: #1c1a16;
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  justify-content: flex-end;
}

@media (max-width: 512px) {
    .stats{
        display:block;
    }
    
    .stat:not(:last-child){
        border-bottom: 1px solid #2e2a22;
    }
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: #c9a84c;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8070;
}

.sectionTitle {
    width:100%;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: #e8e0d0;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.sectionTitle::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #2e2a22;
}

.sectionTitle > span {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #8a8070;
}

.userBookings{
    width:100%;
    margin-bottom:3rem;
}

.bookingCard {
  background: #1c1a16;
  border: 1px solid #2e2a22;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: stretch;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  animation: fadeUp 0.4s ease both;
    animation-delay: 0s;
}

.bookingDate {
  background: #161410;
  border-right: 1px solid #2e2a22;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  gap: 0.1rem;
}

.dateDay {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #c9a84c;
  line-height: 1;
}

.dateMonth {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8070;
}

.dateYear {
  font-size: 0.62rem;
  color: #8a8070;
  letter-spacing: 0.08em;
}

.bookingBody {
  padding: 1.1rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
}

.bookingService {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #e8e0d0;
  letter-spacing: 0.01em;
}

.bookingService > span{
  color: #8a8070;
  margin-left: .8rem;
  font-size: 0.85rem;
}

.bookingMeta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.4rem;
}

.metaItem {
  font-size: 0.75rem;
  color: #8a8070;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 0;
}

.badgeConfirmed {
  background: rgba(106,158,110,0.1);
  color: #6a9e6e;
  border: 1px solid rgba(106,158,110,0.25);
}

.badgePending {
  background: rgba(196,154,74,0.1);
  color: #c49a4a;
  border: 1px solid rgba(196,154,74,0.25);
}

.badgeDone {
  background: transparent;
  color: #8a8070;
  border: 1px solid #2e2a22;
}

.badgeCancelled {
  background: rgba(181,96,96,0.1);
  color: #b56060;
  border: 1px solid rgba(181,96,96,0.25);
}

.bookingActions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 1rem 1.4rem;
  gap: 0.5rem;
  border-left: 1px solid #2e2a22;
  min-width: 130px;
}

@media (max-width: 600px) {
    .bookingActions {
        display:none;
    }
}

.bookingActions form{
    padding:0px;
}

.actionPrice {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: #e8e0d0;
}

.actionBtn {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border: 1px solid;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  text-align: center;
}

.btnSecondary {
  border-color: #2e2a22;
  color: #8a8070;
}

.btnSecondary:hover {
  border-color: #b56060;
  color: #b56060;
}

.btnBook {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0e0d0b;
  background: #c9a84c;
  border: none;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

/* COOKIE */

/* ── Overlay ── */
#cookieOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.4s ease both;
}

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

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

#cookieOverlay.hide {
  animation: fadeOut 0.35s ease forwards;
  pointer-events: none;
}

/* ── Modal card ── */
.cookie-card {
  font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
  width: 100%;
  max-width: 520px;
  background: #1c1a16;
  border: 1px solid #2e2a22;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.45s ease both;
}

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

/* gold top hairline */
.cookie-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

/* inner glow */
.cookie-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.05), transparent);
  pointer-events: none;
}

/* ── Head ── */
.cookie-head {
  padding: 2.2rem 2.5rem 1.6rem;
  position: relative;
  z-index: 1;
}

.cookie-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a6e30;
  margin-bottom: 0.8rem;
}

.cookie-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: #e8e0d0;
  margin-bottom: 0.7rem;
}

.cookie-intro {
  font-size: 0.8rem;
  color: #8a8070;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.cookie-intro a {
  color: #8a6e30;
  text-decoration: none;
  transition: color 0.2s;
}
.cookie-intro a:hover { color: #c9a84c; }

/* ── Divider ── */
.cookie-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #2e2a22, transparent);
  margin: 0 2.5rem;
}

/* ── Toggles ── */
.cookie-prefs {
  padding: 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  position: relative;
  z-index: 1;
}

.pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid #2e2a22;
  gap: 1rem;
}

.pref-row:last-child { border-bottom: none; }

.pref-info { flex: 1; }

.pref-name {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #e8e0d0;
  margin-bottom: 0.2rem;
}

.pref-desc {
  font-size: 0.7rem;
  color: #8a8070;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* Toggle switch */
.toggle {
  position: relative;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}

.toggle-track {
  position: absolute;
  inset: 0;
  background: #2e2a22;
  border: 1px solid #3e3a32;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

.toggle-track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: #8a8070;
  transition: transform 0.25s, background 0.25s;
}

.toggle input:checked + .toggle-track {
  background: rgba(201,168,76,0.15);
  border-color: #8a6e30;
}

.toggle input:checked + .toggle-track::after {
  transform: translateX(16px);
  background: #c9a84c;
}

/* disabled (required) */
.toggle input:disabled + .toggle-track {
  cursor: not-allowed;
  opacity: 0.5;
}

/* ── Actions ── */
.cookie-actions {
  padding: 1.4rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  z-index: 1;
}

.btn-accept-all {
  width: 100%;
  background: transparent;
  border: 1px solid #8a6e30;
  color: #c9a84c;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn-accept-all:hover {
  background: rgba(201,168,76,0.12);
  border-color: #c9a84c;
  box-shadow: 0 0 20px rgba(201,168,76,0.08);
}

.cookie-row-btns {
  display: flex;
  gap: 0.7rem;
}

.btn-save,
.btn-decline {
  flex: 1;
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.72rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  border: 1px solid #2e2a22;
  color: #8a8070;
}

.btn-save:hover,
.btn-decline:hover {
  border-color: #8a8070;
  color: #e8e0d0;
}

@media (max-width: 480px) {
  .cookie-head   { padding: 1.8rem 1.5rem 1.4rem; }
  .cookie-divider { margin: 0 1.5rem; }
  .cookie-prefs  { padding: 1.2rem 1.5rem; }
  .cookie-actions { padding: 1.2rem 1.5rem 1.8rem; }
}

.cookie-info{
    overflow-x: auto;
}

.cookie-card table{
    color: #e8e0d0;
    font-size: 0.8rem;
    text-align: left;
}

.cookie-card td{
    box-sizing:border-box;
    min-width:8rem;
    padding-right: 1rem;
    
    border-bottom: 1px solid #2e2a22;
}