/* Product Detail Page Styles */

.product-detail {
    padding: 60px 0;
    background-color: #fff;
}

.product-detail .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    box-sizing: border-box;
}

.product-detail-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-detail-image {
    position: relative;
    width: 100%;
    background-color: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    padding: 0;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
}

.product-detail-image .product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

/* Product Thumbnails */
.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}

.thumbnail-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f8f8f8;
}

.thumbnail-item:hover {
    border-color: #000;
    transform: scale(1.02);
}

.thumbnail-item.active {
    border-color: #000;
    border-width: 3px;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rating-stars {
    color: #FF1493;
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-score {
    font-size: 14px;
    font-weight: 600;
    color: #4D008D;
}

.rating-count-link {
    color: #4D008D;
    text-decoration: underline;
    font-size: 14px;
}

.rating-count-link:hover {
    opacity: 0.7;
}

.product-detail-title {
    font-size: 42px;
    font-weight: 700;
    color: #4D008D;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.product-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #4D008D;
    margin: 5px 0 20px 0;
}

/* Product Options */
.product-options {
    margin: 0 0 20px 0;
}

.option-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #4D008D;
    margin-bottom: 8px;
}

.size-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.size-option {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.size-option:hover {
    border-color: #999;
}

.size-option.active {
    border-color: #000;
    background-color: #f8f8f8;
}

.size-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.size-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.size-name {
    font-size: 18px;
    font-weight: 700;
    color: #4D008D;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.size-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.size-height {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    white-space: nowrap;
}

.size-note {
    font-size: 12px;
    color: #999;
    font-style: italic;
    margin-top: 4px;
}

.size-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.size-tag {
    display: inline-block;
    background-color: #7DD3FC;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.size-note {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* Quantity Selector */
.product-quantity {
    margin: 0 0 15px 0;
}

.quantity-select {
    width: 100%;
    padding: 14px 30px;
    padding-right: 40px;
    font-size: 16px;
    font-weight: 400;
    color: #4D008D;
    background-color: #fff;
    border: 1px solid #4D008D;
    border-radius: 6px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%234D008D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    transition: border-color 0.3s;
    box-sizing: border-box;
    height: auto;
    line-height: 1.5;
}

.quantity-select:hover {
    border-color: #6B1FA0;
}

.quantity-select:focus {
    outline: none;
    border-color: #6B1FA0;
    box-shadow: 0 0 0 2px rgba(77, 0, 141, 0.1);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    width: fit-content;
    overflow: hidden;
}

.quantity-btn {
    background-color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: #f5f5f5;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    border: none;
    border-left: 2px solid #e0e0e0;
    border-right: 2px solid #e0e0e0;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Add to Cart Button */
.btn-add-to-cart {
    width: 100%;
    background-color: #FF1493;
    color: #fff;
    padding: 14px 30px;
    text-align: center;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 0 12px 0;
    box-sizing: border-box;
    height: auto;
    line-height: 1.5;
}

.btn-add-to-cart:hover {
    background-color: #E0117A;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.3);
}

/* Additional Information */
.product-additional-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0 20px 0;
}

.product-additional-info .info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #4D008D;
    padding: 8px 0;
}

.product-additional-info .info-item svg {
    flex-shrink: 0;
    color: #4D008D;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #4D008D;
    cursor: pointer;
    transition: color 0.3s;
}

.info-item:hover {
    color: #6B1FA0;
}

.info-item svg {
    flex-shrink: 0;
    margin-left: 8px;
}

/* Protection Plan */
.protection-plan {
    margin: 30px 0;
    padding: 15px 0;
}

.protection-plan-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 12px;
}

.protection-plan-checkbox {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s;
}

.protection-plan-checkbox:checked {
    background-color: #4D008D;
    border-color: #4D008D;
}

.protection-plan-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
}

.protection-plan-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #000;
    flex: 1;
}

.protection-plan-text strong {
    font-weight: 700;
    color: #000;
}

.protection-plan-link {
    color: #000;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
}

.protection-plan-link:hover {
    color: #4D008D;
}

.product-notice {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.product-notice p {
    margin: 0;
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
}

.product-description {
    margin-top: 30px;
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    clear: both;
}

.product-description p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-description ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-description ul li {
    font-size: 16px;
    color: #4D008D;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.product-description ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4D008D;
    font-weight: bold;
    font-size: 20px;
}

.product-description h3 {
    font-size: 24px;
    font-weight: 700;
    color: #4D008D;
    margin: 30px 0 20px 0;
}

.product-description-title {
    font-size: 28px;
    font-weight: 700;
    color: #4D008D;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 0;
}

.product-features-list li strong {
    color: #333;
    font-weight: 700;
}

.product-features-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.product-features-list li span {
    flex: 1;
}

.add-pillowcase-option {
    margin: 30px 0;
}

.pillowcase-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.pillowcase-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #0066FF;
}

.pillowcase-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    margin-top: 8px;
}

.pillowcase-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background-color: #f8f8f8;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillowcase-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pillowcase-info {
    flex: 1;
}

.pillowcase-name {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.pillowcase-price {
    font-size: 12px;
    color: #666;
}

.pillowcase-card svg {
    flex-shrink: 0;
    color: #666;
}

.social-proof-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
    justify-content: center;
}

.proof-badge {
    background-color: #0066FF;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.final-sale-notice {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.final-sale-heading {
    font-size: 16px;
    font-weight: 700;
    color: #4D008D;
    margin: 0 0 8px 0;
    font-style: italic;
}

.final-sale-text {
    font-size: 14px;
    color: #4D008D;
    margin: 0;
    line-height: 1.6;
}

/* Reviews Section - Full Width */
.reviews-section-full {
    width: 100%;
    background-color: #F5F4FA;
    padding: 60px 0;
    margin: 0;
    border-radius: 0;
    box-sizing: border-box;
}

.reviews-section-full .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.reviews-section-full .reviews-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #4D008D;
    margin: 0 0 40px 0;
    text-align: left;
}

.reviews-section-full .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.reviews-section-full .review-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reviews-section-full .review-stars {
    color: #FFD700;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.reviews-section-full .review-title {
    font-size: 18px;
    font-weight: 700;
    color: #4D008D;
    margin: 0;
    line-height: 1.3;
}

.reviews-section-full .review-text {
    font-size: 14px;
    color: #4D008D;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.reviews-section-full .review-read-more {
    font-size: 14px;
    color: #6B1FA0;
    text-decoration: underline;
    margin-top: auto;
    display: inline-block;
    align-self: flex-start;
}

.reviews-section-full .review-read-more:hover {
    color: #4D008D;
}

.reviews-section-full .btn-read-all-reviews {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-color: #E9278E;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    box-sizing: border-box;
}

.reviews-section-full .btn-read-all-reviews:hover {
    background-color: #D01A7A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 39, 142, 0.3);
}

/* FAQ Section - Full Width */
.faq-section-full {
    width: 100%;
    background-color: #fff;
    padding: 60px 0;
    margin: 0;
    box-sizing: border-box;
}

.faq-section-full .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.faq-section-full .faq-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #4D008D;
    margin: 0 0 40px 0;
    text-align: left;
}

.faq-section-full .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-section-full .faq-item {
    margin-bottom: 0;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-section-full .faq-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.faq-section-full .faq-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 0;
}

.faq-section-full .faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-section-full .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: #4D008D;
    transition: all 0.3s;
    position: relative;
    gap: 20px;
}

.faq-section-full .faq-question span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    text-align: left;
}

.faq-section-full .faq-chevron {
    flex-shrink: 0;
    margin-left: auto;
    width: 16px;
    height: 16px;
    color: #4D008D;
    transition: transform 0.3s;
}

.faq-section-full .faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-section-full .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 24px;
    border-top: 1px solid transparent;
}

.faq-section-full .faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px 24px;
    border-top: 1px solid #e0e0e0;
    margin-top: 0;
}

.faq-section-full .faq-answer p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin: 0 0 12px 0;
}

.faq-section-full .faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-section-full .faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.faq-section-full .faq-answer ul li {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 0;
}

.faq-section-full .faq-answer ul li:last-child {
    margin-bottom: 0;
}

.product-faq {
    margin-top: 60px;
    padding: 40px;
    background-color: #f8f9fc;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    clear: both;
}

.product-faq h2 {
    font-size: 32px;
    font-weight: 700;
    color: #4a218d;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-item {
    margin-bottom: 16px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: #4a218d;
    transition: all 0.3s;
    position: relative;
    gap: 20px;
}

.faq-question:hover {
    color: #6B1FA0;
}

.faq-question span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    text-align: left;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #4a218d;
    width: 16px;
    height: 16px;
    margin-left: auto;
    order: 2;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 24px;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px 24px;
    border-top: 1px solid #e0e0e0;
    margin-top: 0;
}

.faq-answer p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin: 0 0 12px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.faq-answer ul li {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.faq-answer ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a218d;
    font-weight: bold;
    font-size: 20px;
}

/* Side Sleeper Section */
.side-sleeper-section {
    padding: 80px 0;
    background-color: #fff;
}

.side-sleeper-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Image Column */
.image-column {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 0;
    box-sizing: border-box;
}

.image-column img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

/* Description Column */
.description-column {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
    height: 100%;
    box-sizing: border-box;
    align-items: flex-start;
}

.description-column h2 {
    font-size: 32px;
    font-weight: 700;
    color: #4a218d;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.description-column p {
    font-size: 18px;
    color: #4a218d;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.description-column p:last-of-type {
    margin-bottom: 40px;
}

.btn-side-cube {
    display: inline-block;
    background-color: #FF1493;
    color: #fff;
    padding: 16px 40px;
    text-align: center;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
}

.btn-side-cube:hover {
    background-color: #E0117A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .product-faq {
        padding: 30px 20px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .thumbnail-item {
        border-width: 2px;
    }
    
    .thumbnail-item.active {
        border-width: 2px;
    }
    
    .product-faq {
        padding: 25px 15px;
        margin-top: 30px;
    }
    
    .product-faq h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 16px 18px;
        font-size: 14px;
        gap: 12px;
    }
    
    .faq-question span {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    
    .faq-answer {
        padding: 0 18px;
    }
    
    .faq-item.active .faq-answer {
        padding: 16px 18px;
    }
}

@media (max-width: 480px) {
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    
    .product-detail-image {
        min-height: 300px;
    }
}

/* Side Sleeper Section Responsive */
@media (max-width: 1024px) {
    .side-sleeper-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-column {
        min-height: 400px;
        padding: 0;
    }
    
    .description-column {
        min-height: 400px;
        padding: 40px 30px;
    }
    
    .description-column h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .side-sleeper-section {
        padding: 60px 0;
    }
    
    .image-column {
        min-height: 300px;
        padding: 0;
    }
    
    .description-column {
        min-height: 300px;
        padding: 40px 25px;
    }
    
    .description-column h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .description-column p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .btn-side-cube {
        padding: 14px 30px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .product-detail {
        padding: 40px 0;
    }

    .product-detail-title {
        font-size: 32px;
    }

    .product-detail-price {
        font-size: 28px;
    }
    
    @media (max-width: 1024px) {
        .reviews-section-full .reviews-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    .size-options {
        gap: 10px;
    }

    .size-option {
        padding: 12px;
    }
    
    .reviews-section-full {
        padding: 40px 0;
    }
    
    .reviews-section-full .container {
        padding: 0 20px;
    }
    
    .reviews-section-full .reviews-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .reviews-section-full .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .reviews-section-full .review-card {
        padding: 20px;
    }
    
    .reviews-section-full .btn-read-all-reviews {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .faq-section-full {
        padding: 40px 0;
    }
    
    .faq-section-full .container {
        padding: 0 20px;
    }
    
    .faq-section-full .faq-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .faq-section-full .faq-question {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .faq-section-full .faq-question span {
        white-space: normal;
    }
    
    .faq-section-full .faq-item.active .faq-answer {
        padding: 16px 20px;
    }
    
    .faq-section-full .faq-answer p,
    .faq-section-full .faq-answer ul li {
        font-size: 14px;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .thumbnail-item {
        border-width: 2px;
    }
    
    .thumbnail-item.active {
        border-width: 2px;
    }
}
