/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

:root {
    --navy: #1a2332;
    --gold: #d4af37;
    --light-gold: #e8c968;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #495057;
    --success: #28a745;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', 'Leelawadee UI', 'Thonburi', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Leelawadee UI', serif;
    color: var(--navy);
    font-weight: 600;
}

/* ===== HEADER ===== */
.header {
    background: var(--navy);
    color: var(--white);
    padding: 0.4rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.header.scrolled {
    padding: 0.5rem 0;
    background: rgba(26, 35, 50, 0.98);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 1.5rem;
}

.logo img {
    height: 55px;
    width: auto;
    transition: all 0.3s;
}

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

.header.scrolled .logo img {
    height: 50px;
}


.nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0.25rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--gold); }

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem !important;
    white-space: nowrap;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: #a8882a !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.lang-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.lang-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn {
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ===== HERO WITH BANNER ===== */
.hero {
    background-image:
        linear-gradient(135deg, rgba(26, 35, 50, 0.7) 0%, rgba(26, 35, 50, 0.6) 100%),
        url('header-yupabg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 6rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1, .hero h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(212,175,55,0.3);
    transition: all 0.3s;
}

.hero-feature:hover {
    background: rgba(212,175,55,0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

/* ===== CUP SHOWCASE ===== */
.cup-showcase {
    background: var(--white);
    padding: 2rem 2rem;
}

.cup-display {
    max-width: 1200px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.cup-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.cup-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
    transition: left 0.6s;
}

.cup-item:hover::before { left: 100%; }

.cup-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212,175,55,0.3);
    background: linear-gradient(145deg, #fffbf0 0%, #fff8e1 100%);
    border-color: var(--gold);
}

.cup-visual {
    display: block;
    margin: 0 auto 1.5rem;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.10)) drop-shadow(0 12px 28px rgba(0,0,0,0.08));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cup-visual.small  { height: 120px; width: auto; }
.cup-visual.regular { height: 145px; width: auto; }
.cup-visual.large  { height: 170px; width: auto; }
.cup-visual.xlarge { height: 195px; width: auto; }

.cup-item:hover .cup-visual {
    transform: translateY(-8px) scale(1.03);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12)) drop-shadow(0 24px 48px rgba(0,0,0,0.10));
}

.cup-size-label {
    font-weight: bold;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cup-ml {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cup-desc {
    color: var(--gray);
    font-size: 0.9rem;
}

.cup-label-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 1rem;
    background: #e9ecef;
    border-radius: 20px;
    padding: 3px;
}

.cup-label-toggle label {
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    border-radius: 17px;
    transition: all 0.3s;
    white-space: nowrap;
}

.cup-label-toggle input { display: none; }

.cup-label-toggle input:checked + label {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(212,175,55,0.4);
}


/* ===== ADDITIONAL SERVICES ===== */
/* ===== CUP MODELS GALLERY ===== */
.cup-gallery {
    background: var(--light-gray);
    padding: 2.5rem 2rem;
}

.gallery-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s;
    box-shadow: var(--shadow);
}

.gallery-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212,175,55,0.25);
}

.gallery-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    transition: transform 0.4s;
}

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

.gallery-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.gallery-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-card-badge.paper { background: var(--gold); color: var(--navy); }
.gallery-card-badge.plastic { background: var(--navy); color: var(--white); }

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

.gallery-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.gallery-card-body > p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.gallery-features {
    list-style: none;
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
    color: var(--dark-gray);
    line-height: 1.9;
}

.gallery-features li::before {
    content: '✓ ';
    color: var(--gold);
    font-weight: bold;
}

.gallery-card .btn {
    width: 100%;
    font-size: 0.9rem;
    min-height: 44px;
}

/* ===== AI DESIGNER ===== */
.ai-designer {
    background: var(--light-gray);
    color: var(--navy);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.ai-designer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.ai-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.ai-chat-box {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.ai-chat-box:hover { transform: translateY(-5px); }

.ai-chat-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--navy);
    padding: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.ai-chat-messages {
    height: 450px;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f8f9fa;
}

.ai-message {
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 15px;
    animation: slideIn 0.3s ease-out;
    max-width: 80%;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.ai-message.bot {
    background: var(--navy);
    color: var(--white);
    margin-right: 20%;
    border-bottom-left-radius: 5px;
}

.ai-message.user {
    background: var(--gold);
    color: var(--navy);
    margin-left: 20%;
    margin-right: 0;
    border-bottom-right-radius: 5px;
}

.ai-input-area {
    padding: 1rem;
    background: var(--white);
    border-top: 2px solid var(--light-gray);
    display: flex;
    gap: 1rem;
}

.ai-input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.ai-input:focus {
    outline: none;
    border-color: var(--gold);
}

.ai-send-btn {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.ai-send-btn:hover {
    background: var(--light-gold);
    transform: scale(1.05);
}

.ai-sample-gallery {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: var(--navy);
}

.ai-sample-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.ai-sample-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--light-gray);
}

.ai-sample-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ai-sample-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.ai-sample-caption {
    display: block;
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    color: var(--navy);
    background: var(--white);
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    max-width: 80vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: var(--white);
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem; right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    transition: transform 0.2s;
}

.lightbox-close:hover { transform: scale(1.2); }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
    z-index: 10001;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ===== CONFIGURATOR ===== */
.configurator {
    background: var(--white);
    padding: 2rem 2rem;
}

.configurator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.config-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.config-section:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.config-section h3 {
    margin-bottom: 1.5rem;
    color: var(--navy);
    border-bottom: 3px solid var(--gold);
    padding-bottom: 0.75rem;
    font-size: 1.3rem;
}

.product-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212,175,55,0.2);
}

.product-card.selected {
    border-color: var(--gold);
    background: linear-gradient(145deg, #fffbf0 0%, #fff8e1 100%);
    box-shadow: 0 0 30px rgba(212,175,55,0.4);
}

.product-icon { font-size: 3rem; margin-bottom: 0.75rem; }

.product-name {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-size: 1.05rem;
}

.product-desc { font-size: 0.9rem; color: var(--gray); }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.85rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212,175,55,0.2);
}

.form-group select:disabled {
    background: var(--light-gray);
    color: var(--gray);
    cursor: not-allowed;
    opacity: 0.8;
}

.quantity-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.qty-btn {
    padding: 0.85rem;
    border: 2px solid #e0e0e0;
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.95rem;
}

.qty-btn:hover {
    border-color: var(--gold);
    background: #fffbf0;
    transform: scale(1.05);
}

.qty-btn.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 0 20px rgba(212,175,55,0.5);
    transform: scale(1.08);
}

.price-display {
    background: linear-gradient(135deg, var(--navy) 0%, #2a3f5f 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.price-display h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--gold);
    margin: 1.5rem 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { text-shadow: 3px 3px 6px rgba(0,0,0,0.3); }
    50% { text-shadow: 0 0 20px rgba(212,175,55,0.8), 3px 3px 6px rgba(0,0,0,0.3); }
}

.price-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.price-detail { text-align: left; }

.price-detail-label {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.price-detail-value {
    font-size: 1.3rem;
    font-weight: bold;
}

/* ===== SUB-TYPE RADIOS ===== */
.subtype-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.subtype-option {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
}

.subtype-option:hover {
    border-color: var(--gold);
    background: #fffbf0;
}

.subtype-option.active {
    border-color: var(--gold);
    background: linear-gradient(145deg, #fffbf0, #fff8e1);
    box-shadow: 0 0 15px rgba(212,175,55,0.2);
}

.subtype-option input[type="radio"] { display: none; }

.subtype-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.subtype-desc {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

/* ===== PRINT TOGGLE ===== */
.print-toggle {
    display: flex;
    gap: 0;
    background: #e9ecef;
    border-radius: 25px;
    padding: 4px;
    margin-bottom: 1rem;
}

.print-toggle input[type="radio"] { display: none; }

.print-toggle label {
    flex: 1;
    text-align: center;
    padding: 0.6rem 1rem;
    border-radius: 22px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.print-toggle input:checked + label {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(212,175,55,0.4);
}

/* Print options panel */
.print-options-panel {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    margin-top: 0.75rem;
    display: none;
}

.print-options-panel.visible { display: block; }

.print-option-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.print-option-row input[type="radio"] {
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.print-option-row label {
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.laser-note {
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
    margin-left: 2rem;
    margin-top: 0.25rem;
}

/* ===== SLEEVE TOGGLE ===== */
.sleeve-section {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.sleeve-section:hover {
    border-color: var(--gold);
    box-shadow: 0 2px 12px rgba(191,155,48,0.12);
}

.sleeve-section.active {
    border-color: var(--gold);
    background: #fffbf0;
    box-shadow: 0 4px 16px rgba(191,155,48,0.18);
}

.sleeve-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.sleeve-info { flex: 1; }

.sleeve-title {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.sleeve-section.active .sleeve-title {
    color: var(--gold);
}

.sleeve-desc {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.15rem;
}

.sleeve-check {
    width: 24px;
    height: 24px;
    accent-color: var(--gold);
    cursor: pointer;
    pointer-events: none;
    flex-shrink: 0;
}

.sleeve-sub-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease, padding-top 0.3s ease;
    opacity: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid transparent;
}

.sleeve-section.active .sleeve-sub-options {
    max-height: 120px;
    opacity: 1;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top-color: #e0e0e0;
}

.sleeve-sub-toggle {
    display: flex;
    gap: 0;
    background: #e9ecef;
    border-radius: 20px;
    padding: 3px;
}

.sleeve-sub-toggle input[type="radio"] { display: none; }

.sleeve-sub-toggle label {
    flex: 1;
    text-align: center;
    padding: 0.4rem 0.8rem;
    border-radius: 17px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
}

.sleeve-sub-toggle input:checked + label {
    background: var(--gold);
    color: var(--navy);
}

.sleeve-price {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    opacity: 0.7;
    margin-top: 1px;
}

.sleeve-sub-toggle input:checked + label .sleeve-price {
    opacity: 1;
}

/* ===== SUPPLIER SELECTOR ===== */
.supplier-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.supplier-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
    position: relative;
}

.supplier-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212,175,55,0.2);
}

.supplier-card.selected {
    border-color: var(--gold);
    background: linear-gradient(145deg, #fffbf0 0%, #fff8e1 100%);
    box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.supplier-card input[type="radio"] { display: none; }

.supplier-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.supplier-card.premium .supplier-badge { background: var(--gold); color: var(--navy); }
.supplier-card.standard .supplier-badge { background: var(--navy); color: var(--white); }
.supplier-card.economy .supplier-badge { background: var(--gray); color: var(--white); }

.supplier-name {
    font-weight: bold;
    color: var(--navy);
    font-size: 1.05rem;
    margin: 0.5rem 0 0.25rem;
}

.supplier-desc {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.supplier-factor {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
}

.supplier-delivery {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

/* Express Toggle */
.express-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #fff3e0, #fffbf0);
    border: 2px solid #ffb74d;
    border-radius: 10px;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.express-toggle:hover { box-shadow: 0 3px 12px rgba(255,183,77,0.3); }

.express-toggle.active {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212,175,55,0.3);
}

.express-info { flex: 1; }

.express-title {
    font-weight: bold;
    color: var(--navy);
    font-size: 0.95rem;
}

.express-desc {
    font-size: 0.8rem;
    color: var(--gray);
}

.express-switch {
    width: 48px;
    height: 26px;
    background: #ccc;
    border-radius: 13px;
    position: relative;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.express-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.express-toggle.active .express-switch {
    background: var(--gold);
}

.express-toggle.active .express-switch::after {
    left: 24px;
}

/* Pricing table flash animation */
@keyframes priceFlash {
    0% { background-color: rgba(212,175,55,0.3); }
    100% { background-color: transparent; }
}

.price-flash {
    animation: priceFlash 0.6s ease-out;
}

@media (max-width: 768px) {
    .supplier-selector {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* ===== ORDER MODAL ===== */
.order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.order-modal.active { display: flex; }

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

.order-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 850px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-100px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.order-modal-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--navy);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-modal-close {
    background: var(--navy);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.order-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--dark-gray);
}

.order-modal-body { padding: 2.5rem; }

.order-summary-section {
    margin-bottom: 2rem;
    padding: 1.75rem;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 5px solid var(--gold);
    transition: all 0.3s;
}

.order-summary-section:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.order-summary-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--navy);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.order-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid #e0e0e0;
    gap: 1rem;
}

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

.order-detail-label { color: var(--gray); font-weight: 500; flex-shrink: 0; }
.order-detail-value { color: var(--navy); font-weight: bold; text-align: right; word-break: break-word; overflow-wrap: break-word; min-width: 0; }

.order-total {
    background: linear-gradient(135deg, #f8f4e8 0%, #fff8e1 100%);
    color: var(--navy);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(212,175,55,0.15);
}

.order-total-amount {
    font-size: 3rem;
    color: var(--navy);
    font-weight: bold;
}

.order-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.order-actions button {
    flex: 1;
    padding: 1.1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Inquiry action buttons (3 options) */
.inquiry-actions {
    margin-top: 2rem;
}

.inquiry-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
}

.inquiry-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 0.5rem !important;
    font-size: 0.9rem !important;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    min-height: 70px;
}

.inquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.inquiry-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.inquiry-btn-icon {
    font-size: 1.4rem;
}

.btn-line {
    background: #06c755;
    color: white;
}

.btn-line:hover {
    background: #05b34c;
}

.inquiry-line-hint {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #e8f5e9;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #2e7d32;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 600px) {
    .inquiry-actions-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== COMMON ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* ===== ABOUT HERITAGE PARALLAX ===== */
.about-heritage {
    background-image:
        linear-gradient(135deg, rgba(26, 35, 50, 0.75) 0%, rgba(26, 35, 50, 0.65) 100%),
        url('extended-bg-yupa.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 5rem 2rem;
    position: relative;
}

.about-heritage-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-heritage-image {
    text-align: center;
}

.about-heritage-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s;
}

.about-heritage-image img:hover {
    transform: scale(1.03);
}

.about-heritage-text {
    color: var(--white);
}

.about-heritage-text h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.about-heritage-text .about-subtitle {
    color: var(--gold);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.about-heritage-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .configurator-grid, .ai-grid { grid-template-columns: 1fr; }
    .cup-display { grid-template-columns: repeat(2, 1fr); }
    .about-heritage-grid { grid-template-columns: 1fr; text-align: center; }
    .about-heritage-text { text-align: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .ai-sample-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Header fixed on mobile for reliable behavior */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    /* Hamburger visible */
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1100;
    }

    /* Mobile nav overlay */
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 35, 50, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        z-index: 1050;
        padding: 2rem;
    }

    .nav.mobile-open {
        display: flex;
    }

    .nav a {
        font-size: 1.3rem;
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav .language-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 1rem;
        justify-content: center;
    }

    .nav .lang-btn {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav .btn {
        min-height: 48px;
        font-size: 1.1rem;
        padding: 0.85rem 2rem;
        margin-top: 0.5rem;
    }

    /* Header */
    .header-content { padding: 0 1rem; }
    .logo img { height: 45px; }

    /* Hero - extra top padding for fixed header */
    .hero {
        min-height: 500px;
        padding: 6rem 1.25rem 4rem;
        background-attachment: scroll;
    }
    .hero h1, .hero h2 { font-size: 1.8rem; }
    .hero-tagline { font-size: 1.1rem; }
    .hero-description { font-size: 1rem; }
    .hero-features { gap: 0.75rem; }
    .hero-feature { padding: 0.6rem 1rem; font-size: 0.85rem; }

    /* Cup showcase */
    .cup-showcase { padding: 3rem 1rem; }
    .product-types, .cup-display { grid-template-columns: 1fr; }
    .cup-item { padding: 1.5rem 1rem; }

    /* AI Designer */
    .ai-designer { padding: 3rem 1rem; }
    .ai-chat-messages { height: 300px; }
    .ai-sample-grid { grid-template-columns: 1fr; }
    .ai-sample-item img { height: 200px; }
    .lightbox-nav { padding: 0.75rem 1rem; font-size: 1.5rem; }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
    .lightbox-close { top: 1rem; right: 1rem; }

    /* Configurator */
    .configurator { padding: 3rem 1rem; }
    .config-section { padding: 1.5rem; }
    .product-types { grid-template-columns: 1fr 1fr; }
    .quantity-selector { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
    .qty-btn { padding: 0.65rem 0.4rem; font-size: 0.85rem; min-height: 44px; }
    .price-amount { font-size: 2.5rem; }
    .price-details { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .supplier-selector { grid-template-columns: 1fr; gap: 0.75rem; }
    .supplier-card { padding: 1rem; }

    /* About Heritage */
    .about-heritage {
        min-height: 400px;
        padding: 3rem 1.25rem;
        background-attachment: scroll;
    }
    .about-heritage-text h2 { font-size: 1.8rem; }
    .about-heritage-image img { max-width: 280px; }
    .about-heritage-grid { gap: 2rem; }

    /* Services */
    .cup-gallery { padding: 3rem 1rem; }
    .gallery-grid { grid-template-columns: 1fr; gap: 1rem; }
    .gallery-card-img { height: 180px; }

    /* Pricing Table */
    #pricingTable { font-size: 0.8rem; }
    #pricingTable th,
    #pricingTable td { padding: 0.75rem 0.5rem; }

    /* FAQ */
    #faq { padding: 3rem 1rem; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Modal */
    .order-modal-content { width: 95%; max-height: 95vh; }
    .order-modal-header { padding: 1.25rem; }
    .order-modal-body { padding: 1.5rem; }
    .order-summary-section { padding: 1.25rem; }

    /* Buttons touch-friendly */
    .btn { min-height: 44px; padding: 0.75rem 1.25rem; }

    /* Section titles */
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 1rem; }
}

@media (max-width: 480px) {
    .hero h1, .hero h2 { font-size: 1.5rem; }
    .hero-tagline { font-size: 0.95rem; }
    .hero-features { flex-direction: column; align-items: center; }
    .product-types { grid-template-columns: 1fr; }
    .quantity-selector { grid-template-columns: repeat(3, 1fr); }
    .price-details { grid-template-columns: 1fr; }
    #pricingTable { font-size: 0.7rem; }
    #pricingTable th,
    #pricingTable td { padding: 0.5rem 0.35rem; }
    .order-form-row { grid-template-columns: 1fr !important; }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: var(--white);
    padding: 2.5rem 2rem;
}

.pricing-supplier-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.pricing-supplier-bar .label {
    font-weight: 600;
    color: var(--navy);
}

#pricingSupplierName {
    font-weight: bold;
    color: var(--gold);
    font-size: 1.1rem;
}

#pricingExpressBadge {
    background: #ff9800;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: bold;
}

.pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

#pricingTable {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

#pricingTable thead th {
    background: var(--navy);
    color: var(--white);
    padding: 1.25rem;
    text-align: left;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--light-gray);
    padding: 2.5rem 2rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--navy);
    font-weight: 500;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* ===== FOOTER ===== */
#site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 2rem 1.5rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-grid h4 {
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-grid p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-contact-info {
    margin-top: 1.5rem;
    line-height: 2;
}

.footer-grid ul {
    list-style: none;
    line-height: 2.2;
}

.footer-grid a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== FILE UPLOAD ===== */
.upload-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.upload-dropzone {
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafafa;
}

.upload-dropzone:hover {
    border-color: var(--gold);
    background: #fdf8e8;
}

.upload-dropzone.drag-active {
    border-color: var(--gold);
    background: #fdf8e8;
    transform: scale(1.01);
}

.upload-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.upload-text {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.upload-hint {
    font-size: 0.8rem;
    color: var(--gray);
}

.upload-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.upload-file-item {
    position: relative;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-file-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-file-icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.upload-file-name {
    font-size: 0.65rem;
    color: var(--gray);
    text-align: center;
    padding: 0 0.25rem;
    word-break: break-all;
    max-height: 2.5em;
    overflow: hidden;
}

.upload-file-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.upload-file-remove:hover {
    background: #c62828;
}

@media (max-width: 480px) {
    .upload-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .upload-dropzone {
        padding: 1.5rem 1rem;
    }
}
