/* Pacific Sands - High Fashion Editorial */

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --paper: #f5f3ef;
    --cream: #ebe7e0;
    --ocean: #1a3a4a;
    --sand: #b8a88a;
    --grey: #6b6b6b;
    --light-grey: #d4d4d4;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: var(--black);
    color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Typography - Bold & Minimal */
.t-display {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.04em;
}

.t-display-huge {
    font-size: clamp(4rem, 15vw, 14rem);
}

.t-display-xl {
    font-size: clamp(3rem, 10vw, 8rem);
}

.t-display-lg {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.t-display-md {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

.t-display-sm {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.t-body-lg {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.t-body {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.t-caption {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
}

.t-italic {
    font-style: italic;
}

.t-light {
    font-weight: 300;
}

.t-grey {
    color: var(--grey);
}

/* Navigation - Always Visible */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.4s var(--ease);
}

.nav.scrolled {
    background: rgba(245, 243, 239, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 50px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    height: 50px;
}

.nav-logo-img {
    display: block;
    height: 100%;
    width: auto;
}

/* show white logo on hero (default), swap to color when scrolled */
.nav-logo-img--color { display: none; }
.nav.scrolled .nav-logo-img--white { display: none; }
.nav.scrolled .nav-logo-img--color { display: block; }

.nav-links {
    display: flex;
    gap: 45px;
}

.nav-links a {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    transition: color 0.3s var(--ease);
    font-weight: 400;
}

.nav.scrolled .nav-links a {
    color: var(--black);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.4s var(--ease);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    padding: 16px 32px;
    border: 1px solid var(--white);
    transition: all 0.3s var(--ease);
    font-weight: 400;
}

.nav.scrolled .nav-cta {
    color: var(--black);
    border-color: var(--black);
}

.nav-cta:hover {
    background: var(--white);
    color: var(--black);
}

.nav.scrolled .nav-cta:hover {
    background: var(--black);
    color: var(--white);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 1px;
    background: var(--white);
    margin: 8px 0;
    transition: all 0.3s var(--ease);
}

.nav.scrolled .nav-toggle span {
    background: var(--black);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 4rem);
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s var(--ease);
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.35s; }

/* Hero - Dramatic Full Screen */
.hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background: var(--black);
    overflow: hidden;
}

/* Top gradient overlay to ensure nav/logo contrast on bright media */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 18%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0) 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 50px 80px;
    width: 100%;
    color: var(--white);
}

.hero-title {
    margin-bottom: 0;
}

.hero-subtitle {
    position: absolute;
    bottom: 80px;
    right: 50px;
    max-width: 350px;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.8;
}

.hero-scroll {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--white);
    opacity: 0.5;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: scrollPulse 2s var(--ease) infinite;
}

@keyframes scrollPulse {
    0% { top: -100%; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Page Hero - Shorter */
.page-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background: var(--black);
    overflow: hidden;
}

/* Gradient overlay for page heroes too */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 18%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0) 60%);
    z-index: 1;
    pointer-events: none;
}

.page-hero-media {
    position: absolute;
    inset: 0;
}

.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 50px 80px;
    color: var(--white);
}

.page-hero-eyebrow {
    margin-bottom: 20px;
    opacity: 0.6;
}

/* Sections */
.section {
    padding: 180px 50px;
}

.section-lg {
    padding: 220px 50px;
}

.section-sm {
    padding: 120px 50px;
}

.section-black {
    background: var(--black);
    color: var(--white);
}

.section-cream {
    background: var(--cream);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1800px;
    margin: 0 auto;
}

/* Split Layout - Dramatic Asymmetry */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.split-wide {
    grid-template-columns: 1.3fr 1fr;
}

.split-reverse {
    direction: rtl;
}

.split-reverse > * {
    direction: ltr;
}

.split-content {
    max-width: 500px;
}

.split-reverse .split-content {
    margin-left: auto;
}

/* Image Treatment */
.img-frame {
    position: relative;
    overflow: hidden;
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.img-frame:hover img {
    transform: scale(1.05);
}

.img-portrait {
    aspect-ratio: 3/4;
}

.img-landscape {
    aspect-ratio: 4/3;
}

.img-wide {
    aspect-ratio: 16/9;
}

.img-square {
    aspect-ratio: 1/1;
}

/* Full Bleed */
.full-bleed {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.full-bleed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-bleed-caption {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: var(--white);
}

/* Accommodation Grid - Editorial Cards */
.acc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.acc-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
}

.acc-card-img {
    position: absolute;
    inset: 0;
}

.acc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.acc-card:hover .acc-card-img img {
    transform: scale(1.1);
}

.acc-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}

.acc-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: var(--white);
}

.acc-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.acc-card-meta {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

/* Feature Row - Dramatic */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.feature-row-img {
    position: relative;
    overflow: hidden;
}

.feature-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-row-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 100px;
    background: var(--paper);
}

.feature-row-content.bg-black {
    background: var(--black);
    color: var(--white);
}

.feature-row-content.bg-cream {
    background: var(--cream);
}

.feature-row:nth-child(even) .feature-row-img {
    order: 2;
}

/* Stats - Minimal */
.stats {
    display: flex;
    gap: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 60px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
}

/* Quote */
.quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-author {
    margin-top: 40px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-style: normal;
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 18px 35px;
    border: 1px solid var(--black);
    background: transparent;
    color: var(--black);
    cursor: pointer;
    transition: all 0.4s var(--ease);
}

.btn:hover {
    background: var(--black);
    color: var(--white);
}

.btn-white {
    border-color: var(--white);
    color: var(--white);
}

.btn-white:hover {
    background: var(--white);
    color: var(--black);
}

.btn-solid {
    background: var(--black);
    color: var(--white);
}

.btn-solid:hover {
    background: var(--ocean);
}

.btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

/* Link */
.link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.link-line {
    width: 30px;
    height: 1px;
    background: currentColor;
    transition: width 0.4s var(--ease);
}

.link:hover .link-line {
    width: 50px;
}

/* Spacers */
.spacer-xl { height: 200px; }
.spacer-lg { height: 150px; }
.spacer-md { height: 100px; }
.spacer-sm { height: 60px; }

/* Footer - Minimal */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 150px 50px 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.5;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0.4;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    font-size: 0.9rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.75rem;
    opacity: 0.4;
}

.footer-social {
    display: flex;
    gap: 30px;
}

.footer-social a {
    letter-spacing: 0.1em;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Responsive */
@media (max-width: 1200px) {
    .acc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .split {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .split-reverse {
        direction: ltr;
    }
    
    .split-content {
        max-width: 100%;
    }
    
    .split-reverse .split-content {
        margin-left: 0;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .feature-row-img {
        aspect-ratio: 16/10;
    }
    
    .feature-row:nth-child(even) .feature-row-img {
        order: 0;
    }
    
    .feature-row-content {
        padding: 60px 40px;
    }
    
    .section {
        padding: 120px 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 25px 25px;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero {
        min-height: 100svh;
    }
    
    .hero-content {
        padding: 0 25px 60px;
    }
    
    .hero-subtitle {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        max-width: 100%;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .page-hero {
        min-height: 60vh;
    }
    
    .page-hero-content {
        padding: 0 25px 50px;
    }
    
    .section {
        padding: 80px 25px;
    }
    
    .acc-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .acc-card {
        aspect-ratio: 4/3;
    }
    
    .stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .full-bleed {
        height: 60vh;
        min-height: 400px;
    }
    
    .full-bleed-caption {
        bottom: 30px;
        left: 25px;
    }
    
    .footer {
        padding: 80px 25px 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .feature-row-content {
        padding: 50px 25px;
    }
}

@media (max-width: 480px) {
    .t-display-huge {
        font-size: clamp(2.5rem, 15vw, 4rem);
    }
    
    .t-display-xl {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .quote {
        font-size: 1.25rem;
    }
}

/* Touch devices */
@media (hover: none) {
    .img-frame:hover img {
        transform: none;
    }
    
    .acc-card:hover .acc-card-img img {
        transform: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Hero Video */
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overline {
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.7;
}

/* Sandy Chatbot - Pacific Sands Branded */
.sandy-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: var(--font-body);
}

.sandy-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean) 0%, #0d2a36 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(26, 58, 74, 0.35);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.sandy-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 40px rgba(26, 58, 74, 0.45);
}

.sandy-toggle svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.sandy-icon-close {
    display: none;
}

.sandy-chat.open .sandy-icon-chat {
    display: none;
}

.sandy-chat.open .sandy-icon-close {
    display: block;
}

.sandy-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 400px;
    max-height: 520px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.sandy-chat.open .sandy-window {
    display: flex;
    animation: sandySlideUp 0.35s var(--ease);
}

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

.sandy-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    background: linear-gradient(135deg, var(--ocean) 0%, #0d2a36 100%);
    color: var(--white);
}

.sandy-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
}

.sandy-info {
    flex: 1;
}

.sandy-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.1rem;
    display: block;
    letter-spacing: 0.02em;
}

.sandy-status {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.sandy-brand {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.5;
}

.sandy-messages {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    max-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--paper);
}

.sandy-message p {
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 88%;
}

.sandy-message-bot p {
    background: var(--white);
    color: var(--black);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sandy-message-user {
    align-self: flex-end;
}

.sandy-message-user p {
    background: var(--ocean);
    color: var(--white);
    border-bottom-right-radius: 4px;
    margin-left: auto;
}

.sandy-typing p {
    color: var(--grey);
    font-style: italic;
}

.sandy-input {
    display: flex;
    gap: 12px;
    padding: 18px 20px;
    border-top: 1px solid var(--cream);
    background: var(--white);
}

.sandy-input input {
    flex: 1;
    border: 1px solid var(--cream);
    border-radius: 24px;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    background: var(--paper);
    transition: border-color 0.2s, background 0.2s;
}

.sandy-input input:focus {
    border-color: var(--ocean);
    background: var(--white);
}

.sandy-input input::placeholder {
    color: var(--grey);
}

.sandy-input button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ocean);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.sandy-input button:hover {
    background: #0d2a36;
    transform: scale(1.05);
}

.sandy-input button svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

/* Sandy mobile */
@media (max-width: 480px) {
    .sandy-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .sandy-window {
        width: calc(100vw - 40px);
        right: 0;
        bottom: 70px;
        max-height: 60vh;
    }
    
    .sandy-toggle {
        width: 54px;
        height: 54px;
    }
}
