body {
    font-family: 'SolaimanLipi', Arial, sans-serif !important;
    background-color: #e9e8e8;
    color: #0c0c0c;
    margin: 0;
    padding: 50px;
     -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Standard */
}


img {
    -webkit-user-drag: none; /* Safari */
    -khtml-user-drag: none; /* Konqueror */
    -moz-user-drag: none; /* Firefox */
    -o-user-drag: none; /* Opera */
  
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container a,
.container h1 {
    margin: 10px;
}

@media (min-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }

    .container h1 {
        margin-left: 20px;
    }
}

.warning {
    background-color: #ffe5e5;
    color: #b30000;
    padding: 10px;
    border: 1px solid #ff6666;
    border-radius: 5px;
}

.contact-btn {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

.contact-btn:hover {
    background-color: #45a049;
}

footer {
    background-color: #f4f4f4;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    font-size: 16px;
}

.footer-content a {
    text-decoration: none;
    color: #333;
}

.footer-content span {
    margin: 0 10px;
    color: #666;
}

.highlite {
    background-color: #ffe5e5;
    color: #b30000;
}


.gallery-container {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53, #6a5acd, #4b0082);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-container h1 {
    color: white;
    margin-bottom: 20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-item {
    position: relative;
    flex: 1 1 calc(33.333% - 40px);
    margin: 10px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.gallery-item .description {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    display: none;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .description {
    display: block;
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 100%;
    }

    .gallery-item .description {
        display: block;
        position: relative;
        background: rgba(0, 0, 0, 0.8);
    }
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    text-align: center;
}

.lightbox-content {
    position: relative;
    overflow: hidden;
    max-width: 90%;
    max-height: 80%;
    cursor: grab;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s;
}

.lightbox-description {
    color: white;
    text-align: center;
    padding: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #e6c3c3;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 1001;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 18px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 888;
}

.floating-button:hover {
    background-color: #218838;
}

.floating-button .cart-icon {
    margin-right: 10px;
}