/* =========================================================
   RIAZ CLOTH SHOP
   MAIN STYLESHEET
========================================================= */


/* =========================
   GOOGLE FONT FALLBACK
========================= */

:root {
    --primary: #6f0615;
    --primary-dark: #4d0410;
    --gold: #c59b4a;
    --gold-light: #e5c77f;
    --cream: #fffaf3;
    --white: #ffffff;
    --black: #181818;
    --text: #555555;
    --light-text: #777777;
    --border: #eadfd5;
    --light-bg: #f8f4ef;
    --success: #198754;
    --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.35s ease;
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Poppins", sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


button {
    cursor: pointer;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================
   SECTION
========================= */

.section {
    padding: 90px 0;
}


.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}


.section-heading > span,
.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}


.section-heading h2 {
    font-family: "Playfair Display", serif;
    color: var(--black);
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 15px;
}


.section-heading p {
    color: var(--light-text);
    font-size: 15px;
}


/* =========================
   HEADER
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(111, 6, 21, 0.08);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}


.nav-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}


.logo img {
    width: 150px;
    height: auto;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}


.navbar > a {
    position: relative;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    transition: var(--transition);
}


.navbar > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}


.navbar > a:hover,
.navbar > a.active {
    color: var(--primary);
}


.navbar > a:hover::after,
.navbar > a.active::after {
    width: 100%;
}


.cart-link {
    display: flex !important;
    align-items: center;
    gap: 6px;
}


#cartCount {
    min-width: 21px;
    height: 21px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 11px;
    line-height: 1;
}


.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--primary);
    font-size: 27px;
    padding: 5px;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 27px;
    border-radius: 4px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}


.btn-primary {
    background: var(--primary);
    color: var(--white);
}


.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(111, 6, 21, 0.22);
}


.btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}


.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}


.btn-light {
    background: var(--white);
    color: var(--primary);
}


.btn-light:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-3px);
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    height: 680px;
    overflow: hidden;
}


.hero-slider,
.hero-slide {
    width: 100%;
    height: 100%;
}


.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}


.hero-slide.active {
    opacity: 1;
    visibility: visible;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(30, 0, 5, 0.78),
            rgba(30, 0, 5, 0.35),
            rgba(30, 0, 5, 0.15)
        );
}


.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1180px;
}


.hero-small-title {
    color: var(--gold-light);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 18px;
}


.hero-content h1 {
    max-width: 700px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.08;
    margin-bottom: 22px;
}


.hero-content h1 span {
    display: block;
    color: var(--gold-light);
}


.hero-content p {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


.slider-btn {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 20px;
    transition: var(--transition);
}


.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}


.slider-btn.prev {
    left: 25px;
}


.slider-btn.next {
    right: 25px;
}


.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}


.slider-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}


.slider-dot.active {
    width: 28px;
    border-radius: 20px;
    background: var(--gold-light);
}


/* =========================
   CATEGORY SECTION
========================= */

.categories-section {
    background: var(--cream);
}


.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


.category-card {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}


.category-card img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    transition: transform 0.7s ease;
}


.category-card:hover img {
    transform: scale(1.08);
}


.category-content {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 23px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
}


.category-content h3 {
    color: var(--primary);
    font-family: "Playfair Display", serif;
    font-size: 25px;
    margin-bottom: 3px;
}


.category-content p {
    color: var(--light-text);
    font-size: 13px;
    margin-bottom: 10px;
}


.category-content span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
}


/* =========================
   FEATURES
========================= */

.features-section {
    padding: 45px 0;
    background: var(--primary);
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.feature-box {
    padding: 18px;
    text-align: center;
    color: white;
}


.feature-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    font-size: 22px;
}


.feature-box h3 {
    font-family: "Playfair Display", serif;
    font-size: 19px;
    margin-bottom: 5px;
}


.feature-box p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}


/* =========================
   ABOUT
========================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}


.about-image {
    position: relative;
}


.about-image::before {
    content: "";
    position: absolute;
    left: -18px;
    bottom: -18px;
    width: 70%;
    height: 70%;
    border: 2px solid var(--gold);
    z-index: -1;
}


.about-image img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
}


.about-content h2 {
    font-family: "Playfair Display", serif;
    color: var(--black);
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
}


.about-content h2 span {
    color: var(--primary);
}


.about-content p {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 17px;
}


.about-content .btn {
    margin-top: 10px;
}


/* =========================
   CTA
========================= */

.cta-section {
    padding: 85px 0;
    background:
        linear-gradient(
            100deg,
            var(--primary),
            #8e182c
        );
    color: white;
    text-align: center;
}


.cta-content {
    max-width: 750px;
}


.cta-content > span {
    color: var(--gold-light);
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
}


.cta-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 45px;
    line-height: 1.2;
    margin: 10px 0 15px;
}


.cta-content p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 25px;
}


/* =========================
   PAGE BANNER
========================= */

.page-banner {
    position: relative;
    padding: 85px 0;
    background:
        linear-gradient(
            100deg,
            rgba(111, 6, 21, 0.96),
            rgba(77, 4, 16, 0.91)
        );
    color: white;
    text-align: center;
}


.page-banner::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 2px;
    background: var(--gold-light);
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
}


.page-banner span {
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
}


.page-banner h1 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    line-height: 1.2;
    margin: 8px 0;
}


.page-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}


/* =========================
   PRODUCTS
========================= */

.shop-section {
    background: var(--light-bg);
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


.product-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}


.product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}


.product-image {
    position: relative;
    overflow: hidden;
    background: #f2eee9;
}


.product-image img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    transition: transform 0.6s ease;
}


.product-card:hover .product-image img {
    transform: scale(1.06);
}


.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 10px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}


.product-info {
    padding: 20px;
}


.product-category {
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.product-info h3 {
    color: var(--black);
    font-family: "Playfair Display", serif;
    font-size: 20px;
    margin: 5px 0 8px;
}


.product-info p {
    color: var(--light-text);
    font-size: 12px;
    margin-bottom: 15px;
}


.product-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
}


.product-actions {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}


.product-actions button,
.product-actions a {
    flex: 1;
    min-height: 40px;
    padding: 8px 10px;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    transition: var(--transition);
}


.product-actions button:hover,
.product-actions a:hover {
    background: var(--primary-dark);
}


.product-actions .secondary-btn {
    background: transparent;
    color: var(--primary);
}


.product-actions .secondary-btn:hover {
    background: var(--primary);
    color: white;
}


/* =========================
   SHOP TOOLBAR
========================= */

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
    padding: 20px;
    background: white;
    border: 1px solid var(--border);
}


.search-box {
    flex: 1;
    max-width: 550px;
    display: flex;
}


.search-box input {
    width: 100%;
    height: 48px;
    border: 1px solid var(--border);
    border-right: 0;
    padding: 0 15px;
    outline: none;
}


.search-box input:focus {
    border-color: var(--gold);
}


.search-box button {
    width: 55px;
    border: 0;
    background: var(--primary);
    color: white;
}


#categoryFilter {
    min-width: 220px;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--border);
    outline: none;
    background: white;
    color: var(--text);
}


/* =========================
   NO PRODUCTS
========================= */

.no-products {
    padding: 70px 20px;
    text-align: center;
    background: white;
    border: 1px solid var(--border);
}


.no-products h3 {
    font-family: "Playfair Display", serif;
    color: var(--primary);
    font-size: 27px;
    margin-bottom: 8px;
}


/* =========================
   VALUES
========================= */

.about-story {
    background: var(--light-bg);
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


.value-card {
    padding: 35px 25px;
    background: white;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}


.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}


.value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--primary);
    font-size: 24px;
}


.value-card h3 {
    font-family: "Playfair Display", serif;
    color: var(--black);
    font-size: 23px;
    margin-bottom: 10px;
}


.value-card p {
    color: var(--light-text);
    font-size: 13px;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    background: var(--light-bg);
}


.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 65px;
    align-items: start;
}


.contact-info h2 {
    font-family: "Playfair Display", serif;
    color: var(--black);
    font-size: 43px;
    line-height: 1.2;
    margin: 8px 0 18px;
}


.contact-info h2 span {
    color: var(--primary);
}


.contact-info > p {
    font-size: 14px;
    margin-bottom: 28px;
}


.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}


.contact-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
}


.contact-item h3 {
    color: var(--black);
    font-size: 15px;
    margin-bottom: 2px;
}


.contact-item p,
.contact-item a {
    color: var(--light-text);
    font-size: 13px;
}


.contact-item a:hover {
    color: var(--primary);
}


/* =========================
   FORMS
========================= */

.contact-form-box,
.checkout-form,
.order-summary {
    padding: 35px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}


.contact-form-box h2,
.checkout-form h2,
.order-summary h2 {
    font-family: "Playfair Display", serif;
    color: var(--black);
    font-size: 30px;
    margin-bottom: 25px;
}


.form-group {
    margin-bottom: 19px;
}


.form-group label {
    display: block;
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
}


.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--border);
    outline: none;
    background: white;
    padding: 13px 14px;
    font-size: 13px;
    color: var(--text);
    transition: var(--transition);
}


.form-group input {
    height: 48px;
}


.form-group textarea {
    resize: vertical;
}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(111, 6, 21, 0.06);
}


.form-message {
    margin-top: 13px;
    font-size: 13px;
    color: var(--success);
}


.map-section {
    padding: 80px 0;
}


.map-box {
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            rgba(111, 6, 21, 0.08),
            rgba(111, 6, 21, 0.08)
        ),
        #eee8df;
    border: 1px solid var(--border);
}


.map-content {
    max-width: 470px;
    text-align: center;
    padding: 30px;
}


.map-icon {
    font-size: 42px;
    margin-bottom: 10px;
}


.map-content h3 {
    color: var(--primary);
    font-family: "Playfair Display", serif;
    font-size: 28px;
}


.map-content p {
    margin: 10px 0 20px;
    font-size: 14px;
}


/* =========================
   CHECKOUT
========================= */

.checkout-section {
    background: var(--light-bg);
}


.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}


.checkout-btn {
    width: 100%;
    border: 0;
}


.payment-options {
    display: grid;
    gap: 10px;
}


.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 10px 13px;
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 13px;
}


.payment-option input {
    accent-color: var(--primary);
}


.checkout-items {
    display: grid;
    gap: 12px;
}


.checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}


.checkout-item img {
    width: 65px;
    height: 75px;
    object-fit: cover;
}


.checkout-item-info {
    flex: 1;
}


.checkout-item-info h4 {
    color: var(--black);
    font-size: 13px;
}


.checkout-item-info p {
    color: var(--light-text);
    font-size: 11px;
}


.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--primary);
}


.summary-total span {
    color: var(--black);
    font-weight: 600;
}


.summary-total strong {
    color: var(--primary);
}


.payment-note {
    margin-top: 25px;
    padding: 15px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
}


.payment-note strong {
    color: var(--primary);
    font-size: 13px;
}


.payment-note p {
    margin-top: 5px;
    font-size: 12px;
}


/* =========================
   CART
========================= */

.cart-section {
    background: var(--light-bg);
}


.cart-container {
    display: grid;
    gap: 15px;
}


.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 18px;
    background: white;
    border: 1px solid var(--border);
}


.cart-item img {
    width: 90px;
    height: 105px;
    object-fit: cover;
}


.cart-item-info h3 {
    font-family: "Playfair Display", serif;
    color: var(--black);
    font-size: 20px;
}


.cart-item-info p {
    color: var(--light-text);
    font-size: 12px;
}


.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
}


.quantity-control button {
    width: 35px;
    height: 35px;
    border: 0;
    background: var(--cream);
    color: var(--primary);
    font-weight: 700;
}


.quantity-control span {
    width: 35px;
    text-align: center;
    font-size: 13px;
}


.remove-cart {
    border: 0;
    background: transparent;
    color: #b00020;
    font-size: 12px;
    font-weight: 600;
}


.cart-summary {
    margin-top: 25px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 35px;
    background: white;
    border: 1px solid var(--border);
}


.cart-summary > div {
    display: flex;
    flex-direction: column;
}


.cart-summary span {
    color: var(--light-text);
    font-size: 12px;
}


.cart-summary strong {
    color: var(--primary);
    font-size: 18px;
}


.empty-cart {
    padding: 90px 20px;
    text-align: center;
    background: white;
    border: 1px solid var(--border);
}


.empty-cart-icon {
    font-size: 55px;
    margin-bottom: 15px;
}


.empty-cart h2 {
    font-family: "Playfair Display", serif;
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 8px;
}


.empty-cart p {
    color: var(--light-text);
    margin-bottom: 20px;
}


/* =========================
   LEGAL PAGES
========================= */

.legal-section {
    background: var(--light-bg);
}


.legal-content {
    max-width: 900px;
    padding: 50px;
    background: white;
    border: 1px solid var(--border);
}


.legal-content h2 {
    font-family: "Playfair Display", serif;
    color: var(--primary);
    font-size: 38px;
    margin-bottom: 20px;
}


.legal-content h3 {
    color: var(--black);
    font-size: 19px;
    margin-top: 30px;
    margin-bottom: 8px;
}


.legal-content p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 10px;
}


.last-updated {
    margin-top: 35px;
    color: var(--primary) !important;
    font-weight: 600;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #19070a;
    color: white;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.2fr;
    gap: 45px;
    padding: 70px 0 50px;
}


.footer-logo {
    width: 145px;
    margin-bottom: 17px;
    filter: brightness(0) invert(1);
}


.footer-column p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    margin-bottom: 10px;
}


.footer-column h3 {
    color: var(--gold-light);
    font-family: "Playfair Display", serif;
    font-size: 20px;
    margin-bottom: 18px;
}


.footer-column a {
    display: block;
    width: fit-content;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    margin-bottom: 10px;
    transition: var(--transition);
}


.footer-column a:hover {
    color: white;
    transform: translateX(4px);
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-bottom .container {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}


.footer-bottom div {
    display: flex;
    gap: 18px;
}


.footer-bottom a:hover {
    color: white;
}


/* =========================
   WHATSAPP
========================= */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 998;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: white;
    font-size: 26px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: whatsappPulse 2s infinite;
}


@keyframes whatsappPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }

}


/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.hero-slide.active .hero-content {
    animation: fadeUp 0.9s ease;
}


@keyframes floatImage {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(0);
    }

}


.about-image img {
    animation: floatImage 5s ease-in-out infinite;
}
/* =========================
   BACK BUTTON
========================= */

.back-section {
    padding: 22px 0 0;
}

.back-button-wrapper {
    width: 100%;
    margin-bottom: 0;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    background: #6f0615;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #8d0a1d;
    transform: translateX(-4px);
}

.back-button i {
    font-size: 14px;
}