/* ============================================
   SAKO (PRE-ORDER) PAGE - COMPLETE STYLES
   ============================================ */

/* ============================================
   GALLERY SECTION
   ============================================ */
.sako-gallery {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

.gallery-header {
    margin-bottom: 40px;
}

.gallery-tag {
    display: inline-block;
    background: #1a237e;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2332;
}

.gallery-title span {
    color: #28a745;
}

.gallery-desc {
    color: #6c7a8a;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 10px auto 0;
}

/* ============================================
   FILTER BUTTONS
   ============================================ */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 80px;
    background: transparent;
    color: #4a5568;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #28a745;
    color: #28a745;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #28a745;
    border-color: #28a745;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.filter-btn i {
    margin-right: 8px;
}

/* ============================================
   GALLERY GRID
   ============================================ */
#gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* ============================================
   GALLERY ITEM
   ============================================ */
.gallery-item {
    transition: all 0.3s ease;
}

.gallery-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ============================================
   GALLERY IMAGE
   ============================================ */
 .gallery-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #fafbfc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.gallery-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.05);
}

/* ============================================
   GALLERY OVERLAY
   ============================================ */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(3px);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* ============================================
   GALLERY BUTTONS
   ============================================ */
.gallery-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.gallery-card:hover .gallery-btn {
    transform: translateY(0);
    opacity: 1;
}

.gallery-btn:nth-child(2) { 
    transition-delay: 0.1s; 
}

.gallery-btn.quick-view {
    background: #ffffff;
    color: #1a2332;
}

.gallery-btn.quick-view:hover {
    background: #28a745;
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
}

.inquire-btn {
    background: #28a745;
    color: #ffffff;
    border-radius: 80px;
}

.inquire-btn:hover {
    background: #1e7e34;
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
}

/* ============================================
   GALLERY INFO
   ============================================ */
.gallery-info {
    padding: 18px 20px 22px;
    text-align: center;
}

.gallery-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 8px;
}

.gallery-specs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.gallery-specs span {
    font-size: 0.8rem;
    color: #6c7a8a;
}

.gallery-specs i {
    color: #28a745;
    margin-right: 4px;
}

.gallery-price {
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 600;
}

.gallery-price i {
    margin-right: 5px;
}

/* ============================================
   NO ITEMS MESSAGE
   ============================================ */
#no-items-message {
    text-align: center;
    padding: 60px 0;
    display: none;
}

#no-items-message i {
    font-size: 3.5rem;
    color: #28a745;
    margin-bottom: 15px;
}

#no-items-message h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 10px;
}

#no-items-message p {
    color: #6c7a8a;
    font-size: 1rem;
}

/* ============================================
   MODAL - QUICK VIEW (WITH SCROLLBAR)
   ============================================ */
#quickViewModal .modal-dialog {
    max-width: 900px;
    margin: 1.75rem auto;
}

#quickViewModal .modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-height: 90vh;
}

#quickViewModal .modal-header {
    border-bottom: 2px solid #f0f2f5;
    padding: 18px 25px;
    background: #fafbfc;
    flex-shrink: 0;
}

#quickViewModal .modal-header .modal-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a2332;
}

#quickViewModal .modal-header .modal-title i {
    margin-right: 10px;
    color: #28a745;
}

#quickViewModal .modal-body {
    padding: 25px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 140px);
}

/* ============================================
   QUICK VIEW SCROLLBAR
   ============================================ */
#quickViewModal .modal-body::-webkit-scrollbar {
    width: 6px;
}

#quickViewModal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#quickViewModal .modal-body::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 10px;
    transition: background 0.3s ease;
}

#quickViewModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #1e7e34;
}

#quickViewModal .modal-body {
    scrollbar-width: thin;
    scrollbar-color: #28a745 #f1f1f1;
}

/* ============================================
   MODAL - INQUIRE (WITH SCROLLBAR)
   ============================================ */
#inquireModal .modal-dialog {
    max-width: 600px;
    margin: 1.75rem auto;
}

#inquireModal .modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-height: 90vh;
}

#inquireModal .modal-header {
    border-bottom: 2px solid #f0f2f5;
    padding: 16px 24px;
    background: #fafbfc;
    flex-shrink: 0;
}

#inquireModal .modal-header .modal-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1a2332;
}

#inquireModal .modal-header .modal-title i {
    margin-right: 10px;
    color: #28a745;
}

#inquireModal .modal-body {
    padding: 20px 24px 24px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 120px);
}

/* ============================================
   INQUIRE SCROLLBAR
   ============================================ */
#inquireModal .modal-body::-webkit-scrollbar {
    width: 6px;
}

#inquireModal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#inquireModal .modal-body::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 10px;
    transition: background 0.3s ease;
}

#inquireModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #1e7e34;
}

#inquireModal .modal-body {
    scrollbar-width: thin;
    scrollbar-color: #28a745 #f1f1f1;
}

/* ============================================
   MODAL PRODUCT IMAGE (Quick View)
   ============================================ */
.modal-product-image {
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    border: 1px solid #e9ecef;
}

.modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 400px;
    padding: 20px;
}

/* ============================================
   MODAL PRODUCT INFO (Quick View)
   ============================================ */
.modal-product-info {
    padding: 5px 0;
}

.modal-category {
    display: inline-block;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.modal-product-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 10px;
}

.modal-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 2px;
    margin-bottom: 18px;
}

/* ============================================
   MODAL SPECS (Quick View)
   ============================================ */
.modal-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.spec-item i {
    color: #28a745;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.spec-item span {
    font-size: 0.95rem;
    color: #4a5a6a;
}

.spec-item strong {
    color: #1a2332;
}

/* ============================================
   MODAL DESCRIPTION (Quick View)
   ============================================ */
.modal-description {
    margin-bottom: 20px;
    background: #f8fafc;
    padding: 15px 18px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.modal-description p {
    color: #4a5a6a;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   MODAL ACTIONS (Quick View)
   ============================================ */
.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-inquire-modal {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-inquire-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
    color: #ffffff;
}

.btn-contact-modal {
    background: transparent;
    color: #28a745;
    border: 2px solid #28a745;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-contact-modal:hover {
    background: #28a745;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================
   INQUIRE PRODUCT PREVIEW
   ============================================ */
.inquire-product-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 18px;
    border: 1px solid #e9ecef;
}

.product-preview-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
}

.product-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.product-preview-info {
    flex: 1;
    min-width: 0;
}

.product-preview-info h6 {
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 2px;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-preview-info .badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 600;
}

/* Styling para sa dynamic badges/tags */
.gallery-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.badge-tag {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-heavy {
    background-color: #ffe8e8;
    color: #c92a2a;
}

.badge-app {
    background-color: #e3faf2;
    color: #0ca678;
}

/* Styling para sa Color Preview Circle indicators */
.color-preview-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.color-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.color-dots {
    display: flex;
    gap: 4px;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #dee2e6;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

/* Mga Kulay (Maaari mong baguhin depende sa actual colors ng inyong sako) */
.color-white { background-color: #ffffff; }
.color-yellow { background-color: #fcc419; }
.color-blue { background-color: #228be6; }
.color-green { background-color: #40c057; }
.color-pink { background-color: #f8a4b8; }
.color-red { background-color: #e74c3c; }
.color-orange { background-color: #fd7e14; }
.color-violet { background-color: #9b59b6; }
.color-purple { background-color: #9b59b6; }
.color-brown { background-color: #716775; }
.color-gray { background-color: #6c757d; }

/* ============================================
   INQUIRE FORM FIELDS
   ============================================ */
#inquireModal .form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 9px 14px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: #ffffff;
    width: 100%;
    height: 42px;
}

#inquireModal textarea.form-control {
    height: auto;
    resize: vertical;
    min-height: 80px;
}

#inquireModal .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
    outline: none;
}

#inquireModal .form-control::placeholder {
    color: #adb5bd;
    font-size: 0.85rem;
}

#inquireModal .row.g-2 {
    --bs-gutter-y: 8px;
}

/* ============================================
   INQUIRE SUBMIT BUTTON
   ============================================ */
#inquireModal .btn-premium {
    background: linear-gradient(145deg, #40a836, #5dcf78);
    color: #ffffff;
    border: none;
    padding: 9px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

#inquireModal .btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.3);
    color: #ffffff;
}

#inquireModal .btn-premium:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
#successToast {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 991.98px) {
    #gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    #quickViewModal .modal-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }
    
    #quickViewModal .modal-body {
        padding: 20px;
        max-height: calc(90vh - 130px);
    }
    
    #inquireModal .modal-dialog {
        max-width: 90%;
    }
    
    #inquireModal .modal-body {
        padding: 16px 20px 20px;
        max-height: calc(90vh - 110px);
    }
    
    .modal-product-image {
        min-height: 200px;
    }
    
    .modal-product-image img {
        max-height: 300px;
    }
    
    .modal-product-info h3 {
        font-size: 1.4rem;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767.98px) {
    #gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    #quickViewModal .modal-dialog {
        margin: 0.5rem auto;
        max-width: 98%;
    }
    
    #quickViewModal .modal-body {
        padding: 16px;
        max-height: calc(90vh - 120px);
    }
    
    #quickViewModal .modal-header {
        padding: 14px 18px;
    }
    
    #quickViewModal .modal-header .modal-title {
        font-size: 1rem;
    }
    
    #inquireModal .modal-dialog {
        margin: 0.5rem auto;
        max-width: 98%;
    }
    
    #inquireModal .modal-body {
        padding: 14px 16px 16px;
        max-height: calc(90vh - 100px);
    }
    
    #inquireModal .modal-header {
        padding: 12px 16px;
    }
    
    .modal-product-image {
        min-height: 180px;
    }
    
    .modal-product-image img {
        max-height: 250px;
        padding: 15px;
    }
    
    .modal-product-info h3 {
        font-size: 1.2rem;
        margin-top: 15px;
    }
    
    .modal-specs {
        gap: 8px;
    }
    
    .spec-item {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .modal-description {
        padding: 12px 14px;
    }
    
    .modal-description p {
        font-size: 0.85rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .btn-inquire-modal,
    .btn-contact-modal {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
    
    .inquire-product-preview {
        padding: 10px 12px;
        gap: 12px;
    }
    
    .product-preview-image {
        width: 60px;
        height: 60px;
    }
    
    #inquireModal .form-control {
        font-size: 0.8rem;
        padding: 8px 12px;
        height: 38px;
    }
    
    #inquireModal .btn-premium {
        width: 100%;
        justify-content: center;
        font-size: 0.8rem;
        padding: 8px 20px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 575.98px) {
    #gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
    
    .gallery-desc {
        font-size: 0.9rem;
    }
    
    .filter-btn {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    
    .gallery-info {
        padding: 12px 14px 16px;
    }
    
    .gallery-info h5 {
        font-size: 0.85rem;
    }
    
    .gallery-specs span {
        font-size: 0.7rem;
    }
    
    .gallery-specs {
        gap: 8px;
    }
    
    .gallery-price {
        font-size: 0.75rem;
    }
    
    #quickViewModal .modal-body {
        padding: 12px;
        max-height: calc(90vh - 110px);
    }
    
    #quickViewModal .modal-header {
        padding: 10px 14px;
    }
    
    #quickViewModal .modal-header .modal-title {
        font-size: 0.9rem;
    }
    
    #inquireModal .modal-body {
        padding: 12px 14px 14px;
        max-height: calc(90vh - 90px);
    }
    
    #inquireModal .modal-header {
        padding: 10px 14px;
    }
    
    #inquireModal .modal-header .modal-title {
        font-size: 0.9rem;
    }
    
    .modal-product-image {
        min-height: 150px;
    }
    
    .modal-product-image img {
        max-height: 200px;
        padding: 10px;
    }
    
    .modal-product-info h3 {
        font-size: 1.1rem;
    }
    
    .spec-item {
        padding: 6px 10px;
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .spec-item i {
        font-size: 0.85rem;
        width: 16px;
    }
    
    .modal-description {
        padding: 10px 12px;
    }
    
    .modal-description p {
        font-size: 0.8rem;
    }
    
    .btn-inquire-modal,
    .btn-contact-modal {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .product-preview-image {
        width: 50px;
        height: 50px;
    }
    
    .product-preview-info h6 {
        font-size: 0.85rem;
    }
    
    #inquireModal .form-control {
        font-size: 0.75rem;
        padding: 6px 10px;
        height: 36px;
    }
    
    #inquireModal .btn-premium {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}

/* ============================================
   MODAL FULLSCREEN ON VERY SMALL
   ============================================ */
@media (max-width: 480px) {
    #quickViewModal .modal-dialog {
        margin: 0;
        max-width: 100%;
    }
    
    #quickViewModal .modal-content {
        border-radius: 0;
        max-height: 100vh;
        min-height: 100vh;
    }
    
    #quickViewModal .modal-header {
        border-radius: 0;
        padding: 12px 16px;
    }
    
    #quickViewModal .modal-body {
        max-height: calc(100vh - 120px);
        padding: 12px 16px;
    }
    
    #inquireModal .modal-dialog {
        margin: 0;
        max-width: 100%;
    }
    
    #inquireModal .modal-content {
        border-radius: 0;
        max-height: 100vh;
        min-height: 100vh;
    }
    
    #inquireModal .modal-header {
        border-radius: 0;
        padding: 12px 16px;
    }
    
    #inquireModal .modal-body {
        max-height: calc(100vh - 100px);
        padding: 12px 16px;
    }
    
    .modal-product-image {
        min-height: 120px;
    }
    
    .modal-product-image img {
        max-height: 180px;
        padding: 10px;
    }
    
    #gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* ============================================
   SCROLLBAR STYLING FOR TOUCH DEVICES
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    #quickViewModal .modal-body::-webkit-scrollbar,
    #inquireModal .modal-body::-webkit-scrollbar {
        width: 4px;
    }
    
    #quickViewModal .modal-body::-webkit-scrollbar-thumb,
    #inquireModal .modal-body::-webkit-scrollbar-thumb {
        background: #28a745;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    #quickViewModal .modal-body,
    #inquireModal .modal-body {
        scroll-behavior: auto;
    }
    
    .gallery-card,
    .gallery-image img,
    .gallery-overlay,
    .gallery-btn,
    .filter-btn {
        transition: none !important;
        transform: none !important;
    }
    
    .gallery-card:hover {
        transform: none !important;
    }
    
    .gallery-card:hover .gallery-image img {
        transform: none !important;
    }
}

/* ============================================
   TOUCH DEVICES
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    .gallery-overlay {
        opacity: 0;
    }
    
    .gallery-card:active .gallery-overlay {
        opacity: 1;
    }
    
    .gallery-card:active .gallery-btn {
        transform: translateY(0);
        opacity: 1;
    }
}