/* Content Components Styles */

.ch-content-grid,
.ch-content-columns,
.ch-content-accordion,
.ch-content-tabs,
.ch-content-cards {
    margin-bottom: 50px;
    width: 100%;
}

.ch-content-grid-container,
.ch-content-columns-container,
.ch-content-accordion-container,
.ch-content-tabs-container,
.ch-content-cards-container {
    width: 100%;
}

.ch-content-cards-container,
.ch-content-tabs-container,
.ch-content-accordion-container {
    padding: 40px;
}

.ch-content-grid-header,
.ch-content-columns-header,
.ch-content-accordion-header,
.ch-content-tabs-header,
.ch-content-cards-header {
    margin-bottom: 30px;
    text-align: center;
}

.ch-content-grid-title,
.ch-content-columns-title,
.ch-content-accordion-title,
.ch-content-tabs-title,
.ch-content-cards-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #4b4b4b;
}

.ch-content-grid-description,
.ch-content-columns-description,
.ch-content-accordion-description,
.ch-content-tabs-description,
.ch-content-cards-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: #777;
}

/* Content Grid Styles */
.ch-content-grid-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px;
}

.ch-content-grid-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ch-content-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ch-content-grid-item-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.ch-content-grid-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ch-content-grid-item:hover .ch-content-grid-item-image img {
    transform: scale(1.05);
}

.ch-content-grid-item-content {
    padding: 25px;
}

.ch-content-grid-item-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4b4b4b;
}

.ch-content-grid-item-text {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    margin-bottom: 20px;
}

.ch-content-grid-item-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: #4b4b4b;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ch-content-grid-item-link:hover {
    background-color: #333;
    color: #fff;
}

/* Content Columns Styles */
.ch-content-columns-row {
    display: flex;
    gap: 30px;
    padding: 40px;
}

.ch-content-columns-column {
    flex: 1;
    min-width: 0;
}

.ch-content-columns-column-inner {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.ch-content-columns-column-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ch-content-columns-column-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: #f8f8f8;
    border-radius: 50%;
    font-size: 28px;
    color: #4b4b4b;
}

.ch-content-columns-column-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4b4b4b;
}

.ch-content-columns-column-text {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    margin-bottom: 20px;
}

.ch-content-columns-column-footer {
    margin-top: auto;
}

.ch-content-columns-column-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid #4b4b4b;
    color: #4b4b4b;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ch-content-columns-column-link:hover {
    background-color: #4b4b4b;
    color: #fff;
}

/* Content Accordion Styles */
.ch-content-accordion-items {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.ch-content-accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.ch-content-accordion-item:last-child {
    border-bottom: none;
}

.ch-content-accordion-item-header {
    position: relative;
}

.ch-content-accordion-item-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 25px;
    background-color: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ch-content-accordion-item-button:hover {
    background-color: #f8f8f8;
}

.ch-content-accordion-item-button[aria-expanded="true"] {
    background-color: #f8f8f8;
}

.ch-content-accordion-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #4b4b4b;
}

.ch-content-accordion-item-icon {
    margin-left: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ch-content-accordion-item-button[aria-expanded="true"] .ch-content-accordion-item-icon i {
    transform: rotate(180deg);
}

.ch-content-accordion-item-content {
    padding: 0 25px 25px;
    background-color: #f8f8f8;
}

.ch-content-accordion-item-body {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
}

.ch-content-accordion-item-body p {
    margin-bottom: 15px;
}

.ch-content-accordion-item-link {
    display: inline-block;
    margin-top: 10px;
    color: #4b4b4b;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ch-content-accordion-item-link:hover {
    color: #e73820;
    text-decoration: underline;
}

/* Content Tabs Styles */
.ch-content-tabs-wrapper {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.ch-content-tabs-nav {
    display: flex;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
}

.ch-content-tabs-nav-item {
    flex: 1;
    padding: 15px 20px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #777;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ch-content-tabs-nav-icon {
    margin-right: 8px;
    font-size: 16px;
}

.ch-content-tabs-nav-item:hover {
    color: #4b4b4b;
    background-color: rgba(0, 0, 0, 0.02);
}

.ch-content-tabs-nav-item.active {
    color: #4b4b4b;
    border-bottom-color: #4b4b4b;
    background-color: #fff;
}

.ch-content-tabs-panel {
    padding: 30px;
}

.ch-content-tabs-panel-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4b4b4b;
}

.ch-content-tabs-panel-content {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
}

.ch-content-tabs-panel-text {
    margin-bottom: 20px;
}

.ch-content-tabs-panel-image {
    margin-top: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.ch-content-tabs-panel-image img {
    width: 100%;
    height: auto;
    display: block;
}

.ch-content-tabs-panel-table {
    width: 100%;
    border-collapse: collapse;
}

.ch-content-tabs-panel-table th,
.ch-content-tabs-panel-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.ch-content-tabs-panel-table th {
    font-weight: 600;
    width: 30%;
    background-color: #f8f8f8;
}

.ch-content-tabs-panel-reviews {
    margin-bottom: 20px;
}

.ch-content-tabs-panel-review {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.ch-content-tabs-panel-review:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ch-content-tabs-panel-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ch-content-tabs-panel-review-name {
    font-weight: 600;
    margin-right: 15px;
}

.ch-content-tabs-panel-review-rating {
    color: gold;
    font-size: 14px;
    margin-right: auto;
}

.ch-content-tabs-panel-review-date {
    font-size: 12px;
    color: #777;
}

.ch-content-tabs-panel-shipping {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ch-content-tabs-panel-shipping-item {
    display: flex;
    align-items: flex-start;
}

.ch-content-tabs-panel-shipping-icon {
    width: 40px;
    height: 40px;
    background-color: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #4b4b4b;
    font-size: 16px;
}

.ch-content-tabs-panel-shipping-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.ch-content-tabs-panel-shipping-info p {
    font-size: 14px;
    color: #777;
    margin: 0 0 5px;
}

.ch-content-tabs-panel-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: #4b4b4b;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.ch-content-tabs-panel-button:hover {
    background-color: #333;
    color: #fff;
}

/* Content Cards Styles */
.ch-content-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ch-content-cards-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ch-content-cards-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ch-content-cards-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.ch-content-cards-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ch-content-cards-card:hover .ch-content-cards-card-image img {
    transform: scale(1.05);
}

.ch-content-cards-card-body {
    padding: 25px;
}

.ch-content-cards-card-tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f8f8f8;
    color: #4b4b4b;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
}

.ch-content-cards-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #4b4b4b;
    line-height: 1.3;
}

.ch-content-cards-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    margin-bottom: 20px;
}

.ch-content-cards-card-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ch-content-cards-card-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: #f8f8f8;
    color: #4b4b4b;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ch-content-cards-card-button:hover {
    background-color: #4b4b4b;
    color: #fff;
}

.ch-content-cards-footer {
    margin-top: 40px;
    text-align: center;
}

.ch-content-cards-more {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4b4b4b;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ch-content-cards-more:hover {
    background-color: #333;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .ch-content-grid-items,
    .ch-content-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ch-content-tabs-panel-shipping {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ch-content-grid-title,
    .ch-content-columns-title,
    .ch-content-accordion-title,
    .ch-content-tabs-title,
    .ch-content-cards-title {
        font-size: 24px;
    }

    .ch-content-grid-items,
    .ch-content-cards-grid {
        grid-template-columns: 1fr;
    }

    .ch-content-columns-row {
        flex-direction: column;
    }

    .ch-content-columns-column {
        margin-bottom: 20px;
    }

    .ch-content-tabs-nav {
        flex-wrap: wrap;
    }

    .ch-content-tabs-nav-item {
        flex: 0 0 50%;
        border-bottom: 1px solid #e5e5e5;
    }

    .ch-content-tabs-panel {
        padding: 20px;
    }

    .ch-content-accordion-item-button {
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .ch-content-tabs-nav-item {
        flex: 0 0 100%;
    }

    .ch-content-grid-item-image,
    .ch-content-cards-card-image {
        height: 180px;
    }

    .ch-content-tabs-panel-title,
    .ch-content-grid-item-title,
    .ch-content-columns-column-title,
    .ch-content-cards-card-title {
        font-size: 18px;
    }
} 