/* =========================================================
   Studio Elegant WordPress Theme — Main Stylesheet
   Design System: Dark luxury photography brand
   ========================================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@400;600;700&display=swap');

/* ---- CSS Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Typography ---- */
.font-serif { font-family: 'Playfair Display', serif; }
.se-cursive { font-family: 'Dancing Script', cursive; font-weight: 700; letter-spacing: .02em; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ---- Layout ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }

/* ---- Glassmorphism ---- */
.glassmorphism {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.se-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-color: rgba(59,130,246,.18);
}
.se-navbar.scrolled {
    background: rgba(2, 6, 23, 0.72);
    border-color: rgba(59,130,246,.28);
}
.se-navbar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.se-navbar__logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: #fff;
    transition: color .2s;
}
.se-navbar__logo-sub {
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}
.se-navbar__logo:hover .se-navbar__logo-title { color: #d1d5db; }

/* Desktop Nav Links */
.se-navbar__links {
    display: none;
    list-style: none;
    gap: 0;
    align-items: center;
}
@media (min-width: 1024px) {
    .se-navbar__links { display: flex; gap: .25rem; }
}
.se-navbar__links li { position: relative; }
.se-navbar__links a,
.se-navbar__dropdown-toggle {
    color: #d1d5db;
    font-size: .82rem;
    font-weight: 500;
    padding: .5rem .75rem;
    border-radius: .375rem;
    transition: color .2s;
    display: flex; align-items: center; gap: .25rem;
    background: none;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}
.se-navbar__links a:hover,
.se-navbar__dropdown-toggle:hover { color: #fff; }
.se-navbar__links a .underline-bar {
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #fff;
    transition: width .3s;
}
.se-navbar__links a:hover .underline-bar { width: 100%; }
.se-navbar__dropdown-toggle .arrow {
    font-size: .6rem;
    transition: transform .3s;
    display: inline-block;
}
.se-navbar__links li:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.se-navbar__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: .5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
    pointer-events: none;
}
.se-navbar__links li:hover .se-navbar__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.se-navbar__dropdown-inner {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .75rem;
    padding: .5rem;
    min-width: 12rem;
    box-shadow: 0 20px 60px rgba(0,0,0,.8);
}
.se-navbar__dropdown a {
    display: block;
    padding: .5rem 1rem;
    font-size: .75rem;
    color: #9ca3af;
    border-radius: .5rem;
    transition: all .2s;
}
.se-navbar__dropdown a:hover { color: #fff; background: rgba(255,255,255,.06); }

/* CTA Area */
.se-navbar__cta {
    display: none;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 1024px) { .se-navbar__cta { display: flex; } }
.se-navbar__cart-btn {
    position: relative;
    width: 2rem; height: 2rem;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    color: #fff;
    transition: background .2s;
    font-size: .85rem;
}
.se-navbar__cart-btn:hover { background: rgba(255,255,255,.15); }
.se-navbar__cart-count {
    position: absolute;
    top: -4px; right: -4px;
    background: #fff;
    color: #000;
    font-size: .55rem;
    font-weight: 700;
    width: 1rem; height: 1rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.se-navbar__divider { width: 1px; height: 1.5rem; background: rgba(255,255,255,.1); }
.se-navbar__signin {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    padding: .375rem .75rem;
    border-radius: 2rem;
    transition: color .2s;
}
.se-navbar__signin:hover { color: #d1d5db; }
.se-btn-book {
    background: #fff;
    color: #000;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .5rem 1.25rem;
    border-radius: 2rem;
    transition: background .2s, transform .2s;
    display: inline-flex; align-items: center; gap: .4rem;
}
.se-btn-book:hover { background: #e5e7eb; transform: scale(1.04); }

/* Hamburger */
.se-navbar__hamburger {
    display: flex;
    align-items: center;
    gap: .75rem;
}
@media (min-width: 1024px) { .se-navbar__hamburger { display: none; } }
#se-menu-toggle {
    width: 2.2rem; height: 2.2rem;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 5px;
    background: transparent;
    border-radius: .375rem;
    transition: background .2s;
}
#se-menu-toggle:hover { background: rgba(255,255,255,.08); }
#se-menu-toggle span {
    display: block; width: 20px; height: 1.5px;
    background: #fff;
    transition: transform .3s, opacity .3s;
}
#se-menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#se-menu-toggle.open span:nth-child(2) { opacity: 0; }
#se-menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.se-mobile-menu {
    display: none;
    background: rgba(2,6,23,.92);
    backdrop-filter: blur(18px);
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease;
}
@media (max-width: 1023px) { .se-mobile-menu { display: block; } }
.se-mobile-menu.open { max-height: 100vh; }
.se-mobile-menu__inner { padding: .5rem .75rem 1.25rem; }
.se-mobile-menu a, .se-mobile-menu__group-title {
    display: block;
    padding: .6rem .75rem;
    border-radius: .5rem;
    color: #d1d5db;
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s, background .2s;
}
.se-mobile-menu a:hover { color: #fff; background: rgba(255,255,255,.05); }
.se-mobile-menu__group-title {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #4b5563;
    pointer-events: none;
}
.se-mobile-menu__sub a { padding-left: 1.5rem; border-left: 1px solid rgba(255,255,255,.08); }
.se-mobile-menu__actions {
    display: flex; flex-direction: column; gap: .75rem;
    margin-top: 1rem; padding: 0 .75rem;
}
.se-mobile-menu__actions .se-btn-book { text-align: center; justify-content: center; }

@media (max-width: 640px) {
    .se-navbar__inner { height: 64px; padding: 0 .85rem; }
    .se-navbar__logo-title { font-size: .92rem; letter-spacing: .12em; }
    .se-navbar__logo-sub { font-size: .53rem; letter-spacing: .12em; }
    .se-mobile-menu__inner { padding: .35rem .5rem 1rem; }
    .se-mobile-menu a, .se-mobile-menu__group-title { font-size: .95rem; padding: .7rem .75rem; }
    .se-mobile-menu__actions .se-btn-outline,
    .se-mobile-menu__actions .se-btn-book { width: 100%; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.se-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.se-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000, #111827, #000);
    z-index: 0;
}
.se-hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .2;
}
.se-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); z-index: 1; }
.se-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}
.se-hero__content.visible { opacity: 1; transform: translateY(0); }
.se-hero__eyebrow {
    color: #9ca3af;
    letter-spacing: .3em;
    font-size: .8rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
.se-hero__title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
}
.se-hero__desc {
    color: #d1d5db;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}
.se-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}
.se-btn-primary {
    background: #fff;
    color: #000;
    padding: .7rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: .9rem;
    display: inline-flex; align-items: center; gap: .5rem;
    transition: background .2s, transform .2s;
}
.se-btn-primary:hover { background: #e5e7eb; transform: scale(1.04); }
.se-btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
    padding: .7rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: .9rem;
    transition: background .2s;
}
.se-btn-outline:hover { background: rgba(255,255,255,.08); }
.se-hero__shutter {
    position: absolute; inset: 0;
    background: #fff;
    z-index: 50;
    pointer-events: none;
}
.se-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    z-index: 10;
    opacity: 0;
    animation: bounce 2s infinite 1.5s;
    text-align: center;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.se-hero__scroll a {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    transition: color .2s;
}
.se-hero__scroll a:hover { color: #fff; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.se-stats {
    padding: 4rem 0;
    background: #000;
    border-top: 1px solid rgba(255,255,255,.07);
}
.se-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}
@media (min-width: 768px) { .se-stats__grid { grid-template-columns: repeat(4, 1fr); } }
.se-stat { padding: 1rem; }
.se-stat__value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: .375rem;
    font-family: 'Playfair Display', serif;
}
.se-stat__label {
    font-size: .7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-family: 'Inter', sans-serif;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.se-services {
    padding: 5rem 0;
    background: #000;
}
.se-section-header { text-align: center; margin-bottom: 4rem; }
.se-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.se-section-divider {
    width: 4rem; height: 2px;
    background: rgba(255,255,255,.4);
    margin: 0 auto;
}
.se-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .se-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .se-services__grid { grid-template-columns: repeat(3, 1fr); } }
.se-service-card {
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .3s, background .3s, border-color .3s;
    cursor: default;
}
.se-service-card:hover { transform: scale(1.04); background: rgba(255,255,255,.06); }
.se-service-card__icon {
    width: 4rem; height: 4rem;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    transition: background .3s;
    font-size: 1.75rem;
}
.se-service-card:hover .se-service-card__icon { background: rgba(255,255,255,.15); }
.se-service-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .6rem;
    font-family: 'Inter', sans-serif;
}
.se-service-card__desc { font-size: .85rem; color: #6b7280; line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.se-testimonials {
    padding: 5rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}
.se-testimonials__inner { max-width: 50rem; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.se-testimonials__quote-icon { font-size: 3rem; color: rgba(255,255,255,.15); margin-bottom: 2rem; line-height: 1; }
.se-testimonials__slider { min-height: 200px; position: relative; }
.se-testimonial {
    position: absolute; width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
    pointer-events: none;
}
.se-testimonial.active { opacity: 1; transform: translateY(0); pointer-events: all; position: relative; }
.se-testimonial__text {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.5;
}
.se-testimonial__stars { margin-bottom: .75rem; font-size: .85rem; letter-spacing: .1em; }
.se-testimonial__stars .filled { color: #f59e0b; }
.se-testimonial__stars .empty { color: #374151; }
.se-testimonial__name { font-size: 1.1rem; font-weight: 600; color: #fff; font-family: 'Inter', sans-serif; }
.se-testimonials__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2rem; flex-wrap: wrap; }
.se-dot {
    width: .75rem; height: .75rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.2);
    border: none;
    cursor: pointer;
    transition: background .3s, width .3s;
}
.se-dot.active { background: #fff; width: 2rem; }

/* ============================================================
   BOOKING CTA
   ============================================================ */
.se-booking-cta {
    padding: 6rem 1.5rem;
    text-align: center;
    background: linear-gradient(to top, #111827, #000);
}
.se-booking-cta__inner { max-width: 48rem; margin: 0 auto; }
.se-booking-cta__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}
.se-booking-cta__desc { color: #6b7280; font-size: 1.1rem; margin-bottom: 2.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.se-footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,.05);
    color: #fff;
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.se-footer__top-line {
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,.2), transparent);
}
.se-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
@media (min-width: 640px) { .se-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .se-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.se-footer__brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: .25rem;
}
.se-footer__brand-name span { color: #6b7280; }
.se-footer__brand-sub { font-size: .6rem; text-transform: uppercase; letter-spacing: .3em; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.se-footer__brand-desc { font-size: .85rem; color: #4b5563; line-height: 1.7; max-width: 22rem; }
.se-footer__socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.se-footer__social {
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: #6b7280;
    transition: color .2s, border-color .2s, background .2s;
}
.se-footer__social:hover { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.se-footer__col-title {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}
.se-footer__links { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.se-footer__links a {
    font-size: .85rem;
    color: #6b7280;
    display: flex; align-items: center; gap: 0;
    transition: color .3s;
}
.se-footer__links a::before {
    content: '';
    display: inline-block;
    width: 0; height: 1px;
    background: #fff;
    margin-right: 0;
    opacity: 0;
    transition: width .3s, margin-right .3s, opacity .3s;
}
.se-footer__links a:hover { color: #fff; }
.se-footer__links a:hover::before { width: 1rem; margin-right: .5rem; opacity: 1; }
.se-footer__contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.25rem;
}
.se-footer__contact-icon {
    width: 2.25rem; height: 2.25rem;
    min-width: 2.25rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: .5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
    color: #6b7280;
}
.se-footer__contact-text { font-size: .85rem; color: #6b7280; }
.se-footer__contact-text a { color: #6b7280; transition: color .2s; }
.se-footer__contact-text a:hover { color: #fff; }
.se-footer__newsletter-desc { font-size: .85rem; color: #4b5563; margin-bottom: 1rem; line-height: 1.6; }
.se-footer__newsletter-form { position: relative; }
.se-footer__newsletter-form input {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1.25rem;
    padding: 1rem 3.5rem 1rem 1.25rem;
    font-size: .85rem;
    color: #fff;
    outline: none;
    transition: border-color .2s;
}
.se-footer__newsletter-form input::placeholder { color: #374151; }
.se-footer__newsletter-form input:focus { border-color: rgba(255,255,255,.25); }
.se-footer__newsletter-btn {
    position: absolute;
    right: .4rem; top: 50%;
    transform: translateY(-50%);
    width: 2.5rem; height: 2.5rem;
    background: #fff;
    color: #000;
    border-radius: .75rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: background .2s;
}
.se-footer__newsletter-btn:hover { background: #e5e7eb; }
.se-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.05);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .72rem;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.se-footer__bottom a { color: #6b7280; transition: color .2s; }
.se-footer__bottom a:hover { color: #fff; }
#se-back-to-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 200;
    width: 3.5rem; height: 3.5rem;
    background: #fff;
    color: #000;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0,0,0,.6);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: opacity .3s, transform .3s;
    pointer-events: none;
}
#se-back-to-top.visible { opacity: 1; transform: scale(1) translateY(0); pointer-events: all; }
#se-back-to-top:hover { background: #e5e7eb; }

/* ============================================================
   PACKAGES PAGE
   ============================================================ */
.se-page-hero {
    padding: 8rem 1.5rem 4rem;
    text-align: center;
}
.se-page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.se-page-divider {
    width: 5rem; height: 2px;
    background: rgba(255,255,255,.25);
    margin: 0 auto;
}
.se-packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem 5rem;
    max-width: 1280px;
    margin: 0 auto;
}
@media (min-width: 768px) { .se-packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .se-packages-grid { grid-template-columns: repeat(3, 1fr); } }
.se-pkg-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: border-color .3s, background .3s;
}
.se-pkg-card:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); }
.se-pkg-badge {
    position: absolute;
    top: 0; right: 0;
    background: rgba(255,255,255,.1);
    padding: .6rem 1rem;
    border-bottom-left-radius: 1rem;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #fff;
}
.se-pkg-name { font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: .375rem; font-family: 'Playfair Display', serif; }
.se-pkg-subtitle { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: #9ca3af; margin-bottom: .45rem; }
.se-pkg-desc { font-size: .85rem; color: #6b7280; margin-bottom: 1.5rem; min-height: 2.5rem; }
.se-pkg-price { font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: 2rem; font-family: 'Playfair Display', serif; }
.se-pkg-price span { font-size: .9rem; font-weight: 400; color: #6b7280; }
.se-pkg-features { list-style: none; flex: 1; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.se-pkg-features li { display: flex; align-items: flex-start; gap: .75rem; font-size: .85rem; color: #d1d5db; }
.se-pkg-features li::before { content: '✓'; color: #fff; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.se-about {
    min-height: 100vh;
    background: #000;
    padding-top: 6rem;
    padding-bottom: 5rem;
}
.se-about__hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) { .se-about__hero { flex-direction: row; gap: 3.5rem; } }
.se-about__img-wrap {
    width: 100%;
    height: 24rem;
    border-radius: 1rem;
    overflow: hidden;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .se-about__img-wrap { width: 45%; height: 42rem; }
}
.se-about__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.se-about__eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: .5rem;
    font-family: 'Inter', sans-serif;
}
.se-about__divider { width: 4rem; height: 2px; background: rgba(255,255,255,.4); margin: 1.5rem 0 2rem; }
.se-about__body { font-size: 1rem; color: #d1d5db; line-height: 1.8; margin-bottom: 1.25rem; }
.se-about__detail { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.se-about__detail strong { color: #fff; display: block; margin-bottom: .25rem; font-size: .85rem; }
.se-about__detail span { color: #6b7280; font-size: .9rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.se-contact { min-height: 100vh; background: #000; padding: 8rem 1.5rem 5rem; }
.se-contact__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 1024px) { .se-contact__grid { grid-template-columns: repeat(2, 1fr); } }
.se-contact-card {
    display: flex; align-items: flex-start; gap: 1.25rem;
    margin-bottom: 1.25rem;
    transition: border-color .2s;
}
.se-contact-card:hover { border-color: rgba(255,255,255,.2); }
.se-contact-card__icon {
    width: 3rem; height: 3rem; min-width: 3rem;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.se-contact-form__group { margin-bottom: 1.25rem; }
.se-contact-form__label { display: block; font-size: .8rem; color: #9ca3af; margin-bottom: .4rem; font-weight: 500; }
.se-contact-form input,
.se-contact-form textarea {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .5rem;
    padding: .75rem 1rem;
    color: #fff;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
    resize: vertical;
}
.se-contact-form input:focus,
.se-contact-form textarea:focus { border-color: rgba(255,255,255,.3); }
.se-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .se-contact-form__row { grid-template-columns: 1fr; } }
.se-map-wrap { height: 18rem; border-radius: 1rem; overflow: hidden; border: 1px solid rgba(255,255,255,.1); margin-top: 1.25rem; }
.se-map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   BOOK PAGE
   ============================================================ */
.se-booking { min-height: 100vh; background: #000; padding: 8rem 1.5rem 5rem; }
.se-booking__inner { max-width: 48rem; margin: 0 auto; }
.se-booking-form { width: 100%; }
.se-booking-form input,
.se-booking-form select,
.se-booking-form textarea {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: .5rem;
    padding: .85rem 1rem;
    color: #fff;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
    resize: vertical;
    font-family: 'Inter', sans-serif;
}
.se-booking-form textarea { min-height: 110px; }
.se-booking-form .se-form-row { margin-bottom: .25rem; }
.se-booking-form button.se-btn-primary { border-radius: 2rem; }
.se-booking-form select option { background: #111; color: #fff; }
.se-booking-form input:focus,
.se-booking-form select:focus,
.se-booking-form textarea:focus { border-color: rgba(255,255,255,.3); }

/* ============================================================
   SHOP / WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce { background: #000; min-height: 100vh; }
.woocommerce .woocommerce-breadcrumb {
    display: none;
}
/* Product archive page */
.se-shop { background: #000; min-height: 100vh; padding: 7rem 1.5rem 5rem; }
.se-shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}
@media (min-width: 640px) { .se-shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .se-shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .se-shop-grid { grid-template-columns: repeat(4, 1fr); } }
.se-shop-toolbar{
    max-width: 1280px;
    margin: 0 auto 1.25rem;
    padding: .9rem;
}
.se-shop-search-wrap{ margin-bottom: .7rem; }
.se-shop-search{
    width: 100%;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: #fff;
    border-radius: .7rem;
    padding: .75rem 1rem;
    font-size: .9rem;
    outline: none;
}
.se-shop-search:focus{ border-color: rgba(59,130,246,.55); }
.se-shop-filters{
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}
.se-shop-filter-btn{
    border: 1px solid rgba(255,255,255,.16);
    color: #cbd5e1;
    border-radius: 999px;
    padding: .35rem .85rem;
    font-size: .73rem;
    font-weight: 600;
    transition: all .2s;
}
.se-shop-filter-btn.active,
.se-shop-filter-btn:hover{
    background: rgba(59,130,246,.22);
    border-color: rgba(59,130,246,.45);
    color: #fff;
}

/* Single product card */
.se-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
}
.se-product-card__img {
    position: relative;
    background: #111;
    aspect-ratio: 1;
    overflow: hidden;
}
.se-product-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.se-product-card:hover .se-product-card__img img { transform: scale(1.06); }
.se-product-card__body { padding: 1rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.se-product-card__name {
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .375rem;
    font-family: 'Inter', sans-serif;
}
.se-product-card__price { font-size: .95rem; color: #9ca3af; margin-bottom: .75rem; font-weight: 500; }
.se-product-card__add-btn {
    width: 100%;
    background: #fff;
    color: #000;
    border-radius: 2rem;
    padding: .5rem 1rem;
    font-size: .8rem;
    font-weight: 700;
    transition: background .2s;
    display: flex; align-items: center; justify-content: center; gap: .4rem;
    margin-top: auto;
}
.se-product-card__add-btn:hover { background: #e5e7eb; }
.se-product-card__buy-btn{
    width: 100%;
    margin-top: .55rem;
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    border-radius: 2rem;
    padding: .5rem 1rem;
    font-size: .78rem;
    font-weight: 700;
    text-align: center;
    transition: background .2s, border-color .2s;
}
.se-product-card__buy-btn:hover{
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.4);
}

/* WooCommerce forms */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    color: #fff !important;
    border-radius: .5rem !important;
    padding: .75rem 1rem !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus { border-color: rgba(255,255,255,.3) !important; outline: none !important; }
.woocommerce #payment { background: #111 !important; border-radius: 1rem !important; }
.woocommerce #payment div.payment_box { background: rgba(255,255,255,.04) !important; }
.woocommerce form .form-row label { color: #9ca3af !important; font-size: .85rem !important; }
.woocommerce-cart table.cart,
.woocommerce-checkout .woocommerce { background: #000 !important; }
.woocommerce .button,
.woocommerce-page .woocommerce a.button,
.woocommerce-page .woocommerce button.button {
    background: #fff !important;
    color: #000 !important;
    border-radius: 2rem !important;
    font-weight: 700 !important;
    border: none !important;
    padding: .6rem 1.5rem !important;
    transition: background .2s !important;
}
.woocommerce .button:hover,
.woocommerce-page .woocommerce a.button:hover { background: #e5e7eb !important; }
.woocommerce-cart-form { color: #fff; }
.woocommerce-cart-form table { color: #d1d5db; }
.woocommerce-cart-form table th { color: #9ca3af; border-bottom: 1px solid rgba(255,255,255,.1); }
.woocommerce-cart .cart_totals h2 { color: #fff; }
.woocommerce-cart .cart_totals table { color: #d1d5db; }

/* ============================================================
   CAPTURES / GALLERY PAGE
   ============================================================ */
.se-captures { min-height: 100vh; background: #000; padding: 7rem 1.5rem 5rem; }
.se-gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin: 0 auto 2.5rem;
    max-width: 48rem;
}
.se-filter-btn {
    padding: .45rem 1.25rem;
    border-radius: 2rem;
    font-size: .78rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.2);
    color: #9ca3af;
    background: transparent;
    transition: all .2s;
    cursor: pointer;
}
.se-filter-btn.active,
.se-filter-btn:hover { background: #fff; color: #000; border-color: #fff; }
.se-masonry {
    columns: 2;
    column-gap: 1rem;
    max-width: 1280px;
    margin: 0 auto;
}
@media (min-width: 768px) { .se-masonry { columns: 3; } }
@media (min-width: 1280px) { .se-masonry { columns: 4; } }
.se-masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: .5rem;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.se-masonry-item__title{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    color: rgba(255,255,255,.92);
    padding: .75rem .85rem;
    background: rgba(17,24,39,.55);
    border-bottom: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.se-masonry-item img { width: 100%; display: block; transition: transform .5s ease; }
.se-masonry-item:hover img { transform: scale(1.05); }
.se-masonry-item__overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
    transition: opacity .3s;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff;
}
.se-masonry-item:hover .se-masonry-item__overlay { opacity: 1; }

/* Lightbox */
.se-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.97);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    padding: 1.25rem;
}
.se-lightbox.open { opacity: 1; pointer-events: all; }
.se-lightbox__panel{
    width: min(1100px, 100%);
    max-height: min(92vh, 900px);
    background: rgba(3,7,18,.72);
    border: 1px solid rgba(59,130,246,.25);
    border-radius: 1rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,.75);
}
.se-lightbox__header{
    padding: 1.1rem 1.2rem .85rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.se-lightbox__title{
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .35rem;
}
.se-lightbox__content{
    color: #9ca3af;
    font-size: .9rem;
    line-height: 1.6;
    max-height: 5.75rem;
    overflow: auto;
    padding-right: .25rem;
}
.se-lightbox__viewer{
    position: relative;
    display: grid;
    grid-template-columns: 2.75rem 1fr 2.75rem;
    align-items: center;
    gap: .5rem;
    padding: 1rem 1.2rem;
}
.se-lightbox__img {
    width: 100%;
    max-height: 56vh;
    object-fit: contain;
    border-radius: .75rem;
    background: rgba(0,0,0,.35);
}
.se-lightbox__nav{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-size: 1.65rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
}
.se-lightbox__nav:hover{ background: rgba(255,255,255,.15); transform: scale(1.04); }

.se-lightbox__thumbs{
    display: flex;
    gap: .6rem;
    padding: 0 1.2rem 1.2rem;
    overflow-x: auto;
    border-top: 1px solid rgba(255,255,255,.06);
}
.se-lightbox__thumb{
    flex: 0 0 auto;
    width: 88px;
    height: 64px;
    border-radius: .6rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    opacity: .7;
    transition: opacity .2s, border-color .2s, transform .2s;
}
.se-lightbox__thumb.active{
    opacity: 1;
    border-color: rgba(59,130,246,.6);
    transform: translateY(-1px);
}
.se-lightbox__thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.se-lightbox__close {
    position: absolute;
    top: .75rem; right: .75rem;
    font-size: 1.75rem;
    color: #fff;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    width: 3rem; height: 3rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s;
    z-index: 2;
}
.se-lightbox__close:hover { background: rgba(255,255,255,.2); }

@media (max-width: 640px){
    .se-lightbox__viewer{ grid-template-columns: 2.35rem 1fr 2.35rem; padding: .85rem .9rem; }
    .se-lightbox__header{ padding: 1rem .9rem .75rem; }
    .se-lightbox__thumb{ width: 74px; height: 56px; }
}

/* ============================================================
   BOOK A SESSION PAGE
   ============================================================ */
.se-booking-form .se-form-label { display: block; font-size: .8rem; color: #9ca3af; margin-bottom: .375rem; font-weight: 500; }
.se-booking-form .se-form-group { margin-bottom: 1.25rem; }
.se-booking-form .se-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .se-booking-form .se-form-row { grid-template-columns: 1fr; } }

/* ============================================================
   ACCOUNT / MY ORDERS
   ============================================================ */
.se-account {
    min-height: 100vh;
    background: #000;
    padding: 8rem 1.5rem 5rem;
}
.se-account__inner { max-width: 900px; margin: 0 auto; }
.woocommerce-account { background: #000; color: #fff; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { color: #9ca3af; }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { color: #fff; font-weight: 700; }
.woocommerce-account .woocommerce-MyAccount-content { color: #d1d5db; }

/* ============================================================
   AUTH PAGES (Login / Register)
   ============================================================ */
.se-auth { min-height: 100vh; background: #000; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.se-auth__card { width: 100%; max-width: 26rem; }
.woocommerce-form-login, .woocommerce-form-register { background: transparent !important; }
.woocommerce-form-login .form-row, .woocommerce-form-register .form-row { color: #9ca3af; }

/* ============================================================
   ADMIN DASHBOARD (WP Admin embedded page)
   ============================================================ */
#studio-elegant-admin-root {
    font-family: 'Inter', sans-serif;
    background: #0d0d0d;
    min-height: 100vh;
    color: #fff;
    padding: 2rem;
}
.se-admin-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}
.se-admin-tabs {
    display: flex;
    gap: .5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.se-admin-tab {
    padding: .6rem 1.25rem;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-bottom: 2px solid transparent;
    color: #6b7280;
    cursor: pointer;
    transition: color .2s, border-color .2s;
    background: none;
}
.se-admin-tab.active { color: #fff; border-color: #fff; }
.se-admin-tab:hover { color: #e5e7eb; }
.se-admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
@media (max-width: 900px) { .se-admin-stats-grid { grid-template-columns: repeat(2, 1fr); } }
.se-admin-stat-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: .75rem;
    padding: 1.25rem 1.5rem;
}
.se-admin-stat-card__label { font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; color: #6b7280; margin-bottom: .5rem; }
.se-admin-stat-card__value { font-size: 1.75rem; font-weight: 700; font-family: 'Playfair Display', serif; color: #fff; }

/* Admin table */
.se-admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
}
.se-admin-table th {
    text-align: left;
    padding: .75rem 1rem;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #4b5563;
    border-bottom: 1px solid rgba(255,255,255,.07);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.se-admin-table td {
    padding: 1rem;
    color: #d1d5db;
    border-bottom: 1px solid rgba(255,255,255,.05);
    vertical-align: middle;
}
.se-admin-table tr:hover td { background: rgba(255,255,255,.02); }
.se-admin-badge {
    display: inline-block;
    padding: .25rem .6rem;
    border-radius: 2rem;
    font-size: .7rem;
    font-weight: 600;
    text-transform: capitalize;
}
.se-admin-badge--green { background: rgba(16,185,129,.15); color: #10b981; }
.se-admin-badge--yellow { background: rgba(245,158,11,.15); color: #f59e0b; }
.se-admin-badge--red { background: rgba(239,68,68,.15); color: #ef4444; }
.se-admin-badge--gray { background: rgba(107,114,128,.2); color: #9ca3af; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-white { color: #fff; }
.text-gray { color: #9ca3af; }
.text-center { text-align: center; }
.mt-1 { margin-top: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.wp-site-blocks { padding-top: 0 !important; }
.site { display: flex; flex-direction: column; min-height: 100vh; }
#primary { flex: 1; }

/* ============================================================
   WOOCOMMERCE SPECIFIC STYLES
   ============================================================ */

/* Notices */
.woocommerce-message, .woocommerce-error, .woocommerce-info {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff !important;
    border-radius: 0.75rem !important;
    padding: 1rem 1.5rem !important;
    margin-bottom: 2rem !important;
    font-size: 0.9rem !important;
}
.woocommerce-message::before { color: #10b981 !important; }
.woocommerce-error::before { color: #ef4444 !important; }
.woocommerce-info::before { color: #3b82f6 !important; }

/* Product Cards in Shop */
.se-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Single Product */
.product_title { font-size: 2.5rem; margin-bottom: 1rem; color: #fff; }
.woocommerce-product-details__short-description { color: #9ca3af; margin-bottom: 2rem; line-height: 1.8; }
.price { font-size: 1.5rem; color: #fff !important; font-weight: 700; }
.amount { color: inherit; }
.woocommerce-Price-currencySymbol { margin-right: 2px; }

.cart { margin-top: 2rem; }
.quantity input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 0.5rem;
    border-radius: 0.5rem;
    width: 60px;
}
.single_add_to_cart_button {
    background: #fff !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 0.75rem 2rem !important;
    border-radius: 2rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: all 0.2s !important;
}
.single_add_to_cart_button:hover { background: #e5e7eb !important; transform: scale(1.02); }

/* Cart Page */
.shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
    background: transparent !important;
}
.shop_table thead th {
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    padding: 1rem;
    color: #6b7280;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}
.cart_item td {
    background: rgba(255,255,255,0.03);
    padding: 1.5rem 1rem !important;
    border: 1px solid rgba(255,255,255,0.05);
    border-width: 1px 0;
}
.cart_item td:first-child { border-left-width: 1px; border-radius: 1rem 0 0 1rem; }
.cart_item td:last-child { border-right-width: 1px; border-radius: 0 1rem 1rem 0; }
.product-thumbnail img { border-radius: 0.5rem; width: 60px; height: 60px; object-fit: cover; }
.product-name a { font-weight: 600; color: #fff; }

.cart-collaterals { margin-top: 4rem; display: flex; justify-content: flex-end; }
.cart_totals {
    width: 100%;
    max-width: 400px;
    background: rgba(255,255,255,0.04);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.cart_totals h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.checkout-button {
    width: 100% !important;
    background: #fff !important;
    color: #000 !important;
    padding: 1rem !important;
    border-radius: 2rem !important;
    font-weight: 700 !important;
    margin-top: 1rem !important;
    display: block !important;
    text-align: center !important;
}

/* Checkout Page */
.col2-set { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; }
@media (max-width: 991px) { .col2-set { grid-template-columns: 1fr; } }

#customer_details h3, #order_review_heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.woocommerce-billing-fields__field-wrapper p { margin-bottom: 1.5rem; }
.woocommerce-billing-fields__field-wrapper label {
    display: block;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}
.woocommerce-billing-fields__field-wrapper input,
.woocommerce-billing-fields__field-wrapper select,
.woocommerce-billing-fields__field-wrapper textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    outline: none;
}
.woocommerce-billing-fields__field-wrapper input:focus { border-color: rgba(255,255,255,0.3); }

#order_review {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
}
.wc_payment_method { list-style: none; margin-bottom: 1rem; }
.wc_payment_method label { color: #fff; font-weight: 600; cursor: pointer; }
.payment_box {
    background: rgba(255,255,255,0.05) !important;
    padding: 1rem !important;
    border-radius: 0.75rem !important;
    margin-top: 0.5rem !important;
    color: #9ca3af !important;
    font-size: 0.85rem !important;
}
.payment_box p { margin: 0; }
#place_order {
    width: 100% !important;
    background: #fff !important;
    color: #000 !important;
    padding: 1rem !important;
    border-radius: 2rem !important;
    font-weight: 700 !important;
    margin-top: 2rem !important;
}

/* My Account */
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation li { margin: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 1rem 0;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { color: #fff; }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
}
.woocommerce-account .woocommerce-MyAccount-content { float: none; width: 100%; }

/* Forms styling for Login/Register on My Account */
.u-columns.col2-set#customer_login { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1000px; margin: 0 auto; }
@media (max-width: 768px) { .u-columns.col2-set#customer_login { grid-template-columns: 1fr; gap: 3rem; } }
.woocommerce-form-login, .woocommerce-form-register {
    background: rgba(255,255,255,0.04);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.woocommerce-form-login h2, .woocommerce-form-register h2 { font-size: 2rem; margin-bottom: 2rem; text-align: center; }
.woocommerce-form-row label { display: block; margin-bottom: 0.5rem; color: #9ca3af; font-size: 0.85rem; }
.woocommerce-Input {
    width: 100% !important;
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff !important;
    padding: 0.75rem 1rem !important;
    border-radius: 0.75rem !important;
    margin-bottom: 1.5rem !important;
}
.woocommerce-form-login__submit, .woocommerce-form-register__submit {
    width: 100% !important;
    background: #fff !important;
    color: #000 !important;
    padding: 1rem !important;
    border-radius: 2rem !important;
    font-weight: 700 !important;
}
@media (max-width: 768px) {
    .woocommerce-account { padding: 6.5rem 1rem 3rem !important; }
    .woocommerce form.login,
    .woocommerce form.register,
    .woocommerce-form-login,
    .woocommerce-form-register {
        padding: 1.25rem !important;
        border-radius: 1rem !important;
    }
    .woocommerce-form-login h2,
    .woocommerce-form-register h2 { font-size: 1.5rem; margin-bottom: 1.1rem; }
    .woocommerce-Input { font-size: .95rem !important; }
}

/* Checkout + Order Received polish */
.woocommerce-checkout .woocommerce,
.woocommerce-order-received .woocommerce{
    max-width: 1180px;
    margin: 0 auto;
    color: #d1d5db;
}
.woocommerce-checkout .col2-set,
.woocommerce-checkout #order_review{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1rem;
    padding: 1.25rem;
}
.woocommerce-order-received .woocommerce-order{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1rem;
    padding: 1.25rem;
}
.woocommerce-order-received .woocommerce-order-overview{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
    gap: .6rem;
    margin-bottom: 1.25rem;
}
.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details{
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: .85rem;
    padding: 1rem;
    margin-top: 1rem;
}

/* ============================================================
   UI POLISH OVERRIDES (Shop, Account, Checkout, Orders)
   ============================================================ */

/* Shop toolbar: keep search small and top-right */
.se-shop-toolbar{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: .65rem;
    padding: .7rem .9rem;
}
.se-shop-search-wrap{
    margin-bottom: 0;
    flex: 0 0 auto;
}
.se-shop-search{
    width: 250px;
    max-width: 40vw;
    height: 2.15rem;
    font-size: .78rem;
    border-radius: .55rem;
    padding: .45rem .75rem;
}
.se-shop-filters{
    width: 100%;
    justify-content: flex-end;
    gap: .35rem;
}
.se-shop-filter-btn{
    font-size: .68rem;
    padding: .28rem .65rem;
}
.se-product-card__body{ padding: .9rem .95rem 1rem; }
.se-product-card__name{ font-size: .88rem; }
.se-product-card__price{ font-size: .86rem; margin-bottom: .6rem; }
.se-product-card__add-btn,
.se-product-card__buy-btn{
    min-height: 34px;
    font-size: .73rem;
    letter-spacing: .02em;
}

/* My account area and sub-pages */
.woocommerce-account .woocommerce{
    max-width: 1120px;
    margin: 0 auto;
}
.woocommerce-account .woocommerce-MyAccount-navigation{
    margin-bottom: 1.5rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul{
    gap: .65rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation a{
    padding: .55rem .4rem;
    font-size: .82rem;
}
.woocommerce-account .woocommerce-MyAccount-content{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1rem;
    padding: 1.2rem;
}
.woocommerce-account .addresses .title h3,
.woocommerce-account .woocommerce-Address-title h3{
    font-size: 1.55rem;
    margin-bottom: .75rem;
}
.woocommerce-account address{
    font-style: normal;
    color: #d1d5db;
    line-height: 1.65;
    font-size: .92rem;
}
.woocommerce-account .woocommerce-column{
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: .85rem;
    padding: 1rem;
}

/* View order / order details page */
.woocommerce-account .woocommerce-order{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1rem;
    padding: 1.15rem;
}
.woocommerce table.shop_table{
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: .85rem !important;
    overflow: hidden;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td{
    border-color: rgba(255,255,255,.08) !important;
}

/* Checkout cleanup */
.woocommerce-checkout .woocommerce{
    max-width: 1180px;
}
.woocommerce-checkout .col2-set{
    gap: 1.1rem;
    margin-bottom: 1rem;
}
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1rem;
    padding: 1rem;
}
.woocommerce-checkout .form-row{
    margin-bottom: .9rem !important;
}
.woocommerce-checkout #payment{
    border: 1px solid rgba(255,255,255,.08) !important;
}

/* Order received page tidy */
.woocommerce-order-received .woocommerce-order{
    max-width: 860px;
    margin: 0 auto;
}
.woocommerce-order-received .woocommerce-notice--success{
    background: rgba(16,185,129,.12) !important;
    border-color: rgba(16,185,129,.4) !important;
}
.woocommerce-order-received .woocommerce-order-overview li{
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: .7rem;
    padding: .7rem .8rem !important;
    margin: 0 !important;
}

@media (max-width: 900px){
    .se-shop-toolbar{
        justify-content: stretch;
    }
    .se-shop-search{
        width: 100%;
        max-width: none;
    }
    .se-shop-search-wrap{
        width: 100%;
    }
    .se-shop-filters{
        justify-content: flex-start;
    }
    .woocommerce-account .woocommerce-MyAccount-content,
    .woocommerce-account .woocommerce-order,
    .woocommerce-order-received .woocommerce-order{
        padding: .9rem;
    }
}

@media (max-width: 640px){
    .woocommerce-account .woocommerce-MyAccount-navigation ul{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .35rem .6rem;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation a{
        padding: .35rem 0;
        font-size: .78rem;
    }
    .woocommerce-account .woocommerce-MyAccount-content{
        border-radius: .8rem;
    }
    .woocommerce-account .addresses .title h3,
    .woocommerce-account .woocommerce-Address-title h3{
        font-size: 1.3rem;
    }
    .woocommerce-checkout .woocommerce{
        padding: 0 .2rem;
    }
    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review{
        padding: .8rem;
    }
}

/* ============================================================
   ADVANCED UI PASS (Shop + Product + Checkout + Addresses)
   ============================================================ */

/* Shop page: stronger structure and premium spacing */
.post-type-archive-product .se-page-hero{
    padding-bottom: 1.2rem !important;
}
.post-type-archive-product .se-shop-toolbar{
    border: 1px solid rgba(255,255,255,.09);
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
}
.post-type-archive-product .se-shop-grid{
    margin-top: 1.25rem;
    gap: 1.25rem;
}
.post-type-archive-product .se-product-card{
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,.08);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.post-type-archive-product .se-product-card:hover{
    border-color: rgba(59,130,246,.45);
    box-shadow: 0 16px 38px rgba(2,6,23,.45);
    transform: translateY(-2px);
}
.post-type-archive-product .se-product-card__img{
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.post-type-archive-product .se-product-card__add-btn{
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.post-type-archive-product .se-product-card__buy-btn{
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

/* Single product page: improve composition */
.single-product .se-shop .container{
    max-width: 1240px;
}
.single-product div.product{
    display: grid;
    grid-template-columns: minmax(320px, 52%) minmax(320px, 48%);
    gap: clamp(1rem, 3vw, 2.2rem);
    align-items: start;
}
.single-product div.product .woocommerce-product-gallery{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1rem;
    padding: .8rem;
}
.single-product div.product .summary{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1rem;
    padding: 1.15rem;
}
.single-product .product_title{
    line-height: 1.1;
    letter-spacing: -.01em;
}
.single-product .price{
    margin-bottom: .65rem;
}
.single-product .single_add_to_cart_button{
    min-height: 44px;
}

/* Checkout page: cleaner card sections and summary */
.woocommerce-checkout .woocommerce{
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}
.woocommerce-checkout form.checkout{
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, .9fr);
    gap: 1rem;
    align-items: start;
}
.woocommerce-checkout #customer_details{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 1rem;
    padding: 1rem;
}
.woocommerce-checkout #order_review{
    position: sticky;
    top: 90px;
    border-color: rgba(59,130,246,.28);
    box-shadow: 0 16px 40px rgba(2,6,23,.35);
}
.woocommerce-checkout #order_review .shop_table{
    border-spacing: 0 !important;
}
.woocommerce-checkout #order_review .shop_table th,
.woocommerce-checkout #order_review .shop_table td{
    padding: .65rem .55rem !important;
}
.woocommerce-checkout #payment .wc_payment_methods{
    margin-bottom: .8rem !important;
}

/* My account addresses: balanced two-column cards */
.woocommerce-account.woocommerce-edit-address .woocommerce-MyAccount-content{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.09);
}
.woocommerce-account.woocommerce-edit-address .woocommerce-Addresses{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: .6rem;
}
.woocommerce-account.woocommerce-edit-address .woocommerce-Address{
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: .9rem;
    padding: 1rem;
}
.woocommerce-account.woocommerce-edit-address .woocommerce-Address-title{
    margin-bottom: .55rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.woocommerce-account.woocommerce-edit-address .woocommerce-Address-title .edit{
    font-size: .78rem;
    color: #cbd5e1;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    padding: .18rem .6rem;
}

/* Order-received and view-order readability */
.woocommerce-order-received .woocommerce-order-overview li,
.woocommerce-view-order .woocommerce-order-overview li{
    min-height: 62px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.woocommerce-order-received .woocommerce-order-details table,
.woocommerce-view-order .woocommerce-order-details table{
    border-radius: .8rem !important;
    overflow: hidden;
}

@media (max-width: 1100px){
    .single-product div.product{
        grid-template-columns: 1fr;
    }
    .woocommerce-checkout form.checkout{
        grid-template-columns: 1fr;
    }
    .woocommerce-checkout #order_review{
        position: static;
        top: auto;
    }
}

@media (max-width: 767px){
    .post-type-archive-product .se-shop-search{
        width: 100%;
        max-width: 100%;
    }
    .post-type-archive-product .se-shop-filters{
        justify-content: flex-start;
    }
    .woocommerce-account.woocommerce-edit-address .woocommerce-Addresses{
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   AUTH PAGE FINAL POLISH (Login + Register)
   ============================================================ */
.woocommerce-account:not(.logged-in) .woocommerce{
    max-width: 1160px;
    margin: 0 auto;
}
.woocommerce-account:not(.logged-in) #customer_login{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    align-items: start;
    margin-top: .9rem;
}
.woocommerce-account:not(.logged-in) #customer_login .u-column1,
.woocommerce-account:not(.logged-in) #customer_login .u-column2{
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login,
.woocommerce-account:not(.logged-in) .woocommerce-form-register{
    width: 100% !important;
    max-width: 100% !important;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 1rem !important;
    padding: 1.25rem !important;
    box-shadow: 0 16px 34px rgba(2,6,23,.35);
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login h2,
.woocommerce-account:not(.logged-in) .woocommerce-form-register h2{
    font-size: clamp(1.45rem, 2.3vw, 1.9rem);
    margin-bottom: 1rem;
    text-align: left;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-row{
    margin-bottom: .9rem !important;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-row label{
    font-size: .78rem !important;
    letter-spacing: .02em;
    color: #cbd5e1 !important;
}
.woocommerce-account:not(.logged-in) .woocommerce-Input,
.woocommerce-account:not(.logged-in) input.input-text{
    width: 100% !important;
    min-height: 42px;
    margin-bottom: 0 !important;
    font-size: .9rem !important;
    border-radius: .7rem !important;
}
.woocommerce-account:not(.logged-in) .woocommerce-password-strength{
    margin-top: .45rem;
}
.woocommerce-account:not(.logged-in) .woocommerce-LostPassword{
    margin-top: .85rem;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login__submit,
.woocommerce-account:not(.logged-in) .woocommerce-form-register__submit{
    width: 100% !important;
    min-height: 42px;
    border-radius: 999px !important;
    font-size: .86rem !important;
}
.woocommerce-account:not(.logged-in) .woocommerce-privacy-policy-text{
    color: #9ca3af;
    font-size: .82rem;
    line-height: 1.6;
    margin-top: .5rem;
}

@media (max-width: 980px){
    .woocommerce-account:not(.logged-in) #customer_login{
        grid-template-columns: 1fr;
    }
    .woocommerce-account:not(.logged-in) .woocommerce-form-login,
    .woocommerce-account:not(.logged-in) .woocommerce-form-register{
        padding: 1rem !important;
    }
}

@media (max-width: 640px){
    .woocommerce-account:not(.logged-in){
        padding-left: .9rem !important;
        padding-right: .9rem !important;
    }
    .woocommerce-account:not(.logged-in) #customer_login{
        gap: .8rem;
        margin-top: .4rem;
    }
    .woocommerce-account:not(.logged-in) .woocommerce-form-login h2,
    .woocommerce-account:not(.logged-in) .woocommerce-form-register h2{
        font-size: 1.35rem;
    }
}

/* ============================================================
   LUXURY UI SYSTEM OVERRIDE (CSS-ONLY)
   Scope: Shop, Single Product, Login/Register, Checkout,
          Order Received, View Order, Address sections
   ============================================================ */

:root{
    --se-bg-1: #050505;
    --se-bg-2: #0c0f14;
    --se-bg-3: #11151c;
    --se-text-1: #f5f1eb;
    --se-text-2: rgba(245,241,235,0.74);
    --se-text-3: rgba(245,241,235,0.56);
    --se-border: rgba(255,255,255,0.09);
    --se-border-strong: rgba(214,195,161,0.38);
    --se-accent: #d6c3a1;
    --se-accent-soft: rgba(214,195,161,0.16);
    --se-radius-lg: 20px;
    --se-radius-md: 14px;
    --se-shadow: 0 20px 44px rgba(0,0,0,.42);
}

body{
    background:
        radial-gradient(900px 500px at 85% -120px, rgba(26,39,63,.25), transparent 60%),
        radial-gradient(800px 450px at 0% 10%, rgba(255,255,255,.03), transparent 55%),
        linear-gradient(180deg, var(--se-bg-1), var(--se-bg-2) 44%, #080b10);
    color: var(--se-text-1);
}

/* Typography hierarchy */
h1,h2,h3,h4{
    letter-spacing: -.012em;
    color: var(--se-text-1);
}
.se-page-title{
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.02;
    margin-bottom: .7rem;
}
.woocommerce p,
.woocommerce li,
.woocommerce td,
.woocommerce th{
    color: var(--se-text-2);
}
.woocommerce strong,
.woocommerce b,
.woocommerce .amount{
    color: var(--se-text-1);
}

/* Header/Nav premium tuning */
.se-navbar{
    border-bottom: 1px solid rgba(214,195,161,.18);
    background: linear-gradient(180deg, rgba(7,10,16,.82), rgba(4,6,11,.68));
}
.se-navbar.scrolled{
    background: linear-gradient(180deg, rgba(8,11,18,.95), rgba(4,6,11,.88));
}
.se-navbar__inner{
    height: 70px;
}
.se-navbar__links a,
.se-navbar__dropdown-toggle{
    letter-spacing: .02em;
}
.se-navbar__links a .underline-bar{
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--se-accent), transparent);
}
.se-btn-book{
    min-height: 40px;
    padding: .54rem 1.2rem;
    border: 1px solid rgba(255,255,255,.3);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 8px 18px rgba(0,0,0,.28);
}

/* Unified cards / fields / buttons */
.glassmorphism,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-order-received .woocommerce-order,
.woocommerce-account .woocommerce-order{
    background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
    border: 1px solid var(--se-border);
    border-radius: var(--se-radius-lg);
    box-shadow: var(--se-shadow);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea,
select,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select{
    min-height: 46px;
    border-radius: 12px !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)) !important;
    color: var(--se-text-1) !important;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input::placeholder, textarea::placeholder{
    color: rgba(245,241,235,.42) !important;
}
input:focus, textarea:focus, select:focus,
.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus{
    border-color: rgba(214,195,161,.55) !important;
    box-shadow: 0 0 0 3px rgba(214,195,161,.12) !important;
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03)) !important;
}

.se-btn-primary,
.se-product-card__add-btn,
.se-product-card__buy-btn,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce .button{
    min-height: 46px;
    border-radius: 999px !important;
    letter-spacing: .04em;
    font-weight: 700 !important;
}

/* Shop page: high-end studio store look */
.post-type-archive-product .container{
    max-width: 1280px;
}
.post-type-archive-product .se-page-hero{
    padding-top: 7.3rem;
    padding-bottom: 1.1rem !important;
}
.post-type-archive-product .se-page-title + .se-page-divider{
    opacity: .85;
}
.post-type-archive-product .se-shop-toolbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    border-radius: 18px;
    border-color: rgba(214,195,161,.2);
    margin-bottom: 1.1rem;
}
.post-type-archive-product .se-shop-search-wrap{
    margin: 0 0 0 auto;
}
.post-type-archive-product .se-shop-search{
    width: 235px;
    max-width: 36vw;
    min-height: 38px;
    font-size: .76rem;
}
.post-type-archive-product .se-shop-filters{
    justify-content: flex-start;
    width: auto;
}
.post-type-archive-product .se-shop-grid{
    justify-content: center;
    row-gap: 1.5rem;
}
.post-type-archive-product .se-product-card{
    border-radius: 18px;
    overflow: hidden;
}
.post-type-archive-product .se-product-card__img{
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #f5f5f5, #d9d9d9);
}
.post-type-archive-product .se-product-card__img img{
    object-fit: contain;
    background: #f0f0f0;
}
.post-type-archive-product .se-product-card__body{
    background: linear-gradient(180deg, rgba(8,10,14,.74), rgba(6,8,12,.95));
}
.post-type-archive-product .se-product-card__name{
    font-size: .9rem;
    line-height: 1.35;
    min-height: 2.45em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.post-type-archive-product .se-product-card__price{
    font-size: .94rem;
    letter-spacing: .01em;
}

/* Single product page premium balance */
.single-product .se-shop{
    padding-top: 7.4rem;
}
.single-product div.product .woocommerce-product-gallery{
    border-color: rgba(214,195,161,.24);
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.single-product div.product .summary{
    border-color: rgba(214,195,161,.24);
}
.single-product .product_title{
    font-size: clamp(2rem, 4vw, 3rem);
}
.single-product .woocommerce-product-details__short-description{
    color: var(--se-text-2);
    line-height: 1.75;
    font-size: .98rem;
}
.single-product .product_meta{
    margin-top: 1rem;
    padding-top: .8rem;
    border-top: 1px solid rgba(255,255,255,.12);
    color: var(--se-text-3);
}
.single-product .quantity .qty{
    min-height: 44px;
    width: 72px;
    border-radius: 10px;
}
.single-product .woocommerce-tabs{
    margin-top: 1.4rem;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: .9rem;
}
.single-product .woocommerce-tabs ul.tabs{
    border: 0 !important;
    display: flex;
    gap: .45rem;
    flex-wrap: wrap;
}
.single-product .woocommerce-tabs ul.tabs li{
    border: 1px solid rgba(255,255,255,.14) !important;
    background: rgba(255,255,255,.03) !important;
    border-radius: 999px !important;
    padding: 0 !important;
}
.single-product .woocommerce-tabs ul.tabs li a{
    padding: .5rem .95rem !important;
    font-size: .76rem !important;
    font-weight: 700 !important;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.single-product .woocommerce-tabs ul.tabs li.active{
    border-color: rgba(214,195,161,.55) !important;
    background: rgba(214,195,161,.12) !important;
}
.single-product .woocommerce-Tabs-panel{
    background: linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.012));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 1rem 1.1rem;
}

/* Login + Register connected premium row */
.woocommerce-account:not(.logged-in){
    padding-top: 7.4rem !important;
}
.woocommerce-account:not(.logged-in) #customer_login{
    gap: 1.4rem;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login,
.woocommerce-account:not(.logged-in) .woocommerce-form-register{
    min-height: 100%;
    border-color: rgba(214,195,161,.2) !important;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login h2,
.woocommerce-account:not(.logged-in) .woocommerce-form-register h2{
    position: relative;
    padding-top: .45rem;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login h2::before,
.woocommerce-account:not(.logged-in) .woocommerce-form-register h2::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 1px;
    background: linear-gradient(90deg, rgba(214,195,161,.9), transparent);
}

/* Checkout premium structure */
.woocommerce-checkout{
    padding-top: 7.25rem;
}
.woocommerce-checkout .woocommerce{
    max-width: 1220px;
}
.woocommerce-checkout h3{
    font-size: 1.45rem;
    margin-bottom: .75rem;
}
.woocommerce-checkout form.checkout{
    gap: 1.25rem;
}
.woocommerce-checkout #customer_details > div,
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields{
    margin-bottom: .95rem;
}
.woocommerce-checkout #order_review{
    border-color: rgba(214,195,161,.26);
}
.woocommerce-checkout .shop_table{
    border-radius: 12px !important;
    overflow: hidden;
}
.woocommerce-checkout .shop_table tr{
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.woocommerce-checkout .wc_payment_methods li{
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: .75rem .8rem !important;
    margin-bottom: .55rem !important;
    background: rgba(255,255,255,.015);
}
.woocommerce-checkout .wc_payment_method input:checked + label{
    color: var(--se-text-1) !important;
}
.woocommerce-checkout .wc_payment_method input[type="radio"]{
    accent-color: var(--se-accent);
}

/* Order received / view order trust + hierarchy */
.woocommerce-order-received{
    padding-top: 7.25rem;
}
.woocommerce-order-received .woocommerce-order{
    border-color: rgba(214,195,161,.24);
}
.woocommerce-order-received .woocommerce-notice{
    border-radius: 12px !important;
    font-weight: 600;
}
.woocommerce-order-received .woocommerce-order-overview{
    gap: .75rem;
}
.woocommerce-order-received .woocommerce-order-overview li{
    border-color: rgba(255,255,255,.1);
}
.woocommerce-order-received .woocommerce-order-details h2,
.woocommerce-order-received .woocommerce-column__title{
    font-size: 1.85rem;
    margin-bottom: .7rem;
}
.woocommerce-order-received .woocommerce-customer-details address{
    font-size: .96rem;
    line-height: 1.7;
}
.se-slip-upload{
    border-radius: 16px !important;
    border-color: rgba(214,195,161,.26) !important;
    background: linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.012));
}
.se-slip-upload h3{
    font-size: 1.55rem !important;
}
.se-slip-upload label.se-btn-outline{
    min-height: 44px;
    border-radius: 999px;
    border-color: rgba(255,255,255,.24);
}

/* Billing/Shipping cards proportion */
.woocommerce-order-received .woocommerce-customer-details .woocommerce-columns{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}
.woocommerce-order-received .woocommerce-customer-details .woocommerce-column{
    min-height: 240px;
}

/* Footer separation */
.se-footer{
    margin-top: 2.2rem;
    background: linear-gradient(180deg, rgba(7,10,16,.94), rgba(3,4,6,1));
    border-top: 1px solid rgba(214,195,161,.2);
}

/* Responsive fine-tuning */
@media (max-width: 1024px){
    .post-type-archive-product .se-shop-search{
        max-width: 48vw;
    }
    .woocommerce-order-received .woocommerce-customer-details .woocommerce-columns{
        grid-template-columns: 1fr;
    }
}
@media (max-width: 900px){
    .post-type-archive-product .se-shop-toolbar{
        justify-content: stretch;
    }
    .post-type-archive-product .se-shop-search-wrap{
        margin-left: 0;
        width: 100%;
    }
    .post-type-archive-product .se-shop-search{
        width: 100%;
        max-width: none;
    }
    .post-type-archive-product .se-shop-filters{
        width: 100%;
        justify-content: flex-start;
    }
}
@media (max-width: 640px){
    .se-page-title{
        font-size: clamp(1.95rem, 9.6vw, 2.6rem);
    }
    .woocommerce-account:not(.logged-in),
    .woocommerce-checkout,
    .woocommerce-order-received{
        padding-top: 6.7rem !important;
    }
    .woocommerce-account:not(.logged-in) .woocommerce-form-login,
    .woocommerce-account:not(.logged-in) .woocommerce-form-register,
    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review,
    .woocommerce-order-received .woocommerce-order{
        border-radius: 14px !important;
        padding: .85rem !important;
    }
    .single-product .product_title{
        font-size: 1.85rem;
    }
    .single-product .woocommerce-tabs ul.tabs{
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: .3rem;
        flex-wrap: nowrap;
    }
}

/* ============================================================
   LUXURY PATCH V2 (targeted refinement only)
   ============================================================ */

/* Force readable text for saved checkout/autofill states */
.woocommerce-checkout input,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-combobox-control__input,
.woocommerce-checkout .wc-block-components-select .wc-block-components-select__select,
.woocommerce-checkout .wc-block-components-formatted-money-amount,
.woocommerce-checkout .wc-block-components-address-card *,
.woocommerce-checkout .wc-block-components-address-card__address-section {
    color: #f5f1eb !important;
    -webkit-text-fill-color: #f5f1eb !important;
}
.woocommerce-checkout input::placeholder,
.woocommerce-checkout textarea::placeholder{
    color: rgba(245,241,235,.45) !important;
}
.woocommerce-checkout input:-webkit-autofill,
.woocommerce-checkout textarea:-webkit-autofill,
.woocommerce-checkout select:-webkit-autofill{
    -webkit-text-fill-color: #f5f1eb !important;
    box-shadow: 0 0 0 1000px #0b0b0d inset !important;
}

/* Shop cards: more high-end balance */
.post-type-archive-product .se-shop-grid{
    grid-template-columns: repeat(auto-fit, minmax(250px, 290px)) !important;
    justify-content: center;
    gap: 1.4rem;
}
.post-type-archive-product .se-product-card{
    border-radius: 20px;
}
.post-type-archive-product .se-product-card__img{
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.post-type-archive-product .se-product-card__body{
    padding: 1rem 1rem 1.1rem;
}

/* Product details page: reduce awkward title weight + improve rhythm */
.single-product .product_title{
    font-size: clamp(36px, 4.4vw, 56px) !important;
    letter-spacing: -0.016em;
}
.single-product div.product{
    gap: clamp(2rem, 4vw, 4rem);
}
.single-product div.product .summary{
    min-height: 100%;
}
.single-product .woocommerce-Tabs-panel{
    border-color: rgba(255,255,255,.1);
}

/* My account auth pages: connected and centered */
.woocommerce-account:not(.logged-in) .woocommerce{
    max-width: 1240px;
}
.woocommerce-account:not(.logged-in) .u-columns{
    align-items: stretch;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login,
.woocommerce-account:not(.logged-in) .woocommerce-form-register{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Checkout and order received: premium section hierarchy */
.woocommerce-checkout .wc-block-components-main,
.woocommerce-checkout .wc-block-checkout__sidebar,
.woocommerce-order-received .woocommerce-order,
.woocommerce-view-order .woocommerce-order{
    border-color: rgba(214,195,161,.22);
}
.woocommerce-checkout .wc-block-components-checkout-step__heading,
.woocommerce-checkout .wc-block-components-title{
    letter-spacing: .01em;
}
.woocommerce-order-received .woocommerce-order-overview li{
    border-color: rgba(255,255,255,.11);
}

/* Billing/Shipping card proportions */
.woocommerce-customer-details{
    align-items: stretch;
}
.woocommerce-customer-details .woocommerce-column{
    min-height: 100%;
}

/* Upload slip section */
.se-slip-upload{
    border: 1px solid rgba(214,195,161,.24) !important;
    border-radius: 24px !important;
}

/* Footer heading size only (as requested) */
.se-footer__col-title{
    font-size: .68rem !important;
    letter-spacing: .24em !important;
}

@media (max-width: 1024px){
    .single-product div.product{
        grid-template-columns: 1fr !important;
    }
    .woocommerce-account .u-columns,
    .woocommerce-customer-details,
    .woocommerce-order-overview{
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 767px){
    .single-product div.product,
    .woocommerce div.product .woocommerce-tabs,
    .woocommerce-account .u-columns{
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .single-product div.product div.summary,
    .single-product div.product div.images,
    .woocommerce-account .woocommerce-form-login,
    .woocommerce-account .woocommerce-form-register{
        border-radius: 20px !important;
        padding: 20px !important;
    }
}

/* Presentation wrapper refinements */
.se-premium-shell{
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}
.se-shop-intro{
    margin: .65rem auto 0;
    max-width: 42rem;
    color: rgba(245,241,235,.72);
    font-size: .95rem;
    line-height: 1.7;
    letter-spacing: .02em;
}
.se-shop--single .se-single-product-shell{ max-width: 1280px; }
.se-shop--single .se-single-product-wrapper{ width: 100%; }
.se-premium-card{ box-shadow: 0 18px 44px rgba(0,0,0,.34); }
.woocommerce-checkout .wc-block-components-combobox-control__single-value,
.woocommerce-checkout .wc-block-components-select__select,
.woocommerce-checkout .wc-block-components-address-card__edit{
    color: #f5f1eb !important;
    -webkit-text-fill-color: #f5f1eb !important;
}
.se-myaccount-shell .woocommerce-MyAccount-navigation,
.se-myaccount-shell .woocommerce-MyAccount-content{ width: 100%; }
.se-checkout-shell .wc-block-components-main,
.se-checkout-shell .wc-block-checkout__sidebar{ width: 100%; }
@media (max-width: 767px){
    .se-shop-intro{
        font-size: .88rem;
        padding: 0 .75rem;
    }
}
