/* ===== Fancy Image Section ===== */
.fancy-section {
    padding: 80px 0;
    background: transparent;
    /* ← Changed from #fff */
    overflow: hidden;
}

.fancy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ===== Image Block ===== */
.fancy-images {
    position: relative;
    height: 520px;
    background: transparent;
}

/* Main center image */
.img-main {
    position: absolute;
    left: 15%;
    top: 0;
    width: 55%;
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation: zoomIn 0.9s ease;
}

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

/* Secondary overlapping image (right side) */
.img-secondary {
    position: absolute;
    right: 0;
    top: 20%;
    width: 48%;
    z-index: 3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease;
}

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

/* ===== Content Side ===== */
.fancy-content {
    background: transparent;
}

.fancy-content .section-label {
    color: #8B0000;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

.fancy-content .section-title {
    font-size: 44px;
    font-weight: 800;
    color: #8B0000;
    line-height: 1.2;
    margin-bottom: 20px;
}

.fancy-content p {
    font-size: 17px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 35px;
}

.fancy-content .btn {
    background-color: #8B0000;
    border-color: #8B0000;
    color: #fff;
}

.fancy-content .btn:hover {
    background-color: #6b0000;
    border-color: #6b0000;
}

/* ===== Animations ===== */
@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .fancy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fancy-images {
        height: 380px;
    }

    .fancy-content .section-title {
        font-size: 30px;
    }
}

/* ============================================
   SERVICES / PRODUCT RANGE SECTION
   ============================================ */

.services-area {
    padding: 80px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Watermark shape background */
.services-shape {
    position: absolute;
    left: -20px;
    top: 30px;
    opacity: 0.05;
    pointer-events: none;
}

.services-shape img {
    width: 260px;
}

/* ---- Heading Row ---- */
.services-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.services-heading-left .title {
    font-size: 40px;
    font-weight: 800;
    color: #8B0000;
    line-height: 1.2;
}

.services-heading-right p {
    color: #000000;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* red button */
.btn-theme {
    display: inline-block;
    background: #8B0000;
    color: #fff;
    padding: 13px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-theme:hover {
    background: #8B0000;
    color: #fff;
}

/* ---- Slider ---- */
.services-slider-outer {
    overflow: hidden;
    width: 100%;
}

.services-slider-track {
    display: flex;
    width: max-content;
    animation: servicesSlide 25s linear infinite;
}

.services-slider-track:hover {
    animation-play-state: paused;
}

@keyframes servicesSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---- Card ---- */
.services-card {
    width: 270px;
    background: #fff;
    padding: 35px 25px 30px;
    margin-right: 1px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s;
    border-bottom: 5px solid transparent;
}

.services-card:hover {
    transform: translateY(-6px);
    border-bottom: 5px solid #8B0000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

/* Round icon circle */
.services-card-thumb {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8e6c9, #8B0000);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.services-card-thumb img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Card title */
.services-card h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.services-card h5 a {
    text-decoration: none;
    color: #111;
    transition: color 0.3s;
}

.services-card h5 a:hover {
    color: #8B0000;
}

/* Card description */
.services-card p {
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
    margin: 0;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .services-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-heading-left .title {
        font-size: 28px;
    }

    .services-card {
        width: 220px;
        padding: 25px 18px;
    }
}

/* ============================================
   MARGARET BAG — THEME COLOR OVERRIDE #8B0000
   ============================================ */

/* Buttons */
.btn,
.btn-default,
.slideshow .btn,
.button-set li .btn-icon {
    background-color: #8B0000;
    border-color: #8B0000;
    color: #fff;
}

.btn:hover,
.btn:focus,
.slideshow .btn:hover,
.slideshow .btn:focus {
    background-color: #6b0000;
    border-color: #6b0000;
}

/* Tab underline style */
.tab-slider-product-style1 .tabs li:after {
    background: #8B0000;
}

/* Info / Store features bar */
.store-features,
.info-section {
    background-color: #8B0000;
}

/* Dashboard active menu */
.dashboard-list li a.active,
.dashboard-list li a:hover {
    background-color: #8B0000;
    color: #fff;
}

/* Customer box header */
.customer-box h3 {
    background-color: #8B0000;
}

/* Button style 2 */
.button-style2 .cartIcon,
.button-style2 .quick-view-popup,
.button-style2 .wishlist,
.button-style2 .compare,
.button-style2 .variants.add button {
    background-color: #8B0000;
}

/* scroll to top */
site-scroll {
    background: #8B0000;
}

.header {
    background-color: #ffffff;
}

#siteNav>li>a {
    color: #8B0000;
}

*/
/* ============================================
   SECTION HEADER — #8B0000 COLOR OVERRIDE
   ============================================ */

.section-header h2 {
    color: #8B0000;
}

.section-header p {
    color: #8B0000;
}

/* ============================================
   PRODUCT NAME — #8B0000 COLOR OVERRIDE
   ============================================ */

.product-name a {
    color: #8B0000;
}

.product-name a:hover {
    color: #6b0000;
    /* darker shade on hover */
}

/* ============================================
   SCROLL TO TOP — #8B0000 COLOR OVERRIDE
   ============================================ */

#site-scroll {
    background-color: #8B0000;
    border-color: #8B0000;
    color: #fff;
}

#site-scroll:hover {
    background-color: #6b0000;
    border-color: #6b0000;
    color: #fff;
}

/* Arrow icon inside */
#site-scroll i,
#site-scroll .anm-arw-up {
    color: #fff;
}


/* ============================================
   SCATTERED BAG WATERMARKS
   ============================================ */

#bg-watermarks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.wm {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
    user-select: none;
    -webkit-user-drag: none;
}

.wm-1 {
    width: 250px;
    top: 3%;
    left: -40px;
    transform: rotate(-20deg);
}

.wm-2 {
    width: 150px;
    top: 8%;
    right: 30px;
    transform: rotate(15deg);
}

.wm-3 {
    width: 150px;
    top: 45%;
    left: 5%;
    transform: rotate(5deg);
}

.wm-4 {
    width: 210px;
    top: 40%;
    right: -30px;
    transform: rotate(-10deg);
}

.wm-5 {
    width: 140px;
    bottom: 4%;
    left: 40%;
    transform: rotate(8deg);
}

.wm-6 {
    width: 200px;
    bottom: 4%;
    left: 4%;
    transform: rotate(8deg);
}

.wm-7 {
    width: 200px;
    top: 9%;
    left: 60%;
    transform: rotate(9deg);
}

/* Keep all page content above watermarks */
.wrapper,
main,
#MainContent,
.header,
.footer,
.section {
    position: relative;
    z-index: 1;
}

.container {
    position: relative;
}


@media (max-width: 900px) {

    .wm-5,
    .wm-7 {
        display: none;
    }
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-us-section {
    background: transparent;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-us-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 58px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.1;
}

.why-us-content h4 {
    font-size: 40px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.why-us-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #000000;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 400;
}

.why-us-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

.why-us-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: block;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 991px) {
    .why-us-wrapper {
        grid-template-columns: 1fr;
    }

    .why-us-content h2 {
        font-size: 42px;
    }

    .why-us-content h4 {
        font-size: 26px;
    }

    .why-us-list li {
        font-size: 20px;
    }

    .why-us-image {
        margin-top: 30px;
        text-align: center;
    }
}

#aboutus>div>p {
    font-size: 16px;
}


.footer.footer-16 .footer-bottom-wave {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
    pointer-events: none;
    line-height: 0;
}

.footer.footer-16 .footer-bottom-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}



/* ============================================
   CUSTOM OVERRIDES FOR MARGARET BAG
   ============================================ */

@media (max-width: 990px) {
    .text-right {
        display: none !important;
    }

    .col-4 {
        flex: 0 0 33.3333%;
        max-width: 25%;
    }

    .d-block {
        display: flex !important;
    }
}


/* Active menu item in header */
#siteNav>li>a.active {
    color: #f77577;
}