
/* ===================================
   COOKIE CONSENT STYLES - ORBIS.EXMACHINA
   =================================== */

:root {
    --primary-color: #3B444B;
    --bg-dark: #0a0a0a;
    --bg-card: #0d0d12;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --border: rgba(59, 68, 75, 0.2);
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 600px;
    background: linear-gradient(135deg, rgba(13, 13, 18, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    
    backdrop-filter: blur(20px);
    z-index: 9999;
    padding: 2rem;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.cookie-consent.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-icon {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cookie-text {
    text-align: center;
}

.cookie-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cookie-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
}

.cookie-btn i {
    font-size: 1rem;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 20px rgba(59, 68, 75, 0.3);
}

.cookie-btn-accept:hover {
    background: #4a5562;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.5);
}

.cookie-btn-decline {
    background: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border: 2px solid rgba(244, 67, 54, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(244, 67, 54, 0.2);
    border-color: #F44336;
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: rgba(59, 68, 75, 0.15);
    color: var(--primary-color);
    border: 2px solid rgba(59, 68, 75, 0.3);
}

.cookie-btn-settings:hover {
    background: rgba(59, 68, 75, 0.25);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

.cookie-settings-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
}

.cookie-modal-container {
    position: relative;
    background: linear-gradient(135deg, #0d0d12 0%, #0a0a0a 100%);
    border: 1px solid rgba(59, 68, 75, 0.3);
    border-radius: 30px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

/* Custom Scrollbar */
.cookie-modal-container::-webkit-scrollbar {
    width: 8px;
}

.cookie-modal-container::-webkit-scrollbar-track {
    background: rgba(59, 68, 75, 0.1);
    border-radius: 10px;
}

.cookie-modal-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.cookie-modal-container::-webkit-scrollbar-thumb:hover {
    background: #4a5562;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cookie-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(59, 68, 75, 0.15);
    border: 1px solid rgba(59, 68, 75, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.cookie-modal-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

.cookie-modal-close i {
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.cookie-modal-close:hover i {
    color: #fff;
}

.cookie-modal-header {
    text-align: center;
    padding: 3rem 2rem 2rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #495660 100%);
    color: #fff;
    border-radius: 30px 30px 0 0;
    position: relative;
    overflow: hidden;
}

.cookie-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.03) 20px,
        rgba(255, 255, 255, 0.03) 40px
    );
    animation: pattern-move 30s linear infinite;
}

@keyframes pattern-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(40px); }
}

.cookie-modal-header i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
    position: relative;
    z-index: 1;
}

.cookie-modal-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.cookie-modal-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cookie-modal-body {
    padding: 2rem;
}

/* Cookie Categories */
.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(59, 68, 75, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(59, 68, 75, 0.2);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    background: rgba(59, 68, 75, 0.08);
    box-shadow: 0 5px 20px rgba(59, 68, 75, 0.2);
    border-color: rgba(59, 68, 75, 0.3);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    letter-spacing: 1px;
}

.cookie-category-info h3 i {
    font-size: 1.3rem;
}

.cookie-category-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.cookie-examples {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(59, 68, 75, 0.15);
}

.cookie-examples strong {
    color: var(--primary-color);
    font-style: normal;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 68, 75, 0.3);
    border: 1px solid rgba(59, 68, 75, 0.4);
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background: #fff;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

input:checked + .toggle-slider {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

input:focus + .toggle-slider {
    box-shadow: 0 0 0 3px rgba(59, 68, 75, 0.2);
}

.toggle-disabled {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Modal Footer */
.cookie-modal-footer {
    padding: 1.5rem 2rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(59, 68, 75, 0.2);
}

.cookie-btn-save {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 20px rgba(59, 68, 75, 0.3);
}

.cookie-btn-save:hover {
    background: #4a5562;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.5);
}

.cookie-privacy-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cookie-privacy-link:hover {
    opacity: 0.7;
    gap: 0.7rem;
}

.cookie-privacy-link i {
    transition: transform 0.3s ease;
}

.cookie-privacy-link:hover i {
    transform: rotate(360deg);
}

/* Floating Cookie Button */
.floating-cookie-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(59, 68, 75, 0.4);
    transition: all 0.3s ease;
    z-index: 9998;
    display: none;
}

.floating-cookie-btn.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 0.5s ease;
}

.floating-cookie-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.6);
    background: #4a5562;
}

.floating-cookie-btn i {
    animation: wiggle 2s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }

    .cookie-title {
        font-size: 1.7rem;
        letter-spacing: 3px;
    }

    .cookie-description {
        font-size: 0.85rem;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-modal-container {
        width: 95%;
    }

    .cookie-modal-header {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }

    .cookie-modal-header h2 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .cookie-modal-body {
        padding: 1.5rem;
    }

    .cookie-category-header {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-modal-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .floating-cookie-btn {
        bottom: 1rem;
        left: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cookie-icon {
        font-size: 2.5rem;
    }

    .cookie-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .cookie-modal-close {
        width: 40px;
        height: 40px;
        top: 1rem;
        right: 1rem;
    }

    .cookie-modal-header i {
        font-size: 2.5rem;
    }

    .cookie-modal-header h2 {
        font-size: 1.8rem;
    }

    .cookie-category {
        padding: 1rem;
    }

    .cookie-category-info h3 {
        font-size: 1rem;
    }

    .cookie-category-info p {
        font-size: 0.85rem;
    }
}

/* Dark Mode Native Optimization */
@media (prefers-color-scheme: dark) {
    .cookie-consent {
        background: linear-gradient(135deg, rgba(13, 13, 18, 0.99) 0%, rgba(10, 10, 10, 0.99) 100%);
    }

    .cookie-modal-container {
        background: linear-gradient(135deg, #0d0d12 0%, #0a0a0a 100%);
    }
}

/* Accessibility */
.cookie-btn:focus,
.toggle-slider:focus,
.cookie-modal-close:focus,
.floating-cookie-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .cookie-consent,
    .cookie-settings-modal,
    .floating-cookie-btn {
        display: none !important;
    }
}


/* Floating Cookie Button */
.floating-cookie-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(59, 68, 75, 0.3);
    transition: all 0.3s ease;
    z-index: 9998;
    display: none;
}

.floating-cookie-btn.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 0.5s ease;
}

.floating-cookie-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(59, 68, 75, 0.4);
}

.floating-cookie-btn i {
    animation: wiggle 2s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .floating-cookie-btn {
        bottom: 1rem;
        left: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}


/* ============================================
   SHIPPING INFO BANNER
   ============================================ */

.shipping-info-banner {
    padding: 5rem 2rem;
  
}

.shipping-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.shipping-header {
    margin-bottom: 3rem;
}

.shipping-header i {
    font-size: 3rem;
    color: #3B444B;
    margin-bottom: 1rem;
}

.shipping-header h3 {
   
    color: #fff;
}

.shipping-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.shipping-item {
    padding: 2rem;
    background: rgba(59, 68, 75, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(59, 68, 75, 0.2);
    transition: all 0.3s ease;
}

.shipping-item:hover {
    background: rgba(59, 68, 75, 0.15);
    border-color: rgba(59, 68, 75, 0.4);
    transform: translateY(-5px);
}

.shipping-item i {
    font-size: 2rem;
    color: #3B444B;
    margin-bottom: 1rem;
}

.shipping-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-info-box {
    padding: 2rem;
   
    border-radius: 20px;
   
}

.contact-note {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: rgba(59, 68, 75, 0.2);
    border: 2px solid #3B444B;
    border-radius: 30px;
    color: #3B444B;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: rgba(59, 68, 75, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 68, 75, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .print-note {
        flex-direction: column;
        text-align: center;
    }
    
    .shipping-header h3 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .shipping-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .shipping-item {
        padding: 1.5rem;
    }
    
    .contact-email {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
}

@media (max-width: 480px) {
    .shipping-info-banner {
        padding: 3rem 1rem;
    }
    
    .shipping-header i {
        font-size: 2.5rem;
    }
    
    .shipping-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-email {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

