.elementor-kit-8{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-36e77ba:#F69045;--e-global-color-ce2302d:#FF6C002E;--e-global-color-5cbf110:#33B1B961;--e-global-color-c518d0b:#33B1B921;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ===== OTTART GALLERY - 4 COLUMNS ===== */
.ottart-gallery {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
    padding: 40px 20px !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
}

@media (max-width: 1024px) {
    .ottart-gallery {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .ottart-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 20px 15px !important;
    }
}

@media (max-width: 480px) {
    .ottart-gallery {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

.ottart-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.ottart-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.ottart-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.ottart-card-info {
    padding: 12px;
    text-align: center;
}

.ottart-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}

.ottart-card-size {
    font-size: 0.75rem;
    color: #666;
}

/* ===== ROOM VIEW - FULL SCREEN BACKGROUND ===== */
#ottartRoomView {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    z-index: 999999;
    align-items: center;
    justify-content: center;
}

#ottartRoomView.show {
    display: flex !important;
}

#ottartRoomView .ottart-room-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    overflow: hidden;
}

/* ===== BACKGROUND - FULL SCREEN ===== */
#ottartRoomView .ottart-room-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* ===== ARTWORK ===== */
#ottartRoomView .ottart-room-artwork {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    max-width: 30%;
    max-height: 50%;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border-radius: 4px;
    cursor: grab;
    user-select: none;
}

#ottartRoomView .ottart-room-artwork:active {
    cursor: grabbing;
}

/* ===== MOBILE - BIGGER PAINTING ===== */
@media (max-width: 768px) {
    #ottartRoomView .ottart-room-artwork {
        max-width: 70% !important;
        max-height: 55% !important;
    }
}

@media (max-width: 480px) {
    #ottartRoomView .ottart-room-artwork {
        max-width: 80% !important;
        max-height: 50% !important;
    }
}

/* ===== CLOSE BUTTON ===== */
#ottartRoomView .ottart-room-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

#ottartRoomView .ottart-room-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg) scale(1.1);
}

/* ===== CONTENT ===== */
#ottartRoomView .ottart-room-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    pointer-events: none;
}

#ottartRoomView .ottart-room-content * {
    pointer-events: auto;
}

/* ===== WHATSAPP BUTTON - ORANGE ===== */
#ottartRoomView .ottart-room-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    color: #fff;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08);
}

#ottartRoomView .ottart-room-title {
    font-size: 1rem;
    font-weight: 600;
}

#ottartRoomView .ottart-room-size {
    font-size: 0.8rem;
    opacity: 0.7;
}

#ottartRoomView .ottart-room-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: #FF6B00;    /* ORANGE */
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: 0.3s;
    border: none;
}

#ottartRoomView .ottart-room-wa:hover {
    background: #E55A00;    /* DARKER ORANGE */
    transform: scale(1.03);
}

/* ===== BOTTOM ROW: ZOOM + BUTTONS ===== */
#ottartRoomView .ottart-room-bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.06);
}

/* ===== ZOOM SLIDER ===== */
#ottartRoomView .ottart-zoom-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

#ottartRoomView .zoom-label {
    color: #fff;
    font-size: 14px;
    opacity: 0.6;
    font-weight: 300;
}

#ottartRoomView #zoomSlider {
    width: 80px;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.25);
    border-radius: 4px;
    outline: none;
}

#ottartRoomView #zoomSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #25D366;
    cursor: pointer;
    border: 2px solid #fff;
}

#ottartRoomView #zoomSlider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #25D366;
    cursor: pointer;
    border: 2px solid #fff;
}

/* ===== ROOM BUTTONS - ORANGE ===== */
#ottartRoomView .ottart-room-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
}

#ottartRoomView .ottart-bg-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    padding: 4px 12px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 400;
    transition: 0.3s;
}

#ottartRoomView .ottart-bg-btn:hover {
    background: rgba(255,107,0,0.2);   /* ORANGE HOVER */
    color: #fff;
}

#ottartRoomView .ottart-bg-btn.active {
    background: #FF6B00;     /* ORANGE ACTIVE */
    border-color: #FF6B00;
    color: #fff;
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
    #ottartRoomView .ottart-room-bottom-row {
        padding: 4px 12px;
        gap: 10px;
        border-radius: 30px;
    }
    #ottartRoomView #zoomSlider {
        width: 60px;
    }
    #ottartRoomView .ottart-room-info {
        padding: 6px 14px;
        gap: 8px;
        border-radius: 40px;
    }
    #ottartRoomView .ottart-room-title {
        font-size: 0.85rem;
    }
    #ottartRoomView .ottart-room-size {
        font-size: 0.7rem;
    }
    #ottartRoomView .ottart-room-wa {
        padding: 3px 10px;
        font-size: 0.65rem;
    }
    #ottartRoomView .ottart-room-close {
        top: 14px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    #ottartRoomView .zoom-label {
        font-size: 12px;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    #ottartRoomView .ottart-room-bottom-row {
        padding: 4px 8px;
        gap: 6px;
        border-radius: 30px;
    }
    #ottartRoomView #zoomSlider {
        width: 50px;
    }
    #ottartRoomView .ottart-room-info {
        padding: 4px 10px;
        gap: 6px;
        border-radius: 30px;
    }
    #ottartRoomView .ottart-room-title {
        font-size: 0.75rem;
    }
    #ottartRoomView .ottart-room-size {
        font-size: 0.6rem;
    }
    #ottartRoomView .ottart-room-wa {
        padding: 2px 8px;
        font-size: 0.6rem;
    }
    #ottartRoomView .ottart-room-close {
        top: 10px;
        right: 12px;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    #ottartRoomView .zoom-label {
        font-size: 10px;
    }
}/* End custom CSS */