.gsi-material-button-icon-small{
    height: 20px;
    margin-right: 0px;
    min-width: 20px;
    width: 20px;
}

.module-header {
    margin-bottom: 20px;
}
.developer {
    font-size: 13px;
    margin-bottom: 30px;
}
.developer a {
    font-weight: normal;
}
.info-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 25px;
}
.card {
    border: 1px solid #ddd;
    padding: 12px 18px;
    font-size: 13px;
    color: #555;
    min-width: 90px;
    text-align: center;
}

/* Mobile view */
@media (max-width: 768px) {
    .info-cards {
        flex-direction: column; /* stack vertically */
    }
    .card {
        width: 100%; /* take full width */
    }
}

.card strong {
    display: block;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 3px;
    color: #111;
}
.card.icon {
    background: #39a9e1;
    padding: 20px 18px;
    color: white;
    min-width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card.icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}
.description {
    font-size: 1rem;
    font-weight: 500;
    max-width: 95%;
    margin-bottom: 50px;
    color: #222;
}

/* Right side pricing box */
.pricing-box {
    border: 1px solid #ddd;
    /*max-width: 300px;*/
    padding: 20px 25px;
    font-size: 14px;
    color: #222;
}
.price {
    font-weight: 900;
    font-size: 18px;
}
.price small {
    font-weight: normal;
    font-size: 12px;
    color: #555;
}
.monthly {
    margin-top: 6px;
    font-size: 12px;
    color: #555;
    line-height: 1.3;
}
.monthly a {
    color: #0066cc;
}
.monthly a:hover {
    text-decoration: underline;
}
.add-to-cart {
    background: #111;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 0;
    width: 100%;
    cursor: pointer;
    margin: 20px 0 10px 0;
    border-radius: 0;
    overflow: clip;
}

.product-button-second {
    background: white;
    color: #111 !important;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 0;
    width: 100%;
    cursor: pointer;
    margin: 20px 0 10px 0;
    border-radius: 0;
    border: 3px black solid;
    overflow: clip;
}
.favorite-btn {
    border: 1px solid #111;
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 12px;
    vertical-align: middle;
}
.favorite-btn svg {
    fill: #111;
    width: 18px;
    height: 18px;
}
.rating {
    font-size: 14px;
    color: #222;
    margin-bottom: 16px;
}
.rating span {
    font-weight: 900;
    color: #f5a623;
    margin-left: 6px;
    vertical-align: middle;
}
.rating small {
    color: #666;
    font-weight: normal;
    margin-left: 6px;
}
.demo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #222;
    cursor: pointer;
}
.demo svg {
    width: 16px;
    height: 16px;
    fill: #222;
}
.included {
    font-size: 13px;
    color: #222;
    margin-top: 30px;
}
.included strong {
    font-weight: 700;
}
.included ul {
    padding-left: 0px;
    margin-top: 8px;
}
.included li {
    margin-bottom: 8px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #222;
    font-weight: 600;
    font-size: 13px;
}
.included li svg {
    width: 14px;
    height: 14px;
    fill: #3c9a35;
}

.product-cart{
    text-align: left;
}

/* Main Slider */
.slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 20px;
}
.slider::-webkit-scrollbar {
    display: none;
}
.slide {
    flex: 0 0 auto;
    cursor: pointer;
    position: relative;
}
.slide img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}
.slide:hover img {
    transform: scale(1.05);
}

/* Lightbox Gallery */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}
.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}
.lightbox img {
    max-width: 90%;
    max-height: 80%;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
    user-select: none;
}
.img-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    z-index: 10;
}
.img-nav.prev { left: 20px; }
.img-nav.next { right: 20px; }

/* Thumbnails in lightbox */
.thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 15px;
    background: rgba(255,255,255,0.8);
    z-index: 1;
}
.thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.thumbs img.active {
    border-color: #333;
}


.address-box {
    position: relative;
    margin-top: 30px;
    margin-bottom: 10px;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    word-break: break-all;
    border-radius: 6px;
    font-weight: 700;
}

.copy-btn {
    font-size: 14px;
    padding: 4px 8px;
    background: white;
    cursor: pointer;
    border-radius:  10px;
    margin-left: 10px;
    margin-top: 3px;
}

.copy-btn:hover {
    background: #e0e0e0;
}

/* Tooltip */
.tooltip {
    position: absolute;
    right: 25px;
    bottom: 25px;
    background: rgba(51, 51, 51, 0.68);
    color: #fff;
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.tooltip.show {
    opacity: 1;
}
