/* WooCommerce Single Product Page Styles */

/* Product Hero Section */
.product-hero {
    padding: 135px 0 60px;
    background-color: #ffffff;
}

.product-hero-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 500px;
}

.product-hero-image {
    flex: 2;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-hero-image .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero-info {
    flex: 1;
    background-color: #2b5e8b;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-hero-content {
    text-align: left;
    color: white;
    width: 100%;
}

.product-title {
    font-size: 26px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 500;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.product-divider {
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    margin: 20px 0;
    opacity: 1;
}

.product-color {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
    color: #ffffff;
}

/* Product Main Section */
.product-main {
    padding: 0 0 45px;
    background-color: #ffffff;
}

.product-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.product-gallery {
    flex: 2;
}

.product-gallery-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-item {
    width: 100%;
    position: relative;
}

.gallery-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

.product-info {
    flex: 1;
    padding: 20px 0;
}

.product-description {
    font-size: 16px;
    line-height: 1.6;
    color: #123753;
    margin: 0;
}

.product-description p {
    margin: 0 0 15px 0;
}

/* Product Details Section */
.product-details {
    padding: 0 0 45px;
    background-color: #ffffff;
}

.product-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-details-content {
    max-width: 800px;
    margin: 0 auto;
}

.product-description-text {
    font-size: 18px;
    line-height: 1.3;
    color: #123753;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-align: center;
}

.product-description-text p {
    margin: 0 0 20px 0;
}

.product-description-text a {
    color: #123753;
    text-decoration: none;
    font-weight: 500;
}

.product-description-text a:hover {
    text-decoration: underline;
}

/* Product Variants Section */
.product-variants {
    padding: 0 0 45px;
    background-color: #ffffff;
}

.product-variants-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-variant {
    margin: 0 0 40px 0;
}

.variant-divider {
    width: 100%;
    height: 1px;
    background-color: #ebebeb;
    margin: 0 0 40px 0;
    opacity: 1;
}

.variant-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.variant-title {
    font-size: 26px;
    font-weight: 500;
    color: #123753;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.variant-description {
    font-size: 16px;
    color: #123753;
    margin: 0 0 20px 0;
}

.variant-price {
    font-size: 18px;
    font-weight: 500;
    color: #123753;
    margin: 0 0 20px 0;
}

.variant-option {
    margin: 0 0 20px 0;
}

.option-title {
    font-size: 14px;
    color: #123753;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.option-variants {
    margin: 0 0 20px 0;
}

.option-select {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    border: 1px solid #123753;
    background-color: white;
    color: #123753;
    font-size: 14px;
    border-radius: 0;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23123753' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.option-select:focus {
    outline: none;
    border-color: #123753;
    box-shadow: 0 0 0 2px rgba(18, 55, 83, 0.2);
}

.variant-button {
    margin: 20px 0 0 0;
}

.add-to-cart-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffffff;
    color: #123753;
    border: 2px solid #123753;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border-radius: 0;
}

.add-to-cart-btn:hover {
    background-color: #123753;
    color: #ffffff;
    text-decoration: none;
}

.add-to-cart-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(18, 55, 83, 0.2);
}

.add-to-cart-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Custom Size Info Section */
.custom-size-info {
    padding: 0 0 45px;
    background-color: #ffffff;
}

.custom-size-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-size-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.custom-size-content p {
    font-size: 18px;
    line-height: 1.3;
    color: #123753;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin: 0;
}

.custom-size-content a {
    color: #123753;
    text-decoration: none;
    font-weight: 500;
}

.custom-size-content a:hover {
    text-decoration: underline;
}

/* Mix & Match Section */
.mix-match {
    padding: 0 0 60px;
    background-color: #ffffff;
}

.mix-match-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mix-match-content {
    text-align: center;
}

.mix-match-divider {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.mix-match-arrow {
    width: 100px;
    height: 12px;
}

.mix-match-title {
    font-size: 26px;
    color: #123753;
    font-weight: 500;
    font-family: 'FuturaPT', 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mix & Match Images Section */
.mix-match-images {
    padding: 0 0 60px;
    background-color: #ffffff;
}

.mix-match-images-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mix-match-images-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.mix-match-item {
    flex: 1;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.mix-match-item:hover {
    transform: translateY(-5px);
}

.mix-match-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

.mix-match-item a {
    display: block;
    text-decoration: none;
}

.mix-match-item a:hover {
    text-decoration: none;
}

/* Responsive Styles */
@media screen and (max-width: 980px) {
    .product-hero {
        padding: 120px 0 60px;
    }
    
    .product-hero-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .product-hero-image {
        height: 300px;
        flex: none;
    }
    
    .product-hero-info {
        flex: none;
        padding: 30px 20px;
    }
    
    .product-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .mix-match-images-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .mix-match-item {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 640px) {
    .product-hero {
        padding: 100px 0 40px;
    }
    
    .product-hero-container,
    .product-container,
    .product-details-container,
    .product-variants-container,
    .custom-size-container,
    .mix-match-container,
    .mix-match-images-container {
        padding: 0 15px;
    }
    
    .product-title {
        font-size: 22px;
    }
    
    .variant-title {
        font-size: 22px;
    }
    
    .mix-match-title {
        font-size: 22px;
    }
    
    .product-description-text {
        font-size: 16px;
    }
    
    .custom-size-content p {
        font-size: 16px;
    }
    
    .add-to-cart-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Additional WooCommerce Integration Styles */
.woocommerce div.product {
    margin: 0;
    padding: 0;
}

.woocommerce div.product .product_title {
    display: none; /* Hide default WooCommerce title */
}

.woocommerce div.product .woocommerce-product-gallery {
    display: none; /* Hide default WooCommerce gallery */
}

.woocommerce div.product .summary {
    display: none; /* Hide default WooCommerce summary */
}

.woocommerce div.product .woocommerce-tabs {
    display: none; /* Hide default WooCommerce tabs */
}

.woocommerce div.product .woocommerce-product-rating {
    display: none; /* Hide default WooCommerce rating */
}

.woocommerce div.product .woocommerce-product-meta {
    display: none; /* Hide default WooCommerce meta */
}

/* Ensure proper spacing and layout */
.woocommerce div.product .woocommerce-product-gallery__wrapper {
    margin: 0;
}

.woocommerce div.product .woocommerce-product-gallery__image {
    margin: 0;
}

/* Custom button styles for WooCommerce integration */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button {
    background-color: #ffffff;
    color: #123753;
    border: 2px solid #123753;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: #123753;
    color: #ffffff;
}

.woocommerce .button:focus,
.woocommerce button.button:focus,
.woocommerce input.button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(18, 55, 83, 0.2);
}




