/* Force full width single column layout */
.woocommerce-tabs,
.woocommerce-tabs .wc-tabs-wrapper,
.woocommerce-Tabs-panel--description {
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
    column-count: 1 !important;
}

/* Artistic Description Styling for Luxury Products */
.woocommerce-Tabs-panel--description {
    font-family: 'Georgia', 'Playfair Display', serif;
    line-height: 1.7;
    color: #2c2c2c;
    padding: 40px 60px;
    border-radius: 8px;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(216, 89, 53, 0.02) 25%, rgba(216, 89, 53, 0.02) 26%, transparent 27%, transparent 74%, rgba(216, 89, 53, 0.02) 75%, rgba(216, 89, 53, 0.02) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(216, 89, 53, 0.02) 25%, rgba(216, 89, 53, 0.02) 26%, transparent 27%, transparent 74%, rgba(216, 89, 53, 0.02) 75%, rgba(216, 89, 53, 0.02) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
}

/* Prevent any column splitting */
.woocommerce-Tabs-panel--description * {
    column-span: all !important;
}

/* Center heading */
.woocommerce-Tabs-panel--description h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 35px;
    color: #d85935;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid #e8e3dc;
    padding-bottom: 20px;
}

/* Section headings with diamond symbols */
.woocommerce-Tabs-panel--description h3 {
    font-size: 1.5em;
    color: #d85935;
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    padding-left: 30px;
    clear: both;
}

.woocommerce-Tabs-panel--description h3:before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #d85935;
    font-size: 0.7em;
    top: 5px;
}

/* Paragraph styling */
.woocommerce-Tabs-panel--description p {
    font-size: 1.1em;
    margin-bottom: 16px;
    text-align: justify;
    padding: 0 20px;
    color: #4a4a4a;
    clear: both;
}

/* First paragraph as featured quote */
.woocommerce-Tabs-panel--description p:first-of-type {
    font-size: 1.2em;
    font-style: italic;
    color: #d85935;
    border-left: 4px solid #d85935;
    padding-left: 30px;
    margin-left: 0;
    background: linear-gradient(to right, #fef9f5 0%, transparent 100%);
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Simple inline styling for final statement - NO BOX */
.woocommerce-Tabs-panel--description p strong {
    color: #d85935;
    font-size: 1.1em;
    font-weight: 600;
    font-style: italic;
    display: inline;
    text-align: inherit;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    letter-spacing: 0.5px;
}

/* Image styling */
.woocommerce-Tabs-panel--description img {
    display: block;
    margin: 30px auto;
    border: 8px solid #f8f5f0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.woocommerce-Tabs-panel--description img:hover {
    transform: scale(1.02);
}

/* Alternate colors for sections */
.woocommerce-Tabs-panel--description h3:nth-of-type(even) {
    color: #8b5a3c;
}

.woocommerce-Tabs-panel--description h3:nth-of-type(even):before {
    color: #8b5a3c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .woocommerce-Tabs-panel--description {
        padding: 20px 15px;
    }
    
    .woocommerce-Tabs-panel--description h2 {
        font-size: 2em;
    }
    
    .woocommerce-Tabs-panel--description h3 {
        font-size: 1.3em;
        margin-top: 25px;
    }
    
    .woocommerce-Tabs-panel--description p {
        font-size: 1em;
        text-align: left;
        padding: 0 10px;
        margin-bottom: 14px;
    }
}
