/*
Theme Name: ethereal theme
Theme URI: https://zeptechlogix.com/
Author: Yasir Raees
Description: A custom theme.
Version: 5.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom, woocommerce
Text Domain: ethereal
*/

/* CSS from first page.html */
body {
    font-family: Arial, sans-serif;
    background-color: #e5e7eb !important;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    max-width: 500px;
    width: 90%;
    padding: 2rem;
    text-align: center;
}

.logo-text {
    font-family: 'Texturina', serif;
    font-size: 4em;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.date {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.nav-button {
    display: block;
    width: 100%;
    padding: 12px 24px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: bold;
    color: rgb(0, 0, 0); /* Default text color */
    text-transform: uppercase;
    background-color: #ffffff; /* Default background color */
    border: 1px solid #1f2937;
    border-radius: 6px;
    cursor: pointer;
    position: relative; /* Needed for positioning the pseudo-element */
    overflow: hidden; /* Hides the pseudo-element until it slides into view */
    z-index: 1; /* Ensures text is above the pseudo-element */
    transition: color 0.3s ease-in-out; /* Smooth transition for text color */
}

/* Pseudo-element for the slide-up background effect */
.nav-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000; /* Black background that will slide up */
    transform: translateY(100%); /* Start 100% below the button */
    transition: transform 0.3s ease-in-out; /* Smooth transition for the slide effect */
    z-index: -1; /* Place behind the button text */
}

nav a {
    text-decoration: none;
}

/* Hover effects for the button */
.nav-button:hover {
    color: #ffffff; /* Change text color to white on hover */
    /* No need to set background-color or border here, as the pseudo-element handles it */
}

/* Hover effect for the pseudo-element */
.nav-button:hover::before {
    transform: translateY(0%); /* Slide up to cover the entire button */
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 10px;
}

.social-icons a {
    font-size: 24px;
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #1f2937;
}

.footer-text {
    font-size: 12px;
    color: #fff;
    margin: 2px 0;
}

/* --- Media Queries for Responsiveness (first page.html) --- */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .logo-text {
        font-size: 3.5em;
        margin-bottom: 2rem;
    }

    .nav-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .social-icons {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 1rem;
    }

    .logo-text {
        font-size: 2.8em;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }

    .date {
        font-size: 11px;
        margin-bottom: 1.5rem;
    }

    .nav-button {
        padding: 10px 15px;
        font-size: 12px;
    }

    .social-icons {
        margin-top: 20px;
    }

    .social-icons a {
        font-size: 20px;
        margin: 0 8px;
    }

    .footer-text {
        font-size: 10px;
    }
}


/* CSS from home.html */
/* Base styles for the entire page */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    font-family: 'Inter', sans-serif;
    color: #000; /* White text color */
    display: flex;
    flex-direction: column; /* Allows content to stack */
    min-height: 100vh; /* Full viewport height */
    position: relative; /* For general layout */
}



/* Announcement Bar */
.announcement-bar {
    background-color: #ffffff;
    color: #000000;
    padding: 8px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 17px;
}

.announcement-text {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateY(-50%) translateX(0%);
    }
    100% {
        transform: translateY(-50%) translateX(calc(-100% - 100vw)); /* 🔥 fully exits left */
    }
}





/* Main Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between; /* Space out left, center, right */
    align-items: center;
    padding: 20px 40px; /* Padding for top/bottom and left/right */
    height: 150px; /* Fixed height for the navbar */
    width: 100%; /* Full width */
    box-sizing: border-box; /* Include padding in width */
    position: relative; /* Make navbar a positioning context for its children */
    background: transparent;
    
}

/* Left section: Navigation Links (Desktop) */
.nav-links {
    list-style: none; /* Remove bullet points */
    margin: 0;
    padding: 0;
    display: flex; /* Arrange links horizontally */
    gap: 30px; /* Space between links */
}

.nav-links a {
    text-decoration: none; /* Remove underline */
    color: #000; /* White color for links */
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase; /* Uppercase text */
    transition: color 0.3s ease; /* Smooth hover effect */
}

.nav-links a:hover {
    color: #000;
}

/* Center section: Logo and Date/Time */
.navbar-center-content {
    flex-grow: 1; /* Allows it to take available space */
    display: flex; /* Use flexbox to stack logo and date/time */
    flex-direction: column; /* Stack vertically */
    align-items: center; /* Center horizontally */
    position: absolute; /* Position independently relative to .navbar */
    left: 50%;
    top: 0%; /* Adjusted vertical position to 10% */
    transform: translateX(-50%); /* Truly center horizontally */
    z-index: 0; /* Behind other content for overlapping effect if needed */
}

.navbar-logo a { /* Style for the logo link */
    text-decoration: none;
    color: #ffffff;
    font-family: 'Texturina', serif; /* Apply Texturina font */
    font-size: 4.5em; /* Significantly increased size for "ETHEREAL" */
    font-weight: 800; /* Bold weight */
    letter-spacing: 2px; /* Slightly adjust letter spacing */
    transition: opacity 0.3s ease;
    white-space: nowrap; /* Prevent text wrapping */
}

.navbar-logo a:hover {
    opacity: 0.8; /* Slight dim on hover */
}

/* Date and Time under the logo */
.date-time {
    color: #000;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
    white-space: nowrap; /* Prevent wrapping */
    margin-top: 5px; /* Small space between logo and date/time */
}

/* Right section: Icons */
.nav-icons {
    display: flex; /* Arrange icons horizontally */
    gap: 25px; /* Space between icons */
}

.nav-icons a {
    text-decoration: none;
    color: #000; /* White color for icons */
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-icons a:hover {
    color: #000;
}

/* Hamburger Menu Icon (Desktop hidden) */
.hamburger-menu {
    display: none; /* Hidden by default on desktop */
    font-size: 24px;
    cursor: pointer;
    color: #000;
}

/* Mobile Menu Overlay (Desktop hidden) */
.mobile-menu-overlay {
    display: none; /* Hidden by default on desktop */
}

/* New Content Section Styles */
.content-section {
    background-color: #e5e7eb; /* Light grey background for the content */
    flex-grow: 1; /* Allows it to take remaining vertical space */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    padding: 40px 0px; /* Padding around the content */
    width:100%;
}

.content-title {
    color: #000000; /* Black text for the title */
    font-family: 'Inter', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 40px; /* Space below the title */
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns, equal width for desktop */
    gap: 30px; /* Space between grid items */
    max-width: 1200px; /* Max width for the grid */
    width: 100%; /* Take full available width */
}

.product-item {
    background-color: transparent; /* Ensure no background on product item */
    border-radius: 8px; /* Kept for consistency, though less visible */
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Align content to the top */
    padding: 15px; /* Padding inside product item */
}

.product-item img {
    width: 100%; /* Image takes full width of its container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 4px; /* Slightly rounded corners for images */
    margin-bottom: 40px; /* Space below image */
    max-width: 250px; /* Limit image size for consistency */
    object-fit: contain; /* Ensure the whole image is visible */
    filter: drop-shadow(0px 8px 10px rgba(0, 0, 0, 0.2)); /* Initial drop-shadow */
    transition: transform 0.6s ease-in-out, filter 0.3s ease-in-out; /* Smooth transition for hover effects */
}

.product-item img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.7));
}

.product-item h3 {
    color: #000000;
    font-size: 1.1em; /* Slightly smaller title font */
    font-weight: 600; /* Slightly bolder */
    text-transform: uppercase; /* Uppercase as per image */
    margin: 0; /* Remove default margins */
    padding-bottom: 5px; /* Space between title and price */
    text-decoration: none;
}

.product-item p {
    color: #4b5563; /* Grey color for price */
    font-size: 0.9em; /* Smaller font for price */
    font-weight: 400;
    margin: 0; /* Remove default margins */
    text-transform: uppercase; /* Uppercase as per image */
    text-decoration: none;
}


/*front page styling starts here */


body.home.wp-singular.page-template.page-template-front-page.page-template-front-page-php.page.page-id-9.wp-theme-Ethereal.theme-Ethereal.woocommerce-js{
    background-image: url('https://ethereal-dxb.com/wp-content/themes/Ethereal/assets/images/background-image-ethenal-front.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
}



/* Footer Styles */
.footer {
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    padding: 20px 0px; /* Increased horizontal padding */
    font-size: 0.9em;
    margin-top: auto; /* Pushes the footer to the bottom */
    display: flex; /* Use flexbox for columns */
    justify-content: space-between; /* Distribute items with space in between */
    align-items: center; /* Vertically align items in the center */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width:100%;
}

.footer-column {
    flex: 1; /* Each column takes equal space */
    padding: 10px; /* Padding for internal content */
    text-align: center; /* Default text alignment */
}

.footer-column.left {
    text-align: left;
}

.footer-column.middle {
    text-align: center;
}

.footer-column.right {
    text-align: right;
}

.footer-column p {
    margin: 5px 0;
    line-height: 1.4; /* Improve readability */
}

.payment-methods img {
    height: 25px; /* Fixed height for payment icons */
    width: auto; /* Ensure aspect ratio is maintained */
    margin: 0 5px; /* Space between icons */
    vertical-align: middle; /* Align images nicely with text */
}

/* --- Mobile Responsiveness (home.html) --- */
@media (max-width: 768px) {
    .announcement-bar {
        font-size: 15px;
        padding: 6px 0;
    }

    .navbar {
        height: auto;
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: block;
        order: -1;
        margin-right: 10px;
    }

    .navbar-center-content {
        position: static;
        transform: none;
        left: auto;
        order: 0;
        flex-grow: 1;
        text-align: center;
        margin: 0 10px;
    }
    .navbar-logo a {
        font-size: 2.5em;
        letter-spacing: 1px;
    }
    .date-time {
        font-size: 10px;
        margin-top: 3px;
    }

    .nav-icons {
        gap: 15px;
        order: 1;
        margin-left: 10px;
    }
    .nav-icons a {
        font-size: 16px;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }

    .mobile-menu-overlay.active {
        transform: translateX(0%);
    }

    .mobile-menu-overlay ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .mobile-menu-overlay li {
        margin-bottom: 10px;
    }

    .mobile-menu-overlay a {
        color: #ffffff;
        font-size: 2em;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 600;
        transition: color 0.2s ease;
    }

    .mobile-menu-overlay a:hover {
        color: #cccccc;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        color: #ffffff;
        cursor: pointer;
    }

    /* Content Section responsiveness */

    .content-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-item img {
        filter: drop-shadow(0px 6px 8px rgba(0, 0, 0, 0.15));
    }

    .product-item img:hover {
        transform: scale(1.05);
        filter: drop-shadow(0px 9px 12px rgba(0, 0, 0, 0.25));
    }

    .product-item h3 {
        font-size: 1em;
    }

    .product-item p {
        font-size: 0.85em;
    }

    /* Footer responsiveness */
    .footer {
        flex-direction: column;
        padding:0px;
    }

    .footer-column {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .footer-column.left,
    .footer-column.right {
        text-align: center;
    }

    .payment-methods {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        font-size: 14px;
        padding: 5px 0;
    }
    .navbar {
        height: auto;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }

    .hamburger-menu {
        order: -1;
        margin-right: 5px;
    }

    .navbar-center-content {
        margin: 0 5px;
    }
    .navbar-logo a {
        font-size: 2em;
        letter-spacing: 0.5px;
    }
    .date-time {
        font-size: 9px;
        margin-top: 2px;
    }

    .nav-icons {
        gap: 10px;
        order: 1;
        margin-left: 5px;
    }

    /* Content Section responsiveness */


    .content-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .product-grid {
        display: grid;
        grid-template-columns: minmax(0, 300px);
        justify-content: center;
        gap: 20px;
    }
    .product-item {
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        border: none;
    }
    .product-item img {
        width: 100%;
        height: auto;
        border-radius: 4px;
        margin-bottom: 15px;
        max-width: none;
        object-fit: contain;
    }
    .product-item h3 {
        color: #333333;
        font-size: 1.1em;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0;
        padding-bottom: 5px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    .product-item p {
        color: #666666;
        font-size: 0.9em;
        font-weight: 400;
        margin: 0;
        text-transform: uppercase;
    }

    /* Footer responsiveness */
    .footer {
        padding: 0px;
        font-size: 0.8em;
    }
    .footer-column {
        margin-bottom: 10px;
    }
}


/* New styles for single product page */
.single-product-content {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%;
    max-width: 1200px; /* Adjust max-width as needed */
    margin: 40px auto;
    background-color: #0000; /* Black background for single product area */
    color: #ffffff; /* White text for single product area */
    padding: 20px;
    box-sizing: border-box;
}

.single-product-image {
    flex: 1; /* Takes up one part of the flexible space */
    min-width: 300px; /* Minimum width before wrapping */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2); /* Subtle white shadow */
}

.single-product-details {
    flex: 1; /* Takes up one part of the flexible space */
    min-width: 300px; /* Minimum width before wrapping */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center details */
}

.single-product-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.9em;
    color: #cccccc;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.single-product-title {
    font-family: 'Texturina', serif; /* Use Texturina for main product title */
    font-size: 3em;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #ffffff;
}

.woocommerce-product-rating { /* Styling for product rating if enabled by WooCommerce */
    display: none; /* Hide default rating if not in design */
}

/* Ensure price only shows once */
.single-product-details .price .amount {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}
/* If price is duplicated by another element, hide it */
.product_meta .price { /* Example: if price is in product meta, hide it */
    display: none;
}


/* Quantity input */
.quantity {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #6b7280; /* Grey border for quantity box */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden;
    width: fit-content; /* Shrink to content width */
}

.quantity .qty {
    width: 60px; /* Fixed width for input */
    text-align: center;
    border: none;
    background-color: transparent;
    color: #000; /* White text for quantity */
    font-size: 1.2em;
    /*padding: 10px 0;*/
    -moz-appearance: textfield; /* Remove Firefox number spinner */
}
.quantity .qty::-webkit-outer-spin-button,
.quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity .button {
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5em;
    cursor: pointer;
    padding: 10px 15px;
    transition: background-color 0.2s ease;
}

.quantity .button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Add to Cart Button */
.single_add_to_cart_button {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff; /* White border */
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%; /* Full width button */
    max-width: 300px; /* Limit button width */
}

.single_add_to_cart_button:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Product Description / Short Description */
/* This will now style the short description *after* the add to cart button */
.woocommerce-product-details__short-description {
    color: #cccccc; /* Lighter grey for description text */
    font-size: 1em;
    line-height: 1.6;
    margin-top: 30px; /* Space above description */
}
/* This will style the full description when it's moved below the add to cart */
#tab-description { /* Re-using ID for consistency */
    color: #cccccc; /* Lighter grey for description text */
    font-size: 1em;
    line-height: 1.6;
    margin-top: 30px; /* Space above description */
}


/* Related Products (if displayed) */
.related.products {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.related.products h2 {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 2em;
    margin-bottom: 30px;
}

.related.products ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.related.products ul.products li.product {
    background-color: transparent;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 15px;
}

.related.products ul.products li.product img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
    filter: drop-shadow(0px 8px 10px rgba(0, 0, 0, 0.2));
}

.related.products ul.products li.product h2 {
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.related.products ul.products li.product .price {
    font-size: 0.9em;
    color: #cccccc;
    margin: 0;
}

/* Single Product Navigation Buttons (BACK/NEXT) */
.single-product-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.single-product-nav .nav-button-single {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.single-product-nav .nav-button-single:hover {
    background-color: #ffffff;
    color: #000000;
}


/* Media Queries for Single Product Page */
@media (max-width: 768px) {
    .single-product-content {
        flex-direction: column;
        padding: 15px;
        margin: 20px auto;
    }

    .single-product-image,
    .single-product-details {
        min-width: unset; /* Remove min-width to allow full flexibility */
        width: 100%; /* Take full width */
        padding: 10px;
    }

    .single-product-title {
        font-size: 2.5em;
        margin-bottom: 10px;
    }

    .price .amount {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .quantity {
        margin-bottom: 15px;
    }

    .single_add_to_cart_button {
        padding: 12px 25px;
        font-size: 1.1em;
        max-width: 100%; /* Allow button to stretch */
    }

    .woocommerce-product-details__short-description,
    #tab-description { /* Apply to full description too */
        margin-top: 20px;
    }

    .single-product-nav {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }

    .single-product-nav .nav-button-single {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .single-product-title {
        font-size: 2em;
        letter-spacing: 1px;
    }

    .price .amount {
        font-size: 1.2em;
    }

    .single_add_to_cart_button {
        font-size: 1em;
        padding: 10px 20px;
    }

    .single-product-meta {
        font-size: 0.8em;
    }

    .related.products h2 {
        font-size: 1.8em;
    }
    .related.products ul.products li.product h2 {
        font-size: 1em;
    }
    .related.products ul.products li.product .price {
        font-size: 0.8em;
    }
}

/* Styles for Custom Size Buttons */
.single-product-details .variations {
    margin-bottom: 20px; /* Space below size options */
}

.single-product-details .variations label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9em;
    color: #ffffff; /* White color for label */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.single-product-details .variations select {
    display: none; /* Hide the default dropdown */
}

.variation-button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Space between buttons */
}

.variation-button {
    background-color: transparent;
    color: #000;
    border: 1px solid #6b7280; /* Grey border for unselected */
    padding: 8px 15px;
    font-size: 0.9em;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.variation-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #000; /* White border on hover */
}

.variation-button.selected {
    background-color: #000; /* White background for selected */
    color: #fff; /* Black text for selected */
    border-color: #000; /* White border for selected */
}

.variation-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #4b5563; /* Darker grey border for disabled */
    background-color: transparent;
    color: #cccccc;
}

/* Hide the default WooCommerce select dropdowns for variations */
.variations_form .wc_variation_attribute_options.hidden-select,
.variations_form .wc-variation-select.hidden-select {
    display: none !important; /* This is the most crucial part to make it disappear */
}

/* Ensure the default WooCommerce select dropdowns for variations are hidden */
.variations_form .wc_variation_attribute_options.hidden-select,
.variations_form .wc-variation-select.hidden-select {
    display: none !important; /* Use !important to ensure this rule takes precedence */
}

/* You might also have this older rule, ensure it's not conflicting */
.single-product-details .variations select {
    display: none !important; /* Adding !important here too, just in case */
}


/*exchange policy style starts here */


body.exchange-policy-page {
    background-color: #e5e7eb !important; /* Light grey background */
    color: #000000 !important; /* Black text */
    display: flex; /* Override body flex to allow content to stack normally */
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    align-items: center; /* Center horizontally */
    min-height: 100vh;
}

.main-content-policy {
    background-color: #e5e7eb; /* Light grey background for the policy content area */
    color: #000000; /* Black text for policy content */
    padding: 40px 20px;
    max-width: 100%; /* Standard content width */
    width: 100%;
    box-sizing: border-box;
    margin: 20px auto; /* Center the content with some margin */
}

.policy-title {
    font-family: 'Texturina', serif;
    font-size: 3.5em;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.policy-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333333;
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px; /* Add some padding for better readability */
}

.policy-section {
    margin-bottom: 40px; /* Space between sections */
    border-bottom: 1px solid #cccccc; /* Subtle separator */
    padding-bottom: 30px;
}

.policy-section:last-child {
    border-bottom: none; /* No border for the last section */
    padding-bottom: 0;
}

.policy-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #000000;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: left; /* Align subtitles left */
    text-transform: uppercase;
}

.policy-text {
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    line-height: 1.7;
    color: #4b5563; /* Darker grey for body text */
    margin-bottom: 15px;
    text-align: justify; /* Justify text for a cleaner look */
}

.policy-text a {
    color: #1f2937; /* Darker link color */
    text-decoration: underline;
}

.policy-text a:hover {
    color: #000000;
}

.policy-button {
    display: block;
    margin: 40px auto 0 auto; /* Center button below policy text */
    max-width: 250px; /* Limit button width */
}

/* Media Queries for Exchange Policy Page */
@media (max-width: 768px) {
    .main-content-policy {
        padding: 30px 15px;
        margin: 15px auto;
    }

    .policy-title {
        font-size: 2.8em;
        margin-bottom: 30px;
    }

    .policy-intro {
        font-size: 1em;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .policy-subtitle {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .policy-text {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .main-content-policy {
        padding: 20px 10px;
        margin: 10px auto;
    }

    .policy-title {
        font-size: 2.2em;
        margin-bottom: 20px;
    }

    .policy-intro {
        font-size: 0.9em;
        margin-bottom: 30px;
    }

    .policy-subtitle {
        font-size: 1.3em;
    }

    .policy-text {
        font-size: 0.9em;
    }
}

/* Hiding elements on the homepage */
/* Use body.home to target only the front page */

/* Hide WooCommerce Breadcrumbs on homepage */
body.home .woocommerce-breadcrumb {
    display: none !important;
}

/* Hide product tabs (Additional Information, Reviews) on homepage if they appear for some reason */
/* This assumes they are rendered via woocommerce_output_product_data_tabs, which typically happens on single product pages */
/* If they are appearing on the homepage, you might need more specific selectors or a PHP solution */
body.home .woocommerce-tabs {
    display: none !important;
}

/* Hiding default search forms/widgets (adjust selectors based on your theme's HTML) */
body.home .widget_search, /* Common widget class */
body.home .search-form, /* Common search form class */
body.home #search-widget-area { /* Example ID for a search widget area */
    display: none !important;
}

/* Hiding default Pages, Archives, Categories widgets (adjust selectors based on your theme's HTML) */
body.home .widget_pages,
body.home .widget_archive,
body.home .widget_categories {
    display: none !important;
}

/* If you have a specific "product meta" area that includes duplicated price or other info you want to hide */
body.home .product_meta {
    display: none !important;
}


/*hiding things on single product page */


select#sizes, a.reset_variations, .product_meta {
    display: none !important;
}
.product-template-default div#sidebar {
    display: none;
}

nav.woocommerce-breadcrumb {
    display: none;
}

.woocommerce div.product form.cart div.quantity {
    float: left;
    margin: 10px 5px 10px 0 !important;
}

.woocommerce-tabs.wc-tabs-wrapper {
    display: none;
}



.summary.entry-summary p.price {
    display: none;
}


button.single_add_to_cart_button.button.alt {
    background: #fff;
    color: #000;
    width: 100%;
    height: 40px;
}



/*contact page styling starts here  */


.wpcf7 textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.wpcf7 input{
    width: 96%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.wpcf7-submit {
    background-color: #910927;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.wpcf7-submit:hover {
    background-color: #73071d;
}

main.contact-page-wrapper {
    width: 100%;
    color: #000;
}
main.contact-page-wrapper .container h1 {
    color: #000 !important;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: #000;
    color: #fff;
    font-size: 15px;
    width: 100%;
}






/*my account styling starts here  */




/* WooCommerce My Account Page Custom Styles */
.woocommerce-account {
    background-color: #e5e7eb;
}

/* General Text Styling */
.woocommerce-account,
.woocommerce-account a,
.woocommerce-account p,
.woocommerce-account h2,
.woocommerce-account h3,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
    color: #000; /* Black text */
}

/* Navigation Panel Styling */
.woocommerce-MyAccount-navigation {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 1.5rem;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 1rem;
}

.woocommerce-MyAccount-navigation ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    font-weight: bold;
    text-decoration: underline;
}

/* Main Content Styling */
.woocommerce-MyAccount-content {
    background-color: #fff;
    padding: 2rem;
    border: 1px solid #ccc;
    margin-top: 1rem;
}

/* Buttons Styling */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce input[type=submit] {
    background-color: #000 !important;
    color: #fff !important;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce input[type=submit]:hover {
    background-color: #333 !important;
}

/* Form Fields */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    border: 1px solid #ccc;
    padding: 0.5rem;
    background-color: #fff;
    color: #000;
}


/*checkout page styling starts here */

.wp-block-woocommerce-checkout {
    margin: 0;
    padding: 20px !important;
}
/* WooCommerce Checkout Page Custom Styles */
.woocommerce-checkout {
    background-color: #e5e7eb;
}

/* General Text Styling */
.woocommerce-checkout,
.woocommerce-checkout h2,
.woocommerce-checkout h3,
.woocommerce-checkout label,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-checkout-review-order-table,
.woocommerce-checkout table th,
.woocommerce-checkout table td {
    color: #000; /* Black text */
}

/* Form Field Styling */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #000;
    font-size: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Order Summary Box */
.woocommerce-checkout-review-order {
    background-color: #fff;
    padding: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Payment Methods */
#payment {
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Place Order Button */
.woocommerce #place_order,
.woocommerce input.button.alt {
    background-color: #000 !important;
    color: #fff !important;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.woocommerce #place_order:hover,
.woocommerce input.button.alt:hover {
    background-color: #333 !important;
}

/* Notices (e.g., errors) */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    background-color: #fff;
    border-left: 4px solid #000;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #000;
}






















span.woocommerce-Price-amount.amount bdi {
    color: #000 !important;
}




/*cart page styling starts here  */



/* === Cart Page: Aesthetic Styling === */
.woocommerce-cart {
    background-color: #e5e7eb;
    font-family: 'Segoe UI', sans-serif;
}

/* Cart Table Wrapper */
.woocommerce-cart-form {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow-x: auto;
}

/* Cart Table */
.woocommerce-cart table.shop_table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
    padding: 1.2rem;
    border-bottom: 1px solid #ddd;
    color: #000;
    text-align: left;
    vertical-align: middle;
}

.woocommerce-cart table.shop_table th {
    font-weight: 600;
    background-color: #f7f7f7;
}

.woocommerce-cart table.shop_table td.product-thumbnail img {
    width: 70px;
    height: auto;
    border-radius: 6px;
}

/* Quantity */
.woocommerce-cart .quantity input.qty {
    width: 60px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.4rem;
}

/* Coupon and Update Cart Section */
.woocommerce-cart .coupon {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.woocommerce-cart .coupon input.input-text {
    flex: 1;
    padding: 0.6rem;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.woocommerce-cart .coupon .button,
.woocommerce-cart .actions .button {
    background-color: #000 !important;
    color: #fff !important;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.woocommerce-cart .button:hover {
    background-color: #333 !important;
}

/* Cart Totals Box */
.cart_totals {
    background-color: #fff;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.cart_totals h2 {
    margin-bottom: 1.5rem;
    color: #000;
}

.cart_totals table {
    width: 100%;
    border-collapse: collapse;
}

.cart_totals table th,
.cart_totals table td {
    padding: 0.75rem 0;
    color: #000;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button {
    display: inline-block;
    background-color: #000 !important;
    color: #fff !important;
    padding: 0.9rem 2rem;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 1.5rem;
    transition: background 0.3s ease;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #333 !important;
}

/* Notices */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    background-color: #fff;
    border-left: 5px solid #000;
    padding: 1rem;
    color: #000;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Responsive Tables */
@media (max-width: 768px) {
    .woocommerce-cart table.shop_table,
    .woocommerce-cart table.shop_table thead,
    .woocommerce-cart table.shop_table tbody,
    .woocommerce-cart table.shop_table th,
    .woocommerce-cart table.shop_table td,
    .woocommerce-cart table.shop_table tr {
        display: block;
    }

    .woocommerce-cart table.shop_table td {
        padding: 0.8rem 0;
        text-align: right;
        position: relative;
    }

    .woocommerce-cart table.shop_table td::before {
        content: attr(data-title);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 1rem;
        font-weight: 600;
        text-align: left;
        color: #555;
    }

    .woocommerce-cart .coupon {
        flex-direction: column;
    }
}



/*shop page styling starts here */




/* WooCommerce Shop Page Styling - Clean & Responsive */
.woocommerce.archive {
    background-color: #e5e7eb;
    font-family: 'Segoe UI', sans-serif;
}

/* Fix grid layout */
ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

/* Product Cards */
ul.products li.product {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Product Image */
ul.products li.product img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Title & Price */
ul.products li.product h2.woocommerce-loop-product__title {
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

ul.products li.product .price {
    color: #000;
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
}

/* Buttons */
ul.products li.product .button {
    background-color: #000 !important;
    color: #fff !important;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

ul.products li.product .button:hover {
    background-color: #333 !important;
}

/* Sorting dropdown */
.woocommerce-ordering select {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0.5rem;
    color: #000;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
    text-align: center;
    margin-top: 2rem;
}

.woocommerce nav.woocommerce-pagination ul {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 0.5rem 1rem;
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    float: left;
    margin: 0 3.8% 2.992em 0;
    padding: 12px;
    position: relative;
    width: 100%;
    margin-left: 0;
}
div#sidebar {
    display: none;
}

/* Checkout Place Order Button */
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    width: 100%;
    max-width: 400px;
    margin: 10px auto;
    display: block;
    border-radius: 6px;
    transition: background 0.3s ease;
    text-align: center;
}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover {
    background: #333;
}

/* Cart Submit Button */
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 6px;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 10px auto;
    text-align: center;
    transition: background 0.3s ease;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
    background: #333;
}

/* Responsive Fix for Smaller Screens */
@media (max-width: 480px) {
    button.wc-block-components-button,
    a.wc-block-components-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}


@media (min-width: 200px) and (max-width: 350px) {
    
    .product-item a.product-link {
    text-decoration: none !important;
	}
        
    i.fas.fa-times{
    color: #000 !important;
    }
    
    .mobile-menu-overlay a {
    color: #000 !important;
    font-size: 1.1em !important;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s ease;
    padding-left: 10px !important;
    text-align: left;
    }
    
    .mobile-menu-overlay{
        background: #fff !important;
    }
    .woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled{
        margin-top: 10px;
 }
    div#primary{
    padding: 5px;
}
    
    .footer-column{
        padding: 0px ;
    }
    
    
        .nav-icons a {
    margin-left: 0px;
    }
    .nav-icons :nth-child(2),
    .nav-icons :nth-child(3) {
      display: none;
    }
    
    
    
    .navbar-center-content .navbar-logo a img {
    height: 60px;
    width: 100%;
    }
    
        .product-item a.product-link{
    text-decoration: none !important;
    }
    
    body > div.navbar > div.navbar-center-content > div.navbar-logo
     {
        color: #fff;
        font-size: 10px;
    }
    body > div.navbar > div.navbar-center-content > div.navbar-logo > a{
        color: #fff;
        font-size: 20px;

    }
        body.wp-singular.page-template-default.page.page-id-15.wp-theme-Ethereal.theme-Ethereal.woocommerce-account.woocommerce-page.woocommerce-js div#mobileMenuOverlay ul li a
     {
        color: #fff !important;
    }
    
    
}




    .product-price {
    font-size: 18px !important;
    padding-bottom: 10px !important;
    font-weight: 700 !important;
    }


/*only desktop view styling starts here*/


span.xoo-wsc-smr-ptotal {
    display: none;
}

table.variations {
    margin-bottom: 15px;
}

@media (min-width: 1000px) and (max-width: 3000) {
    
	.quantity .qty {
    padding: 0px !important;
    }
	.woocommerce .quantity .qty {
    width: 2em !important;
    text-align: center;
    }
    table.variations {
    margin-bottom: 10px !important;
    }
	.product-item a.product-link {
    text-decoration: none !important;
	}	
    .product-item a.product-link {
    text-decoration: none !important;
    }
    
    .woocommerce-order {
    padding-top: 60px;
    }
    table.variations {
    padding-bottom: 15px;
    }
    .custom-product-description{
        padding-top: 0px;
    }
    

    .site-logo-front-page {
    height: auto;
    width: 100%;
    }   

    
    .navbar-center-content .navbar-logo a img {
    height: auto;
    width: 100%;
    }
    .custom-single-product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 50px;
    width: 100% !important;
    }
    .woocommerce-variation-price {
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 600;
    }
    .single_variation_wrap {
    width: 320px;
    }
    
    .custom-product-description {
    margin-top: 0px;
    padding-top: 0px !important;
    border-top: 1px solid #ddd;
    text-align: justify;
    padding-right: 50px;
    }
    .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button .wc-block-components-checkout-place-order-button__text {
    align-items: center;
    display: flex;
    justify-content: center;
    }
    .wc-block-components-checkout-return-to-cart-button {
    box-shadow: none;
    color: #fff !important;
    position: relative;
    text-decoration: none;
    background: black;
    padding-left: 27px !important;
    padding: 15px;
    border-radius: 5px;
    }
    .date-time {
    color: #000;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-top: -20px;
    }
    
    
    
       
    
}













@media (min-width: 351px) and (max-width: 999px) {
    
	
    .product-item a.product-link {
    text-decoration: none !important;
	}	
        i.fas.fa-times{
        color: #000 !important;
    }
    
    .mobile-menu-overlay a {
    color: #000 !important;
    font-size: 1.3em !important;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s ease;
    padding-left: 10px !important;
    text-align: left;    }
    
    .mobile-menu-overlay{
        background: #fff !important;
    }
    
    .nav-icons a {
    margin-left: 0px;
    }
    .nav-icons :nth-child(2),
    .nav-icons :nth-child(3) {
      display: none;
    }

    .product-item a.product-link{
    text-decoration: none !important;
    }
    
    
    .navbar-center-content .navbar-logo a img {
    height: auto;
    width: 100%;
    }
    
    
    main.contact-page-wrapper .container {
    padding: 0px !important;
    }   
    .wpcf7 textarea {
    width: 100%;
    padding: 8px;
    }
    

    body.wp-singular.page-template-default.page.page-id-15.wp-theme-Ethereal.theme-Ethereal.woocommerce-account.woocommerce-page.woocommerce-js div#mobileMenuOverlay ul li a
     {
        color: #fff !important;
    }
        
    body > div.navbar > div.navbar-center-content > div.navbar-logo > a{
    color: #fff;
     }
    body.wp-singular.page-template-default.page.page-id-15.wp-theme-Ethereal.theme-Ethereal.woocommerce-account.woocommerce-page.woocommerce-js .navbar .nav-icons a {
    color: #000;
    }
        body.wp-singular.page-template-default.page.page-id-15.wp-theme-Ethereal.theme-Ethereal.woocommerce-account.woocommerce-page.woocommerce-js {
        padding: 0;
    }
    
        .footer-column.right {
        padding: 0px !important;
    }
        .footer-column.middle {
        padding: 0px !important;
        }
        .footer-column {
        padding: 0px !important; /* Padding for internal content */
        }
        
        
        .custom-description-below-cart p {
            text-align: justify !important;
        }
        
        .variation-button-container {
        display: flex
    ;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .right-details .woocommerce-variation-price span.price span.woocommerce-Price-amount.amount bdi {
        color: #000 !important;
        font-size: 25px;
        font-weight: 700;
        text-align: right;
        float: right;
        margin-top: 10px;
    }
    .woocommerce div.product form.cart div.quantity , .woocommerce div.product form.cart div.quantity{
        margin-top:0px !important;
        margin-left:0px !important;
        margin-right:0px !important;
        margin-bottom: 15px !important;
    }
    
    
    
    .footer-column.left
     {
        display: none !important;
    }
    
    .main-product-image {
        height: auto;
        width: 100%;
    }
    div#primary{
    padding: 5px;
    }
    .custom-product-description p
     {
        text-align: justify;
    }
    .right-details h1.product_title.entry-title {
    text-align: center;
    }
    .woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled {
    margin-top: 10px;
    }
    table.variations tbody tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
    
    
    
}









.custom-single-product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 50px;
    width: 100% !important;
}

/* Left Gallery Styling */
.left-gallery {
    flex: 1;
    max-width: 50%;
    width: 50%;
}

.main-product-image {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.main-product-image img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    display: block;
}

/* Thumbnail Gallery Below Main Image */
.thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.thumbnail-gallery .thumbnail-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border 0.3s ease;
}

.thumbnail-gallery .thumbnail-img:hover {
    border: 2px solid #000;
}

/* Right Column: Product Info */
.right-details {
    flex: 1;
    max-width: 50%;
    width: 50%;
    display: flex;
    flex-direction: column;
}

/* Description Under Add to Cart */
.custom-product-description {
    margin-top: auto; /* push to bottom of content area */
    border-top: 1px solid #ddd;
}

/* Responsive Support */
@media screen and (max-width: 768px) {
    .custom-single-product-container {
        flex-direction: column;
    }

    .left-gallery, .right-details {
        max-width: 100%;
        width: 100%;
    }

    .main-product-image img {
        max-height: 400px;
    }

    .thumbnail-gallery .thumbnail-img {
        width: 60px;
        height: 60px;
    }
}

.main-product-image img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.thumbnail-gallery .thumbnail-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border 0.3s;
}


.right-details p.price {
    display: none;
}




@media (min-width: 200px) and (max-width: 999px) {
  .product-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: center !important;
  }

  .product-item {
    flex: 0 0 calc(50% - 10px) !important; /* 2 items per row */
    box-sizing: border-box !important;
  }
  
  
}
