/* ==================================================
   ROOT VARIABLES
================================================== */
:root {

    /* Typography */
    --fs-xxs: 0.75rem;
    /* 12px */
    --fs-xs: 0.875rem;
    /* 14px */
    --fs-sm: 0.9375rem;
    /* 15px */
    --fs-md: 1rem;
    /* 16px */
    --fs-lg: 1.125rem;
    /* 18px */
    --fs-xl: 1.25rem;
    /* 20px */
    --fs-2xl: 2rem;
    /* 32px */
    --fs-3xl: 3rem;
    /* 48px */

    /* Line Height */
    --lh-base: 1.7;
    --lh-tight: 1.2;

    /* Colors */
    --clr-white: #ffffff;
    --clr-dark: #222222;
    --clr-text: #555555;
    --clr-muted: #f1f1f1;
    --clr-light: #f9f9f9;
    --clr-gray: #f7f7f7;

    --clr-primary: #007bff;
    --clr-primary-dark: #0056b3;
    --clr-accent: #ffb400;
    --clr-gold: #ffcc00;

    /* Spacing */
    --sp-2xs: 0.5rem;
    /* 8px */
    --sp-xs: 0.625rem;
    /* 10px */
    --sp-sm: 0.9375rem;
    /* 15px */
    --sp-md: 1.25rem;
    /* 20px */
    --sp-lg: 1.875rem;
    /* 30px */
    --sp-xl: 2.5rem;
    /* 40px */
    --sp-2xl: 3.125rem;
    /* 50px */
    --sp-3xl: 5rem;
    /* 80px */

    /* Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.75rem;
    --radius-round: 3.125rem;

    /* Shadows */
    --shadow-sm: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.08);
    --shadow-md: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 0.75rem 2.1875rem rgba(0, 0, 0, 0.12);
}

/* ==================================================
   RESET & BASE
================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: var(--fs-md);
    line-height: var(--lh-base);
    color: var(--clr-text);
    font-family: inherit;
}


/* =========================
   CONTACT FORM 7 BASE
========================= */
.wpcf7 {
    width: 100%;
}

.wpcf7 form {
    width: 100%;
}

/* =========================
   FORM ROWS
========================= */
.wpcf7-form p {
    margin-bottom: 1rem;
}

/* =========================
   INPUTS & TEXTAREA
========================= */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 0.75rem 0.9375rem;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    border: 2px solid #000000;
    border-radius: 0.375rem;
    outline: none;
    transition: all 0.3s ease;
}

/* Focus */
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.125rem rgba(0, 123, 255, .15);
}

/* Textarea */
.wpcf7 textarea {
    min-height: 8rem;
    resize: vertical;
}

/* =========================
   PLACEHOLDER
========================= */
.wpcf7 ::placeholder {
    color: #999;
    font-size: 0.95rem;
}

/* =========================
   SUBMIT BUTTON
========================= */
.wpcf7 input[type="submit"] {
    display: inline-block;
    width: 50%;
    padding: 0.875rem 1.875rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #ffb400;
    color: #000;
    border: none;
    border-radius: 3.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover */
.wpcf7 input[type="submit"]:hover {
    background-color: #000;
    color: #fff;
}

/* =========================
   CHECKBOX & RADIO
========================= */
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
    margin-right: 0.5rem;
}

.wpcf7-list-item {
    margin: 0 0 0.5rem 0;
}

/* =========================
   VALIDATION ERRORS
========================= */
.wpcf7-not-valid {
    border-color: #dc3545 !important;
}

.wpcf7-not-valid-tip {
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.25rem;
}

/* =========================
   RESPONSE MESSAGE
========================= */
.wpcf7-response-output {
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: 0.375rem;
    border: none;
}

/* Success */
.wpcf7-mail-sent-ok {
    background: #e6f7ee;
    color: #1e7e34;
}

/* Error */
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background: #fdecea;
    color: #b02a37;
}

/* =========================
   LOADING SPINNER
========================= */
.wpcf7 .wpcf7-spinner {
    margin-left: 0.5rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 767px) {

    .wpcf7 input[type="submit"] {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
    }

    .wpcf7 textarea {
        min-height: 7rem;
    }
}

/* ==================================================
   HERO SECTION
================================================== */
#hero-section {
    background-image: url("../images/hero1.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

#hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

#hero-section .container,
#hero-section .row,
#hero-section .col-sm-12 {
    position: relative;
    z-index: 2;
}

.main-heor-section h2 {
    font-size: var(--fs-lg);
    letter-spacing: 0.125rem;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: var(--sp-sm);
}

.heading-title {
    font-size: var(--fs-3xl);
    font-weight: 700;
    line-height: var(--lh-tight);
    color: var(--clr-white);
    margin-bottom: var(--sp-lg);
}

/* ==================================================
   BUTTONS
================================================== */
.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.25rem;
    font-size: var(--fs-md);
    font-weight: 600;
    color: #000;
    background: var(--clr-accent);
    border-radius: var(--radius-round);
    text-decoration: none;
    transition: all 0.3s ease;
}

.button-link:hover {
    background: var(--clr-white);
}

/* Pulse animation */
.animation-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 180, 0, .6);
    }

    70% {
        box-shadow: 0 0 0 1.25rem rgba(255, 180, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 180, 0, 0);
    }
}

/* ==================================================
   ABOUT SECTION
================================================== */
.section-about {
    padding: var(--sp-3xl) 0;
    background: var(--clr-light);
}

.about-content-box {
    padding: var(--sp-lg);
}

.about-subtitle {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--clr-primary);
    margin-bottom: var(--sp-xs);
}

.about-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: var(--sp-md);
}

.about-text {
    font-size: var(--fs-md);
    margin-bottom: var(--sp-lg);
}

.about-btn {
    display: inline-block;
    padding: 0.75rem 1.875rem;
    background: var(--clr-primary);
    color: var(--clr-white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.about-btn:hover {
    background: var(--clr-primary-dark);
}

.about-form-box {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 3rem;
}

/* ==================================================
   PRODUCT CATEGORY
================================================== */
.item-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: var(--sp-md);
}

#product-cate {
    padding: var(--sp-2xl) 0;
    background: var(--clr-gray);
}

.product-category .cate-box {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
}

.product-category .cate-box:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-lg);
}

.product-category .cate-item-thumbnali {
    width: 100%;
    overflow: hidden;
}

.product-category .cate-item-thumbnali img {
    width: 100%;
    transition: transform 0.4s ease;
}

.product-category .cate-box:hover img {
    transform: scale(1.1);
}

.product-category .cate-item-content {
    padding: var(--sp-md);
}

.product-category .cate-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clr-dark);
}

.premium-products .owl-stage-outer,
.new-arrival .owl-stage-outer {
    padding: 1.2rem 0;
}

/* ==================================================
   PRODUCT SECTION
================================================== */
.product-section {
    padding: var(--sp-lg) 0;
    background: var(--clr-gray);
}

.product-box {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.product-box:hover {
    transform: translateY(-0.5rem);
}

.product-thumb {
    background: var(--clr-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-thumb img {
    height: 100%;
    transition: transform 0.4s ease;
}

.product-box:hover img {
    transform: scale(1.05);
}

.product-content {
    padding: var(--sp-md);
    text-align: center;
}

.product-title {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--clr-dark);
}

.product-price {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--clr-accent);
}

/*=========================
OWL CAROUSEL NAV
=========================*/
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-nav button {
    width: 45px;
    height: 45px;
    background: #ffb400 !important;
    color: #000 !important;
    border-radius: 50%;
    font-size: 22px;
    pointer-events: all;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-nav button:hover {
    background: #000 !important;
    color: #fff !important;
}

.owl-prev {
    margin-left: -20px;
}

.owl-next {
    margin-right: -20px;
}

/* ==================================================
   COUNTER SECTION
================================================== */
.section-counter {
    background-image: url("../images/bg_slider9.jpg");;
    background-size: cover;
    background-position: center;
    padding: var(--sp-2xl) 0;
    color: var(--clr-white);
}

.section-counter .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--sp-lg);
}

.counter-box {
    text-align: center;
    padding: var(--sp-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--clr-gold);
}

.counter-title {
    font-size: var(--fs-xs);
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
}

/* =========================
   WORKFLOW SECTION
========================= */
.work-flow {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.workflow-box {
    /* max-width: 600px; */
    margin: 0 auto;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.workflow-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 767px) {
    .workflow-box {
        max-width: 90%;
        padding: 0;
    }
}

/* =========================
   CLIENT REVIEW SECTION
========================= */
.client-review {
    background-image: url("../images/bg_slider9.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 6rem 0;
    color: #fff;
}

/* Optional overlay */
/* .client-review .overlay {
    background: rgba(0,0,0,0.6);
    padding: 6rem 0;
} */

/* Section Title */
.client-review .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
}

/* Owl Slider Box */
.client-slider .review-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    min-height: 200px;
}

/* Hover */
.client-slider .review-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.18);
}

/* Review Text */
.review-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Reviewer Name */
.review-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

/* Reviewer Designation */
.review-designation {
    font-size: 0.9rem;
    color: #ffd700;
}

/* =========================
   OWL NAVIGATION (Optional)
========================= */
/* .client-slider .owl-nav button {
    background-color: #ffb400 !important;
    color: #000 !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.client-slider .owl-nav button:hover {
    background-color: #000 !important;
    color: #fff !important;
}

.client-slider .owl-prev {
    left: -25px;
}

.client-slider .owl-next {
    right: -25px;
} */



/* =========================
   BLOG SLIDER
========================= */
.blog-slider {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.blog-slider .section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #222;
}

.blog-owl .blog-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.blog-owl .blog-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.blog-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.blog-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #ffb400;
}

.blog-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-date {
    font-size: 0.875rem;
    color: #999;
}

.blog-owl .owl-item {
    height: auto;
}

/* =========================
   OWL NAVIGATION
========================= */
/* .blog-owl .owl-nav button {
    background-color: #ffb400 !important;
    color: #000 !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-owl .owl-nav button:hover {
    background-color: #000 !important;
    color: #fff !important;
}

.blog-owl .owl-prev {
    left: -25px;
}

.blog-owl .owl-next {
    right: -25px;
} */

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .blog-owl .blog-box {
        margin: 0 10px;
    }
}

@media (max-width: 575px) {
    .blog-owl .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .client-review .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .client-review .section-title {
        font-size: 1.5rem;
    }

    .client-slider .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}



.faqs-section {
    background-image: url("../images/bg_slider9.jpg");
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #222;
}

/* Card grid */
.row-section {
    display: flex;
    flex-wrap: wrap;
}

.row-section .col-6 {
    box-sizing: border-box;
    padding: 0;
}

.card-box {
    background: #fff;
    /* border-radius: 12px; */
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.card-box:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    background: #f0ebeb;
}

/* Borders like + grid */
.row-section .col-6:nth-child(1) .card-box {
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
}

.row-section .col-6:nth-child(2) .card-box {
    border-bottom: 1px solid #000;
}

.row-section .col-6:nth-child(3) .card-box {
    border-right: 1px solid #000;
}

.row-section .col-6:nth-child(4) .card-box {
    /* bottom-right: no border */
}

/* Accordion FAQ */
.faq-accordion .faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #007bff;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 0.95rem;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 500px;
}

/* Responsive */
@media(max-width: 991px){
    .row-section .col-6 {
        width: 50%;
    }
}

@media(max-width: 767px){
    .row-section .col-6 {
        width: 100%;
    }
}


.customers-section {
    padding: 30px 0;
    background-color: #f9f9f9; /* light neutral background */
}

.customers-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

.customer-slider .customer-item {
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding: 20px;*/
    background: #fff; /* white card */
    /*border-radius: 12px;*/
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin: 15px 10px;
    border:2px solid;
    
}

.customer-slider .customer-item img {
    /*max-width: 120px;*/
    max-height: 80px;
    object-fit: contain;
}

.customer-slider .customer-item:hover {
    transform: translateY(-5px);
}

/* =================================================


===================================================*/

.bg-image{
    background-image: url("../images/bg_slider9.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 6rem 0;
    color: #fff;
}

.cateproduct h2 {
    background: #1559ed;
    padding: 5px;
    border-radius: 4px;
    font-size: 2rem;
}

.content-box {
    /* margin-bottom: 80px; */
    box-shadow: 0 14px 28px rgba(109, 16, 19, 0.17), 0 10px 10px #fffeff4d;
    transition: all .4s ease-in-out;
}

.content-box:hover {
    box-shadow: 0 10px 55px 5px rgba(188, 188, 188, .25);
    transform: translate3d(0, -20px, 0);
}
/* ==================================================
   FOOTER
================================================== */
#footer h2,
#footer h3 {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: var(--sp-sm);
    text-transform: uppercase;
    position: relative;
}

#footer p,
#footer a {
    font-size: var(--fs-md);
    color: #ccc;
}

/* ========================= FOOTER BASE ========================= */
/* #footer { background-color: #111; color: #ccc; padding: 60px 0 0; } */
/* Widget spacing */
div#block-29,
div#block-33 {
    margin-top: 10px !important;
}

#footer .ct-container {
    grid-row-gap: 18px !important;
}

/* ========================= FOOTER IMAGE ========================= */
#footer .wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

/* ========================= NAV MENU LINKS ========================= */
#footer .widget_nav_menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#footer .widget_nav_menu li {
    padding: 10px 0;
}

#footer .widget_nav_menu li:not(:last-child) {
    border-bottom: 1px solid #f9f9f936;
}

#footer .widget_nav_menu a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-left: 24px;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Font Awesome arrow */
#footer .widget_nav_menu a::before {
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Hover */
#footer a:hover {
    color: #e6dedd;
    transform: translateX(4px);
}

/* ========================= CONTACT LIST ========================= */
#footer .footer-list {
    display: flex;
    flex-direction: column;
    /* gap: 12px; */
}

#footer .footer-item {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-left: 24px;
    display: inline-block;
    padding: 10px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

#footer .footer-item:not(:last-child) {
    border-bottom: 1px solid #f9f9f936;
}

#footer .footer-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer .footer-item:hover {
    color: #e6dedd;
    transform: translateX(4px);
}

/* ========================= SOCIAL ICONS ========================= */
.social-icons {
    margin-top: 20px;
}

.social-icons i {
    font-size: 1.3rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Brand colors */
.social-icons .facebook {
    background-color: #1877F2;
}

.social-icons .twitter {
    background-color: #000000;
}

.social-icons .pinterest {
    background-color: #E60023;
}

.social-icons .youtube {
    background-color: #FF0000;
}

.social-icons .instagram {
    background: radial-gradient(circle at 30% 30%, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

/* Hover effect */
.social-icons a:hover {
    transform: translateY(-3px) scale(1.05);
    opacity: 0.9;
}

/* ========================= BUTTON ========================= */
#footer .wp-block-button__link {
    background-color: #ff6347;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

#footer .wp-block-button__link:hover {
    background-color: #e5533d;
    transform: translateY(-2px);
}

#footer[data-id="type-1"] {
    --container-spacing: 0px !important;
}

/* ========================= COPYRIGHT ========================= */
.ct-footer-copyright {
    text-align: center;
    padding: 0px;
    font-size: 14px;
    color: #aaa;
}

.ct-footer-copyright a {
    color: #ff6347;
    text-decoration: none;
}

.ct-footer .ct-widget:not(:first-child) {
    margin-top: var(--widgets-gap, 15px);
}