/* =========================================================
   Sky Boutique Florida — Design System
   Warm neutral / gold accent premium jewelry theme
   ========================================================= */

:root {
    --color-bg: #FFFFFF;
    --color-cream: #FAF6F0;
    --color-beige: #F2EAE0;
    --color-gold: #E49F8B;
    --color-gold-dark: #C9846F;
    --color-charcoal: #2B2724;
    --color-muted: #7A7268;
    --color-border: #E7DDD0;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--color-charcoal);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.font-serif {
    font-family: var(--font-serif);
}

h1, h2, h3, h4, h5, h6,
.font-serif {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-charcoal);
}

a {
    text-decoration: none;
    color: var(--color-gold-dark);
    transition: var(--transition);
}

a:hover {
    color: var(--color-charcoal);
}

img {
    max-width: 100%;
}

/* ---------------------------------------------------------
   Utility colors / sections
   --------------------------------------------------------- */

.text-gold { color: var(--color-gold-dark) !important; }
.bg-cream { background-color: var(--color-cream) !important; }
.bg-beige { background-color: var(--color-beige) !important; }
.text-muted-warm { color: var(--color-muted) !important; }
.border-warm { border-color: var(--color-border) !important; }

.section { padding: 5rem 0; }
@media (max-width: 767px) {
    .section { padding: 3.25rem 0; }
}

.eyebrow {
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 600;
    color: var(--color-gold-dark);
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gold);
    border: 1px solid var(--color-gold);
    color: #fff;
    padding: .75rem 2rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: .85rem;
    border-radius: 2px;
    transition: var(--transition);
    line-height: 1;
}

.btn-gold:hover {
    background-color: var(--color-charcoal);
    border-color: var(--color-charcoal);
    color: #fff;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background-color: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-charcoal);
    padding: .75rem 2rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: .85rem;
    border-radius: 2px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.btn-outline-light-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,.7);
    color: #fff;
    padding: .75rem 2rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: .85rem;
    border-radius: 2px;
    transition: var(--transition);
}

.btn-outline-light-gold:hover {
    background-color: #fff;
    color: var(--color-charcoal);
    border-color: #fff;
}

/* ---------------------------------------------------------
   Navbar
   --------------------------------------------------------- */

.navbar-sky {
    background-color: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.navbar-sky .navbar-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
}

.navbar-logo-img {
    height: 42px;
    width: auto;
}

.navbar-logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: .04em;
    color: var(--color-charcoal);
    line-height: 1.2;
    display: flex;
    flex-direction: column;
}

.navbar-logo-florida {
    font-size: .7em;
    font-weight: 400;
    letter-spacing: .15em;
    color: var(--color-gold-dark);
    text-transform: uppercase;
}

.navbar-sky .nav-link {
    font-weight: 500;
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--color-charcoal);
    padding: .5rem 1rem !important;
}

.navbar-sky .nav-link.active,
.navbar-sky .nav-link:hover {
    color: var(--color-gold-dark);
}

.navbar-sky .nav-icon-link {
    color: var(--color-charcoal);
    font-size: 1.05rem;
    padding: .5rem .6rem;
}

.navbar-sky .nav-icon-link:hover {
    color: var(--color-gold-dark);
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(43,39,36,.45) 0%, rgba(43,39,36,.55) 100%);
}

/* YouTube video hero */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background: #1a1614;
}
/* hero-yt-iframe sizing handled by inline JS for precise vh/vw control */

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(43,39,36,.45) 0%, rgba(43,39,36,.58) 100%);
}
/* hide the old parallax bg when video is present */
.hero .hero-bg-parallax { display: none; }

.hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
}

.hero p.lead {
    color: rgba(255,255,255,.9);
    font-size: 1.15rem;
}

.hero-bg-parallax {
    position: absolute;
    inset: -10% 0 -10% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* ---------------------------------------------------------
   Page header (sub pages)
   --------------------------------------------------------- */

.page-header {
    background-color: var(--color-cream);
    padding: 7rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
    margin-bottom: .5rem;
}

.breadcrumb-custom {
    font-size: .85rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.breadcrumb-custom a { color: var(--color-muted); }
.breadcrumb-custom a:hover { color: var(--color-gold-dark); }

/* ---------------------------------------------------------
   Product cards
   --------------------------------------------------------- */

.product-card {
    background: #fff;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 18px 40px rgba(43,39,36,.08);
    transform: translateY(-4px);
}

.product-card .product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: var(--color-cream);
}

.product-card .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-card .badge-stock {
    position: absolute;
    top: .75rem;
    left: .75rem;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .35rem .6rem;
}

.product-card .product-body {
    padding: 1.1rem 1.25rem 1.4rem;
}

.product-card .product-category {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.product-card .product-name {
    font-size: 1.05rem;
    margin: .25rem 0 .4rem;
}

.product-card .product-price {
    color: var(--color-gold-dark);
    font-weight: 700;
}

.product-card .wishlist-btn {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-charcoal);
    border: none;
    transition: var(--transition);
}

.product-card .wishlist-btn:hover {
    background: var(--color-gold);
    color: #fff;
}

/* Shop product cards (Shopify grid) */
.product-card-img-wrap { display: block; overflow: hidden; aspect-ratio: 1/1; background: var(--color-cream); }
.product-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-card-body { padding: 1rem 1rem .75rem; }
.product-card-title { font-family: var(--font-sans); font-size: .95rem; font-weight: 600; color: var(--color-charcoal); margin-bottom: .35rem; line-height: 1.3; }
.product-card-title a { color: inherit; text-decoration: none; }
.product-card-title a:hover { color: var(--color-gold-dark); }
.product-card-price { font-size: .9rem; font-weight: 600; color: var(--color-gold-dark); margin-bottom: .5rem; }

/* ---------------------------------------------------------
   Why choose us / counters
   --------------------------------------------------------- */

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--color-cream);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
}

.counter-number {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-gold-dark);
}

/* ---------------------------------------------------------
   Testimonials
   --------------------------------------------------------- */

.testimonial-card {
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 2.25rem;
    text-align: center;
    border-radius: 4px;
    height: 100%;
}

.testimonial-card .stars {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: 1.25rem;
}

.testimonial-card .customer-name {
    font-weight: 600;
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: .1em;
    color: var(--color-muted);
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */

.footer-sky {
    background-color: var(--color-charcoal);
    color: rgba(255,255,255,.75);
    padding-top: 4rem;
}

.footer-sky h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-sky a {
    color: rgba(255,255,255,.65);
}

.footer-sky a:hover {
    color: var(--color-gold);
}

.footer-sky .footer-logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.footer-sky .footer-logo span {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 3rem;
    padding: 1.5rem 0;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

/* ---------------------------------------------------------
   Newsletter
   --------------------------------------------------------- */

.newsletter-section {
    background-color: var(--color-charcoal);
    color: #fff;
}

.newsletter-section .form-control {
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,.2);
    background-color: rgba(255,255,255,.05);
    color: #fff;
    padding: .85rem 1.1rem;
}

.newsletter-section .form-control::placeholder {
    color: rgba(255,255,255,.5);
}

.newsletter-section .form-control:focus {
    border-color: var(--color-gold);
    box-shadow: none;
    background-color: rgba(255,255,255,.08);
}

/* ---------------------------------------------------------
   About preview collage
   --------------------------------------------------------- */

.about-collage {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 480px;
    overflow: hidden;
    border-radius: 4px;
}

.about-collage .collage-main {
    grid-row: 1 / 3;
}

.about-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 0;
    min-width: 0;
}

@media (max-width: 991px) {
    .about-collage {
        height: 420px;
    }
}

@media (max-width: 575px) {
    .about-collage {
        height: 320px;
        grid-template-columns: 1fr 1fr;
    }
}

/* ---------------------------------------------------------
   Gallery
   --------------------------------------------------------- */

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43,39,36,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(43,39,36,.35);
    opacity: 1;
}

/* ---------------------------------------------------------
   Blog
   --------------------------------------------------------- */

.blog-card {
    border: 1px solid var(--color-border);
    height: 100%;
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: 0 18px 40px rgba(43,39,36,.08);
    transform: translateY(-4px);
}

.blog-card .blog-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card .blog-body {
    padding: 1.5rem;
}

.blog-card .blog-date {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-gold-dark);
}

/* ---------------------------------------------------------
   Forms
   --------------------------------------------------------- */

.form-control,
.form-select {
    border-radius: 2px;
    border: 1px solid var(--color-border);
    padding: .75rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 .2rem rgba(201,163,92,.15);
}

label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: .35rem;
}

/* ---------------------------------------------------------
   Product detail page
   --------------------------------------------------------- */

.product-gallery-main {
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background-color: var(--color-cream);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.product-gallery-main:hover img {
    transform: scale(1.15);
}

.product-thumb {
    border: 1px solid var(--color-border);
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumb.active {
    border-color: var(--color-gold);
}

.spec-table th {
    width: 35%;
    color: var(--color-muted);
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.spec-table td, .spec-table th {
    padding: .6rem 0;
    border-bottom: 1px solid var(--color-border);
}

/* ---------------------------------------------------------
   Misc
   --------------------------------------------------------- */

.divider-gold {
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 1rem auto;
}

.text-align-center .divider-gold {
    margin: 1rem auto;
}

.process-step .step-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-gold);
    font-weight: 700;
}

.team-card img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
}

.shop-sidebar .filter-group {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.shop-sidebar .filter-group:last-child {
    border-bottom: none;
}

.shop-sidebar .filter-title {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    margin-bottom: .9rem;
}

.pagination .page-link {
    color: var(--color-charcoal);
    border-color: var(--color-border);
}

.pagination .page-item.active .page-link {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.map-wrap iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
}

/* ---------------------------------------------------------
   Lightbox
   --------------------------------------------------------- */

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20,18,16,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
    padding: 2rem;
}

#lightbox.show {
    opacity: 1;
    visibility: visible;
}

#lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border: 4px solid #fff;
}

/* =========================================================
   Shopify Cart Drawer
   ========================================================= */
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1050;
}
.cart-overlay.open { display: block; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    z-index: 1060;
    display: flex;
    flex-direction: column;
    transition: right .3s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 24px rgba(0,0,0,.12);
}
.cart-drawer.open { right: 0; }

.cart-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--color-charcoal);
    color: #fff;
    padding: .6rem 1.4rem;
    border-radius: 50px;
    font-size: .88rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
    z-index: 1100;
    white-space: nowrap;
}
.cart-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* duplicate .btn-gold removed — see primary definition above */

/* ---------------------------------------------------------
   Legal content (Privacy Policy / Terms of Use)
   --------------------------------------------------------- */

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 1.05rem;
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-top: 1.75rem;
    margin-bottom: .75rem;
}

.legal-content p {
    color: var(--color-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--color-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
}

.legal-content ul li {
    margin-bottom: .4rem;
}

.legal-content a {
    color: var(--color-gold-dark);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--color-charcoal);
}

.legal-content strong {
    color: var(--color-charcoal);
}

/* ---------------------------------------------------------
   Policy consent banner
   --------------------------------------------------------- */

.consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    background-color: var(--color-charcoal);
    color: rgba(255, 255, 255, .85);
    padding: 1.1rem 1.5rem;
    transform: translateY(120%);
    transition: transform .5s ease;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .15);
}

.consent-banner.show {
    transform: translateY(0);
}

.consent-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.consent-banner-inner p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.6;
    flex: 1 1 420px;
}

.consent-banner-inner a {
    color: var(--color-gold);
    text-decoration: underline;
}

.consent-banner-inner a:hover {
    color: #fff;
}

.consent-accept-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .consent-banner-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .consent-accept-btn {
        width: 100%;
    }
}
