@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    /*colors*/
    --white-color: #ffffff;
    --dark-color: #1a1a1a;
    --primary-color: #2c2c2c;
    --secondary-color: #c5a059;
    --light-pink-color: #f8f6f2;
    --medium-gray-color: #e0e0e0;

    /*font size*/
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /*font weight*/
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /*border radius*/
    --border-redius-s: 8px;
    --border-redius-m: 30px;
    --border-redius-circle: 50%;

    /*site max width*/
    --site-max-width: 1300px;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

.section-title {
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
    margin-top: 40px;
}

.section-title::after {
    content: "";
    height: 3px;
    width: 200px;
    display: block;
    background: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: var(--border-redius-s);
}

/* navbar */

header {
    background: var(--light-pink-color);
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .navbar {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    justify-content: space-between;
    max-width: var(--site-max-width);
    margin: 0 auto;
}

.navbar .nav-menu .nav-link {
    color: var(--dark-color);
    padding: 10px 15px;
    font-weight: 600;
    transition: 0.3s;
    border-radius: 30px;
    font-size: var(--font-size-m);
}

.navbar .nav-menu .nav-link:hover {
    color: var(--primary-color);
    background: var(--secondary-color);

}

/* FIXED: Correct ID names */
.navbar :where(#menu-open-button, #menu-close-button) {
    display: none;
}

.navbar .nav-logo .logo-text {
    color: var(--dark-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    font-family: 'Courier New', Courier, monospace;
}

.navbar .nav-menu {
    display: flex;
    gap: 20px;
}

/* Style for the logo image element */
/* --- 1. Resizing the Logo Image --- */
.nav-logo .logo-image {
    /* Set a fixed height and let the width scale proportionally */
    height: 90px;
    /* Adjust this value (e.g., 50px, 80px) until it looks right */
    width: auto;
    display: block;
    /* Ensures the image behaves well */
}

/* --- 2. Styling the Logo Container for Zoom Effect --- */
.nav-logo .logo-image {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
}

/* --- 4. Ensuring the Navbar is Aligned (If the navigation is still misplaced) --- */
/* If you have a separate style for the navbar that controls alignment,
    you might need to ensure the items are centered vertically.
    This is a general fix for navbar alignment: */

/* hero section */

.hero-section {
    background: var(--primary-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 120px 20px 60px;
}

.hero-section .hero-details {
    max-width: 50%;
    color: var(--white-color);
}


.hero-section .hero-details .title {
    font-family: "Miniver", cursive;
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.hero-section .hero-details .subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section .hero-details .description {
    font-size: var(--font-size-xl);
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-section .button {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: var(--border-redius-m);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.3s;
    border: 2px solid var(--secondary-color);
}



.hero-section .button:hover {
    background: transparent;
    color: var(--secondary-color);
}

/* Ensure the button element in the image has the new styling */


.hero-section .hero-image-wrapper {
    width: 45%;
    display: flex;
    justify-content: center;
}

.hero-section .hero-image-wrapper img {
    width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/* Responsive adjustments for the hero section */
@media screen and (max-width:900px) {

    .hero-section {
        min-height: auto;
        /* Allow height to adjust on mobile */

    }

    .hero-section .section-content {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
        text-align: center;
        flex-direction: column;
        /* Stack details and image vertically */
    }

    .hero-section .hero-details {
        max-width: 100%;
        padding-right: 0;
    }

    .hero-section .hero-details .title {
        font-size: 2rem;
        margin-top: 20px;
    }

    .hero-section .hero-details .subtitle {
        font-size: 1.4rem;
    }

    .hero-section .hero-details .description {
        font-size: 1rem;
    }

    .hero-section .hero-image-wrapper {
        width: 100%;
        max-width: 400px;
        /* Limit image size on smaller screens */
    }

    .hero-image {
        width: 100%;
        /* Use 100% of the max-width 400px wrapper */
    }
}

/* about section */

.about-section {
    padding: 120px 0;
    background: var(--light-pink-color);
}

.about-section .section-content {
    /* Main Layout: Image on Left, Details on Right */
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

.about-section .about-image-wrapper {
    /* Ensure the image wrapper takes up a defined space on the left */
    width: 40%;
    /* Changed to 40% for better balance */
    display: flex;
    /* Centers the content/image inside the wrapper */
    justify-content: center;
}

.about-section .about-image-wrapper .about-image {
    /* Updated image dimensions to better fit the content */
    width: 100%;
    max-width: 450px;
    /* New: Increased max width for a larger image */
    height: auto;
    object-fit: contain;
    /* Changed from cover to contain to ensure the whole image is visible */
}

.about-section .about-details {
    /* Details section takes up the remaining space on the right */
    width: 60%;
    /* Changed to 60% for better balance */
    max-width: none;
    /* Removed the previous max-width constraint */
}

.about-section .about-details .section-title {
    padding: 0;
    /* New: Left-align the title for the new layout */
    text-align: left;
    margin-bottom: 20px;
    /* Added space below the title */
}

.about-section .about-details .section-title::after {
    /* New: Left-align the underline */
    margin: 10px 0 0 0;
}


.about-section .about-details .text {
    /* Adjusted text styling */
    line-height: 1.7;
    /* Increased line height for readability */
    margin: 30px 0;
    /* Reduced top and bottom margin for a tighter fit */
    text-align: left;
    /* New: Left-align the text to fit the modern layout */
    font-size: var(--font-size-n);
    /* Used standard font size */
    color: var(--dark-color);
    /* Ensure text is readable */
}

.about-section .social-link-list {
    /* New: Left-align the social links */
    justify-content: flex-start;
    margin-top: 20px;
}


@media (min-width: 900px) {

    #menu-open-button,
    #menu-close-button {
        display: none !important;
    }
}

/* responsive */
@media screen and (max-width:900px) {

    :root {
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }

    body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0, 0, 0, 0.2);
    }

    /* FIXED: Correct IDs */
    .navbar :where(#menu-close-button, #menu-open-button) {
        font-size: var(--font-size-l);
        display: block;
    }

    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 30px;
        color: var(--dark-color);
    }

    .navbar #menu-open-button {
        color: var(--dark-color);
    }

    .navbar .nav-menu {
        background: var(--white-color);
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        transition: left 0.2s ease;
    }

    body.show-mobile-menu .navbar .nav-menu {
        left: 0;
    }

    .navbar .nav-menu .nav-link {
        color: var(--dark-color);
        font-size: var(--font-size-l);
        display: block;
        margin-top: 17px;
    }

    .about-section .section-content {
        /* Mobile: Stack them vertically, details above image */
        flex-direction: column;
        gap: 40px;
    }

    .about-section .about-image-wrapper,
    .about-section .about-details {
        /* Mobile: Full width */
        width: 100%;
        max-width: 100%;
    }

    .about-section .about-image-wrapper .about-image {
        max-width: 300px;
        /* Keep image manageable on mobile */
    }

    .about-section .about-details .section-title,
    .about-section .about-details .text {
        text-align: center;
        /* Center align text on mobile */
    }

    .about-section .about-details .section-title::after {
        /* Center align the underline on mobile */
        margin: 10px auto 0;
    }

    .about-section .social-link-list {
        /* Center align social links on mobile */
        justify-content: center;
    }

    .contact-section .section-content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .contact-section .contact-form {
        max-width: 100%;
        /* Allow form to take full width on mobile */
    }
}


@media screen and (max-width:640px) {
    .menu-section .menu-list {
        gap: 60px;

    }

    .menu-section .menu-list .menu-item {
        width: 100%;
    }

    .footer-section .section-content {
        flex-direction: column;
        gap: 20px;
    }

    .products-section .swiper-slide-button {
        display: none;
    }

    .products-section .slider-wrapper {
        margin: 0 0 30px;

    }


}

/* WHY CHOOSE US SECTION */
/* --- NEW WHY CHOOSE US SECTION STYLE --- */
.why-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.why-section .section-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: var(--site-max-width);
    margin: 0 auto;
}

/* Container for Text + Door Image */
.why-content-wrapper {
    flex: 1.2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.why-text-area {
    flex: 1;
}

.why-small {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.why-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
    color: #000;
}

.why-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.why-explore-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: var(--border-redius-m);
    margin-top: 20px;
    font-weight: 600;
    transition: 0.3s ease;
}

.why-explore-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* The vertical door image next to text */
.why-main-image-container {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.why-door-img {
    width: 100%;
    max-width: 450px;


    border-radius: 4px;
}

.why-door-img {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    will-change: transform;
    /* This tells the browser to keep it stable */
}

/* The Grid of White Cards */
.why-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns to fit the side layout */
    gap: 20px;
}

.why-card {
    background: #fff;
    padding: 30px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    /* The soft shadow from image */
    transition: all 0.3s ease;
    border: 1px solid #f9f9f9;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* DELETE IF YOU FIND THIS */

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    object-fit: contain;
}

.why-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

/* --- MOBILE VIEW FIX --- */
@media screen and (max-width: 1024px) {
    .why-section .section-content {
        flex-direction: column;
        text-align: center;
    }

    .why-content-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
        /* Single column for small phones */
    }

    .why-title {
        font-size: 2.5rem;
    }

    .why-main-image-container {
        display: none;
        /* Hide door image on very small mobile to save space */
    }
}

/* WHY CHOOSE US - Card Refinement */
.why-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* This specific shadow creates the 'depth' seen in your image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.why-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
    object-fit: contain;
}

.why-box-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

/* contact section*/
/* --- Base Contact Section Styling --- */
.contact-section {
    padding: 80px 0;
    background: #9d9c9c;
    /* Matching your screenshot background */
}

.contact-section .section-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}

/* Typography for the "Need Help" Area */
.contact-info-list {
    flex: 1;
}

.contact-info-list h2 {
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* --- Form Styling --- */
.contact-section .contact-form {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
}

.contact-section .contact-form .form-input,
.contact-section .contact-form textarea {
    width: 100%;
    background: var(--white-color);
    border: 1px solid var(--medium-gray-color);
    border-radius: var(--border-redius-s);
    padding: 15px;
    outline: none;
    margin-bottom: 20px;
    /* Increased margin to prevent overlap */
    font-size: var(--font-size-n);
    font-family: inherit;
}

.contact-section .contact-form textarea {
    height: 120px;
    /* Increased height for better visibility */
    resize: vertical;
}

.contact-section .contact-form .form-input:focus,
.contact-section .contact-form textarea:focus {
    border: 2px solid var(--secondary-color);
}

.contact-section .contact-form .submit-button {
    background: var(--primary-color);
    padding: 14px 30px;
    color: var(--white-color);
    border-radius: var(--border-redius-m);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-m);

    transition: 0.3s ease;
    cursor: pointer;
    align-self: flex-start;
    /* Keeps button left-aligned */
}

.contact-section .contact-form .submit-button:hover {
    background: transparent;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media screen and (max-width: 900px) {
    .contact-section .section-content {
        flex-direction: column;
        /* Stacks the help text and form */
        gap: 30px;
        text-align: center;
    }

    .contact-section .contact-form {
        max-width: 100%;
        width: 100%;
    }

    /* Scaling down the large phone number text for mobile */
    .contact-info-list h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .contact-section .contact-form .submit-button {
        align-self: center;
        /* Center button on mobile */
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .contact-info-list h2 {
        font-size: 1.4rem;
        /* Further reduction for small phones */
    }

    .contact-section {
        padding: 50px 15px;
    }
}

/*footer section*/
.footer-section {
    background: var(--dark-color);
    padding: 20px 0;
}

.footer-section :where(.copyright-text, .social-link, .policy-link) {
    color: var(--white-color);
    transition: 0.2s ease;

}

.footer-section .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.footer-section .social-link-list {
    display: flex;
    gap: 25px;

}

.footer-section .social-link-list .social-link {
    font-size: var(--font-size-l);

}

.footer-section .social-link-list .social-link:hover,
.footer-section .policy-text .policy-link:hover {
    color: var(--secondary-color);

}

.footer-section .policy-text .separator {
    margin: 0 5px;
    color: var(--white-color);

}


/*products-style*/
.products-section {
    padding: 50px 0 100px;
    /* FIX: Added 'px' unit to 100 */
    background: var(--light-pink-color);

}

.products-section .products {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px;
    text-align: center;
}

.products-section .products .Products-image {
    /* Set a reasonable maximum size for product images in the slider */
    width: 100%;
    max-width: 300px;
    height: 350px;
    object-fit: contain;
    margin-bottom: 10px;

}

.products-section .products .name {
    margin-bottom: 16px;
    font-size: var(--font-size-l);
}

.products-section .products .name,
.products-section .products-list .name,
.products-section .products .Products-image+.name {
    color: var(--primary-color) !important;
    /* or use: color: #3b141c;  if you prefer hex */
    font-weight: var(--font-weight-bold, 700);
}

.products-section .products a .name {
    color: var(--primary-color) !important;
}

.products-section .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    opacity: 1;
    background: var(--secondary-color);


}

.products-section .swiper-slide-button {
    color: var(--secondary-color);
    transition: 0.3s ease;
    margin-top: -50px;


}

.products-section .swiper-slide-button:hover {
    color: var(--primary-color);
}

.products-section .slider-wrapper {
    overflow: hidden;
    margin: 0 60px 50px;
}



/* RESPONSIVE FIX for Products - ensuring 2 in a row on medium screens */

/* ======================================================= */
/* PRODUCT DETAIL PAGE STYLING (UPDATED)                   */
/* ======================================================= */

.product-section {
    background: #faf8fa;
    padding-top: 100px;
    padding-bottom: 50px;
}


.product-details-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.product-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- UPDATED MAIN PRODUCT IMAGE STYLE --- */
.product-main-image {
    width: 100%;
    max-width: 380px;
    height: auto;
    object-fit: contain;

    /* The outer container styling */
    background: #ffffff;
    border: 1px solid #e0e0e0;
    /* Light gray outer border */
    border-radius: 8px;
    padding: 40px;
    /* Space for the inner frame effect */

    /* The inner "frame" look */
    box-shadow: inset 0 0 0 1px #d1d1d1, 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Adds a hover effect to the main image container */
.product-main-image:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* --- UPDATED THUMBNAIL STYLE --- */
.product-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    justify-content: flex-start;
    /* Aligns thumbnails under the image */
    flex-wrap: wrap;
}

.product-thumbnails img {
    width: 100px;
    /* Fixed width for consistency */
    height: 120px;
    /* Fixed height for a vertical door look */
    object-fit: contain;
    background: #ffffff;
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: 0.2s ease-in-out;
}

/* Hover and Selected state for thumbnails */
.product-thumbnails img:hover,
.product-thumbnails img.selected {
    border: 2px solid var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* --- RIGHT COLUMN TEXT STYLES (Focus of the final fix) --- */
.product-info {
    flex: 2;
    min-width: 290px;
    text-align: left;
    /* Ensures all text starts at the left edge */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Aligns buttons and blocks to the left */
}

/* --- HERO SECTION STYLING --- */
.product-detail-hero {
    background: #4a4a4a;
    /* Dark gray from your image */
    padding: 70px 0 10px;
    text-align: center;
}



.hero-title-box {
    border: 3px solid #ffffff;
    padding: 20px 40px;
    display: inline-block;
    position: relative;
}

/* Partial border gap effect */
.hero-title-box::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: 15%;
    width: 20px;
    height: 6px;
    background: #4a4a4a;
}

.hero-main-title {
    color: #ffffff;
    font-size: var(--font-size-l);
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.breadcrumbs-container {
    color: #ffffff;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumbs-container a {
    color: #ffffff;
}

.product-description {
    font-size: var(--font-size-l);
    color: #484848;
    margin-bottom: 35px;
    line-height: 1.7;
    text-align: left;
}

.product-info .section-label {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin: 30px 0 15px 0;
    letter-spacing: 0.02em;
    text-align: left;
    width: 100%;
    /* Ensures label takes full width */
}

/* --- SPECIFICATIONS TABLE STYLING --- */
.specifications {
    width: 100%;
    /* Changed from max-width + margin: auto */
    max-width: 550px;
    text-align: left;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-size-m);
    margin-bottom: 18px;
    color: #3a2727;
    background-color: var(--white-color);
    border: 1px solid #ece6e3;
    border-radius: 8px;
    overflow: hidden;
    /* Removed display: inline-block to prevent centering */
}

/* FIX: Specific border styling for table rows/cells */
.spec-table th {
    text-align: left;
    width: 35%;
    font-weight: 500;
    color: #333;
    background-color: #fcfcfc;
    border-right: 1px solid #ece6e3;
    padding: 12px 15px;
}

.spec-table td {
    padding: 12px 15px;
    text-align: left;
    color: #555;
    border-bottom: 1px solid #ece6e3;
}

/* --- DESCRIPTION LIST (Features) STYLING --- */
.description-long {
    width: 100%;
    text-align: left;
}

.description-list {
    margin: 8px 0 32px 0;
    /* Removed auto margins */
    padding: 0;
    color: #333;
    list-style-type: disc;
    /* Use standard disc for clean alignment */
    padding-left: 20px;
    display: block;
    /* Changed from inline-block */
}

.description-list li {
    font-size: var(--font-size-m);
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: left;
}

/* Removed the complex list-item pseudo-element styling */
/* .description-list li:before { ... } */


/* --- ENQUIRY BUTTON --- */
/* --- ENQUIRY BUTTON --- */
.enquiry-btn,
.enquiry-button {
    align-self: flex-start;
    /* Forces the button to stay on the left */
    background: transparent;
    color: var(--primary-color);
    padding: 12px 38px;
    border-radius: var(--border-redius-m);
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
    border: 2px solid var(--secondary-color);
    transition: all 0.2s ease;
    margin-top: 10px;
    display: inline-block;
}

.enquiry-btn:hover,
.enquiry-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 24px rgba(160, 85, 30, 0.11);
}

/* --- MOBILE OPTIMIZATION FOR PRODUCT PAGE --- */
@media screen and (max-width: 900px) {
    .product-details-wrapper {
        flex-direction: column;
        padding: 40px 20px;
        /* Better breathing room on tablets */
        gap: 30px;
        margin: 0 15px;
    }

    .product-info {
        width: 100%;
        padding: 0;
        /* Remove any padding that might push text right */
    }

    .product-detail-title {
        font-size: 2rem;
        /* Scaled down for mobile screens */
        text-align: left;
    }

    .specifications,
    .description-long {
        max-width: 100%;
        /* Use full width on small screens */
    }

    .spec-table th {
        width: 40%;
        /* Slightly more room for labels on mobile */
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .product-main-image {
        padding: 15px;
        /* Less padding inside the border for small phones */
    }

    .product-thumbnails img {
        width: 80px;
        /* Smaller thumbs to prevent horizontal scrolling */
        height: 95px;
    }

    .enquiry-btn {
        width: 100%;
        /* Full width button is easier to tap on phones */
        text-align: center;
    }
}

/* ======================================================= */
/* DOOR CATALOG GALLERY SECTION STYLING                   */
/* ======================================================= */

.door-catalog-section {
    background: var(--white-color);
    padding: 80px 0 100px;
}

.catalog-section-title {
    text-align: center;
    font-size: var(--font-size-l);
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 50px;
    padding: 0 20px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}



.door-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    transition: opacity 0.3s ease;
}

.door-catalog-grid.filtering {
    opacity: 0.7;
}

.door-catalog-item {
    position: relative;
    background: #fff;
    padding: 8px 5px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid #f9f9f9;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.door-catalog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.door-catalog-image-wrapper {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    overflow: hidden;
    background: var(--white-color);
}

.door-catalog-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: 320px;
    max-height: 280px;
}

.door-catalog-label {
    position: absolute;
    top: 5px;
    left: 5px;
    background: transparent;
    color: #333;
    padding: 5px 12px;
    font-size: 0.70rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 5px;
    z-index: 10;
    box-shadow: none;
    min-width: 50px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.door-catalog-label:hover {
    background: #0066CC;
    color: var(--white-color);
    border-color: #0066CC;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for catalog grid */
@media screen and (max-width: 1024px) {
    .door-catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .door-catalog-section {
        padding: 60px 0 80px;
    }

    .catalog-section-title {
        font-size: var(--font-size-m);
        margin-bottom: 40px;
    }

    .door-catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 18px;
        padding: 0 15px;
    }

    .door-catalog-item {
        min-height: 240px;
        padding: 6px 4px;
    }

    .door-catalog-image-wrapper {
        height: 200px;
        margin-bottom: 5px;
    }

    .door-catalog-image {
        max-width: 250px;
        max-height: 220px;
    }

    .door-catalog-label {
        font-size: 0.7rem;
        padding: 3px 8px;
        top: 6px;
        left: 6px;
        min-width: 40px;
    }
}

@media screen and (max-width: 480px) {
    .door-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }

    .catalog-section-title {
        font-size: var(--font-size-s);
        padding: 0 15px;
    }

    .door-catalog-item {
        min-height: 200px;
        padding: 6px 4px;
    }

    .door-catalog-image-wrapper {
        height: 160px;
        margin-bottom: 5px;
    }

    .door-catalog-image {
        max-width: 180px;
        max-height: 170px;
    }

    .door-catalog-label {
        font-size: 0.65rem;
        padding: 3px 6px;
        top: 5px;
        left: 5px;
        min-width: 35px;
    }
}