/* full width line  */

.full-width-line {
    border: none;
    /* Remove default border */
    height: 3px;
    /* Thickness of the line */
    background-color: #ff6b2f;
    /* Line color */
    width: 100vw;
    /* Full viewport width */
    margin: 1rem 0;
    /* Vertical spacing from content */
}

.double-line {
    border: none;
    height: 4px;
    width: 200px;
    background-color: #ff6b2f;
    border-radius: 2px;
    margin: 2rem auto;
}

.first-line {
    margin-top: 6rem;
    /* only the first line has bottom margin */
    margin: 6rem 2 0;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Responsive iframe map container */
.map-container {
    position: relative;
    width: 100%;
    /* 16:9 aspect ratio */
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 2rem;
    border-radius: 12px;

}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    right: 0;
}

.dropdown-content a {
    color: #222;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
}

.hero {
    display: block;
    height: 49vh;
    /* reduced by ~30% from previous 70vh */
    padding: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.carousel {
    position: relative;
    /* match the hero width exactly */
    width: 100%;
    margin-left: 0;
    max-width: none;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    background: #fff;
    padding: 0;
    /* removed bottom padding leftover from fixed footer */
    transition: padding-top .6s ease
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    z-index: 1000;
    transition: height 0.1s cubic-bezier(0.33, 0.66, 0.66, 1), box-shadow .3s ease;
    height: 60px
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    transition: all .3s ease;
    flex: 0 0 auto;
    width: 280px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: inherit
}

header .logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

header .logo img {
    max-height: 100%;
    width: 100%;
    display: block;
    transition: all .3s ease;
    object-fit: contain
}

/* Custom footer that matches header background */
.custom-footer {
    background: #fff;
    /* same as header */
    color: #111;
    /* black text */
    padding: 3rem 1.5rem 1.5rem 1.5rem;
}

.custom-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
}

.custom-footer .footer-col {
    flex: 1 1 280px;
    min-width: 200px;
}

.custom-footer .footer-logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

.custom-footer h3 {
    font-size: 1.1rem;
    margin-bottom: .75rem;
    position: relative;
}

.custom-footer h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #ff7f50;
    margin-top: 8px;
}

.custom-footer p,
.custom-footer li,
.custom-footer a {
    color: #111;
    text-decoration: none;
}

.custom-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-footer li {
    margin-bottom: 0.6rem;
}

.custom-footer .footer-bottom-center {
    text-align: center;
    margin-top: 1.25rem;
    color: #111;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .custom-footer .footer-container {
        flex-direction: column;
        gap: 1.2rem;
    }
}

@media (max-width: 899px) {
    .custom-footer {
        padding: 1rem 1rem 0.8rem 1rem;
    }

    .custom-footer .footer-container {
        flex-direction: row;
        gap: 1rem;
        justify-content: space-between;
        align-items: flex-start;
    }

    .custom-footer .footer-col {
        flex: none;
        min-width: unset;
    }

    .custom-footer .footer-col:first-child {
        /* Logo column - left side */
        flex: 0 0 auto;
    }

    .custom-footer .footer-col:first-child p {
        display: none;
    }

    .custom-footer .footer-col:nth-child(2) {
        /* Useful Links - hide on mobile */
        display: none;
    }

    .custom-footer .footer-col:nth-child(3) {
        /* Address/Contact - right side with left alignment */
        flex: 1 1 auto;
        text-align: left;
    }

    .custom-footer .footer-col:nth-child(3) h3 {
        display: none;
    }

    .custom-footer .footer-col:nth-child(3) ul {
        margin: 0;
        padding: 0;
    }

    .custom-footer .footer-col:nth-child(3) li {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        line-height: 1.3;
    }

    .custom-footer .footer-logo img {
        max-width: 100px;
        height: auto;
    }

    .custom-footer .footer-bottom-center {
        text-align: center;
        margin-top: 0.8rem;
        font-size: 0.8rem;
        padding: 0.6rem 0;
        border-top: 1px solid #ddd;
    }
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
    height: 100%;
    /* center nav-menu horizontally in the header on desktop */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 900;
    width: auto;
}

header nav a {
    margin: 0;
    text-decoration: none;
    color: #333;
    background: transparent;
    padding: .3rem .7rem;
    border-radius: 4px;
    border: none;
    transition: all .3s ease;
    display: inline-block;
    white-space: nowrap;
    position: relative
}

header nav a:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, .4), inset 0 0 15px rgba(0, 0, 0, .2);
    transform: scale(1.05);
    color: #ff6b2f;
}

header .btn {
    background: #007bff;
    color: #fff;
    padding: .5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: 0;
    border: 0;
    gap: 6px;
    flex: 0 0 auto;
    padding: 0 2rem;
    height: 100%;
    align-items: center;
    justify-content: center
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all .3s ease
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px)
}



/* Carousel (hero) styles */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90vh;
    padding: 0 2rem;
    overflow: hidden;
    position: relative;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    flex: 1 1 auto;
    display: block;
}

.carousel .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .7s ease;
}

.carousel .slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Safety: make sure no parent padding/margin collapses the visible slide area */
section.hero,
section.hero .carousel,
section.hero .slide {
    margin: 0;
    padding: 0;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border: none;
    padding: .5rem .7rem;
    border-radius: 6px;
    cursor: pointer;
    z-index: 2;
}

.carousel-control.prev {
    left: 8px
}

.carousel-control.next {
    right: 8px
}

/* Overlayed hero content */
.hero .hero-content.overlay {
    position: absolute;
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
    color: #fff;
    z-index: 3;
    max-width: 720px;
    width: calc(100% - 4rem);
    text-align: center;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.hero .hero-content.overlay h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.hero .hero-content.overlay p {
    color: #fff;
    opacity: .95;
    margin-bottom: 1.5rem;
}

.hero .hero-content.overlay .hero-btn {
    background: transparent;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.18s ease;
    margin-left: 0;
}

.hero .hero-content.overlay .hero-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px) scale(1.02);
}

.hero .hero-content.overlay .hero-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.15);
    outline-offset: 2px;
}

/* Make the carousel and overlay adapt to smaller screens */
@media (max-width: 900px) {
    .carousel {
        width: 100%;
        margin-left: 0;
        height: 39vh;
        /* reduced ~30% */
    }

    .hero {
        height: 39vh;
        padding: 0;
    }

    .hero .hero-content.overlay {
        left: 50%;
        bottom: 5%;
        transform: translateX(-50%);
        text-align: center;
        max-width: calc(100% - 3rem);
    }
}

@media (max-width: 500px) {
    .carousel {
        width: 100%;
        margin-left: 0;
        height: 32vh;
        /* reduced ~30% */
    }

    .hero {
        height: 32vh;
    }

    .hero .hero-content.overlay {
        left: 50%;
        bottom: 4%;
        transform: translateX(-50%);
        max-width: calc(100% - 2rem);
    }

    .hero .hero-content.overlay h1 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .hero .hero-content.overlay p {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        display: none;
    }

    .hero .hero-content.overlay .hero-btn {
        padding: 0.55rem 0.9rem;
        font-size: 0.95rem;
        margin-left: 0;
    }

    .carousel-control {
        padding: 0.4rem 0.6rem;
    }
}

.features {
    padding: 2rem 2rem 4rem;
    background: #fff;
}


.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    color: #111;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.section-title span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    /* guaranteed below text */
    width: 0;
    height: 3px;
    background: #ff6b2f;
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

.section-title span:hover {
    transform: translateY(-2px);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.section-title span:hover::after {
    width: 100%;
}

.feature-card h3 {

    color: #111;
    min-height: 65px;
    font-size: 1.35rem;

    font-weight: 700;

    line-height: 1.3;

    margin: 0 0 14px;

    letter-spacing: 0.4px;

    position: relative;

    padding-bottom: 12px;

    transition: color 0.3s ease;

}

.feature-card h3::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 50px;

    height: 3px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.7);

    transition: width 0.3s ease;

}

.feature-card:hover h3::after {

    width: 80px;

}

/* Description */

.feature-card p {

    color: #2d2d2d;

    font-size: 0.95rem;

    line-height: 1.8;

    margin: 0;
    opacity: 0.95;
    transition: color 0.3s ease;

}

/* Hover Text */

.feature-card:hover h3,

.feature-card:hover p {

    color: #fff;

}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 250px));
    justify-content: center;
    gap: 2rem;
    background: #fff;
}

.feature-card {

    background: linear-gradient(135deg, #ff7f50, #ff6b2f);
    height: 100%;
    padding: 2rem;

    border-radius: 12px;

    width: 250px;

    display: flex;

    flex-direction: column;

    box-shadow:

        0 12px 24px rgba(0, 0, 0, 0.18),

        0 4px 8px rgba(0, 0, 0, 0.12);

    transform: translateY(-4px);

    opacity: 0;

    transition:

        transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),

        box-shadow 0.35s ease;

    cursor: pointer;

}

.feature-card:hover {

    transform: translateY(-12px) scale(1.12);

    box-shadow:

        0 30px 60px rgba(0, 0, 0, 0.32),

        0 14px 28px rgba(0, 0, 0, 0.22);

}



.products {
    padding: 4rem 2rem;
    background: #fff;
    box-sizing: border-box;
    box-sizing: border-box;
}

.product-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    /* padding: 2rem; */
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* image top/middle, name+rating bottom */
    align-items: center;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease, transform 0.3s ease, box-shadow 0.3s ease;
    height: 350px;
    box-sizing: border-box;
    /* fixed height to center image, adjust as needed */
}

.product-card img {
    max-height: 180px;
    /* adjust for proper vertical alignment */
    object-fit: contain;
    /* maintain aspect ratio */
    border-radius: 10px;
    margin-bottom: auto;
    /* pushes name+rating to bottom */
}

.product-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0 0.25rem 0;
}

.product-card .product-reviews {
    font-size: 0.85rem;
    color: #ff6b2f;
    margin-bottom: 0.5rem;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.15);
}




/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

/* Product Details */
.product-details {
    padding: 120px 2rem 4rem;
    min-height: 100vh
}

.product-container {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem
}

.gallery-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.main-image-container {
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;

    max-width: 600px;

    margin: 0 auto;
    /* center container */
}

.main-image {
    width: 100%;
    height: auto;
    /* maintain aspect ratio */
    object-fit: contain;
    /* keep full image visible, no crop */
    transition: opacity 0.3s ease;
}

#thumbnail-container {
    display: flex;
    gap: 1rem;
    width: 100%
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all .3s ease;
    object-fit: cover
}

.thumbnail:hover {
    border-color: #007bff;
    transform: scale(1.05)
}

.thumbnail.active {
    border-color: #ff7f50
}

.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.product-title {
    font-size: 1rem;
    color: #333;
    margin-bottom: .5rem
}

.product-rating {
    display: flex;
    align-items: center;
    gap: .5rem
}

#review-count {
    color: #666;
    font-size: .9rem
}

.product-description,
.product-details-info {
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px
}

.product-description h3,
.product-details-info h3 {
    margin-bottom: 1rem;
    color: #333
}

.product-description p {
    line-height: 1.6;
    color: #666
}

.product-details-info ul {
    list-style: none;
    padding: 0
}

.product-details-info li {
    padding: .5rem 0;
    color: #666;
    border-bottom: 1px solid #e0e0e0
}

.product-details-info li:last-child {
    border: 0
}

.product-details-info li:before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
    margin-right: .5rem
}

/* related products removed from markup; styles omitted */

/* Buttons use the generic .btn rule below; removed duplicated nested .btn rules */

.btn {
    background: #007bff;
    color: #fff;
    padding: .7rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s ease
}

.btn:hover {
    background: #0056b3
}

/* Tablet */
@media (max-width:768px) {
    header .logo {
        width: 200px;
        height: 100%;
        padding: 0;
    }

    header .logo img {
        height: 100%;
        width: 100%;
    }

    .hamburger {
        display: flex
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        right: 0;
        left: auto;
        width: 200px;
        background: #f4f3ee;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
        border-radius: 0 0 0 8px;
        z-index: 999;
        padding: 0
    }

    .nav-menu.active {
        max-height: fit-content
    }

    .nav-menu a {
        display: block;
        padding: .7rem 1rem;
        margin: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        transition: all .3s ease;
        text-align: center;
        color: #333;
        white-space: nowrap;
        width: 100%
    }

    .nav-menu a:hover {
        box-shadow: 0 0 20px rgba(0, 0, 0, .4), inset 0 0 15px rgba(0, 0, 0, .2);
        transform: scale(1.05);
        background: transparent
    }

    .nav-menu a:last-child {
        border: none
    }

    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .product-title {
        font-size: 1.5rem
    }

    .main-image-container {
        min-height: 300px
    }

    #thumbnail-container {
        gap: .5rem
    }

    .thumbnail {
        width: 60px;
        height: 60px
    }

    .features-grid {
        flex-direction: column;
        gap: 1rem
    }

    .feature-card {
        width: 100%
    }
}

/* Mobile */
@media (max-width:600px) {
    header .logo {
        width: 160px;
        height: 100%;
        padding: 0;
    }

    header .logo img {
        height: 100%;
        width: 100%;
    }

    .product-details {
        padding: 100px 1rem 2rem
    }

    .product-title {
        font-size: 1.2rem
    }

    .gallery-section {
        gap: 1rem
    }

    .main-image-container {
        min-height: 250px
    }

    #thumbnail-container {
        gap: .3rem
    }

    .thumbnail {
        width: 50px;
        height: 50px
    }

    .product-card {
        padding: .5rem
    }

    .product-card img {
        height: 200px;
        object-fit: cover
    }

    /* Ensure product grid shows two columns on small/mobile screens */
    .product-grid {
        grid-template-columns: repeat(1, 1fr);

        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        /* IMPORTANT */
        margin: 0;
        /* IMPORTANT */
    }

    .custom-footer {
        padding: 1rem;
        font-size: .9rem
    }
}

/* Contact Page */
.contact-section {
    padding: 120px 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
}

.contact-section>h1 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-form,
.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, .1);
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff7f50;
    box-shadow: 0 0 8px rgba(255, 127, 80, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background: #ff7f50;
    color: #fff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    background: #ff6b2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 127, 80, 0.3);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.contact-info {
    gap: 1rem;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.info-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, .1);
}

.info-box h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.info-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff7f50;
}

.info-box p,
.contact-item span {
    color: #555;
    line-height: 1.8;
}

.info-box a {
    color: #ff7f50;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.info-box a:hover {
    color: #ff6b2f;
    text-decoration: underline;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-item strong {
    color: #333;
    display: block;
    margin-bottom: 0.3rem;
}

/* Contact Page - Tablet */
@media (max-width: 768px) {
    .contact-section {
        padding: 100px 1.5rem 3rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 1.5rem;
    }

    .info-box {
        padding: 1.5rem;
    }
}

/* Contact Page - Mobile */
@media (max-width: 500px) {
    .contact-section {
        padding: 80px 1rem 2rem;
    }

    .contact-section>h1 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h2 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 16px;
    }

    .form-submit {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.3rem;
    }

    .info-box {
        padding: 1.2rem;
    }

    .info-box h3 {
        font-size: 1rem;
    }

    .info-box p,
    .contact-item span {
        font-size: 0.9rem;
    }

    .contact-item {
        margin-bottom: 0.8rem;
    }
}

/* About Page */
.about-section {
    padding: 120px 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
    font-family: "Times New Roman", Times, serif;
}



.about-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.overview-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.overview-content p {
    text-align: justify;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.overview-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-box {
    background: #f4f3ee;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ff7f50;
}

.highlight-box h3 {

    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.highlight-box p {
    text-align: justify;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.partners-section {
    margin-bottom: 4rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.partner-card:hover {

    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

}

.partner-card:hover h3 {
    color: #ff6b2f;
    transition: color 0.3s ease;
}

.partner-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}


.partner-subtitle {
    font-size: 0.9rem;
    color: #ff7f50;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.partner-location {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.about-cta {
    background: linear-gradient(135deg, #ff7f50, #ff6b2f);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
}

.about-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #ff7f50;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* About Page - Tablet */
@media (max-width: 768px) {
    .about-section {
        padding: 100px 1.5rem 3rem;
    }

    .about-section>h1 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .about-overview {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .about-cta {
        padding: 2.5rem 1.5rem;
    }

    .about-cta h2 {
        font-size: 1.5rem;
    }
}

/* About Page - Mobile */
@media (max-width: 500px) {
    .about-section {
        padding: 80px 1rem 2rem;
    }

    .about-section>h1 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .overview-content h2 {
        font-size: 1.3rem;
    }

    .overview-content p {
        font-size: 0.95rem;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .highlight-box h3 {
        font-size: 1.1rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partner-card {
        padding: 1.5rem;
    }

    .partner-card h3 {
        font-size: 1.1rem;
    }

    .about-cta {
        padding: 2rem 1rem;
    }

    .about-cta h2 {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Products Page */
.products-page {
    padding: 120px 2rem 4rem;
    max-width: 1200px;
    box-sizing: border-box;
    min-height: calc(100vh - 200px);
}

.products-header {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.products-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.products-header p {
    font-size: 1.1rem;
    color: #666;
}

.products-header span {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    color: #111;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.products-header span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    /* guaranteed below text */
    width: 0;
    height: 3px;
    background: #ff6b2f;
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

.products-header span:hover {
    transform: translateY(-2px);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.products-header span:hover::after {
    width: 100%;
}

.category-section {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ff7f50;
    text-transform: capitalize;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.product-reviews {
    font-size: 0.9rem;
    color: #ff7f50;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Category Page */
.category-page {
    padding: 80px 2rem 4rem;
    max-width: 1200px;
    min-height: calc(100vh - 200px);
    box-sizing: border-box;
}

.category-header {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.category-header h1 {
    font-size: 2rem;
    margin: 0 auto;
    color: #333;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.category-header p {
    font-size: 1.1rem;
    color: #666;
}

.category-header span {
    position: relative;
    display: inline-block;
    font-size: 2rem;

    font-weight: 700;
    color: #111;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* underline */
.category-header span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    /* slightly lower than h2 */
    width: 0;
    height: 4px;
    /* thicker underline */
    background: #ff6b2f;
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

/* hover animation */
.category-header span:hover {
    transform: translateY(-3px);
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.category-header span:hover::after {
    width: 100%;
}

.category-products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    box-sizing: border-box;

}

/* Products Page - Tablet */
@media (max-width: 800px) {
    .products-page {
        padding: 50px 1.5rem 3rem;
    }

    .products-header h1 {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .category-page {
        padding: 100px 1.5rem 3rem;
    }

    .category-header h1 {
        font-size: 2rem;
    }

    .category-products {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}


/* Mobile phones: 1 product per row */

@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        box-sizing: border-box;
    }

}


/* Products Page - Mobile */
@media (max-width: 500px) {
    .products-page {
        padding: 80px 1rem 2rem;
        box-sizing: border-box;

    }

    .products-header h1 {
        font-size: 1rem;
    }

    .products-header p {
        font-size: 1rem;
    }

    .category-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.5rem;
        box-sizing: border-box;
    }

    .category-page {
        padding: 30px 1rem 2rem;
    }

    .category-header h1 {
        font-size: 1.8rem;
    }

    .category-header p {
        font-size: 0.95rem;
    }

    .category-products {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.5rem;
        box-sizing: border-box;
    }
}

/* ====== Image Gallery ====== */
.gallery-page {
    padding: 120px 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    align-items: start;
}

.gallery-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    transition: transform .2s ease, box-shadow .2s ease;
}

.gallery-thumb:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Lightbox / overlay */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2000;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: #fff;
    font-size: 0.95rem;
    text-align: center;
    max-width: 90vw;
}

/* Mobile tweaks */
@media (max-width: 500px) {
    .gallery-thumb {
        height: 110px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        /* exactly 2 images per row */
    }
}

/* Tagline section */
.tagline-section {
    width: 100%;
    padding: 3rem 1rem 2.5rem;
    background-color: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

/* Fade-up base state */
.fade-up {
    opacity: 1;
    transform: none;
    filter: none;

    animation: luxuryGlow 5s ease-in-out infinite;
}

@keyframes luxuryGlow {

    0%,
    100% {
        text-shadow: none;
        opacity: 0.1;
    }

    25% {
        text-shadow: 0 0 16px rgba(255, 191, 64, 0.5), 0 0 24px rgba(255, 191, 64, 0.35);
        opacity: 0.8;
    }

    35% {

        text-shadow: 0 0 16px rgba(255, 191, 64, 0.5), 0 0 24px rgba(255, 191, 64, 0.35);
        opacity: 1;
    }

    55% {
        /* stronger and more visible glow */
        text-shadow: 0 0 16px rgba(255, 191, 64, 0.5), 0 0 24px rgba(255, 191, 64, 0.35);
        opacity: 1;
    }

    75% {
        text-shadow: 0 0 16px rgba(255, 191, 64, 0.5), 0 0 24px rgba(255, 191, 64, 0.35);
        opacity: 0.98;
    }
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Tagline wrapper */
.tagline {
    max-width: 900px;
    margin: 0;
    line-height: 1.4;
}

/* Luxury serif headline */
.tagline-main {
    display: block;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #111;
}

/* Modern sans-serif subline */
.tagline-sub {
    display: block;
    margin-top: 0.6rem;
    font-family: "Poppins", "Segoe UI", sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 1.4px;
    color: #ff6b2f;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .tagline-main {
        font-size: 1.4rem;
    }

    .tagline-sub {
        font-size: 0.95rem;
    }
}

@media (max-width: 500px) {
    .tagline-main {
        font-size: 1.25rem;
    }

    .tagline-sub {
        font-size: 0.9rem;
    }
}