/* Simplified Product Page Styles - Mobile First + Desktop */

/* Font and Base Styles */
.mobile-product-layout, footer {
    background-color: #ffffff;
    font-family: 'ahang f', 'vazir', 'vazir', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 25px;
}

/* Product Header Section */
.product-header-section {
    /* background: #ffffff; */
    padding: 8px;
    margin-bottom: 15px;
}

.product-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}

.back-button,
.search-button {
    background: #E5B489;
    color: white;
    border: none;
    border-radius: 50%;
    width: auto;
    height: 40px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-button:hover,
.search-button:hover {
    background: #d9a06f;
    transform: scale(1.05);
}

/* Media Container */
.product-media-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

/* Video Section */
.product-video-section {
    flex: 1;
}

.product-video-header {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-video-header iframe,
.product-video-header div {
    width: 100%;
    height: auto;
    border: none;
    aspect-ratio: 16 / 9;
}

/* Product Images (fallback when no video) */
.product-images-fallback .woocommerce-product-gallery {
    margin-bottom: 0;
    text-align: center;
}

.product-images-fallback .woocommerce-product-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Audio Sidebar */
.product-audio-sidebar {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.product-audio-sidebar .audio-player {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.product-audio-sidebar .audio-controls {
    width: 100%;
}

.product-audio-sidebar .audio-player audio {
    width: 100%;
    /* max-width: 300px; */
    border-radius: 8px;
}

/* Product Summary Header */
.product-summary-header {
    text-align: center;
    padding: 0 8px;
}

.product-title {
    font-size: 22px !important;
    font-weight: 700;
    color: #333;
    margin: 10px 0 8px 0;
    line-height: 1.3;
}

.product-subtitle {
    font-size: 17px;
    color: #333231;
    margin: 0 0 15px 0;
    font-weight: 600;
}

/* Product Timer Section */
.product-timer-section {
    margin: 15px 0;
    font-family: 'ahang f';
}

.product-counter {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 16px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.25);
}

.discount-text {
    display: block;
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 500;
}

.countdown-display {
    font-size: 18px;
    font-weight: 500;
    font-family: 'ahang';
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    direction: ltr;
}

.countdown-display span {
    background: rgba(255,255,255,0.2);
    padding: 3px 5px;
    border-radius: 6px;
    margin: 0 2px;
    display: inline-block;
    min-width: 30px;
}

/* .product-meta-info {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
} */

/* Price Section */
.product-price-section {
    margin: 15px 0;
    text-align: center;
}

.product-price-section .price {
    font-size: 24px;
    font-weight: 700;
    color: #E5B489;
    margin-bottom: 15px;
    display: block;
}

.product-price-section .price del {
    color: #999;
    font-size: 18px;
    margin-left: 10px;
}

.product-price-section .price ins {
    text-decoration: none;
    color: #E5B489;
}

/* OneCheckout Button */
.product-cta {
    margin: 15px 0;
}

.onecheckout-button {
    background: #E5B489;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'ahang f', 'vazir', 'vazir', sans-serif;
}

.onecheckout-button:hover {
    background: #d9a06f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 180, 137, 0.3);
}

/* Product Benefits Section */
.product-benefits-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefit-icon img {
    width: 40px;
    height: 40px;
    border-radius: 77px;
    object-fit: cover;
}

.woocommerce .woocommerce-breadcrumb {
    margin-bottom: 0;
    font-size: 1.1em;
    font-family: 'ahang f';
}
.woocommerce .woocommerce-breadcrumb a {
    color: #d9a06f;
}

.benefit-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}



/* Accordions Section */
.product-accordions-section {
    margin: 15px 10px;
}

.accordions-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.accordion-header {
    width: 100%;
    padding: 18px 20px;
    background: white;
    border: none;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'ahang f', 'vazir', 'vazir', sans-serif;
}

.accordion-header:hover {
    background: #f8f9fa;
    color: #E5B489;
}

.accordion-header.active {
    background: #E5B489;
    color: white;
}

.accordion-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: inherit;
    font-size: 14px;
}

.accordion-icon.rotated {
    transform: rotate(-90deg);
}

.accordion-content {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body {
    padding: 0 20px 20px 20px;
    color: #666;
    line-height: 1.7;
}

.accordion-body ol {
    margin: 15px 0;
    padding-right: 20px;
}

.accordion-body ol li {
    margin-bottom: 8px;
    padding-right: 5px;
    line-height: 1.6;
}

.accordion-body strong {
    color: #333;
}

.accordion-body a {
    color: #E5B489;
    text-decoration: none;
}

.accordion-body a:hover {
    text-decoration: underline;
}

/* Product Descriptions */
.product-descriptions-section {
    margin: 20px 10px;
}

.product-short-description,
.product-long-description {
    background: white;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.description-title {
    font-size: 20px;
    font-weight: 600;
    color: #E5B489;
    margin-bottom: 15px;
    text-align: center;
}

.description-content {
    color: #666;
    line-height: 1.7;
}

.description-content p {
    margin-bottom: 15px;
}

/* FAQ Section */
.product-faq-section {
    margin: 15px 10px;
}

.faq-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 25px 0 15px 0;
}

.faq-content {
    text-align: center;
    margin-bottom: 20px;
}

.faq-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: white;
    border: none;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'ahang f', 'vazir', 'vazir', sans-serif;
}

.faq-question:hover {
    background: #f8f9fa;
    color: #E5B489;
}

.faq-question.active {
    background: #E5B489;
    color: white;
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: inherit;
    font-size: 14px;
}

.faq-icon.rotated {
    transform: rotate(-90deg);
}

.faq-answer {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-body {
    padding: 15px;
    color: #666;
    line-height: 1.7;
}

/* Comments Section */
.product-comments-section {
    margin: 15px 10px 0 10px; /* Extra bottom margin for sticky bar */
    background: white;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.comments-title {
    font-size: 20px;
    font-weight: 600;
    color: #E5B489;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 10px;
    /* border-bottom: 1px solid #f0f0f0; */
}

.comments-container {
    font-family: 'ahang f', 'vazir', 'vazir', sans-serif;
}

/* Comment List Styling */
.comments-container .commentlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comments-container .comment {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    position: relative;
}

.comments-container .comment::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #e9ecef;
    border-radius: 50%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.comments-container .comment-author {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 16px;
}

.comments-container .comment-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.comments-container .comment-content {
    color: #555;
    line-height: 1.6;
}

.comments-container .comment-content p {
    margin-bottom: 10px;
}

/* Comment Form Styling */
.comments-container .comment-respond {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.comments-container .comment-reply-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.comments-container .comment-form .form-row {
    margin-bottom: 15px;
}

.comments-container .comment-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.comments-container .comment-form input[type="text"],
.comments-container .comment-form input[type="email"],
.comments-container .comment-form input[type="url"],
.comments-container .comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E5B489;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'ahang f', 'vazir', 'vazir', sans-serif;
    background: white;
    transition: border-color 0.3s ease;
}

.comments-container .comment-form input[type="text"]:focus,
.comments-container .comment-form input[type="email"]:focus,
.comments-container .comment-form input[type="url"]:focus,
.comments-container .comment-form textarea:focus {
    outline: none;
    border-color: #d9a06f;
    box-shadow: 0 0 5px rgba(229, 180, 137, 0.3);
}

.comments-container .comment-form .form-submit {
    text-align: center;
    margin-top: 15px;
}

.comments-container .comment-form .submit {
    background: #E5B489;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'ahang f', 'vazir', 'vazir', sans-serif;
}

.comments-container .comment-form .submit:hover {
    background: #d9a06f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 180, 137, 0.3);
}

/* No Comments Message */
.comments-container .no-comments {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 20px;
}

/* Reply Links */
.comments-container .reply {
    margin-top: 10px;
}

.comments-container .reply a {
    color: #E5B489;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.comments-container .reply a:hover {
    color: #d9a06f;
    text-decoration: underline;
}

/* Nested Comments */
.comments-container .children {
    margin-top: 15px;
    margin-right: 20px;
    border-right: 2px solid #E5B489;
    padding-right: 15px;
}

.comments-container .children .comment {
    background: white;
    border-right: 2px solid #f0f0f0;
}

/* Sticky Bottom Purchase Bar */
.sticky-purchase-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 12px 15px;
}

.sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    gap: 15px;
}

.sticky-product-info {
    flex: 1;
    min-width: 0;
}

.sticky-product-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    font-family: 'ahang f', 'vazir', 'vazir', sans-serif;
}

.sticky-price {
    font-size: 16px;
    font-weight: 700;
    color: #E5B489;
}

.sticky-price .price {
    font-size: 16px;
    margin: 0;
}

.sticky-purchase-action {
    flex-shrink: 0;
}

.sticky-onecheckout-button {
    background: #E5B489;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'ahang f', 'vazir', 'vazir', sans-serif;
    min-width: 80px;
}

.sticky-onecheckout-button:hover {
    background: #d9a06f;
    transform: scale(1.05);
}

.sticky-onecheckout-button .desktop-text {
    display: none;
}

.sticky-onecheckout-button .mobile-text {
    display: inline;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .mobile-product-layout {
        max-width: 900px;
        padding: 20px;
    }
    
    .product-header-section {
        padding: 30px;
    }
    
    /* Desktop Media Container - Side by Side */
    .product-media-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
    }
    
    .product-video-section {
        flex: 2;
    }
    
    .product-video-header iframe,
    .product-video-header div {
        width: 100%;
        height: auto;
        border: none;
        aspect-ratio: 16 / 9;
    }
    
    .product-audio-sidebar {
        flex: 1;
        max-width: 300px;
        min-width: 250px;
    }
    
    .product-title {
        font-size: 30px !important;
    }
    
    .product-subtitle {
        font-size: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .product-price-section .price {
        font-size: 28px;
    }
    
    .onecheckout-button {
        max-width: 300px;
        margin: 15px auto;
        display: block;
        width: auto;
        padding: 18px 40px;
        font-size: 18px;
    }
    
    .accordion-header,
    .faq-question {
        padding: 22px 25px;
        font-size: 18px;
    }
    
    .accordion-body,
    .faq-answer-body {
        padding: 20px;
        font-size: 16px;
    }
    
    .description-title {
        font-size: 24px;
    }
    
    .description-content {
        font-size: 16px;
    }
    
    .accordions-title,
    .faq-title {
        font-size: 26px;
    }
    
    /* Desktop Comments Styling */
    .comments-title {
        font-size: 24px;
    }
    
    .comments-container .comment {
        padding: 20px;
    }
    
    .comments-container .comment-respond {
        padding: 25px;
    }
    
    .comments-container .comment-form input[type="text"],
    .comments-container .comment-form input[type="email"],
    .comments-container .comment-form input[type="url"],
    .comments-container .comment-form textarea {
        font-size: 16px;
        padding: 15px 18px;
    }
    
    /* Desktop Sticky Bar */
    .sticky-purchase-bar {
        padding: 15px 20px;
    }
    
    .sticky-bar-content {
        max-width: 900px;
        gap: 25px;
    }
    
    .sticky-product-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .sticky-price {
        font-size: 18px;
    }
    
    .sticky-price .price {
        font-size: 18px;
    }
    
    .sticky-onecheckout-button {
        padding: 14px 25px;
        font-size: 16px;
        min-width: 120px;
    }
    
    .sticky-onecheckout-button .mobile-text {
        display: none;
    }
    
    .sticky-onecheckout-button .desktop-text {
        display: inline;
    }
}

/* Large Desktop - Complete Redesign */
@media (min-width: 1024px) {
    .mobile-product-layout {
        max-width: 1200px;
        background: #fafafa;
        padding: 0;
        margin: 20px auto;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    /* Header with two-column layout */
    .product-header-section {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        column-gap: 25px;
        row-gap: 5px;
        align-items: center;
        /* background: white; */
        padding: 40px;
        margin-bottom: 0;
    }
    
    .product-navigation {
        grid-column: 1 / -1;
        justify-content: flex-start;
        gap: 20px;
    }
    
    .back-button,
    .search-button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    /* Media container on the left */
    .product-media-container {
        margin-bottom: 0;
        order: 1;
        flex-direction: column;
        gap: 20px;
    }
    
    .product-video-header iframe,
    .product-video-header div {
        width: 100%;
        height: auto;
        border: none;
        aspect-ratio: 16 / 9;
    }
    
    .product-images-fallback .woocommerce-product-gallery img {
        max-height: 350px;
        width: 100%;
        object-fit: cover;
    }
    
    .product-audio-sidebar {
        max-width: none;
        min-width: auto;
        background: white;
        border: 2px solid #f0f0f0;
        width: 100%;
    }
    
    /* Product info on the right */
    .product-summary-header {
        text-align: right;
        padding: 20px 0;
        order: 2;
        background: #f8f9fa;
        padding: 0 30px;
        border-radius: 16px;
        height: fit-content;
    }
    
    .product-title {
        font-size: 26px !important;
        text-align: right;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .product-subtitle {
        font-size: 20px;
        text-align: right;
        margin-bottom: 18px;
    }
    
    .product-meta-info {
        text-align: right;
        font-size: 16px;
        margin-bottom: 25px;
        padding: 15px;
        background: white;
        border-radius: 12px;
        border-right: 4px solid #E5B489;
    }
    
    .product-price-section {
        text-align: center;
        background: white;
        padding: 15px 20px 10px;
        border-radius: 12px;
        margin-bottom: 0;
    }
    
    .product-price-section .price {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    /* Desktop content sections */
    .product-benefits-section,
    .product-audio-section,
    .product-accordions-section,
    .product-descriptions-section,
    .product-faq-section,
    .product-comments-section {
        margin: 0 40px 30px 40px;
        background: white;
        border-radius: 16px;
        padding: 35px;
    }
    
    /* Three-column benefits grid */
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .benefit-item {
        padding: 20px;
        background: #f8f9fa;
        border-radius: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(229, 180, 137, 0.2);
    }
    
    .benefit-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .benefit-icon img {
        width: 80px;
        height: 80px;
        border-radius: 77px;
    }
    
    .benefit-text {
        font-size: 16px;
        font-weight: 600;
    }
    
    /* Desktop audio section */
    .audio-player audio {
        max-width: 500px;
        height: 60px;
    }
    
    /* Desktop descriptions in two columns */
    .product-descriptions-section {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: start;
    }
    
    .product-short-description,
    .product-long-description {
        margin-bottom: 0;
        background: #f8f9fa;
        border: none;
        box-shadow: none;
    }
    
    /* Desktop accordion improvements */
    .accordions-title,
    .faq-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .accordion-item,
    .faq-item {
        margin-bottom: 12px;
        border: 2px solid #f0f0f0;
        transition: border-color 0.3s ease;
    }
    
    .accordion-item:hover,
    .faq-item:hover {
        border-color: #E5B489;
    }
    
    .accordion-header,
    .faq-question {
        padding: 25px 30px;
        font-size: 18px;
    }
    
    .accordion-body,
    .faq-answer-body {
        padding: 25px;
        font-size: 16px;
        line-height: 1.8;
    }
    
    /* Desktop FAQ section layout */
    .product-faq-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .faq-content {
        background: white;
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 25px;
        border-right: 4px solid #E5B489;
    }
    
    .faq-description {
        font-size: 16px;
        margin-bottom: 0;
    }
    
    /* Large Desktop Comments Styling */
    .comments-title {
        font-size: 28px;
        margin-bottom: 0;
    }
    
    .comments-container .comment {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .comments-container .comment-author {
        font-size: 18px;
    }
    
    .comments-container .comment-respond {
        padding: 30px;
        margin-top: 25px;
    }
    
    .comments-container .comment-reply-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .comments-container .comment-form input[type="text"],
    .comments-container .comment-form input[type="email"],
    .comments-container .comment-form input[type="url"],
    .comments-container .comment-form textarea {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .comments-container .comment-form .submit {
        padding: 15px 30px;
        font-size: 18px;
    }
    
    /* Large Desktop Sticky Bar */
    .sticky-purchase-bar {
        padding: 18px 40px;
    }
    
    .sticky-bar-content {
        max-width: 1200px;
        gap: 30px;
    }
    
    .sticky-product-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .sticky-price {
        font-size: 20px;
    }
    
    .sticky-price .price {
        font-size: 20px;
    }
    
    .sticky-onecheckout-button {
        padding: 16px 30px;
        font-size: 18px;
        min-width: 150px;
        border-radius: 30px;
    }
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
    .mobile-product-layout {
        max-width: 1400px;
    }
    
    .product-header-section {
        padding: 50px;
        gap: 25px;
    }
    
    .product-title {
        font-size: 36px !important;
    }
    
    .product-subtitle {
        font-size: 22px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .product-descriptions-section {
        grid-template-columns: 1fr;
    }
    
    /* Extra Large Desktop Sticky Bar */
    .sticky-bar-content {
        max-width: 1400px;
    }
}

/* Hide default WooCommerce elements */
.mobile-product-layout .woocommerce-product-rating,
.mobile-product-layout .product_meta,
.mobile-product-layout .woocommerce-tabs {
    display: none;
}

/* AlpineJS transition classes */
[x-cloak] {
    display: none !important;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #E5B489;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d9a06f;
}