/*
Theme Name: BelseMerch Theme
Theme URI: https://belsemerch.com
Author: DigitalPark Media
Author URI: https://www.linkedin.com/company/digitalpark-media
Description: Tema personalizado para BelseMerch - Merchandising Corporativo
Version: 1.6
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: digitalpark-merch-theme
*/

.swiper-pagination {
    display: none;
}

.dpark-menu-desktop ul {
    display: flex;
    column-gap: 2.2rem;
}

.dpark-menu-mobile ul li {
   padding-top: 1rem; 
   padding-left: 1rem;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: white;
}
.top-bar {
    background-color: #030304;
}
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}
.accent-color {
    color: #BA9E81;
}
.accent-bg {
    background-color: #BA9E81;
}
.accent-border {
    border-color: #BA9E81;
}
.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
}
.separator {
    color: #BA9E81;
    text-align: center;
    font-weight: bold;
    margin-bottom: 1rem;
}
.btn-primary {
    background-color: #333;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: background-color 0.3s;
}
.btn-primary:hover {
    background-color: #BA9E81;
}
.swiper-button-next, .swiper-button-prev {
    color: #333;
    --swiper-navigation-size: 22px;
}
.swiper-pagination-bullet-active {
    background: #BA9E81;
}

/* Team Members Container */
.team-members-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 20px;
}

/* Individual Team Member Card */
.team-member-card {
    border: 1px solid #efeded;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 5px rgba(221, 220, 220, 0.1);
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
}

.team-member-photo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.team-member-details {
    padding: 15px;
}

.team-member-details h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
}

/* WhatsApp Link Styling */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background-color: #57aead;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    color: #fff;
}

.whatsapp-link svg {
    margin-right: 8px; /* Space between icon and text */
}


/* Wordpress Theme */

.wp-block-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.wp-block-separator {
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #efe4c7 !important;
}

.wp-block-image {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* h1 {    font-size: 2rem; } */
h2 {    font-size: 1.2rem !important; }
h3 {    font-size: 1.1rem !important; }
h4 {    font-size: 1rem; }
h5 {    font-size: 0.8rem; }
h6 {    font-size: 0.6rem; }

p {
    font-size: 1rem;
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
}

.wp-block-paragraph {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.wp-block-list {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.wp-block-list li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.wp-block-list li::before {
    content: "\2022";
    color: #BA9E81;
    font-size: 1.2rem;
    display: inline-block;
    width: 1em;
    margin-left: 1em;
    margin-right: 0.5em;
    vertical-align: middle;
}

.wp-block-list li:before {
    content: "\2022";
    color: #BA9E81;
    font-size: 1.2rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
    vertical-align: middle;
}

/* Product Shop Styles */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Card Hover Effects */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Product Image Container */
.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-image-container img {
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}