html, body {
    margin: 0;    /* Remove default margin */
}
a {
    text-decoration: none;
    color: #27374D;
}

.header, .footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.header .logo, .header .nav {
    flex: 1 1 auto; /* Flex-grow, flex-shrink, and flex-basis */
}


body {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    min-height: 100vh;
    background-color: #DDE6ED ;
    font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 800px) {
    .site-header {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        padding: 10px 0;
    }

    .site-header .logo {
        margin-bottom: 10px;
    }

    .site-header .main-navigation {
        margin-bottom: 10px;
    }

    .site-header .main-navigation .nav-menu {
        flex-direction: column; /* Make nav menu vertical */
        gap: 10px;
    }

    .site-header .cart-icon-container {
        margin-top: 10px;
    }
}


.selection {
    border-color: #27374D;
}

.site-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f8f8;
    color: #27374D;
    padding: 1rem 0;
    width: 100%;
}

.site-header .logo,
.site-header .main-navigation,
.site-header .cart-icon-container {
    flex: 1 1 auto; 
}

.site-header .logo {
    padding-left: 20px;
    padding-right: 20px;
}

.site-header .logo img {
    max-height: 50px;
    padding: 0px;
}

.site-header .main-navigation{
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-header .main-navigation .nav-menu {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .main-navigation .nav-menu a {
    position: relative;
    color: #27374D;
    font-weight: bolder;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.site-header .main-navigation .nav-menu a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #27374D;
    bottom: 0;
    left: 0;
    transform: scaleX(0); /* Start with the line hidden */
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.site-header .main-navigation .nav-menu a:hover::before {
    transform: scaleX(1); /* Expand the line to full width */
    transform-origin: bottom left;
}


.cart-icon-container {
    display: flex;
    align-items: center;
    margin-right: 20px;
    padding-left: 20px;
}

.cart-icon {
    font-size: 1.5rem; 
    color: #000; 
    text-decoration: none;
    position: relative;
}

.cart-icon:hover {
    color: #9DB2BF; 
}

.cart-count {
    background-color: #27374D; 
    color: #fff;
    padding: 2px 6px;
    font-size: 14px;
    border-radius: 50%;
    margin-left: 8px;
}


.hero-container {
    position: relative;
    width: 100%;
    height: 100vh; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    overflow: hidden;
  }

  .slideshow {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    animation: slide 16s infinite;
  }
  
  @keyframes slide{
     0% {
        transform: translateX(0);
     }
     20% {
        transform: translateX(0);
     }
     25% {
        transform: translateX(-100%);
     }
     45% {
        transform: translateX(-100%);
     }
     50% {
        transform: translateX(-200%);
     }
     70% {
        transform: translateX(-200%);
     }
     75% {
        transform: translateX(-300%);
     }
     95% {
        transform: translateX(-300%);
     }
     100% {
        transform: translateX(-400%);
     }
  }

  .img-fluid {
    flex: 1 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 1;
  }


.hero-img {
    max-width: 70%;
}
  
  .hero-text {
    z-index: 2; 
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-align: center;
    /* margin-top: 300px; */
    font-size: 100px; 
    color: #27374D;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 1);
  }
  
  
  
  @media (max-width: 768px) {
    .hero-text {
      font-size: calc(1.5rem + 1vw); 
    }
  }
  
  @media (max-width: 480px) {
    .hero-text {
      font-size: 1.5rem; 
      padding: 0 20px; 
    }
  }
  


.container-1000 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
}


.page-header {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    background-color: #9DB2BF;
    padding: 10px 20px;
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    text-align: center;
}
.scrolling-banner {
    width: 100%;
    color: #526D82; 
    text-align: center;
    padding: 10px 0;
    z-index: 1000; 
    font-size: 72px;
    white-space: nowrap; 
    overflow: hidden; 
}

.scrolling-banner p {
    display: inline-block;
    animation: scroll-left 10s linear infinite; 
    padding-right: 100%;
}

@keyframes scroll-left {
    from {
        transform: translateX(-100%); 
    }
    to {
        transform: translateX(-100%); 
    }
}



.featured-item-header {
    background: white;
    border-radius: 10px;
    text-align: center;    
    opacity: 1;
    text-align: center;
    color: #27374D;
    font-size: 40px;
    padding: 10px;
    margin: 75px 30px;
}

.featured-item-container {
    max-width: 1200px;
    display: flex;             
    gap: 20px;                 
    flex-wrap: wrap;           
    margin-bottom: 30px; 
}

.featured-item-container  .product-item {
    box-sizing: border-box; 
    border-radius: 8px;        
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #f8f8f8; 
    margin: 0px 0px 30px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-item-container .product-item:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.featured-item-container .product-item img{
    max-width: 100%;
    height: auto;
}

.recent-item-header {
    background: white;
    border-radius: 10px;
    text-align: center;
    color: #27374D;
    font-size: 40px;
    padding: 10px;
    margin: 75px 30px;
}

.recent-item-container {
    max-width: 1000px;
    display: flex;             
    gap: 20px;                 
    flex-wrap: wrap;           
    margin-bottom: 30px; 
    
}      

/* .recent-item-container .product {
    border-color: #27374D;  
    border-style: solid; 
    border-width: 5px; 
    flex: 1 1 calc(25% - 20px); 
    box-sizing: border-box; 
    border-radius: 8px;        
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
} */

.recent-item-container .product-item {
    box-sizing: border-box; 
    border-radius: 8px;        
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #f8f8f8; 
    margin: 0px 0px 30px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recent-item-container .product-item:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.recent-item-container .product-item img{
    max-width: 100%;
    height: auto;
}


@media (max-width: 768px) {
    .recent-item-container .product {
        flex: 1 1 100%; 
    }
    .products-grid   {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
    }
    
}

.site-footer {
    background-color: #526D82; 
    color: white;           
    padding: 20px 0;        
    text-align: center; 
    width: 100%;    
    margin-top: 80px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;    
    justify-content: space-between; 
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;  
    padding: 0 20px;            
}

.footer-left, .footer-right {
    flex: 1 1 auto;
    padding: 10px;
}

.footer-nav {
    list-style: none;         
    padding: 0;
}

.footer-nav li {
    display: inline;          
    margin-right: 15px;      
}

.footer-nav a {
    color: white;         
    text-decoration: none;    
}

.footer-nav a:hover {
    text-decoration: underline; 
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;  
        text-align: center;       
        padding: 10px 0;
    }

    .footer-left, .footer-right {
        margin-bottom: 10px;
    }
}


.back-button-container {
    margin: 20px 0;
    text-align: center; 
}

.back-button {
    background-color: #526D82;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #27374D;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 10px 0;
}

.post-navigation a {
    text-decoration: none;
    color: #526D82; /* Adjust the color to match your theme */
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #526D82; /* Border for buttons */
    border-radius: 5px;
    transition: all 0.3s ease;
}

.post-navigation a:hover {
    background-color: #526D82;
    color: #fff;
}



/* ========================ABOUT=========================== */



.about-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
}

.about-container p{
    margin: 0;
}

.logo-explain-header {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: white 5px solid;
    font-size: 50px;
    margin: 20px;
}

.logo-img {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    padding: 50px;
    margin: 10px;


}
.logo-text {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    max-width: 500px;
    padding: 50px;
    margin: 20px;
    font-size: 30px;
}

.logo-ten-header {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: white 5px solid;
    font-size: 50px;
    margin: 100px 20px 0px;
}

.logo-ten-img {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    padding: 50px;
    margin: 20px;


}
.logo-ten-text {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    max-width: 500px;
    padding: 50px;
    margin: 20px;
    font-size: 30px;
}

.l10-site-header {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: white 5px solid;
    font-size: 50px;
    margin: 100px 20px 0px;
}

.l10-site-img {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    padding: 50px auto;
    margin: 20px;


}
.l10-site-text {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    max-width: 500px;
    padding: 50px;
    margin: 20px;
    font-size: 30px;
}

.portfolio-container {
    width: 100%;
    padding: 50px;
    margin: 50px auto;

}

.specific-posts-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 20px;
}

.specific-post {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgb(0, 0, 0, 0.1);
}

.specific-post:hover {
    transform: translateY(-5px);
}

.meet-designers-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    border-bottom: white 5px solid;
    margin: 20px;
}
.meet-designers-box {
    display: flex;
    justify-content: center;
    align-items: center;
}






.cart-page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.woocommerce-cart-form {
    width: 100%;
}

.woocommerce-cart-form__contents {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.woocommerce-cart-form__cart-item {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
    color: black;
    font-size: 1.2em; 
}


.product-name, .product-price, .product-quantity, .product-subtotal, .product-remove {
    font-size: 1.3rem;
    text-align: center;
    padding: 10px;
}

.product-remove {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cart-totals {
    margin-top: 20px;
}

.checkout-button {
    background-color: #27374D;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    text-align: center;
}

.checkout-button:hover {
    background-color: #9DB2BF;
}

.return-to-shop {
    margin-top: 20px;
    text-align: center;
}

.return-to-shop .return-to-shop-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #526D82; 
    color: #DDE6ED; 
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.return-to-shop .return-to-shop-btn:hover {
    background-color: #27374D;
    color: #ffffff; 
}



.woocommerce-ordering {
    display: flex;
    justify-content: flex-end; 
    margin-bottom: 20px;
}

.woocommerce-ordering .orderby {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    font-size: 16px;
    font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.woocommerce-ordering .orderby:hover {
    border-color: #526D82; 
    background-color: #f8f8f8;
}


.woocommerce ul.products::before,
.woocommerce ul.products::after {
    content: "";
    display: none;
}
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.woocommerce ul.products li.product {
    box-sizing: border-box; 
    border-radius: 8px;        
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #f8f8f8; 
    margin: 0px 0px 30px;
    padding: 20px;
    max-width: 250px !important;
    max-height: 500px !important;
    width: 100% !important;
    transition: transform 0.3s ease, box-shadow 0.3 ease;
}

.woocommerce ul.products li.product:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product {
    transform: none;
}

.woocommerce-error {
    margin: 0px;
}

.shop-sidebar {
    width: 25%; 
    float: right;
    padding: 20px;
    background-color: #f4f4f4;
}

.shop-sidebar .widget {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
}

.shop-sidebar .widget-title {
    font-size: 18px;
    color: #333;
}

.category-header {
    font-size: 50px;
    text-align: center;
    padding-bottom: 10px;
}

.category-filter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
}

.category-filter li.cat-item {
    background-color: transparent;
    border: white;
    border-style: solid;
    border-radius: 5px;
    padding: 10px 20px;
    color: white;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
}

.category-filter li.cat-item a {
    font-size: 20px;
    font-weight: 400;
}

.category-filter li.cat-item::marker {
    content: none;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.category-filter {
    margin-bottom: 20px;
}

.search-form-container {
    display: flex;
    justify-content: center;
    max-width: 600px;
    padding: 10px;
    margin: 0 auto;
}

.search-form {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #f7f7f7; 
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.search-button {
    padding: 10px;
    font-size: 16px;
    background-color: #27374D;
    color: #fff;
    border: none;
    cursor: pointer;
}

.search-input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
    margin-right: 5px;
}

.search-input:focus {
    border-color: #007bff; /* Change border color when focused */
}


.search-field {
    padding: 10px;
    font-size: 16px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 4px;
}


.search-button:hover {
    color: #27374D;
    background-color: #fff;
}


.search-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 20px;
}

.search-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.search-item .product-item {
    text-align: center;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3 ease;
}

.search-item .product-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.search-item .product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.search-item .product-item .product-info {
    text-align: center;
}

.search-item .product-item .product-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.search-item .product-item .product-price {
    font-size: 16px;
    color: #333;
}











.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 20px;
}

.blog-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgb(0, 0, 0, 0.1);
}

.blog-item:hover {
    transform: translateY(-5px);
}

.blog-thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    overflow: hidden;
}

.blog-title {
    font-size: 1.5em;
    color: #333;
}

.blog-div {
    padding: 20px;
}

.blog-info {
    padding: 20px;
}

.blog-excerpt {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
}

.blog-date {
    font-size: 12px;
}

.blog-pagination {
    margin-top: 20px;
    text-align: center;
}



.blog-pagination a {
    padding: 5px 10px;
    margin: 0 5px;
    background: #526D82;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}

.blog-pagination a:hover {
    background: #27374D;
}

@media screen and (max-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media screen and (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.single-post-container {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.single-post-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    text-align: center;
}

.single-post-thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.single-post-thumbnail img {
    border-radius: 10px;
    height: 500px;
    object-fit: contain;
}

.single-post-title {
    display: flex;
    flex-direction: column;
    font-size: 2.5em;
    margin: 0;
    color: #27374D;
}

.single-post-meta {
    display: flex;
    flex-direction: column;
    font-size: 0.9em;
    color: #555;
    margin-top: 10px;
}

.single-post-meta span {
    margin-right: 15px;
}

.single-post-meta .post-author{
    border-bottom: 1px solid #9DB2BF;

}

.single-post-content {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}



.single-post-footer p {
    margin: 0;
    padding: 10px 0;
}

/* Style each tag */
.single-post-footer .tag-links a {
    display: inline-block;
    background-color: #27374D; /* Choose a background color */
    color: white; /* Text color */
    font-size: 14px; /* Adjust font size */
    padding: 6px 12px; /* Adjust padding */
    margin-top: 5px;
    margin-right: 10px; /* Space between tags */
    margin-bottom: 5px; /* Space under tags */
    border-radius: 20px; /* Makes the tags round */
    text-decoration: none; /* Removes underline */
    transition: background-color 0.3s; /* Smooth color change on hover */
}

/* Hover effect for tags */
.single-post-footer .tag-links a:hover {
    background-color: #9DB2BF; /* Hover color */
}

/* Ensure the tags stay on one line */
.single-post-footer .tag-links {
    display: flex;
    flex-wrap: wrap; /* Allows the tags to wrap to the next line if needed */
    gap: 10px; /* Space between tags */
    margin: 10px auto;
}


.blog-item .tag-links a {
    display: inline-block;
    background-color: #27374D; /* Choose a background color */
    color: white; /* Text color */
    font-size: 14px; /* Adjust font size */
    padding: 6px 12px; /* Adjust padding */
    margin-right: 10px; /* Space between tags */
    margin-bottom: 5px; /* Space under tags */
    border-radius: 20px; /* Makes the tags round */
    text-decoration: none; /* Removes underline */
    transition: background-color 0.3s; /* Smooth color change on hover */
}

/* Hover effect for tags */
.blog-item .tag-links a:hover {
    background-color: #9DB2BF; /* Hover color */
}

/* Ensure the tags stay on one line */
.blog-item .tag-links {
    display: flex;
    flex-wrap: wrap; /* Allows the tags to wrap to the next line if needed */
    gap: 10px; /* Space between tags */
}


/* ==================PRODUCTS==================================================== */

.product-container {
    padding: 150px 20px;
}

.single-product .product-image {
    width: 50%;
}

.single-product .product-images img {
    max-width: 100%;
    height: auto;
}


.single-product .product-info {
    display: flex;
    flex-flow: column;
    width: 50%;
}

.product-title {
    display: flex;

}

.product-price {
    color: #27374D;
    display: flex;
    padding: 0;
}


.product-description, .product-description p {
    margin: 0;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    color: inherit;
    text-align: inherit;

}

.add-to-cart-button {
    display: flex;
    padding: 0px 20px ;
}



.product-details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.image-carousel {
    display: flex;
    overflow-x: auto;
    gap: 10px;
}

.carousel-item {
    flex: 0 0 auto; /* Prevent items from wrapping */
    width: 100%; /* Adjust width of each item */
}


.stock-high {
    color: green;
}

.stock-low {
    color: yellow;
}

.stock-out {
    color: red;
}




.woocommerce {
    /* display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center; */

}


/* General Checkout Container */
.woocommerce-checkout {
    margin: 0 auto;
    background: #f9f9f9; /* Light grey background */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.woocommerce-checkout form {
    padding: 20px;
}

/* Form Fields */
.woocommerce-checkout .form-row,
.woocommerce-checkout .form-row-wide {
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.woocommerce-checkout .input-text,
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus {
    border-color: #526D82; /* Match your site’s accent color */
    outline: none;
    box-shadow: 0px 0px 4px rgba(82, 109, 130, 0.5);
}

/* Section Headings (e.g., Billing Details, Order Summary) */
.woocommerce h3 {
    font-size: 22px;
    color: #27374D;
    border-bottom: 2px solid #526D82;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

/* Buttons (Place Order, etc.) */
.woocommerce-checkout button,
.woocommerce input[type="submit"] {
    display: inline-block;
    background: #27374D;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.woocommerce-checkout button:hover,
.woocommerce input[type="submit"]:hover {
    background: #526D82; /* Match your secondary site color */
}

/* Order Summary (Right Panel) */
.woocommerce-checkout-review-order {
    margin-top: 30px;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.woocommerce-checkout-review-order table th,
.woocommerce-checkout-review-order table td {
    font-size: 16px;
    padding: 10px 5px;
}

/* Error Notices */
.woocommerce-error {
    color: #fff;
    background: #d9534f;
    border-left: 4px solid #c9302c;
    border-radius: 4px;
    margin-bottom: 20px;
}

.woocommerce-error a {
    color: #fff;
    text-decoration: underline;
}

/* Adjust Spacing for Billing and Shipping Fields */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.woocommerce-billing-fields__field-wrapper .form-row-wide,
.woocommerce-shipping-fields__field-wrapper .form-row-wide {
    grid-column: 1 / -1;
}

/* Payment Section */
.woocommerce-checkout-payment {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #526D82;
}

.woocommerce-checkout-payment input[type="radio"] {
    margin-right: 10px;
}

.woocommerce-checkout-payment label {
    font-size: 16px;
    font-weight: bold;
}

/* Responsive Design */
/* @media (max-width: 768px) {
    .woocommerce-billing-fields__field-wrapper,
    .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: 1fr;
    }

    .woocommerce-checkout {
        padding: 15px;
    }
} */


/* General layout for the address form */
.woocommerce-account .woocommerce-address-fields {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* Style the form title */
.woocommerce-account .woocommerce-address-fields h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Style individual address field containers */
.woocommerce-address-fields__field-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Ensure inputs have consistent padding and margin */
.woocommerce-account .woocommerce-checkout input[type="text"],
.woocommerce-account .woocommerce-checkout input[type="email"],
.woocommerce-account .woocommerce-checkout input[type="tel"],
.woocommerce-account .woocommerce-checkout select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
    background-color: #fff;
}

/* Style for the Save Address button */
.woocommerce-address-fields p .button {
    background-color: #0073aa;
    color: #fff;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 16px;
    width: auto;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.woocommerce table.my_account_orders .button {
    background-color: #0073aa;
    color: #fff;
    padding: 5px;
    border-radius: 4px;
    font-size: 14px;
    width: auto;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.woocommerce .woocommerce-MyAccount-content .button {
    background-color: #0073aa;
    color: #fff;
    padding: 5px;
    border-radius: 4px;
    font-size: 14px;
    width: auto;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.woocommerce table.my_account_orders .button:hover {
    background-color: #005177;
}
/* Hover effect for the button */
.woocommerce-account .button:hover {
    background-color: #005177;
}

/* Style for input field focus */
.woocommerce-account .woocommerce-checkout input:focus {
    border-color: #0073aa;
    outline: none;
}

/* Add spacing between form and footer */
.woocommerce-account form {
    margin-bottom: 30px;
}

/* Optional: Adjust layout for mobile screens */
@media (max-width: 768px) {
    .woocommerce-address-fields__field-wrapper {
        grid-template-columns: 1fr; /* Stack the fields on small screens */
        gap: 15px;
    }

    .woocommerce-account .woocommerce-checkout input[type="text"],
    .woocommerce-account .woocommerce-checkout input[type="email"],
    .woocommerce-account .woocommerce-checkout input[type="tel"],
    .woocommerce-account .woocommerce-checkout select {
        width: 100%;
    }
}



.woocommerce-info {
    border-top-color: transparent;
}

.woocommerce-page .single_add_to_cart_button {
    background-color: #526D82 !important;
    color: white !important; 
    margin: 10px 0px !important;
    padding: 12px 20px !important; 
    border: none !important; 
    border-radius: 5px !important; 
    font-size: 16px !important; 
    text-transform: uppercase !important; 
    cursor: pointer !important; 
    transition: background-color 0.3s ease !important; 
}

.woocommerce-page .single_add_to_cart_button:hover {
    background-color: #27374D !important; 
}

.woocommerce-page .single_add_to_cart_button[disabled] {
    background-color: #ccc !important; 
    cursor: not-allowed !important; 
}


.variations td {
    position: relative; /* Ensure that it's relative to this container */
}

.variations select {
    width: 100%;
    font-size: 16px;
    padding: 10px;
    margin-top: 5px;
    box-sizing: border-box; /* Prevents the dropdown from overflowing the container */
}

.variations select:focus {
    z-index: 10; /* Ensure the dropdown stays on top */
}




@media (max-width: 768px) {
    .product-details {
        flex-direction: column;
        align-items: center;
    }

    .product-image, .product-info {
        width: 100%;
    }
}


.entry-content {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
}


/* Site Colors
27374D Navy
526D82 Light Navy
9DB2BF Light Blue
DDE6ED Pastel Blue
*/