/* =========================================================== */
/* 00. Social Icons Widget
/* =========================================================== */
.dplf-social-icons-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.dplf-social-icons-widget .dplf-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dplf-social-icons--simple .dplf-social-icon {
    background-color: transparent;
}

.dplf-social-icons--simple .dplf-social-icon:hover {
    background-color: transparent !important;
}

.dplf-social-icons--text .dplf-social-icon {
    width: auto !important;
    min-width: 40px;
    padding: 8px 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dplf-social-icons--text .dplf-social-text {
    white-space: nowrap;
}

/*Round Style*/
.dplf-social-icons--round .dplf-social-icon {
    border-radius: 5px;
}

/*Square Style*/
.dplf-social-icons--square .dplf-social-icon {
    border-radius: 0;
}

/*Circle Style*/
.dplf-social-icons--circle .dplf-social-icon {
    border-radius: 100%;
}

/* Branded Colors */
.dplf-social-icons-widget.dplf-social-icons--branded .dplf-social-icon {
    color: #ffffff !important;
}

.dplf-social-icons--branded .dplf-facebook { background-color: #1877f2 !important; }
.dplf-social-icons--branded .dplf-instagram { background-color: #e4405f !important; }
.dplf-social-icons--branded .dplf-twitter { background-color: #1da1f2 !important; }
.dplf-social-icons--branded .dplf-tiktok { background-color: #000000 !important; }
.dplf-social-icons--branded .dplf-youtube { background-color: #ff0000 !important; }
.dplf-social-icons--branded .dplf-linkedin { background-color: #0077b5 !important; }
.dplf-social-icons--branded .dplf-pinterest { background-color: #e60023 !important; }
.dplf-social-icons--branded .dplf-whatsapp { background-color: #25d366 !important; }
.dplf-social-icons--branded .dplf-telegram { background-color: #0088cc !important; }
.dplf-social-icons--branded .dplf-snapchat { background-color: #fffc00 !important; }
.dplf-social-icons--branded .dplf-discord { background-color: #5865f2 !important; }
.dplf-social-icons--branded .dplf-twitch { background-color: #9146ff !important; }
.dplf-social-icons--branded .dplf-reddit { background-color: #ff4500 !important; }
.dplf-social-icons--branded .dplf-vimeo { background-color: #1ab7ea !important; }
.dplf-social-icons--branded .dplf-dribbble { background-color: #ea4c89 !important; }
.dplf-social-icons--branded .dplf-behance { background-color: #1769ff !important; }
.dplf-social-icons--branded .dplf-github { background-color: #333333 !important; }
.dplf-social-icons--branded .dplf-medium { background-color: #000000 !important; }
.dplf-social-icons--branded .dplf-flickr { background-color: #ff0084 !important; }
.dplf-social-icons--branded .dplf-tumblr { background-color: #35465c !important; }
.dplf-social-icons--branded .dplf-weibo { background-color: #e6162d !important; }
.dplf-social-icons--branded .dplf-wechat { background-color: #07c160 !important; }
.dplf-social-icons--branded .dplf-qq { background-color: #12b7f5 !important; }

.dplf-social-icons-widget .dplf-social-icon:hover {
    transform: translateY(-2px);
}

/* Icons Separator */
.dplf-social-icons--separator .dplf-social-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: normal;
    opacity: 0.7;
    user-select: none;
    pointer-events: none;
    line-height: 1;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.dplf-social-icons--simple .dplf-social-separator {
    height: auto;
    align-self: center;
    margin-top: 0;
}

.dplf-social-icons--round .dplf-social-separator,
.dplf-social-icons--square .dplf-social-separator,
.dplf-social-icons--circle .dplf-social-separator {
    align-self: center;
}

.dplf-social-icons--text .dplf-social-separator {
    align-self: center;
    height: auto;
}

/* Responsive styles */
@media (max-width: 768px) {
    .dplf-social-icons-widget {
        justify-content: flex-start;
    }
}

/* =========================================================== */
/* 00. Button Widget
/* =========================================================== */
.dplf-widget-button {
    position: relative;
}

/* Button Types */
.dplf-widget-button.dplf-widget-button-type--outline {
    background-color: transparent;
    border: 1px solid;
}

.dplf-widget-button.dplf-widget-button-type--simple {
    background-color: transparent;
    border: none;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

/* Button Sizes */
.dplf-widget-button.dplf-widget-button-size--small {
    font-size: 12px;
    padding: 5px 15px;
}

.dplf-widget-button.dplf-widget-button-size--medium {
    font-size: 13px;
    padding: 16px 36px;
}

.dplf-widget-button.dplf-widget-button-size--large {
    font-size: 15px;
    padding: 18px 40px;
}

.dplf-widget-button.dplf-widget-button-size--huge {
    font-size: 18px;
    padding: 22px 44px; 
}

.dplf-widget-button.dplf-widget-button-size--small.dplf-widget-button-type--simple,
.dplf-widget-button.dplf-widget-button-size--medium.dplf-widget-button-type--simple,
.dplf-widget-button.dplf-widget-button-size--large.dplf-widget-button-type--simple,
.dplf-widget-button.dplf-widget-button-size--huge.dplf-widget-button-type--simple {
    padding: 0;
}
