/* ==========================================================================
   THE BRIDAL OUTLET — ACTIVE STYLESHEET
   Updated July 2026: image overlay text now uses a gradient scrim,
   drop shadows removed, radius standardised via --tbo-radius.
   Dead selectors archived in bridal-outlet-removed.css.

   Fonts: Shelby + Avenir Next Condensed via Typekit (use.typekit.net/xdt0bda.css)
   Bootstrap 5.3.3 loaded separately via CDN.
   ========================================================================== */

:root {
    --tbo-bridal-bloom: #E69EAC;
    --tbo-rose-powder: #F5C8D0;
    --tbo-olive-dusk: #5F5B01;
    --tbo-golden-moss: #989311;
    --tbo-velvet-noir: #550E1C;
    --tbo-white: #ffffff;
    --tbo-black: #000000;
    --tbo-body-text: #2D2D2D;

    /* One radius for cards and imagery, a smaller one for buttons,
       inputs and dropdowns. */
    --tbo-radius: 14px;
    --tbo-radius-sm: 8px;

    --bs-font-sans-serif: "avenir-next-lt-pro-condensed", sans-serif;
    --bs-body-font-weight: 400;
    --bs-body-font-size: 18px;
    --bs-body-line-height: 1.6;
    --bs-dark: var(--tbo-velvet-noir);
    --bs-black: var(--tbo-black);
    --bs-body-color: var(--tbo-body-text);
    --bs-body-bg-color: var(--tbo-white);
    --bs-red: var(--tbo-bridal-bloom);
}


/* ==========================================================================
   GRID / CONTAINER
   ========================================================================== */

.container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (min-width: 400px) {
    .container {
        width: 90%;
        padding: 0;
    }
}

/* ==========================================================================
   BASE
   ========================================================================== */

body {
    padding-top: 160px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: var(--bs-font-sans-serif);
    font-size: var(--bs-body-font-size);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
}

@media (max-width: 767.98px) {
    body { padding-top: 70px; }
}

@media (max-width: 1199.98px) { body { padding-top: 90px; } }

a {
    transition: all .2s ease-out;
    color: var(--tbo-black);
    text-decoration: underline;
}

a:hover { color: var(--tbo-bridal-bloom); }

h1, h2, h3, h4, h5, h6 {
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

article, ul, ol, dl {
    margin-bottom: 1.5rem;
}

b, strong, dt { font-weight: 700; }

h1 { font-size: 2rem; line-height: 1.2; }
h2 { font-size: 1.75rem; line-height: 1.2; }
h3 { font-size: 1.5rem; line-height: 1.3; }
h4 { font-size: 1.25rem; line-height: 1.3; }
h5 { font-size: 1.1rem; line-height: 1.4; }

h4 a { text-decoration: none; }

.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
}

.clear { clear: both; }
.fullwidth { width: 100%; }
.imgborder { border: solid 2px var(--tbo-white); }
.backgroundbox { background-color: var(--tbo-rose-powder); border-radius: var(--tbo-radius); }
.backgroundinner {
    padding: 20px;
    background-color: #f2f1eb;
    border-radius: var(--tbo-radius);
}

.backgroundinner h5 {
    font-family: "shelby", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.backgroundinner p {

    font-size: 1rem;
    margin-bottom:1px;

}

/* ==========================================================================
   FONTS / TYPE UTILITIES
   ========================================================================== */



.brand-script {
    font-family: "shelby", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.headline-script {
    font-family: "shelby", sans-serif;
    font-size: 6em;
    color: var(--tbo-velvet-noir);
}

.subheader-script {
    font-family: "shelby", sans-serif;
    font-size: 4rem;
    line-height: .8;
    color: var(--tbo-bridal-bloom);
}

.eyebrow-text {
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tbo-olive-dusk);
    background: var(--tbo-rose-powder);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 16px;
}


/* ==========================================================================
   TOP NAVBAR LINE
   ========================================================================== */

.navbar-line {
    background: var(--tbo-golden-moss);
    padding-top: 2px;
    padding-bottom: 8px;
    height: 33px;
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
}

.navbar-line a {
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: var(--tbo-white);
    text-decoration: none;
}

.navbar-line .foxycart {
    background: url("../images/navbar/cart2.svg") left center no-repeat;
    padding-left: 27px;
}

.navbar-line .row {
    margin-top: 0;
}



/* ==========================================================================
   MAIN NAVBAR
   ========================================================================== */

.navbar-light {
    position: fixed;
    width: 100%;
    top: 33px;
    background: var(--tbo-olive-dusk);
    padding-top: 16px;
    padding-bottom: 16px;
    box-shadow: 0 12px 24px rgba(85, 14, 28, 0.08);
    margin-bottom: 44px;
    z-index: 10;
}

@media (max-width: 767.98px) {
    .navbar-light { margin-bottom: 24px; }
}

@media (max-width: 1199.98px) {
    .navbar-line { display: none;}
    .navbar-light { top: 0; }
    
    .navbar-light .navbar-toggler {
    order: 2;
    margin-left: 0 !important;
    
}

.navbar-light .offcanvas .offcanvas-body .nav-link {
    font-size: 20px;
}

.offcanvas-body .btn-red.d-xl-none {
    margin-top: 24px;
    align-self: flex-start;
    font-size: 20px !important;
    padding: 16px 32px !important;
}
.navbar-light .navbar-nav.ms-xl-auto {
    order: 1;
    margin-left: auto !important;
}
    
    .navbar-light .offcanvas {
        background: var(--tbo-velvet-noir);
        border-radius: 0 var(--tbo-radius-sm) var(--tbo-radius-sm) 0;
    }
    .navbar-light .offcanvas .btn-close {
        background: url("../images/navbar/close1.svg") center no-repeat;
        width: 24px;
        height: 24px;
        opacity: 1;
    }
    .navbar-light .offcanvas .offcanvas-header { padding: 21px 16px 15px 16px; }
    .navbar-light .offcanvas .offcanvas-body { padding: 0 19px 30px; }
    .navbar-light .offcanvas .offcanvas-body .nav-item { margin-left: 0; margin-right: 0; }
    .navbar-light .offcanvas .offcanvas-body .nav-link { color: var(--tbo-white); text-align: left; }
    .navbar-light .offcanvas .offcanvas-body .dropdown-toggle:before { display: none; }
    .navbar-light .offcanvas .offcanvas-body .dropdown-toggle::after {
        background: url("../images/navbar/arrow2.svg") center no-repeat;
        right: unset;
    }

.offcanvas-account {
    margin-top: 25px;
    align-items: flex-start;
    gap: 14px;
}

.offcanvas-account .foxycart {
    background: url("../images/navbar/cart2.svg") left center no-repeat;
    padding-left: 47px;
}
.offcanvas-body .btn-red.d-xl-none {
    margin-top: 24px;
    align-self: flex-start;
}

.offcanvas-account a {
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--tbo-white);
    text-decoration: none;
}
.offcanvas-account a:hover {
    color: var(--tbo-bridal-bloom);
}
}

.navbar-light .navbar-social .navbar-social-icon {
    width: 24px;
    height: 24px;
    margin-left: 6px;
    margin-right: 6px;
    text-decoration: none;
}
.navbar-light .navbar-social .navbar-social-icon:hover { text-decoration: none; }
.navbar-light .navbar-social .navbar-social-icon-fb { background: url("../images/navbar/facebook.svg") center no-repeat; }
.navbar-light .navbar-social .navbar-social-icon-insta { background: url("../images/navbar/instagram.svg") center no-repeat; }



.navbar-light .navbar-brand { width: 134px; color: var(--tbo-white); }
@media (max-width: 767.98px) { .navbar-light .navbar-brand { width: 100px; } }
@media (max-width: 575.98px) { .navbar-light .navbar-brand { width: 80px; } }


.navbar-light .navbar-brand .navbar-brand-logo {
    position: absolute;
    top: -40px;
    left: 0;
    width: 134px;
    z-index: 1;
}
@media (max-width: 767.98px) {
    .navbar-light .navbar-brand .navbar-brand-logo { top: 0px; width: 100px; left:10px;}
}
@media (max-width: 575.98px) {
    .navbar-light .navbar-brand .navbar-brand-logo { width: 80px; left: 10px; }
}

.navbar-light .navbar-brand .navbar-brand-logo img { max-width: 100%; }

.navbar-light .btn-check:focus + .btn,
.navbar-light .btn:focus { box-shadow: none !important; }



.navbar-light .navbar-toggler { border: 0; }
.navbar-light .navbar-toggler:focus { box-shadow: unset; }
.navbar-light .navbar-toggler-icon { background: url("../images/navbar/toggler1.svg") center no-repeat; }

.navbar-light .btn-red-dropdown .dropdown-menu {
    position: absolute !important;
    left: unset;
    right: 0;
}

.navbar-light .btn-red,
.btn-red {
    background: var(--tbo-bridal-bloom);
    border-radius: var(--tbo-radius-sm);
    padding-left: 24px !important;
    padding-right: 24px !important;
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-weight: 700 !important;
    font-size: 15px;
    line-height: 19px;
    color: var(--tbo-white) !important;
    border: none;
}
.navbar-light .btn-red:hover,
.btn-red:hover,
a.nav-link.btn-red:hover {
    background: var(--tbo-velvet-noir);
    color: var(--tbo-white) !important;
    text-decoration: none;
        border:none;
}

.btn-cta:hover {
    background: var(--tbo-velvet-noir);
    color: var(--tbo-white) !important;
    text-decoration: none;
    border:none;
}

@media (max-width: 575.98px) {
    .navbar-light .btn-red { font-size: 11px !important; line-height: 14px !important; padding: 8px 9px !important; }
}
.navbar-light .btn-red.dropdown-toggle { padding-right: 48px !important; }
@media (max-width: 575.98px) {
    .navbar-light .btn-red.dropdown-toggle { padding-right: 30px !important; }
}
.navbar-light .btn-red.dropdown-toggle::after {
    left: unset !important;
    right: 24px !important;
    background: url("../images/navbar/arrow2.svg") center no-repeat !important;
}
@media (max-width: 575.98px) {
    .navbar-light .btn-red.dropdown-toggle::after { right: 9px !important; }
}

.btn-cta {
    display: inline-block;
    background: var(--tbo-bridal-bloom);
    color: var(--tbo-white) !important;
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--tbo-radius-sm);
    text-decoration: none;
    border: none;
    text-align: center;
}

.navbar-light .dropdown-menu-search {
left: unset;
position: absolute !important;
right: 0;
width:340px;
max-width: 340px;
border-radius: var(--tbo-radius-sm);
overflow: hidden;
height: 50px;
border: 0;
padding: 0 !important;
}
@media (max-width: 991.98px) {
.navbar-light .dropdown-menu-search {
    right: 9px !important;
    width: min(80vw, 280px);
    max-width: min(80vw, 280px);
    box-shadow: none !important;
}
}
.navbar-light .dropdown-menu-search .sisea-search-form {width: 340px; padding: 0; border: 0; }
@media (max-width: 991.98px) { .navbar-light .dropdown-menu-search .sisea-search-form { width: 100%; } }
.navbar-light .dropdown-menu-search .sisea-search-form input { height: 50px; margin: 0; }
.navbar-light .dropdown-menu-search .sisea-search-form .searchfield {
width:100%;
padding: 10px 24px 10px 10px;
font-family: "avenir-next-lt-pro-condensed", sans-serif;font-size: 16px;
line-height: 18px;
color: #837F7F;
text-transform: none;
}

.navbar-light .dropdown-menu-search .sisea-search-form fieldset {
    display: flex;
    width: 100%;
}

.navbar-light .dropdown-menu-search {
    background: var(--tbo-white) !important;
}

.navbar-light .dropdown-menu-search .sisea-search-form input {
    border: 0;
}

.navbar-light .dropdown-menu-search .sisea-search-form .searchfield:focus-visible { outline: 0; }
.navbar-light .dropdown-menu-search .sisea-search-form .search-button {
background: url("../images/navbar/search1.svg") center no-repeat;
border-radius: var(--tbo-radius-sm);
width: 50px;
}
.navbar-light .nav-link-search {
width: 28px;
height: 49px;
padding: 0;
background: url("../images/navbar/search2.svg") center no-repeat;
}
@media (max-width: 575.98px) { .navbar-light .nav-link-search { height: 32px; } }
.navbar-light .nav-link-search::after { display: none; }

@media (max-width: 575.98px) { .navbar-light .navbar-nav .nav-item.nav-link-search-dropdown { margin-left: 0; } }

.nav-link-search-dropdown {
position: relative !important;
}


.nav-link-search-dropdown .dropdown-menu-search {
position: absolute !important;
top: 49px;
right: 0 !important;
left: unset !important;
margin-top: 0;
}
.dropdown-menu-search {
z-index: 1100 !important;
}


.navbar-light .nav-link-search-dropdown .dropdown-menu-search {
top: 0% !important;
margin-top: 0 !important;
transform: none !important;
}

.navbar-light .nav-link-search::before,
.navbar-light .btn-red::before {
display: none !important;
}

.navbar-light .navbar-nav .nav-item { margin-left: 10px; margin-right: 10px; }
@media (max-width: 575.98px) { .navbar-light .navbar-nav .nav-item { margin-left: 4px; margin-right: 4px; } }

.navbar-light .navbar-nav .nav-item:last-of-type { margin-right: 0; }
.navbar-light .navbar-nav .nav-item:hover .nav-link:before { width: 100%; }

.navbar-light .navbar-nav .nav-link {
    position: relative;
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    color: var(--tbo-white);
    text-transform: unset;
    padding-top: 15px;
    padding-bottom: 15px;
    text-decoration: none;
}
.navbar-light .navbar-nav .nav-link:before {
    content: ' ';
    position: absolute;
    bottom: 8px;
    left: 0;
    height: 2px;
    width: 0;
    border-radius: 2px;
    background: var(--tbo-white);
    transition: all .2s ease-out;
}
.navbar-light .navbar-nav .nav-link:hover { text-decoration: none; }

.navbar-light .navbar-nav .dropdown-menu {
    background: var(--tbo-rose-powder);
    box-shadow: 0 0 16px rgba(85, 14, 28, 0.1);
    border-radius: var(--tbo-radius-sm);
    padding-top: 10px;
    padding-bottom: 10px;
    top: calc(100% + 10px);
}
.navbar-light .navbar-nav .dropdown-menu .dropdown-item {
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    color: var(--tbo-velvet-noir);
    text-transform: unset;
    padding: 8px 23px;
}
.navbar-light .navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-light .navbar-nav .dropdown-menu .dropdown-item:focus {
    text-decoration: none;
    background: var(--tbo-bridal-bloom);
    color: var(--tbo-white);
}
.navbar-light .navbar-nav .dropdown-toggle { position: relative; padding-right: 19px; }
.navbar-light .navbar-nav .dropdown-toggle::after {
    position: absolute;
    right: 0;
    top: calc(50% - 8px);
    width: 16px;
    height: 16px;
    background: url("../images/navbar/arrow2.svg") center no-repeat;
    border: 0 !important;
}

.gown-pin-btn-wrap {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
}

/* ==========================================================================
   HERO / HEADER
   ========================================================================== */

.header-h1 { margin-bottom: 44px; }
@media (max-width: 1199.98px) { .header-h1 { margin-bottom: 24px; } }
.header-h1 h1 {
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-weight: 400;
    font-size: 36px;
    color: var(--tbo-velvet-noir);
    line-height: 1.2;
    margin: 0;
}
@media (max-width: 1199.98px) { .header-h1 h1 { font-size: 30px; } }
@media (max-width: 991.98px) { .header-h1 h1 { font-size: 24px; } }
@media (max-width: 767.98px) { .header-h1 h1 { font-size: 15px; } }

/* ==========================================================================
   HOMEPAGE BRAND BLOCKS
   Note: defined in new-home.html testing. Keep — needed when new homepage
   goes live.
   ========================================================================== */

.pillar-strip {
    background: var(--tbo-rose-powder);
    padding: 40px 20px;
}
.pillar-strip-heading {
    font-size: 4rem;
    color: var(--tbo-velvet-noir);
    margin-bottom: 10px;
}
.pillar-strip-text {
    font-size: 20px;
    color: #5a3a40;
    max-width: 560px;
    margin: 0 auto;
}

.bride-quote {
    background: var(--tbo-velvet-noir);
    color: var(--tbo-white);
    padding: 30px 24px;
}
.bride-quote-text {
    font-family: "shelby", sans-serif;
    font-weight: 400;
    font-size: 2em;
    line-height: 1.2;
    max-width: 660px;
    margin: 0 auto 8px;
}
.bride-quote-attribution {
    font-size: 1.1em;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--tbo-bridal-bloom);
    margin: 0;
}

/* ==========================================================================
   SOCIAL ROW / FOOTER
   ========================================================================== */

.social-row .social-row-icon {
    width: 44px;
    height: 44px;
    margin-left: 15px;
    margin-right: 15px;
    text-decoration: none;
    background-size: 100% auto !important;
    filter: brightness(0) invert(1);
}
@media (max-width: 1199.98px) { .social-row .social-row-icon { width: 30px; height: 30px; margin-left: 5px; margin-right: 5px; } }
@media (max-width: 767.98px) { .social-row .social-row-icon { width: 28px; height: 28px; margin-left: 10px; margin-right: 10px; } }
.social-row .social-row-icon:last-of-type { margin-right: 0; }
.social-row .social-row-icon:first-of-type { margin-left: 0; }
.social-row:hover { text-decoration: none; }
.social-row .social-row-icon-fb { background: url("../images/navbar/fb.svg") center no-repeat; }
.social-row .social-row-icon-insta { background: url("../images/navbar/insta.svg") center no-repeat; }
.social-row .social-row-icon-mail { background: url("../images/navbar/mail.svg") center no-repeat; }
.social-row .social-row-icon-pinterest { background: url("../images/navbar/pinterest.png") center no-repeat; }

footer {
    background: var(--tbo-olive-dusk);
    padding-top: 35px;
    padding-bottom: 25px;
    margin-top: auto;
}
footer .footer-link {
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    color: var(--tbo-white);
    text-decoration: none;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}
footer .footer-link:first-of-type { margin-left: 0; }
footer .footer-link:last-of-type { margin-right: 0; }

/* ==========================================================================
   GALLERY / IMAGE LAYER
   2026 refresh: gradient scrim replaces solid bands, drop shadow removed,
   hover is a gentle lift, corners clipped by the parent.
   ========================================================================== */


.whatsnew { padding-bottom: 30px; }


.imagelayer {
    position: relative;
    margin-bottom: 15px;
    min-height: 160px;
    border-radius: var(--tbo-radius);
    overflow: hidden;
}

.imagelayer img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imagelayer .scale-with-grid {
    filter: none;
    border-radius: var(--tbo-radius);
    min-height: 160px;
    transition: transform .25s ease-out;
}
.imagelayer:hover .scale-with-grid {
    transform: translateY(-4px);
}

.imagelayer h3 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 64px 20px 16px;
    background: color-mix(in srgb, var(--tbo-velvet-noir) 85%, transparent);
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-weight: 500;
    line-height: 1.15 !important;
    letter-spacing: .3px;
    color: var(--tbo-white);
        padding: 8px 12px;
    font-size: 15px;
    height: auto;
}



/* Subtitle inside the title reads as a small caps eyebrow */
.imagelayer h3 span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tbo-rose-powder);
}

/* Small meta labels: no band, just legible text */
.imagelayer h5 {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    margin: 0;
    padding: 10px 20px;
    background: none;
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--tbo-white);
    text-shadow: 0 1px 6px rgba(85, 14, 28, 0.6);
}
.categoryrow .imagelayer h5 { font-size: 14px; padding-bottom: 10px; }

@media (min-width: 250px) and (max-width: 1000px) {
    .imagelayer h3 { font-size: 20px !important; padding-left: 12px; padding-right: 12px; }
}

/* Sold / alert state: same gradient, deeper and unmissable */
.imagelayer h3.red,
.maingownimage h3.red,
.gownlist h3.red {
    background: color-mix(in srgb, var(--tbo-olive-dusk) 90%, transparent);
}

/* Gown page gallery */
.gown-thumbs-wrap {
    width: 100%;
    flex-shrink: 0;
    position: relative;
    padding: 0px 0;
}

.gown-thumbs-vertical {
    height: 500px;
}

.gown-thumbs-vertical .swiper-slide {
    opacity: 0.6;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: opacity 0.2s, border-color 0.2s;
}

.gown-thumbs-vertical .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--tbo-bridal-bloom);
}

.gown-thumb-prev,
.gown-thumb-next {
    color: var(--tbo-velvet-noir) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    padding: 4px;
}

.gown-thumb-prev { top: 0 !important; }
.gown-thumb-next { bottom: 0 !important; top: auto !important; }

.gown-thumb-prev::after,
.gown-thumb-next::after { font-size: 10px !important; }


@media (max-width: 991.98px) {
    .gown-thumbs-wrap {
        width: 100%;
        padding: 0;
    }

    .gown-thumbs-vertical {
        height: auto !important;
    }

    .gown-thumbs-vertical .swiper-wrapper {
        flex-direction: row !important;
    }

    .gown-thumbs-vertical .swiper-slide {
        width: 80px !important;
        height: 110px;
        flex-shrink: 0;
    }

    .gown-thumbs-vertical .swiper-slide img {
        height: 100%;
            width: 100%;
        object-fit: cover;
    }

    .gown-thumb-prev,
    .gown-thumb-next {
        display: none;
    }
}



.gown-slide-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.gown-slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: color-mix(in srgb, var(--tbo-velvet-noir) 85%, transparent);
    color: var(--tbo-white);
    padding: 40px 16px 16px;
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
}





.gown-slide-label span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 2px;
}


.gown-slide-label--sold {
    background: color-mix(in srgb, var(--tbo-olive-dusk) 90%, transparent);
}


.gown-slide-label--sold::before {
    content: "Sold — ";
}

.gown-thumbs-vertical .swiper-slide img {
    border-radius: 4px;
         height: 100%;
            width: 100%;
        object-fit: cover;
}

.gown-main .swiper-slide img {
    border-radius: 8px;
}

.gown-details {
    border-top: 1px solid var(--tbo-rose-powder);
}

.gown-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--tbo-rose-powder);
    font-size: 15px;
}

.gown-detail-label {
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    padding-top: 2px;
}

.gown-detail-value {
    color: var(--tbo-velvet-noir);
    font-weight: 600;
    text-align: right;
}

.gowninfo ul {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
}

.gowninfo ul li {
    margin-bottom: 4px;
}

.gown-fitting h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    font-weight: 600;
    margin-bottom: 6px;
}

.gown-fitting-note {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.gown-wishlist {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 1px solid var(--tbo-rose-powder);
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    color: #888;
}

.gown-wishlist .heart {
    color: var(--tbo-bridal-bloom);
    font-size: 16px;
        line-height: 1;
    position: relative;
    top: -1px;
}

.gown-wishlist a {
    color: var(--tbo-velvet-noir);
    font-weight: 600;
}

.gown-wishlist span a {
    color: var(--tbo-velvet-noir);
    font-weight: 700;
    text-decoration: underline;
}

.gown-wishlist span {
    text-decoration: none;
}

.gown-wishlist-login a {
    color: var(--tbo-velvet-noir);
    font-weight: 700;
}

.btn-cta--sm {
    padding: 8px 18px;
    font-size: 14px;
}

.gown-buy-box {
    border-top: 1px solid var(--tbo-rose-powder);
    border-bottom: 1px solid var(--tbo-rose-powder);
    padding: 16px 0;
    margin-bottom: 20px;
}

.gown-price-original {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.gown-price-ours {
    font-size: 32px;
    font-weight: 700;
    color: var(--tbo-velvet-noir);
    margin-bottom: 4px;
    line-height: 1;
}

.gown-price-save {
    font-size: 12px;
    color: var(--tbo-olive-dusk);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.gown-sold-label {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--tbo-white);
    background: var(--tbo-velvet-noir);
    padding: 8px 16px;
    border-radius: 4px;
}

.gown-buy-box input[type="submit"] {
    background: var(--tbo-velvet-noir);
    color: var(--tbo-white);
    border: none;
    border-radius: 5px;
    padding: 12px 32px;
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    width: auto;
}

.gown-buy-box input[type="submit"]:hover {
    background: var(--tbo-bridal-bloom);
}

.gown-buy-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.gown-buy-cta {
    flex-shrink: 0;
}

.gown-buy-cta input[type="submit"] {
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .gown-fitting {
        margin-top: 24px;
    }
}

@media (max-width: 767.98px) {
    .gowninfo h1 {
        margin-top: 20px;
    }
}
.gallery-item { margin-bottom: 30px; }

.gallery-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.4;
    color: var(--tbo-body-text);
}

.gallery-item-original {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.gallery-item-original del {
    color: #999;
}

.gallery-item-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--tbo-velvet-noir);
    line-height: 1.1;
    margin: 2px 0;
}

.gallery-item-save {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--tbo-olive-dusk);
    margin-bottom: 4px;
}

.gallery-item-size {
    color: #888;
    font-size: 12px;
}

.gallery-item-size-row {
    font-size: 12px;
    color: #888;
}

.gallery-item-link {
    font-size: 12px;
    color: var(--tbo-velvet-noir);
    font-weight: 600;
    text-decoration: underline;
    margin-left: auto;
}
/* ==========================================================================
   FIND YOUR STYLE
   ========================================================================== */

#mse2_filters select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--tbo-rose-powder);
    border-radius: 5px;
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-size: 14px;
    color: var(--tbo-body-text);
    background: #fff;
    margin-bottom: 12px;
    appearance: auto;
}

#mse2_filters label {
    font-size: 13px;
    text-transform: none;
    color: var(--tbo-body-text);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    cursor: pointer;
}

#mse2_filters input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: var(--tbo-bridal-bloom);
    margin: 0;
    border-radius: 3px;
}

#mse2_filters .filter-title,
#mse2_filters legend {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 6px;
    margin-top: 16px;
    font-size: 12px;
}


/* ==========================================================================
   BODY TEXT CONTENT BLOCKS
   ========================================================================== */

.text-content { padding-bottom: 80px; }
.text-content,
.text-content p,
.text-content * {
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--tbo-body-text);
}
.text-content p { margin-bottom: 12px; }
.text-content h2 { font-size: 24px; padding-bottom: 12px; padding-top: 8px; margin: 0; }
.text-content h3 { font-size: 22px; padding-bottom: 12px; padding-top: 8px; margin: 0; }
.text-content a { text-transform: none; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.button, .wishlistlink, .sizelinkbutton {
    border: 0;
    background: var(--tbo-bridal-bloom);
    border-radius: var(--tbo-radius-sm);
    margin: 5px 0;
    padding: 5px 10px;
    text-decoration: none;
    color: var(--tbo-white);
    font-size: 14px;
    width: auto;
    letter-spacing: 1px;
    display: inline-block;
    font-weight: 600;
}
.button:hover, .button:focus, .button:active,
.sizelinkbutton:hover,
.wishlistlink:hover, .wishlistlink:focus, .wishlistlink:active {
    color: var(--tbo-white);
    background: var(--tbo-velvet-noir);
}

a.sizelinkbutton {
    border-radius: var(--tbo-radius-sm);
    display: inline-block;
    margin: 20px 5px 0 0;
    padding: 6px 0;
    font-size: 16px;
    text-decoration: none;
}
a.sizelinkbutton span,
a.sizelinkbutton:hover span { display: block; line-height: 18px; padding: 6px; }

.btn-cta,
.button {
    margin: 0;
}

.gown-wishlist {
    padding: 14px 18px;
    border-radius: var(--tbo-radius-sm);
}

.gown-wishlist form {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}
/* ==========================================================================
   FORMS
   ========================================================================== */

input {
    border: 1px solid var(--tbo-olive-dusk);
    background: var(--tbo-white);
    padding: 8px;
    margin-bottom: 5px;
    width: 170px;
    border-radius: var(--tbo-radius-sm);
}
input:hover { border: 1px solid var(--tbo-black); background: #f7f4f4; }

select { padding: 8px; border-radius: var(--tbo-radius-sm); }

fieldset { border: 0; padding: 0; margin: 0; }

label {
    text-align: left;
    display: block;
    clear: both;
    text-transform: uppercase;
    margin-top: 7px;
}
legend {
    text-align: left;
    display: block;
    clear: both;
    text-transform: uppercase;
    font-size: 2em;
    padding-top: 20px;
    padding-bottom: 20px;
}
form { font-size: 14px; }

textarea {
    border: 1px solid var(--tbo-black);
    background: #f5f5f5;
    font-size: 1.1em;
    padding: 8px;
    border-radius: var(--tbo-radius-sm);
}
textarea:hover { border: 1px solid var(--tbo-black); background: #f7f4f4; }

.form input[type="text"],
.form input[type="password"],
.form select,
.form textarea {
    width: 100%;
    max-width: 500px;
    padding: 14px 16px;
    font-size: 16px;
    margin-bottom: 14px;
}

.form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-transform: none;
    font-size: 14px;
    margin: 16px 0;
    cursor: pointer;
}

.form .checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--tbo-bridal-bloom);
}

.form textarea {
    min-height: 120px;
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    text-align: left;
}

.profile-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--tbo-rose-powder);
    vertical-align: top;
}

.profile-table td:first-child {
    width: 45%;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--tbo-olive-dusk);
}

.profile-table td:last-child {
    color: var(--tbo-velvet-noir);
    font-weight: 600;
}

.profile-table .userName em {
    display: block;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    color: #888;
    text-transform: none;
    margin-top: 4px;
}

.profile-intro {
    font-size: 18px;
    margin-bottom: 20px;
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

/* ==========================================================================
   PRICING
   ========================================================================== */

.price { font-size: 16px; margin-top: 15px; }
.price span {
    color: var(--tbo-black);
    background-color: var(--tbo-rose-powder);
    padding: 0 5px;
    margin-left: -5px;
    text-transform: uppercase;
}

/* ==========================================================================
   GOWN / PRODUCT PAGES
   ========================================================================== */

.heart { color: var(--tbo-velvet-noir); font-size: 40px; position: relative; top: 8px; }
.gowninfo h1 { font-size: 30px; padding: 0; line-height: 1em; }
.gowninfo h3 { font-size: 20px; padding-bottom: 0; display: inline-block; }
.gowninfo p { font-size: 16px; opacity: .7; }
.gownimage { width: 100%; }

.maingownimage {
    position: relative;
    border-radius: var(--tbo-radius);
    overflow: hidden;
}
.maingownimage h3 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: unset;
    box-sizing: border-box;
    margin: 0;
    padding: 80px 24px 20px;
    background: linear-gradient(to top, rgba(85, 14, 28, 0.72), rgba(85, 14, 28, 0));
    font-family: "avenir-next-lt-pro-condensed", sans-serif;
    font-weight: 500;
    font-size: 2.2em;
    line-height: 1.1;
    letter-spacing: .5px;
    color: var(--tbo-white);
    text-transform: none;
}
.maingownimage h3 span {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tbo-rose-powder);
}

/* ==========================================================================
   CATEGORY / LISTING PAGES
   ========================================================================== */

.categoryrow { padding-bottom: 30px; }
.categoryrow h4 { font-size: 22px; padding-bottom: 15px; padding-top: 50px; margin-bottom: 20px; }
.categoryrow h5 { font-size: 20px; padding-bottom: 15px; }
.categoryrow a h5 { text-decoration: none; }

.gownlist h3 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: unset;
    box-sizing: border-box;
    margin: 0;
    padding: 48px 16px 14px;
    background: linear-gradient(to top, rgba(85, 14, 28, 0.72), rgba(85, 14, 28, 0));
    font-size: 1.3em;
    font-weight: 500;
    line-height: 1.2;
    color: var(--tbo-white);
    text-transform: none;
}
.gownlist h3 span { text-transform: none; }
.gownlist { padding-bottom: 30px; }

/* ==========================================================================
   PAGING
   Note: not found on pages audited but retained — may appear on paginated
   listings. Safe to remove if you confirm no pagination is used.
   ========================================================================== */

.paging { height: 40px; padding-bottom: 20px; }
.pageList, .pageList ul {
    padding: 0; margin: 0; list-style-type: none; line-height: 1;
    text-transform: uppercase; letter-spacing: 1.5px;
    font-family: georgia, serif;
}
.pageList li { float: left; width: auto; }
.pageList a {
    display: block; width: auto; text-decoration: none;
    color: #666; text-align: center; padding: 10px 12px; font-size: 1em;
}
.pageList a:hover,
.pageList a.active {
    background-color: var(--tbo-olive-dusk);
    color: var(--tbo-white);
}

/* ==========================================================================
   TICKER
   Note: conditional — only renders when banner-text TV is set on a resource.
   ========================================================================== */

@-webkit-keyframes ticker {
    0% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); visibility: visible; }
    100% { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); }
}
@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); visibility: visible; }
    100% { transform: translate3d(-100%, 0, 0); }
}
.ticker-wrap {
    position: fixed;
    bottom: 40px !important;
    width: 100%;
    overflow: hidden;
    z-index: 9999;
    height: 3.5rem;
    background-color: var(--tbo-rose-powder);
    padding-left: 100%;
}
.ticker {
    display: inline-block;
    height: 3.5rem;
    line-height: 3.5rem;
    white-space: nowrap;
    padding-right: 100%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: ticker;
    animation-duration: 30s;
}
.ticker-wrap .ticker__item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1.8rem;
    color: var(--tbo-velvet-noir);
}

/* ==========================================================================
   MOBILE OVERRIDES
   ========================================================================== */

@media only screen and (max-width: 959px) {
    .homepage h1 { line-height: 24px; }
}

@media only screen and (min-width: 1200px) {
    header h1 { font-size: 2.2em; }
}
@media only screen and (min-width: 1400px) {
    header h1 { font-size: 2.2em; }
}



.size-section {
    border-top: 1px solid var(--tbo-rose-powder);
    padding-top: 24px;
}

.size-section-title {
    font-size: 3.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--tbo-velvet-noir);
    font-family:shelby;
}

.size-section-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--tbo-olive-dusk);
    text-decoration: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.size-section-link:hover {
    color: var(--tbo-velvet-noir);
}

.staff-card {
    margin-bottom: 28px;
}

.staff-photo {
    border: 3px solid var(--tbo-rose-powder);
    padding: 4px;
    transition: transform .25s ease-out;
}

.staff-card:hover .staff-photo {
    transform: translateY(-4px);
}

.staff-name-link {
    text-decoration: none;
}

.staff-name {
    color: var(--tbo-velvet-noir);
    margin-top: 12px;
}

.staff-location {
    margin-top: 6px;
}

.staff-profile {
    border-bottom: 1px solid var(--tbo-rose-powder);
    padding-bottom: 32px;
}
.staff-profile:last-of-type {
    border-bottom: none;
}
.staff-photo {
    border: 3px solid var(--tbo-rose-powder);
    padding: 4px;
    max-width: 220px;
}
.staff-name {
    color: var(--tbo-velvet-noir);
    margin-bottom: 8px;
}
.staff-bio {
    font-size: 16px;
    line-height: 1.6;
    color: var(--tbo-body-text);
    text-align: left;
    max-width: 640px;
}

.stylists-section {
    border-top: 1px solid var(--tbo-rose-powder);
    padding-top: 48px;
    margin-top: 48px;
}

.navbar-light {
    background: var(--tbo-velvet-noir);
}

.navbar-line {
    background: var(--tbo-olive-dusk);
}

.btn-mint {
    background-color: var(--tbo-golden-moss) !important;
    border-color: var(--tbo-golden-moss) !important;
    color: var(--tbo-velvet-noir) !important;
}

.btn-mint:hover {
    background-color: #7a760d !important;
    border-color: #7a760d !important;
    color: var(--tbo-velvet-noir) !important;
}