body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #fce4ec; /* Light pink background */
}

* {
    box-sizing: border-box;
}

.site-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #424242;
    font-size: 1.5rem;
    line-height: 64px; /* Align with Materialize navbar height */
    margin-left: 10px;
}

.logo-img {
    height: 40px !important;
    margin-top: 12px;
}

/* Responsive Typography for Headers */
h1.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

h2.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #d81b60; /* Deep pink */
    margin-bottom: 40px;
    padding-bottom: 10px;
    position: relative;
}

h2.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f48fb1; /* Light pink accent */
    border-radius: 2px;
}

h3.feature-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: #ec407a; /* Medium pink */
    margin-top: 15px;
    margin-bottom: 10px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    h1.hero-title {
        font-size: 2.2rem;
    }
    h2.section-title {
        font-size: 2rem;
    }
    h3.feature-title {
        font-size: 1.4rem;
    }
    .site-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    h1.hero-title {
        font-size: 1.8rem;
    }
    h2.section-title {
        font-size: 1.6rem;
    }
    h3.feature-title {
        font-size: 1.2rem;
    }
    .site-name {
        font-size: 1.25rem;
        line-height: 56px; /* Materialize mobile navbar height */
    }
    .logo-img {
        height: 30px;
        margin-top: 13px;
    }
}

/* Navbar */
nav .brand-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

nav ul li a {
    color: #424242;
    font-weight: 500;
    padding: 0 15px;
    white-space: nowrap;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #d81b60;
}

.sidenav {
    background-color: #ffebee;
}

.sidenav li > a {
    color: #424242;
    font-weight: 500;
}

.sidenav li > a:hover {
    background-color: #f8bbd0;
    color: #d81b60;
}

.cart-icon-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-count {
    background-color: #d81b60;
    color: white;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 0.8rem;
    min-width: 20px;
    text-align: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    width: 100%;
    min-height: 400px;
    background-image: url('images/content/hero-background_231.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.btn-large {
    padding: 0 30px;
    height: 54px;
    line-height: 54px;
    font-size: 1.1rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-large:hover {
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

/* Section Styling */
.section {
    padding: 60px 0;
}

.section.grey.lighten-5 {
    background-color: #f8f8f8;
}

/* About Section */
.about-section .flow-text {
    margin-bottom: 40px;
    color: #555;
}

.about-section .icon-block {
    padding: 20px;
    margin-bottom: 20px;
}

.about-section .icon-block i {
    font-size: 4rem;
    margin-bottom: 15px;
}

/* Product Showcase */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem; /* Materialize row margin fix */
    margin-right: -0.75rem;
}

.product-grid .col {
    display: flex;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.product-card .card-image {
    height: 250px; /* Fixed height for product images */
    overflow: hidden;
}

.product-card .product-img {
    width: 100%;
    height: 100% !important;
    object-fit: contain !important;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-card .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.product-card .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #424242;
}

.product-card .product-price {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 15px;
}

.product-card .original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

.product-card .discount-price {
    font-weight: 700;
    color: #d81b60; /* Deep pink for discount */
}

.product-card .btn {
    width: 100%;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    padding: 0 10px;
}

.product-card .card-reveal {
    padding: 24px;
}

.product-card .card-reveal .card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-card .card-reveal p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.product-card .card-reveal ul {
    list-style: disc inside;
    padding-left: 20px;
    margin-top: 15px;
    color: #555;
}

.product-card .card-reveal ul li {
    margin-bottom: 5px;
}

/* Why Choose Us Section */
.why-choose-us-section .icon-block {
    padding: 20px;
    margin-bottom: 30px;
}

.why-choose-us-section .icon-block i {
    font-size: 4.5rem;
    margin-bottom: 20px;
    display: block;
}

/* Testimonials Section */
.testimonial-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    min-height: 350px; /* Ensure equal height for testimonial cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card .card-content {
    padding: 30px;
    text-align: center;
}

.testimonial-card .avatar-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #f48fb1;
    margin-bottom: 15px;
}

.testimonial-card .author {
    font-weight: 700;
    color: #d81b60;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-card blockquote {
    border-left: 5px solid #f48fb1;
    margin: 0 0 20px 0;
    padding-left: 20px;
    color: #555;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-card .stars i {
    font-size: 1.3rem;
    margin: 0 2px;
}

/* Footer */
.page-footer {
    padding-top: 20px;
    background-color: #e91e63; /* Darker pink for footer */
}

.page-footer .footer-copyright {
    background-color: #c2185b; /* Even darker pink */
    padding: 15px 0;
}

.page-footer h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-footer ul li a {
    color: #f8bbd0;
    transition: color 0.2s ease;
}

.page-footer ul li a:hover {
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: none;
}

.cookie-banner .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.cookie-banner .cookie-message {
    flex: 1 1 60%;
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

.cookie-banner .cookie-buttons {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cookie-banner .btn {
    white-space: nowrap;
    word-break: normal;
}

@media (max-width: 600px) {
    .cookie-banner .cookie-message {
        flex-basis: 100%;
    }
    .cookie-banner .cookie-buttons {
        flex-basis: 100%;
        flex-direction: column;
    }
}

/* Modals */
.modal {
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.modal-content h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: #d81b60;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

#cart-items-container {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

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

.cart-item-details h6 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 5px 0;
    color: #424242;
}

.cart-item-details p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-controls input[type="number"] {
    width: 60px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 0;
    height: auto;
}

.cart-item-controls .btn-small {
    height: 36px;
    line-height: 36px;
    padding: 0 10px;
}

.cart-summary {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cart-summary h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d81b60;
    margin-bottom: 10px;
}

.cart-summary .delivery-info {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

#product-added-modal .responsive-img {
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#checkout-modal .input-field label {
    color: #d81b60;
}

#checkout-modal .input-field input:focus + label,
#checkout-modal .input-field textarea:focus + label,
#checkout-modal .input-field select:focus + label {
    color: #e91e63 !important;
}

#checkout-modal .input-field input:focus,
#checkout-modal .input-field textarea:focus,
#checkout-modal .input-field select:focus {
    border-bottom: 1px solid #e91e63 !important;
    box-shadow: 0 1px 0 0 #e91e63 !important;
}

#checkout-modal .input-field .select-wrapper span.caret {
    color: #d81b60;
}

#checkout-modal .input-field .dropdown-content li > span {
    color: #424242;
}

#order-confirmation-modal #order-id {
    color: #d81b60;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .product-card .card-image {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .product-card .card-image {
        height: 180px;
    }
    .product-card .card-title {
        font-size: 1.2rem;
    }
    .product-card .product-price {
        font-size: 1rem;
    }
    .cart-item {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .cart-item-image {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .cart-item-details {
        flex-basis: 100%;
        margin-bottom: 10px;
    }
    .cart-item-controls {
        flex-basis: 100%;
        justify-content: center;
    }
    .modal-footer .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .modal-footer {
        flex-direction: column-reverse;
    }
}
/*
 * New stock styles for .securePolicyGrid and its child elements.
 * Ensures consistent typography and spacing within the policy content area.
 */

.securePolicyGrid {
    /* Spacing above the grid content */
    margin-top: 60px;
    /* Horizontal padding for content within the grid, adjust as needed */
    padding-left: 30px;
    padding-right: 30px;
    /* Optional: Max width for better readability on large screens */
    /* max-width: 1200px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading 1 styles - not too large */
.securePolicyGrid h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700; /* Bold */
    color: #333; /* Dark grey for better readability */
}

/* Heading 2 styles */
.securePolicyGrid h2 {
    font-size: 26px;
    line-height: 1.25;
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 600; /* Semi-bold */
    color: #333;
}

/* Heading 3 styles */
.securePolicyGrid h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

/* Heading 4 styles */
.securePolicyGrid h4 {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 500; /* Medium weight */
    color: #333;
}

/* Heading 5 styles */
.securePolicyGrid h5 {
    font-size: 16px; /* Similar to body text, but with emphasis */
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

/* Paragraph styles */
.securePolicyGrid p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1em; /* Space between paragraphs */
    color: #444; /* Slightly lighter grey for body text */
}

/* Unordered list styles */
.securePolicyGrid ul {
    list-style-type: disc; /* Standard bullet points */
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 25px; /* Indent for bullet points */
    color: #444;
}

/* List item styles */
.securePolicyGrid li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0.5em; /* Space between list items */
}

/* Optional: Remove bottom margin for the last paragraph or list item in the grid */
.securePolicyGrid p:last-child,
.securePolicyGrid ul:last-child {
    margin-bottom: 0;
}
.row {
    display: flex;
    flex-wrap: wrap;
}

#why-choose-us-section .row .col {
    display: flex;
}

.icon-block {
    background: transparent;
    padding: 20px;
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    height: 100%;
    text-align: center;
}

.icon-block p {
    margin-top: auto;
}
.testimonials-section .row {
    justify-content: center;
}