/* RESET E STILI GENERALI */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Impedisce parole spezzate con trattino */
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    word-break: keep-all;
    overflow-wrap: normal;
}

:root {
    --navbar-height: 200px;
    --navbar-height-mobile: 120px;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

/* Classe globale per contenuti sotto la navbar fissa */
.page-content {
    padding-top: var(--navbar-height);
}

@media (max-width: 768px) {
    .page-content {
        padding-top: var(--navbar-height-mobile);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    margin: 0;
    padding: 0;
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
}

section {
    margin: 0;
    padding-top: var(--navbar-height, 200px);
    padding-bottom: 6rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* NAVBAR */
.navbar {
    background-color: transparent;
    color: #ffffff;
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0a0a0a;
    letter-spacing: 2px;
}

.logo-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    padding: 0.3rem 0;
}

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

/* picture tag trasparente nel layout */
picture {
    display: contents;
}

.logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

#cart-link {
    background-color: #C9A961;
    font-weight: 500;
}

#cart-link:hover {
    background-color: #B89951;
}

/* SHOP HERO */
.shop-hero {
    padding: 12rem 0 1rem;
    background-color: #0a0a0a;
    margin: 0;
}

.shop-hero .section-title {
    font-size: 3.5rem;
}

.shop-main {
    padding: 0 20px 3rem;
    margin-top: -1rem;
}

/* PRODUCT CARDS */
.product-card.featured {
    position: relative;
    border: 2px solid #C9A961;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #C9A961;
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    z-index: 1;
}

.price-old {
    text-decoration: line-through;
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* GRIGLIA PRODOTTI */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.5) 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(201,169,97,0.3);
    border-color: rgba(201,169,97,0.3);
}

.product-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: #000;
}

/* Tablet: 3 colonne */
@media (max-width: 1024px) and (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.description {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #C9A961;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: auto;
}

.stock {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.stock-qty {
    font-weight: bold;
    color: #C9A961;
}

/* PULSANTI */
.btn-add-cart {
    width: 100%;
    padding: 1rem;
    background-color: #C9A961;
    color: #0a0a0a;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-add-cart:hover {
    background-color: #B89951;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201,169,97,0.3);
}

.btn-add-cart:disabled {
    background-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.3);
    cursor: not-allowed;
}

.btn-checkout {
    padding: 1rem 2.5rem;
    background-color: #C9A961;
    color: #0a0a0a;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
    letter-spacing: 0.5px;
}

.btn-checkout:hover {
    background-color: #B89951;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,169,97,0.3);
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: rgba(255,255,255,0.9);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* SEZIONE CARRELLO */
.cart-section {
    background: linear-gradient(135deg, rgba(26,26,26,0.98) 0%, rgba(15,15,15,0.95) 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    margin-top: 100px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(201,169,97,0.15);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cart-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #C9A961;
    margin-bottom: 2rem;
    text-align: center;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(201,169,97,0.06);
    border-color: rgba(201,169,97,0.15);
}

.cart-item-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.cart-item-subtotal {
    color: #C9A961;
    font-weight: 600;
    font-size: 1rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0,0,0,0.3);
    border-radius: 25px;
    border: 1px solid rgba(201,169,97,0.3);
    overflow: hidden;
}

.qty-btn {
    background: transparent;
    color: #C9A961;
    border: none;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: rgba(201,169,97,0.2);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-value {
    color: #ffffff;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
    font-size: 1rem;
}

.btn-remove {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: none;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-remove:hover {
    color: #f44336;
    background: rgba(244,67,54,0.1);
}

.btn-remove svg {
    width: 14px;
    height: 14px;
}

/* SEZIONE CODICE SCONTO */
.coupon-section {
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: rgba(201,169,97,0.05);
    border-radius: 12px;
    border: 1px solid rgba(201,169,97,0.15);
}

.coupon-input-wrapper {
    display: flex;
    gap: 0.8rem;
}

.coupon-input {
    flex: 1;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: rgba(201,169,97,0.5);
    background: rgba(0,0,0,0.4);
}

.coupon-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.btn-apply-coupon {
    background: linear-gradient(135deg, #C9A961 0%, #B89951 100%);
    color: #0a0a0a;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-apply-coupon:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201,169,97,0.3);
}

.coupon-message {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    text-align: center;
}

.coupon-message.success {
    color: #4caf50;
}

.coupon-message.error {
    color: #f44336;
}

.applied-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(76,175,80,0.1);
    border: 1px solid rgba(76,175,80,0.3);
    border-radius: 8px;
}

.coupon-applied-text {
    color: #4caf50;
    font-size: 0.9rem;
}

.btn-remove-coupon {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.2rem 0.5rem;
    transition: color 0.2s ease;
}

.btn-remove-coupon:hover {
    color: #f44336;
}

.cart-total {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(201,169,97,0.3);
    text-align: right;
}

.cart-total h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #C9A961;
    margin-bottom: 2rem;
}

.shipping-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    text-align: left;
}

.checkout-shipping {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
}

/* CHECKOUT */
.checkout-section {
    background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.8) 100%);
    padding: 3rem 2rem;
    border-radius: 10px;
    margin-top: 120px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.checkout-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #C9A961;
    margin-bottom: 2rem;
    text-align: center;
}

/* CHECKOUT TYPE SELECTOR */
.checkout-type-selector {
    margin-bottom: 2.5rem;
}

.checkout-type-selector > p {
    text-align: center;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.checkout-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.checkout-option {
    background: linear-gradient(145deg, rgba(30,30,30,0.9) 0%, rgba(20,20,20,0.95) 100%);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.checkout-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.checkout-option:hover {
    border-color: rgba(201,169,97,0.4);
    background: linear-gradient(145deg, rgba(35,35,35,0.95) 0%, rgba(25,25,25,1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.checkout-option:hover::before {
    background: linear-gradient(90deg, transparent, rgba(201,169,97,0.5), transparent);
}

.checkout-option.selected {
    border-color: #C9A961;
    background: linear-gradient(145deg, rgba(201,169,97,0.08) 0%, rgba(20,20,20,0.98) 100%);
}

.checkout-option.selected::before {
    background: linear-gradient(90deg, #C9A961, #B89951, #C9A961);
}

.checkout-option.option-recommended {
    border-color: rgba(201,169,97,0.25);
    background: linear-gradient(145deg, rgba(201,169,97,0.06) 0%, rgba(20,20,20,0.95) 100%);
}

.checkout-option.option-recommended::after {
    content: 'CONSIGLIATO';
    position: absolute;
    top: 12px;
    right: -28px;
    background: linear-gradient(135deg, #C9A961 0%, #B89951 100%);
    color: #0a0a0a;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 30px;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
}

.option-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

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

.option-radio-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.option-radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C9A961;
    transform: scale(0);
    transition: transform 0.2s ease;
}

.checkout-option.selected .option-radio-custom {
    border-color: #C9A961;
}

.checkout-option.selected .option-radio-custom::after {
    transform: scale(1);
}

.option-header label {
    cursor: pointer;
    margin: 0;
    flex: 1;
}

.option-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.3rem 0;
    line-height: 1.3;
}

.option-header .option-subtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 2rem;
}

.option-features li {
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
}

.option-features li::before {
    content: '✓';
    position: absolute;
    left: -1.3rem;
    top: 0.5rem;
    color: #C9A961;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1;
}

.option-features li strong {
    color: #C9A961;
}

.register-notice {
    background: rgba(201,169,97,0.1);
    border: 1px solid rgba(201,169,97,0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.register-notice p {
    margin: 0;
    color: #C9A961;
    font-weight: 500;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #C9A961;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(201,169,97,0.1);
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.checkout-summary {
    background: rgba(201,169,97,0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 1px solid rgba(201,169,97,0.3);
}

.checkout-summary h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #C9A961;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

.checkout-item-image {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkout-item-name {
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
}

.checkout-item-qty {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.checkout-item-price {
    font-weight: 600;
    color: #C9A961;
    font-size: 1rem;
}

.checkout-total {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(201,169,97,0.5);
    color: #C9A961;
}

/* SEZIONE FATTURAZIONE */
.invoice-section {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.invoice-toggle {
    margin-bottom: 0.5rem;
}

.invoice-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

.invoice-checkbox-label input[type="checkbox"] {
    display: none;
}

.invoice-checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(201,169,97,0.5);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.invoice-checkbox-label input:checked + .invoice-checkbox-custom {
    background: #C9A961;
    border-color: #C9A961;
}

.invoice-checkbox-label input:checked + .invoice-checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 14px;
    font-weight: bold;
}

.invoice-fields {
    margin-top: 1rem;
    padding: 1.2rem;
    background: rgba(201,169,97,0.05);
    border: 1px solid rgba(201,169,97,0.2);
    border-radius: 10px;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.invoice-notice {
    margin-bottom: 1rem;
    padding: 0.6rem 1rem;
    background: rgba(201,169,97,0.1);
    border-left: 3px solid #C9A961;
    border-radius: 0 6px 6px 0;
}

.invoice-notice p {
    margin: 0;
    font-size: 0.85rem;
    color: #C9A961;
}

.invoice-help-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
    font-style: italic;
}

/* SEZIONE PAGAMENTO STRIPE ELEMENTS */
.payment-section {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,169,97,0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.payment-title {
    color: #C9A961;
    font-size: 1.2rem;
    margin: 0 0 1.2rem 0;
    font-weight: 600;
}

#payment-request-button-container {
    margin-bottom: 1rem;
}

#payment-request-button {
    height: 44px;
}

.payment-divider {
    display: flex;
    align-items: center;
    margin: 1.2rem 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.payment-divider::before,
.payment-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

.payment-divider span {
    padding: 0 1rem;
}

.card-form {
    margin-top: 0.5rem;
}

.stripe-element {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 12px 14px;
    transition: all 0.2s ease;
}

.stripe-element:hover {
    border-color: rgba(201,169,97,0.5);
}

.stripe-element.StripeElement--focus {
    border-color: #C9A961;
    box-shadow: 0 0 0 2px rgba(201,169,97,0.2);
}

.stripe-element.StripeElement--invalid {
    border-color: #dc3545;
}

.card-row {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.card-row .form-group.half {
    flex: 1;
}

.card-errors {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.8rem;
    min-height: 20px;
}

.accepted-cards {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    justify-content: center;
}

.accepted-cards img {
    width: 32px;
    height: 20px;
    opacity: 0.5;
    filter: invert(70%) sepia(50%) saturate(400%) hue-rotate(5deg);
}

.btn-pay {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-pay .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(26,26,26,0.3);
    border-top-color: #1a1a1a;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-pay:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* CONFERMA ORDINE */
.order-confirmation {
    background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.8) 100%);
    padding: 4rem 3rem;
    border-radius: 10px;
    margin-top: var(--navbar-height, 200px);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(201,169,97,0.3);
}

.order-confirmation h2 {
    font-family: 'Inter', sans-serif;
    color: #C9A961;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.order-confirmation p {
    font-size: 1.2rem;
    margin: 0.8rem 0;
    color: rgba(255,255,255,0.9);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.order-confirmation strong {
    color: #C9A961;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.order-details {
    background: rgba(201,169,97,0.1);
    padding: 2.5rem;
    border-radius: 10px;
    margin: 2.5rem 0;
    text-align: left;
    border: 1px solid rgba(201,169,97,0.2);
    max-width: 100%;
    overflow-x: hidden;
}

.order-details h3 {
    font-family: 'Inter', sans-serif;
    color: #C9A961;
    font-weight: 600;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.order-details p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    margin: 0.5rem 0;
}

.order-details strong {
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 5%;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.30) 0%, rgba(26,26,26,0.25) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 2px 10px rgba(0,0,0,0.6), 0 0 30px rgba(0,0,0,0.4);
    white-space: nowrap;
    position: relative;
    padding-bottom: 1.5rem;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.7), 0 1px 8px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #C9A961;
    color: #0a0a0a;
}

.btn-primary:hover {
    background-color: #B89951;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,169,97,0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* SECTION STYLES */
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
}

.section-subtitle.centered {
    text-align: center;
}

/* ABOUT SECTION */
.about-section {
    padding: 6rem 0;
    background-color: #0f0f0f;
}

.about-section .section-title {
    white-space: nowrap;
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

/* Linea decorativa dorata */
.gold-divider {
    width: 80%;
    max-width: 600px;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        #c9a961 20%,
        #d4af37 50%,
        #c9a961 80%,
        transparent 100%);
    margin: 2rem auto;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Separatori tra sezioni */
.section-divider {
    width: 100%;
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Linea dorata sottile - per separare sezioni */
.section-divider.gold-line {
    background: transparent;
}

.section-divider.gold-line::before {
    content: '';
    width: 60%;
    max-width: 400px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 169, 97, 0.3) 20%,
        rgba(212, 175, 55, 0.8) 50%,
        rgba(201, 169, 97, 0.3) 80%,
        transparent 100%);
}

/* Linea bianca sottile */
.section-divider.white-line::before {
    content: '';
    width: 50%;
    max-width: 300px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.2) 80%,
        transparent 100%);
}

/* Linea decorativa con ornamento centrale */
.section-divider.ornament {
    position: relative;
}

.section-divider.ornament::before,
.section-divider.ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 169, 97, 0.5) 50%,
        transparent 100%);
}

.section-divider.ornament::before {
    right: 55%;
}

.section-divider.ornament::after {
    left: 55%;
}

.section-divider.ornament .ornament-center {
    width: 12px;
    height: 12px;
    background: #c9a961;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.6);
    position: relative;
    z-index: 1;
}

/* Linea doppia dorata */
.section-divider.double-gold {
    flex-direction: column;
    gap: 0.5rem;
}

.section-divider.double-gold::before,
.section-divider.double-gold::after {
    content: '';
    width: 40%;
    max-width: 250px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 169, 97, 0.4) 30%,
        rgba(212, 175, 55, 0.7) 50%,
        rgba(201, 169, 97, 0.4) 70%,
        transparent 100%);
}

/* Linea tra CTA e Galleria */
.cta-gallery-divider {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0a0a0a;
}

.cta-gallery-divider::before {
    content: '';
    width: 50%;
    max-width: 300px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 169, 97, 0.3) 20%,
        rgba(212, 175, 55, 0.7) 50%,
        rgba(201, 169, 97, 0.3) 80%,
        transparent 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Wrapper descrizione */
.about-description-wrapper {
    max-width: 900px;
    margin: 3rem auto;
    text-align: center;
    padding: 0 1rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.8);
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* Wrapper immagine */
.about-image-wrapper {
    max-width: 900px;
    margin: 3rem auto;
    text-align: center;
    padding: 0 1rem;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Statistiche */
.about-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(201,169,97,0.1) 0%, rgba(201,169,97,0.05) 100%);
    border-radius: 10px;
    border: 1px solid rgba(201,169,97,0.2);
    min-width: 120px;
}

.stat h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #C9A961;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vecchi stili per compatibilità */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    color: rgba(255,255,255,0.9);
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-align: center;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* SERVICES SECTION */
.services-section {
    padding: 6rem 0 3rem 0;
    background-color: #0a0a0a;
}

.services-section .section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive grid for 4 cards */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.7) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(201,169,97,0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201,169,97,0.6);
    box-shadow: 0 20px 40px rgba(201,169,97,0.3);
}

.service-card-promo {
    border: 2px solid rgba(201,169,97,0.5);
    background: linear-gradient(135deg, rgba(40,30,20,0.9) 0%, rgba(30,25,20,0.8) 100%);
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #C9A961, #B8964D);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(201,169,97,0.3);
}

/* Ghost Card - Altri Servizi */
.service-card-ghost {
    background: linear-gradient(135deg, rgba(26,26,26,0.4) 0%, rgba(13,13,13,0.3) 100%);
    border: 2px dashed rgba(201,169,97,0.4);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card-ghost:hover {
    background: linear-gradient(135deg, rgba(26,26,26,0.6) 0%, rgba(13,13,13,0.5) 100%);
    border-color: rgba(201,169,97,0.6);
    transform: translateY(-5px);
}

.service-card-ghost h3 {
    color: #C9A961;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card-ghost .service-description {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.ghost-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
}

.ghost-icon svg {
    width: 30px;
    height: 30px;
    stroke: #C9A961;
}

.ghost-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #C9A961 0%, #A88B4A 100%);
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ghost-btn-download svg {
    width: 18px;
    height: 18px;
    stroke: #000000;
}

.ghost-btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
    background: linear-gradient(135deg, #d4b56d 0%, #b89653 100%);
}

.service-card-ghost:hover .ghost-icon {
    background: rgba(201, 169, 97, 0.2);
    border-color: rgba(201, 169, 97, 0.5);
    transform: scale(1.05);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-description {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.service-duration {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #C9A961;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem 1rem;
    background: rgba(201,169,97,0.1);
    border-radius: 20px;
    display: inline-block;
}

.service-price {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: #C9A961;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ========================================
   UNIFIED CTA SECTION
   ======================================== */

.unified-cta-section {
    background: linear-gradient(135deg, #000000 0%, #0f0f0f 50%, #000000 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.unified-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
}

.cta-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(201, 169, 97, 0.3);
}

.cta-main-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
}

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

.cta-cards-grid.single-card {
    grid-template-columns: 1fr;
    max-width: 600px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(13,13,13,0.7) 100%);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.6);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.2);
    background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(13,13,13,0.85) 100%);
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(201, 169, 97, 0.1) 100%);
    border: 2px solid rgba(201, 169, 97, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.cta-card-icon svg {
    width: 40px;
    height: 40px;
    stroke: #C9A961;
    transition: all 0.4s ease;
}

.cta-card:hover .cta-card-icon {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.3) 0%, rgba(201, 169, 97, 0.15) 100%);
    border-color: rgba(201, 169, 97, 0.6);
    transform: scale(1.1);
}

.cta-card:hover .cta-card-icon svg {
    stroke: #d4b56d;
    transform: scale(1.1);
}

.cta-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #C9A961;
    margin-bottom: 1rem;
}

.cta-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-card-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #C9A961 0%, #A88B4A 100%);
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
    background: linear-gradient(135deg, #d4b56d 0%, #b89653 100%);
}

.cta-card-btn:active {
    transform: translateY(-1px);
}

/* Responsive Unified CTA */
@media (max-width: 968px) {
    .cta-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .unified-cta-section {
        padding: 3rem 0;
    }

    .cta-main-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .cta-main-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .cta-cards-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .cta-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .cta-card-icon svg {
        width: 35px;
        height: 35px;
    }

    .cta-card h3 {
        font-size: 1.5rem;
    }

    .cta-card p {
        font-size: 0.95rem;
    }

    .cta-card-btn {
        font-size: 1rem;
        padding: 0.9rem 2rem;
        width: 100%;
        max-width: 300px;
    }

    .ghost-btn-download {
        font-size: 0.9rem;
        padding: 0.8rem 1.8rem;
    }

    .ghost-btn-download svg {
        width: 16px;
        height: 16px;
    }

    .service-card-ghost h3 {
        font-size: 1.5rem;
    }
}

.app-promo-note {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(201,169,97,0.2) 0%, rgba(201,169,97,0.08) 100%);
    border-radius: 20px;
    border: 2px solid rgba(201,169,97,0.5);
    box-shadow: 0 8px 30px rgba(201,169,97,0.15),
                inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.app-promo-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
    opacity: 0.5;
}

.app-promo-note p {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.95);
    margin: 0;
    line-height: 1.6;
}

.app-promo-note strong {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.2em;
}

/* GALLERY SECTION */
.gallery-section {
    padding: 6rem 0;
    background-color: #0f0f0f;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 2rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

/* LOCATION SECTION */
.location-section {
    padding: 6rem 0;
    background-color: #0a0a0a;
}

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

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.5) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.info-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #C9A961;
}

.info-item p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

/* Contact Links Styling */
.contact-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.contact-link:hover {
    color: #C9A961;
    transform: translateX(3px);
}

.phone-link:hover {
    color: #4A90E2;
}

.email-link:hover {
    color: #E94235;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.05) 100%);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-link svg {
    width: 24px;
    height: 24px;
    fill: #25D366;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.25) 0%, rgba(37, 211, 102, 0.15) 100%);
    border-color: rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-link:hover svg {
    fill: #20BA5A;
    transform: scale(1.1);
}

.location-map iframe {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* FOOTER */
footer {
    background-color: #0a0a0a;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3, .footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #C9A961;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #C9A961;
}

.footer-contact-link {
    color: rgba(255,255,255,0.8) !important;
    transition: all 0.3s ease;
}

.footer-contact-link:hover {
    color: #C9A961 !important;
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
}

.social-icon {
    display: inline-block;
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateX(5px);
    color: #C9A961 !important;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid rgba(201, 169, 97, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.footer-social-icon svg {
    width: 24px;
    height: 24px;
    fill: #C9A961;
    transition: all 0.3s ease;
}

.footer-social-icon:hover svg {
    fill: #d4b56d;
}

.footer-social-icon.instagram:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: #E1306C;
}

.footer-social-icon.instagram:hover svg {
    fill: #E1306C;
}

.footer-social-icon.tiktok:hover {
    background: rgba(0, 242, 234, 0.1);
    border-color: #00f2ea;
}

.footer-social-icon.tiktok:hover svg {
    fill: #00f2ea;
}

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

/* CAREERS PAGE */
.careers-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    padding-top: 180px;
    background: linear-gradient(135deg, rgba(10,10,10,0.55) 0%, rgba(26,26,26,0.55) 100%),
                url('fotografie/IMG_0822 2.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.why-section {
    padding: 6rem 0;
    background-color: #0f0f0f;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.5) 100%);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201,169,97,0.5);
    box-shadow: 0 10px 30px rgba(201,169,97,0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #C9A961;
}

.benefit-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.positions-section {
    padding: 6rem 0;
    background-color: #0a0a0a;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.position-card {
    background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.5) 100%);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.position-card:hover {
    border-color: rgba(201,169,97,0.5);
    box-shadow: 0 10px 30px rgba(201,169,97,0.2);
}

.position-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #C9A961;
    margin-bottom: 1rem;
}

.position-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
}

.position-card > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.requirements {
    list-style: none;
    padding: 0;
}

.requirements li {
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.7);
    padding-left: 1.5rem;
    position: relative;
}

.requirements li:before {
    content: "✓";
    color: #C9A961;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.application-section {
    padding: 6rem 0;
    background-color: #0f0f0f;
}

.application-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.application-form {
    background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.5) 100%);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
}

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

.form-message {
    background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.5) 100%);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.form-message.success {
    border: 2px solid #4CAF50;
}

.form-message.error {
    border: 2px solid #f44336;
}

.form-message h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-message.success h3 {
    color: #4CAF50;
}

.form-message.error h3 {
    color: #f44336;
}

.form-message p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

/* CARRELLO VUOTO */
#cart-items p {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    padding: 3rem;
}

/* CART ICON */
.cart-link-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.6rem 1rem !important;
}

.cart-icon {
    width: 20px;
    height: 20px;
    color: #0a0a0a;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cart-link-nav:hover .cart-icon {
    transform: scale(1.1);
}

.cart-badge {
    background: linear-gradient(135deg, #C9A961 0%, #B89951 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(201,169,97,0.3);
}

/* HAMBURGER MENU */
/* Navbar Right Icons (Cart + Hamburger) */
.navbar-right-icons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.navbar-cart-icon {
    display: none;
    position: relative;
    padding: 0.6rem;
    background: linear-gradient(135deg, rgba(201,169,97,0.1) 0%, rgba(201,169,97,0.05) 100%);
    border-radius: 8px;
    border: 1px solid rgba(201,169,97,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.navbar-cart-icon:hover {
    background: linear-gradient(135deg, rgba(201,169,97,0.2) 0%, rgba(201,169,97,0.1) 100%);
    transform: scale(1.05);
}

.navbar-cart-icon .cart-icon {
    width: 24px;
    height: 24px;
    stroke: #C9A961;
}

.navbar-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #C9A961 0%, #B89951 100%);
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(201,169,97,0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.6rem;
    z-index: 101;
    background: linear-gradient(135deg, rgba(201,169,97,0.1) 0%, rgba(201,169,97,0.05) 100%);
    border-radius: 8px;
    border: 1px solid rgba(201,169,97,0.2);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: linear-gradient(135deg, rgba(201,169,97,0.2) 0%, rgba(201,169,97,0.1) 100%);
    transform: scale(1.05);
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: linear-gradient(90deg, #C9A961 0%, #B89951 100%);
    margin: 2.5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hamburger.active {
    background: linear-gradient(135deg, rgba(201,169,97,0.2) 0%, rgba(201,169,97,0.15) 100%);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: #C9A961;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #C9A961;
}

/* FLOATING MOBILE CART ICON */
.mobile-cart-float {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
    background: linear-gradient(135deg, #C9A961 0%, #B89951 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(201,169,97,0.5), 0 4px 12px rgba(0,0,0,0.3);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-cart-float.show {
    display: flex;
    animation: floatIn 0.5s ease-out;
}

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

.mobile-cart-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 32px rgba(201,169,97,0.6), 0 6px 16px rgba(0,0,0,0.4);
}

.mobile-cart-float:active {
    transform: scale(0.95);
}

.mobile-cart-float .cart-icon {
    width: 28px;
    height: 28px;
    color: #ffffff !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.mobile-cart-float .cart-icon path {
    stroke: #ffffff !important;
    fill: none !important;
}

.mobile-cart-float .mobile-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    min-width: 22px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(244,67,54,0.5), 0 0 0 3px rgba(10,10,10,0.2);
    border: 2px solid #0a0a0a;
    animation: pulse 2s infinite;
}

.mobile-cart-float.cart-updated {
    animation: cartBounce 0.6s ease-out;
}

@keyframes cartBounce {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2) rotate(5deg);
    }
    50% {
        transform: scale(0.95) rotate(-5deg);
    }
    75% {
        transform: scale(1.1) rotate(3deg);
    }
}

.mobile-cart-badge.badge-updated {
    animation: badgePop 0.5s ease-out;
}

@keyframes badgePop {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .navbar {
        padding: 0.8rem 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .navbar .container {
        position: relative;
        padding: 0 20px;
        gap: 1rem;
        min-height: 50px;
    }

    .hamburger {
        display: flex;
    }

    .navbar-cart-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-link {
        padding: 0.2rem 0;
    }

    .logo-img {
        height: 110px;
        margin-right: 0.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,250,250,0.98) 100%);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 100px;
        gap: 0;
        box-shadow: 0 0 40px rgba(0,0,0,0.15);
        z-index: 100;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(201,169,97,0.1);
        opacity: 0;
        animation: fadeInDown 0.5s ease forwards;
    }

    .nav-menu.active li {
        opacity: 1;
    }

    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.35s; }
    .nav-menu li:nth-child(7) { animation-delay: 0.4s; }

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

    .nav-menu li a {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
        font-weight: 500;
        color: #0a0a0a;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-menu li a::before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #C9A961 0%, #B89951 100%);
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        background: linear-gradient(135deg, rgba(201,169,97,0.08) 0%, rgba(201,169,97,0.03) 100%);
        color: #C9A961;
    }

    .nav-menu li a:hover::before,
    .nav-menu li a.active::before {
        width: 80%;
    }

    /* Cart Icon Mobile */
    .cart-link-nav {
        display: none !important;
    }

    /* Mostra carrello solo in pagina Shop */
    body.page-shop .cart-link-nav {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1.5rem 2rem !important;
        position: relative;
        font-size: 1.2rem;
        font-weight: 500;
        color: #0a0a0a;
        transition: all 0.3s ease;
        min-height: auto;
    }

    .cart-link-nav .cart-icon {
        width: 22px;
        height: 22px;
        color: #C9A961;
        flex-shrink: 0;
    }

    .cart-link-nav .cart-text {
        font-size: 1rem;
        white-space: nowrap;
    }

    .cart-link-nav .cart-badge {
        position: static;
        margin-left: 0.5rem;
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
        min-width: 18px;
    }

    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 2px 8px rgba(201,169,97,0.3);
        }
        50% {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(201,169,97,0.5);
        }
    }

    /* Hero Section */
    .hero {
        min-height: 70vh;
        height: auto;
        padding: 120px 0 3rem;
    }

    .hero-content {
        padding: 1rem;
        max-width: 100%;
        width: 100%;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal !important;
        padding: 0 0.5rem 1rem;
    }

    .hero-title::after {
        width: 60px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        white-space: normal;
        line-height: 1.4;
    }

    /* Container */
    .container {
        padding: 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Section padding for mobile navbar */
    section {
        padding-top: 120px;
    }

    /* Grids */
    .about-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact Links Mobile */
    .whatsapp-link {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
        justify-content: center;
    }

    .whatsapp-link svg {
        width: 20px;
        height: 20px;
    }

    .contact-link {
        font-size: 0.95rem;
    }

    .about-stats {
        display: none;
    }

    .services-grid,
    .gallery-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    /* Card compatte per mobile */
    .product-card img {
        aspect-ratio: 3 / 4;
        height: auto;
        cursor: pointer;
    }

    .product-info {
        padding: 0.75rem;
    }

    .product-info h3 {
        font-size: 1rem;
        cursor: pointer;
    }

    /* Nascondere descrizione su mobile */
    .product-card .description {
        display: none;
    }

    .price {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .btn-add-cart {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    /* Shop Mobile Optimization */
    .shop-hero {
        padding: 120px 0 1rem;
        margin-top: 0;
    }

    .shop-hero .section-title {
        font-size: 1.6rem;
        white-space: nowrap;
    }

    /* Careers Hero Mobile */
    .careers-hero {
        padding-top: 120px;
        min-height: 50vh;
    }

    .shop-main {
        padding: 1rem 1rem 2rem 1rem;
        margin-top: -0.5rem;
    }

    /* Typography */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        word-wrap: break-word;
        padding: 0 1rem;
    }

    body {
        overflow-x: hidden;
    }

    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    .position-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* Carrello */
    .cart-section {
        margin-top: 140px;
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .cart-item {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
    }

    .cart-item-details {
        flex: 1;
        min-width: 120px;
    }

    .cart-item-name {
        font-size: 1rem;
    }

    .cart-item-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 0.5rem;
        padding-top: 0.8rem;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .qty-control {
        border-radius: 20px;
    }

    .qty-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .qty-value {
        min-width: 30px;
        font-size: 0.9rem;
    }

    .coupon-section {
        padding: 1rem;
    }

    .coupon-input-wrapper {
        flex-direction: column;
    }

    .btn-apply-coupon {
        width: 100%;
    }

    .cart-total {
        text-align: center;
    }

    .cart-total h3 {
        font-size: 1.6rem;
    }

    .btn-checkout,
    .btn-secondary {
        width: 100%;
        margin: 0.5rem 0;
    }

    .checkout-section h2,
    .cart-section h2 {
        font-size: 1.6rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .order-confirmation {
        padding: 2rem 1.5rem;
        margin-top: var(--navbar-height-mobile, 120px);
    }

    .order-confirmation h2 {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }

    .order-confirmation p {
        font-size: 1rem;
        margin: 0.6rem 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: none; /* Evita lineette nei messaggi brevi */
    }

    .order-details {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .order-details h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
    }

    .order-details p {
        font-size: 0.95rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .tracking-info {
        margin: 1rem 0;
    }

    .tracking-info p {
        font-size: 0.9rem !important;
        padding: 0.8rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .tracking-info a {
        display: inline-block;
        word-wrap: break-word;
    }

    /* Checkout Options - Mobile */
    .checkout-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .checkout-option {
        padding: 1.3rem 1.2rem;
    }

    .checkout-option.option-recommended::after {
        font-size: 0.55rem;
        padding: 3px 25px;
        top: 10px;
        right: -30px;
    }

    .option-header {
        gap: 0.8rem;
    }

    .option-header h3 {
        font-size: 1rem;
        word-wrap: break-word;
    }

    .option-header .option-subtitle {
        font-size: 0.8rem;
    }

    .option-features {
        padding-left: 1.8rem;
    }

    .option-features li {
        font-size: 0.82rem;
        padding: 0.4rem 0;
        padding-left: 1.5rem;
    }

    .option-features li::before {
        top: 0.4rem;
    }

    .option-features {
        font-size: 0.85rem;
    }

    .option-features li {
        padding: 0.3rem 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .checkout-section {
        padding: 2rem 1rem;
    }

    .checkout-type-selector {
        margin-bottom: 1.5rem;
    }

    .register-notice p {
        font-size: 0.9rem;
        word-wrap: break-word;
    }

    .form-group label {
        font-size: 0.9rem;
        word-wrap: break-word;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.8rem;
        word-wrap: break-word;
    }

    .checkout-summary {
        padding: 1rem;
    }

    .checkout-summary h3 {
        font-size: 1.3rem;
        word-wrap: break-word;
    }

    /* App Promo Note - Mobile */
    .app-promo-note {
        padding: 1.5rem 1.5rem;
        margin-top: 2rem;
        border-radius: 15px;
    }

    .app-promo-note p {
        font-size: 1rem;
    }

    .app-promo-note strong {
        font-size: 1.15em;
    }

    /* Service Cards */
    .service-card {
        padding: 2rem 1.5rem;
        word-wrap: break-word;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .service-price {
        font-size: 1.3rem;
        margin-top: 1rem;
    }

    /* Product Cards - stili spostati nel media query 767px */

    /* Separatori decorativi - Mobile */
    .section-divider {
        padding: 2rem 0;
    }

    .section-divider.gold-line::before,
    .section-divider.white-line::before {
        width: 70%;
        max-width: 250px;
    }

    .section-divider.ornament::before,
    .section-divider.ornament::after {
        width: 25%;
        max-width: 120px;
    }

    .section-divider.ornament .ornament-center {
        width: 10px;
        height: 10px;
    }

    .section-divider.double-gold::before,
    .section-divider.double-gold::after {
        width: 50%;
        max-width: 180px;
    }

    /* Linea CTA-Galleria - Mobile */
    .cta-gallery-divider {
        padding: 1.5rem 0;
    }

    .cta-gallery-divider::before {
        width: 60%;
        max-width: 200px;
    }

    /* Gallery - Horizontal Scroll */
    .gallery-section {
        padding: 3rem 0;
        margin: 0;
        overflow: hidden;
    }

    .gallery-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 1rem;
        padding: 1rem 0.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #C9A961 rgba(255,255,255,0.1);
    }

    .gallery-grid::-webkit-scrollbar {
        height: 8px;
    }

    .gallery-grid::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.1);
        border-radius: 10px;
    }

    .gallery-grid::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, #C9A961 0%, #B89951 100%);
        border-radius: 10px;
    }

    .gallery-grid::-webkit-scrollbar-thumb:hover {
        background: #C9A961;
    }

    .gallery-item {
        min-width: 280px;
        max-width: 280px;
        height: 320px;
        flex-shrink: 0;
        scroll-snap-align: center;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        transition: transform 0.3s ease;
    }

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

    .gallery-item img,
    .gallery-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* About Section */
    .about-section {
        padding: 3rem 0;
        margin: 0;
        overflow-x: hidden;
    }

    .about-section .section-title {
        font-size: 2rem;
    }

    .services-section .section-title {
        font-size: 1.75rem;
    }

    .why-section .section-title {
        font-size: 1.5rem;
    }

    /* Linea decorativa dorata - mobile */
    .gold-divider {
        width: 90%;
        max-width: 300px;
        height: 2px;
        margin: 1.5rem auto;
    }

    /* Wrapper descrizione - mobile */
    .about-description-wrapper {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .about-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0;
        max-width: 100%;
        hyphens: auto;
    }

    /* Wrapper immagine - mobile */
    .about-image-wrapper {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .about-image-wrapper img {
        width: 100%;
        height: auto;
        max-height: 350px;
    }

    /* Statistiche - mobile */
    .about-stats {
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .stat {
        padding: 1rem;
        min-width: 100px;
    }

    .stat h3 {
        font-size: 2rem;
    }

    /* Vecchi stili per compatibilità */
    .about-grid {
        padding: 0;
        overflow-x: hidden;
    }

    .about-text {
        padding: 0 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .about-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .about-image {
        padding: 0 1rem;
    }

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

    /* Location Info */
    .info-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .info-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Account */
    .account-container {
        padding: 1rem;
        padding-top: 120px !important;
        width: 100%;
        max-width: 100%;
    }

    /* Forms */
    input, textarea, select {
        font-size: 16px !important;
        width: 100%;
        box-sizing: border-box;
    }

    /* Footer */
    .footer-col h3, .footer-col h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-col p, .footer-col li {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Sections Spacing */
    section {
        padding: 3rem 0;
        margin: 0;
    }

    .services-section,
    .location-section,
    .about-section,
    .gallery-section,
    .why-section,
    .positions-section,
    .application-section {
        padding: 3rem 0;
        margin: 0;
    }
}

/* MESSAGGI */
.message {
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   SEZIONE PRENOTA ORA (CTA BOOKING)
   ======================================== */
/* Old CTA Booking Section - Removed, now using unified-cta-section */

/* ========================================
   MODAL POPUP PRENOTAZIONE
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(-20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.8rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    z-index: 10;
}

.modal-close:hover {
    color: #C9A961;
    background-color: rgba(201, 169, 97, 0.1);
    transform: rotate(90deg);
}

.modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-align: center;
    padding: 0 60px 0 10px;
    max-width: 100%;
}

.modal-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 3rem;
}

/* ========================================
   OPZIONI DI PRENOTAZIONE
   ======================================== */
.booking-options {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.booking-option {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(13, 13, 13, 0.3) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.booking-option:hover {
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.1);
}

.option-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #C9A961;
}

.option-icon svg {
    width: 60px;
    height: 60px;
    stroke: #C9A961;
}

.booking-option h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.booking-option p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.booking-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.booking-divider::before,
.booking-divider::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.booking-divider span {
    padding: 1rem 0;
}

/* ========================================
   PULSANTI MODAL
   ======================================== */
.btn-app,
.btn-webapp {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-app {
    background: linear-gradient(135deg, #C9A961 0%, #A88B4A 100%);
    color: #000000;
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.btn-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
    background: linear-gradient(135deg, #d4b56d 0%, #b89653 100%);
}

.btn-webapp {
    background: transparent;
    color: #C9A961;
    border: 2px solid #C9A961;
}

.btn-webapp:hover {
    background-color: rgba(201, 169, 97, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.2);
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem;
    }

    .modal-title {
        font-size: 1.8rem;
        padding: 0 55px 0 10px;
    }

    .booking-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-divider {
        flex-direction: row;
    }

    .booking-divider::before,
    .booking-divider::after {
        width: 40px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    }

    .booking-divider span {
        padding: 0 1rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 480px) {
    .modal-overlay {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 1rem;
    }

    .modal-content {
        padding: 1.2rem;
        padding-top: 3.5rem;
        border-radius: 15px;
        max-height: 95vh;
    }

    .modal-close {
        top: 0.8rem;
        right: 0.8rem;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        font-size: 1.5rem;
        background: rgba(201, 169, 97, 0.2);
        border-color: rgba(201, 169, 97, 0.4);
    }

    .modal-title {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
        padding: 0 10px;
    }

    .modal-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .booking-option {
        padding: 1.2rem;
    }

    .option-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .option-icon svg {
        width: 40px;
        height: 40px;
    }

    .booking-option h3 {
        font-size: 1.1rem;
    }

    .booking-option p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .btn-app,
    .btn-webapp {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .booking-divider {
        padding: 0.5rem 0;
    }
}

/* ========================================
   SEZIONE FRANCHISING
   ======================================== */
.franchising-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.franchising-content {
    max-width: 900px;
    margin: 0 auto;
}

.franchising-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #C9A961;
    margin-bottom: 1.5rem;
    text-align: center;
}

.franchising-text > p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 3rem;
}

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

.franchise-benefit {
    background: linear-gradient(135deg, rgba(26,26,26,0.5) 0%, rgba(13,13,13,0.3) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.franchise-benefit:hover {
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.1);
}

.franchise-benefit h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.franchise-benefit p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.franchising-cta {
    text-align: center;
    margin-top: 3rem;
}

.franchising-cta .btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Aggiornamento griglia benefits per 4 card */
.benefits-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}

/* Stile per input file */
input[type="file"] {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, #C9A961 0%, #A88B4A 100%);
    color: #000000;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
    background: linear-gradient(135deg, #d4b56d 0%, #b89653 100%);
    transform: translateY(-1px);
}

input[type="file"]:hover {
    border-color: rgba(201, 169, 97, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Responsive - Benefits Grid */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   SEZIONE SOCIAL
   ======================================== */
.social-section {
    padding: 3rem 0;
    background-color: #0f0f0f;
    text-align: center;
    position: relative;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
}

.social-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.social-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(26,26,26,0.5) 0%, rgba(13,13,13,0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 150px;
}

.social-icon-link:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.1);
}

.social-icon-link svg {
    width: 50px;
    height: 50px;
    fill: #C9A961;
    transition: all 0.3s ease;
}

.social-icon-link:hover svg {
    fill: #d4b56d;
    transform: scale(1.1);
}

.social-icon-link span {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.social-icon-link.instagram:hover svg {
    fill: #E1306C;
}

.social-icon-link.tiktok:hover svg {
    fill: #00f2ea;
}

/* Responsive Social */
@media (max-width: 768px) {
    .social-icons {
        gap: 2rem;
    }

    .social-icon-link {
        min-width: 120px;
        padding: 1.5rem;
    }

    .social-icon-link svg {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   RECENSIONI GOOGLE SECTION
   ======================================== */

.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
}

.reviews-section .section-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.reviews-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4rem;
}

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

.review-card {
    background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(13,13,13,0.6) 100%);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(201, 169, 97, 0.1);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.5);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.15);
    background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(13,13,13,0.8) 100%);
}

.review-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.review-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.review-author strong {
    color: #C9A961;
    font-size: 1.1rem;
    font-weight: 600;
}

.review-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.reviews-cta {
    margin-top: 3rem;
    text-align: center;
}

.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
}

.btn-google-reviews:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #C9A961 0%, #d4b56d 100%);
    color: #1a1a1a;
    border-color: #C9A961;
}

/* Responsive Reviews */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }

    .reviews-section .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .reviews-section .section-subtitle {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .review-card {
        padding: 2rem 1.5rem;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .btn-google-reviews {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 90%;
        max-width: 350px;
    }
}

/* ========================================
   STRIPE CHECKOUT STYLES
   ======================================== */

.stripe-checkout-info {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.stripe-checkout-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.payment-methods > span {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.payment-icons img {
    height: 24px;
    width: auto;
    border-radius: 4px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.payment-icons img:hover {
    opacity: 1;
}

/* Legacy - mantenuto per compatibilità */
.stripe-error {
    font-family: 'Inter', sans-serif;
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
}

#stripe-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C9A961 0%, #B89951 100%);
    color: #0a0a0a;
    font-weight: 600;
    transition: all 0.3s ease;
}

#stripe-checkout-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, #C9A961 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,169,97,0.3);
}

#stripe-checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Optimizations for Stripe */
@media (max-width: 768px) {
    .stripe-checkout-info {
        padding: 1rem;
        margin: 1rem 0;
    }

    .stripe-checkout-info p {
        font-size: 0.85rem;
    }

    .payment-methods {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .payment-icons img {
        height: 22px;
    }
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #1a1a1a, #0d0d0d);
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    padding: 1.5rem 2rem;
    z-index: 99999;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #C9A961;
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #C9A961;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cookie-banner-text a:hover {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: #C9A961;
    color: #0a0a0a;
}

.cookie-btn-primary:hover {
    background: #d4b872;
    transform: translateY(-2px);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-btn-outline {
    background: transparent;
    color: #C9A961;
    border: 1px solid #C9A961;
}

.cookie-btn-outline:hover {
    background: rgba(201, 169, 97, 0.1);
}

/* Cookie Customize Modal */
#cookie-customize-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#cookie-customize-modal.show {
    opacity: 1;
}

.cookie-modal-content {
    background: #1a1a1a;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #C9A961;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.cookie-modal-close:hover {
    color: #fff;
}

.cookie-category {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-required-badge {
    font-size: 0.7rem;
    font-weight: 500;
    background: rgba(201, 169, 97, 0.2);
    color: #C9A961;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.cookie-category p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 0.3rem;
}

.cookie-category-examples {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #C9A961;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(20px);
}

.cookie-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    #cookie-banner {
        padding: 1.2rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-banner-text h3 {
        font-size: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }

    .cookie-banner-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .cookie-modal-content {
        max-height: 90vh;
    }

    .cookie-category {
        padding: 1rem;
    }
}

/* ================================================
   LANGUAGE SWITCHER - Selettore Lingua
   ================================================ */

.language-switcher {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.lang-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #C9A961;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lang-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

.current-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.lang-toggle svg,
.current-flag svg {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

.lang-options {
    position: absolute;
    bottom: 60px;
    left: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    min-width: 80px;
}

.language-switcher.open .lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-option svg {
    width: 24px;
    height: 24px;
    border-radius: 3px;
    flex-shrink: 0;
}

.lang-option:hover {
    background: rgba(201, 169, 97, 0.15);
}

.lang-option.active {
    background: rgba(201, 169, 97, 0.25);
    color: #C9A961;
}

.lang-option span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .language-switcher {
        bottom: 90px;
        left: 15px;
    }

    .lang-toggle {
        width: 45px;
        height: 45px;
    }

    .lang-toggle svg,
    .current-flag svg {
        width: 24px;
        height: 24px;
    }

    .lang-options {
        bottom: 55px;
    }

    .lang-option {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .lang-option svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   MODALE DETTAGLIO PRODOTTO
   ======================================== */
.product-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.product-modal-overlay.active {
    display: flex;
}

.product-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.product-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.3s ease;
}

.product-modal-close:hover {
    background: rgba(201, 169, 97, 0.3);
    border-color: #C9A961;
}

.product-modal img {
    width: 100%;
    object-fit: contain;
    background: #000;
    border-radius: 15px 15px 0 0;
}

.product-modal-info {
    padding: 1.5rem;
}

.product-modal-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.product-modal-info .description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: block !important;
}

.product-modal-info .price {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    color: #C9A961;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-modal-info .btn-add-cart {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* ========================================
   TRACKING SPEDIZIONE - Pagina Traccia Ordine
   ======================================== */
.tracking-section {
    margin: 1.5rem 0;
}

.tracking-box {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(201,169,97,0.1) 0%, rgba(201,169,97,0.05) 100%);
    border: 1px solid rgba(201,169,97,0.3);
    border-radius: 12px;
}

.tracking-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tracking-info h3 {
    color: #C9A961;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    font-family: 'Inter', sans-serif;
}

.tracking-code {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    font-family: monospace;
    margin-bottom: 0.3rem;
}

.tracking-hint {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .tracking-box {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .tracking-code {
        font-size: 1.1rem;
        word-break: break-all;
    }
}

/* ========================================
   TRACKING - Pagina My Orders
   ======================================== */
.order-tracking-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.8rem;
    padding: 0.7rem 1rem;
    background: rgba(201,169,97,0.08);
    border: 1px solid rgba(201,169,97,0.2);
    border-radius: 8px;
}

.order-tracking-icon {
    font-size: 1.3rem;
}

.order-tracking-code {
    font-weight: 700;
    color: #C9A961;
    font-family: monospace;
    letter-spacing: 0.5px;
    margin-left: 0.3rem;
}

/* ========================================
   PULSANTE SPEDISCI - Admin
   ======================================== */
.btn-quick-ship {
    background: rgba(156,39,176,0.2) !important;
    border-color: rgba(156,39,176,0.4) !important;
    color: #CE93D8 !important;
}

.btn-quick-ship:hover {
    background: rgba(156,39,176,0.35) !important;
}

.btn-quick-ship-confirm {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2) !important;
    color: white !important;
    border: none !important;
}
