/* General styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F8F5EE; /* Beige base */
    color: #363636; /* Standard dark grey text for readability */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #4A4A4A; /* Slightly darker for headings */
}

/* Bulma overrides / Customizations */
.navbar {
    background-color: #FFFFFF; /* White navbar for clean look */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); /* Soft shadow */
    min-height: 4.25rem; /* Ensure enough height */
}

.navbar-brand .site-name {
    color: #4A4A4A;
}

.navbar-item {
    color: #4A4A4A;
    font-weight: 600;
}

.navbar-brand{
    margin-right: 20px;
}

.navbar-item:hover {
    color: #8C6A5A; /* Soft brown for hover */
    background-color: transparent;
}

.button.is-primary {
    background-color: #8C6A5A; /* Soft brown primary button */
    border-color: #8C6A5A;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 20px !important;
}

.button.is-primary:hover, .button.is-primary:focus {
    background-color: #A68A7D; /* Lighter brown on hover */
    border-color: #A68A7D;
    color: #FFFFFF;
}

.button.is-light {
    background-color: #E0DED7; /* Light beige/grey for secondary buttons */
    border-color: #D1CEC5;
    color: #4A4A4A;
    font-weight: 600;
}

.button.is-light:hover, .button.is-light:focus {
    background-color: #D1CEC5;
    border-color: #C2BFB6;
    color: #363636;
}

.button:not(.is-primary):not(.is-light) {
    text-decoration: none; /* Remove underline from all buttons */
}

a.button {
    text-decoration: none; /* Ensure no underline on anchor buttons */
}

/* Hero Section */
.hero-background {
    background-image: url('assets/pics/hero-fashion-new_2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

.hero .title, .hero .subtitle {
    position: relative; /* Bring text above overlay */
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Text shadow for readability */
}

.hero-button {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

/* Products Section */
.products-section {
    background-color: #FDFBF8; /* Slightly lighter beige */
    padding: 4rem 0;
}

.product-card {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Soft shadow */
    transition: none; /* No animation */
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
}

.product-card .card-image {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;

    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 10px;
    }
}

.product-card .card-content {
    flex-grow: 1; /* Allow content to expand */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.product-card .product-title {
    color: #4A4A4A;
    margin-bottom: 0.5rem;
}

.product-card .product-description-short {
    font-size: 0.95rem;
    color: #6F6F6F;
    margin-bottom: 1rem;
}

.product-card .price {
    color: #8C6A5A;
    margin-top: 1rem;
}

.product-card .buttons {
    margin-top: auto; /* Push buttons to the bottom */
}

/* Product Detail Modal */
.modal-card {
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    max-width: 1100px;
    width: 100%;
    padding: 0 15px;
}

.modal-card-head {
    background-color: #F8F5EE;
    border-bottom: 1px solid #E0DED7;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.modal-card-title {
    color: #4A4A4A;
    font-family: 'Playfair Display', serif;
}

.modal-card-body {
    background-color: #FFFFFF;
    padding: 2rem;

    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.modal-card-foot {
    background-color: #F8F5EE;
    border-top: 1px solid #E0DED7;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}


#cart-items-container .cart-item {
    background-color: #FFFFFF;
    border: 1px solid #E0DED7;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

#cart-items-container .cart-item img {
    border-radius: 4px;
    margin-right: 1rem;
}

#cart-items-container .cart-item .item-details {
    flex-grow: 1;
}

#cart-items-container .cart-item .item-details .item-name {
    font-weight: 600;
    color: #4A4A4A;
}

#cart-items-container .cart-item .item-details .item-price {
    color: #6F6F6F;
    font-size: 0.9rem;
}

#cart-items-container .cart-item .item-quantity select {
    min-width: 60px;
    margin-left: 1rem;
    margin-right: 1rem;
}

#cart-items-container .cart-item .item-subtotal {
    font-weight: 600;
    color: #8C6A5A;
    width: 80px;
    text-align: right;
}

#cart-modal #checkout-button {
    width: 100%;
}



#added-item-image {
    border-radius: 4px;
}

/* FAQ Section */
.faq-section {
    background-color: #FDFBF8;
    padding: 4rem 0;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-question {
    cursor: pointer;
    background-color: #E0DED7; /* Creamy background for question */
    border-bottom: 1px solid #D1CEC5;
    color: #4A4A4A;
}

.faq-question:hover {
    background-color: #D1CEC5;
}

.faq-answer {
    background-color: #FFFFFF;
    color: #6F6F6F;
    border-top: 1px solid #F8F5EE;
}

.faq-answer.is-hidden {
    display: none;
}

.faq-question .expand-icon {
    transition: transform 0.1s ease-out; /* No animation constraint, but for icon rotation, it's a minor visual cue */
}

.faq-question.is-active .expand-icon {
    transform: rotate(180deg);
}


/* Footer */
.footer {
    background-color: #8C6A5A; /* Darker brown for footer */
    color: #F8F5EE; /* Light text on dark background */
    padding: 3rem 1.5rem;
}

.footer a {
    color: #F8F5EE;
    text-decoration: none;
}

.footer a:hover {
    color: #FFFFFF;
}

.footer .footer-link {
    margin: 0 0.5rem;
}

.footer .site-name {
    color: #F8F5EE;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #4A4A4A; /* Dark background for contrast */
    color: #FFFFFF;
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner .container {
    max-width: 960px; /* Constrain width */
    margin: 0 auto;
}

.cookie-banner .cookie-message {
    margin-right: 1rem;
    font-size: 0.9rem;
}

.cookie-banner .buttons .button {
    margin-left: 0.5rem;
}

/* Utility classes */
.is-hidden {
    display: none !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .hero .title {
        font-size: 2.5rem !important;
    }
    .hero .subtitle {
        font-size: 1.5rem !important;
    }
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner .cookie-message {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .cookie-banner .buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .buttons .button {
        margin: 0 0.25rem;
    }
    .navbar-menu {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding-bottom: 1rem;
    }
}/* Styles for the parent container */
.lawMatrixNode {
    padding-top: 3rem; /* Top padding for the section */
    padding-left: 1.5rem; /* Left padding for the section */
    padding-right: 1.5rem; /* Right padding for the section */
    max-width: 1024px; /* Max width to keep content readable */
    margin-left: auto; /* Center the container */
    margin-right: auto; /* Center the container */
}

/* Heading styles within .lawMatrixNode */
.lawMatrixNode h1 {
    font-family: 'Playfair Display', serif; /* Consistent heading font */
    font-size: 2.2rem; /* Moderate size for main heading */
    color: #4A4A4A; /* Heading color */
    margin-bottom: 1.2rem; /* Space below heading */
    line-height: 1.2; /* Line height for readability */
}

.lawMatrixNode h2 {
    font-family: 'Playfair Display', serif; /* Consistent heading font */
    font-size: 1.8rem; /* Size for sub-headings */
    color: #4A4A4A; /* Heading color */
    margin-bottom: 1rem; /* Space below heading */
    line-height: 1.3; /* Line height for readability */
}

.lawMatrixNode h3 {
    font-family: 'Playfair Display', serif; /* Consistent heading font */
    font-size: 1.5rem; /* Size for minor headings */
    color: #4A4A4A; /* Heading color */
    margin-bottom: 0.8rem; /* Space below heading */
    line-height: 1.4; /* Line height for readability */
}

.lawMatrixNode h4 {
    font-family: 'Playfair Display', serif; /* Consistent heading font */
    font-size: 1.3rem; /* Smaller heading size */
    color: #4A4A4A; /* Heading color */
    margin-bottom: 0.6rem; /* Space below heading */
    line-height: 1.5; /* Line height for readability */
}

.lawMatrixNode h5 {
    font-family: 'Playfair Display', serif; /* Consistent heading font */
    font-size: 1.1rem; /* Smallest heading size */
    color: #4A4A4A; /* Heading color */
    margin-bottom: 0.5rem; /* Space below heading */
    line-height: 1.6; /* Line height for readability */
}

/* Paragraph styles within .lawMatrixNode */
.lawMatrixNode p {
    font-family: 'Montserrat', sans-serif; /* Body text font */
    font-size: 1rem; /* Standard body text size */
    color: #363636; /* Standard dark grey text */
    margin-bottom: 1rem; /* Space between paragraphs */
    line-height: 1.7; /* Generous line height for readability */
}

/* List styles within .lawMatrixNode */
.lawMatrixNode ul,
.lawMatrixNode ol {
    font-family: 'Montserrat', sans-serif; /* Body text font for lists */
    color: #363636; /* Standard dark grey text */
    margin-bottom: 1rem; /* Space below the entire list */
    margin-left: 1.5rem; /* Indentation for the list */
    padding-left: 0; /* Reset default padding if any, markers will handle it */
}

.lawMatrixNode li {
    font-size: 1rem; /* Standard list item text size */
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.6; /* Line height for list items */
}

/* Specific list item marker styling */
.lawMatrixNode ul {
    list-style-type: disc; /* Default disc for unordered lists */
}

.lawMatrixNode ol {
    list-style-type: decimal; /* Default decimal for ordered lists */
}


@media (max-width: 575px){
    .modal-card-foot.is-justify-content-flex-end{
        flex-direction: column !important;
        gap: 15px;

        .button.is-primary{
            margin: 0 !important;
            font-size: 18px !important;
        }
    }

    .cart-item{
        flex-direction: column !important;
        gap: 15px;
    }
}

.select:not(.is-multiple):not(.is-loading)::after{
    right: 20px !important;
}

.logo{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    img{
        width: 60px;
        height: 60px;
        object-fit: contain;
    }
}

.container{
    padding: 0 10px !important;
}