/*
* Font families are controlled by the system via CSS variables
* (--font-family-primary, --font-family-secondary, --font-family-tertiary)
* set in _styles.blade.php. Never hardcode font-family here.
*/

@media (min-height: 1200px) {
    .body {
            overflow-x: hidden;
    }
}

/*
* Font Icons
*/
@font-face {
    font-family: "Fontello";
    src: url("../../css/fonts/demos/digital-agency-2/fontello.woff2") format("woff2"), url("../../css/fonts/demos/digital-agency-2/fontello.woff") format("woff"), url("../../css/fonts/demos/digital-agency-2/fontello.ttf") format("ttf"), url("../../css/fonts/demos/digital-agency-2/fontello.eot") format("eot");
}

/*
* Container
*/
@media (min-width: 1240px) {
    .container {
            max-width: 1240px !important;
    }
}

/*
* Custom Text
*/
.custom-text-1 {
    font-size: 12px !important;
}

.custom-text-2 {
    font-size: 14px !important;
}

.custom-text-3 {
    font-size: 15px !important;
}

.custom-text-4 {
    font-size: 16px !important;
}

.custom-text-5 {
    font-size: 18px !important;
}

.custom-text-6 {
    font-size: 20px !important;
}

.custom-text-7 {
    font-size: 22px !important;
}

.custom-text-8 {
    font-size: 26px !important;
}

.custom-text-9 {
    font-size: 32px !important;
}

.custom-text-10 {
    font-size: 40px !important;
    line-height: 40px !important;
}

.custom-text-11 {
    font-size: 55px !important;
    line-height: 72px !important;
}

.custom-text-12 {
    font-size: 60px !important;
}

/*
* Buttons
*/
.custom-btn-outline {
    border-width: 3px;
}

@keyframes arrowMove {
    0% {
            position: relative;
            left: -1px;
    }
    50% {
            position: relative;
            left: 3px;
    }
    100% {
            position: relative;
            left: -1px;
    }
}

.custom-btn-with-arrow:after {
    content: '\E800';
    font-family: 'Fontello';
    font-size: 18px;
    margin-left: 17px;
}

.custom-btn-with-arrow:hover:after {
    animation: arrowMove 600ms ease;
    animation-iteration-count: infinite;
}

/*
* Titles
*/
.custom-title-with-icon:before {
    content: '\E801';
    font-family: 'Fontello';
    font-size: 15px;
    display: block;
    line-height: 15px;
    margin-bottom: 10px;
}

.custom-title-with-icon-center:before {
    text-align: center;
}

.custom-title-with-icon-right:before {
    text-align: right;
}

/*
* Circles
*/
.custom-circle {
    position: absolute;
    display: block;
    border-radius: 50%;
    display: block;
    z-index: 100;
    transform: translate(-50%, -50%);
}

.custom-circle-blur {
    filter: blur(3px);
}

.custom-circle-1 {
    width: 68px;
    height: 67px;
}

@media (max-width: 1799px) {
    .custom-circle-1 {
            display: none;
    }
}

.custom-circle-2 {
    width: 33px;
    height: 32px;
}

@media (max-width: 1799px) {
    .custom-circle-2 {
            display: none;
    }
}

.custom-circle-3 {
    width: 21px;
    height: 20px;
}

@media (max-width: 1799px) {
    .custom-circle-3 {
            display: none;
    }
}

.custom-circle-4 {
    width: 14px;
    height: 13px;
}

@media (max-width: 1799px) {
    .custom-circle-4 {
            display: none;
    }
}

/*
* Header
*/
#header.header-effect-shrink .header-container {
    min-height: 120px;
}

#header.header-effect-shrink .header-container .header-column-social-icons {
    flex-grow: 0 !important;
}

@media (min-width: 992px) {
    #header.header-effect-shrink .header-container .header-nav nav ul li.dropdown:hover .dropdown-menu {
            margin-top: -20px !important;
    }
}

html.mobile-menu-opened.sticky-header-active #header.header-transparent .header-body .header-nav-main:before {
    background-color: transparent !important;
}

/*
* Slider
*/
.custom-circles-container .custom-circle-1:nth-child(1) {
    top: 40%;
    left: 5%;
}

.custom-circles-container .custom-circle-2:nth-child(2) {
    top: 20%;
    left: 5%;
}

.custom-circles-container .custom-circle-3:nth-child(3) {
    top: 27%;
    left: 12%;
}

.custom-circles-container .custom-circle-1:nth-child(4) {
    top: 50%;
    right: 5%;
}

.custom-circles-container .custom-circle-2:nth-child(5) {
    top: 70%;
    right: 5%;
}

.custom-circles-container .custom-circle-3:nth-child(6) {
    top: 60%;
    right: 12%;
}

/*
* Cards
*/
.custom-cards {
    margin-top: -345px;
}

@media (max-width: 1199px) {
    .custom-cards {
            margin-top: 3rem;
    }
}

.custom-cards .col-custom-cards .card {
    bottom: 0;
    position: relative;
}

@media (max-width: 1199px) {
    .custom-cards .col-custom-cards .card {
            position: static;
    }
}

.custom-cards .col-custom-cards:nth-child(2) {
    transform: translateY(45px);
}

.custom-cards .col-custom-cards:nth-child(3) {
    transform: translateY(90px);
}

/*
* Custom List
*/
.custom-list li:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 3px;
    margin-right: 17px;
}

/*
* Approach Img
*/
.approach-img {
    position: relative;
    display: block;
    background: radial-gradient(circle, var(--primary-rgba-10) 0%, var(--secondary-rgba-10) 60%, transparent 70%);
    border-radius: 50%;
    min-width: 355px;
    min-height: 360px;
    max-width: 355px;
    max-height: 360px;
    margin: auto;
    width: 100%;
}

.approach-img .custom-circle-1 {
    display: block;
    width: 50%;
    height: 50%;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 113px;
}

.approach-img .custom-circle-2 {
    display: block;
    width: 25%;
    height: 25%;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-rgba-20);
}

.approach-img .custom-circle-our-approach-deco-1 {
    width: 33px;
    height: 31px;
    border-radius: 50%;
    top: 30px;
    left: 30px;
}

.approach-img .custom-circle-our-approach-deco-2 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 25%;
    right: 2%;
    transform: translateY(-50%);
}

.approach-img .custom-circle-our-approach-deco-3 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    bottom: 0;
    left: 20%;
    transform: translateX(-50%);
}

/*
* Section Our Work
*/
.our-work .isotope-item {
    position: static !important;
    transition: .3s opacity;
}

.our-work .custom-our-work img {
    min-height: 280px;
}

.our-work .custom-our-work .custom-our-work-text {
    position: relative;
}

.our-work .custom-our-work .custom-our-work-text h4, .our-work .custom-our-work .custom-our-work-text p, .our-work .custom-our-work .custom-our-work-text span {
    position: relative;
    left: 0;
}

.our-work .custom-our-work .custom-our-work-text h4 {
    transition: .2s left;
}

.our-work .custom-our-work .custom-our-work-text p {
    transition: .5s left;
}

.our-work .custom-our-work .custom-our-work-text span {
    transition: .9s left;
}

.our-work .custom-our-work:hover:before {
    opacity: 0.8 !important;
}

.our-work .custom-our-work:hover .custom-our-work-text h4, .our-work .custom-our-work:hover .custom-our-work-text p, .our-work .custom-our-work:hover .custom-our-work-text span {
    left: 20px;
}

/*
* Side menu Our Work
*/
.side-menu-our-work .sort-source li a:before {
    content: '';
    width: 15px;
    height: 3px;
    background-color: var(--grey-500);
    display: inline-block;
    margin-right: 16px;
    vertical-align: middle;
    transition: .5s width;
}

.side-menu-our-work .sort-source li a:hover:before {
    width: 30px;
}

.side-menu-our-work .sort-source li.active a {
    color: var(--light) !important;
}

.side-menu-our-work .sort-source.sort-source-light li.active a {
    color: #000 !important;
    font-weight: bold !important;
}

/*
* Section Our Services
*/
.our-services .custom-circle-2 {
    top: 10%;
    right: 7%;
}

.our-services .service-card {
    padding: 65px 0 65px 35px;
}

.our-services .service-card:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 3px;
    margin-right: 10px;
    transition: .5s width;
}

.our-services .service-card:hover:before {
    width: 45px;
    background-color: white !important;
}

.our-services .service-card.bg-color-dark:before, .our-services .service-card.active:before {
    background-color: white !important;
}

.our-services .col-our-services-bottom .col-our-services-bottom-img {
    min-height: 377px;
}

.our-services .col-our-services-bottom .col-our-services-bottom-img img {
    max-width: 300px;
    height: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.our-services .col-our-services-bottom .col-our-services-bottom-img .square-1 {
    position: absolute;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    width: 253px;
    height: 140px;
    opacity: 0.5;
}

.our-services .col-our-services-bottom .col-our-services-bottom-img .square-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 253px;
    height: 178px;
    opacity: 0.5;
}

.our-services .col-our-services-bottom .col-our-services-bottom-img .square-3 {
    border: 3px solid #000;
    position: absolute;
    top: 43%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 299px;
    height: 285px;
}

.our-services .col-our-services-bottom .col-our-services-bottom-img .custom-circle-1 {
    position: absolute;
    top: 70%;
    left: -5%;
    transform: translateY(-50%);
    width: 26px;
    height: 24px;
    opacity: 0.5;
    border-radius: 50%;
}

/*
* Section Our Insights
*/
.our-insights .custom-circle-2 {
    top: 8%;
    left: 5%;
}

.our-insights .custom-circle-3 {
    top: 18%;
    left: 12%;
}

/*
* About Us Featured Block
*/
.about-us-featured-block {
    position: absolute;
    z-index: 1;
    top: -50%;
    transform: translate(-70px, -50%);
}

@media (max-width: 1199px) {
    .about-us-featured-block {
            position: static;
            transform: translate(0);
    }
}

/*
* Page Our Work Detail
*/
.project-details {
    border-bottom: 1px solid #e7e7e7;
}

/*
* Page Our Services Detail
*/
.custom-accordion .custom-card-default {
    border-width: 20px !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.custom-accordion .custom-card-body-collapse {
    border-bottom: 20px solid;
}

/*
* Section Contact Us - Where You Are
*/
.where-you-are-postal-cards .custom-circle-2:nth-child(1) {
    top: -10px;
    left: 30px;
}

.where-you-are-postal-cards .custom-circle-3:nth-child(2) {
    top: -10px;
    right: 30px;
}

.where-you-are-postal-cards .custom-circle-3:nth-child(3) {
    bottom: -40px;
    right: 60px;
}

.where-you-are-postal-cards .col-where-you-are-postal {
    min-height: 380px;
}

@media (max-width: 991px) {
    .where-you-are-postal-cards .col-where-you-are-postal {
            min-height: unset;
    }
}

.where-you-are-postal-cards .col-where-you-are-postal img {
    position: absolute;
    left: 0;
}

@media (max-width: 991px) {
    .where-you-are-postal-cards .col-where-you-are-postal img {
            position: static;
    }
}

.where-you-are-postal-cards .col-where-you-are-postal .col-where-you-are-postal-text {
    height: 100%;
}

@media (max-width: 991px) {
    .where-you-are-postal-cards .col-where-you-are-postal .col-where-you-are-postal-text {
            height: auto;
    }
}

/*
* Section Get in Touch
*/
.get-in-touch {
    padding: 60px 0 80px;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1199px) {
    .get-in-touch {
            padding: 90px 0;
    }
}

.get-in-touch:after {
    content: '';
    display: none;
    width: 120%;
    height: 100px;
    position: absolute;
    bottom: -48px;
    left: -5%;
    transform: rotate(2deg);
    z-index: 3;
}

@media (max-width: 1199px) {
    .get-in-touch:after {
            display: none;
    }
}

.get-in-touch .custom-circle-1 {
    top: 20%;
    right: 10%;
}

.get-in-touch .custom-circle-2 {
    top: 70%;
    right: 5%;
}

/*
* Page Header
*/
.page-header.page-header-modern.page-header-background {
    padding: 100px 0 60px;
    margin-bottom: 0;
    background-position: 0 100%;
    background-size: cover;
}

@media (max-width: 1199px) {
    .page-header.page-header-modern.page-header-background {
            padding: 80px 0 40px;
    }
}

/* .page-header.page-header-modern.page-header-background:after {
    content: '';
    display: block;
    width: 100%;
    height: 100px;
    background-color: var(--grey-100);
    position: absolute;
    bottom: -48px;
    left: 0;
    transform: rotate(2deg);
    z-index: 100;
} */

@media (max-width: 1199px) {
    .page-header.page-header-modern.page-header-background:after {
            display: none;
    }
}

.page-header.page-header-modern.page-header-background .custom-circle-1:nth-child(1) {
    top: 40%;
    right: 5%;
}

.page-header.page-header-modern.page-header-background .custom-circle-2:nth-child(2) {
    top: 70%;
    right: 5%;
}

.page-header.page-header-modern.page-header-background .custom-circle-3:nth-child(3) {
    top: 60%;
    right: 12%;
}



/*
* Footer
*/
#footer {
    border: 0;
}

/* Skin */
.overlay:before {
    background-color: var(--secondary) !important;
}

.custom-btn-with-arrow-primary:after {
    color: var(--primary) !important;
}

.custom-btn-with-arrow-secondary:after {
    color: var(--secondary) !important;
}

.custom-btn-with-arrow-tertiary:after {
    color: var(--tertiary) !important;
}

.custom-btn-with-arrow-quaternary:after {
    color: var(--quaternary) !important;
}

.custom-btn-with-arrow-dark:after {
    color: var(--dark) !important;
}

.custom-btn-with-arrow-light:after {
    color: var(--light) !important;
}

.custom-title-with-icon-primary:before {
    color: var(--primary) !important;
}

.custom-title-with-icon-secondary:before {
    color: var(--secondary) !important;
}

.custom-title-with-icon-tertiary:before {
    color: var(--tertiary) !important;
}

.custom-title-with-icon-quaternary:before {
    color: var(--quaternary) !important;
}

.custom-title-with-icon-dark:before {
    color: var(--dark) !important;
}

.custom-title-with-icon-light:before {
    color: var(--light) !important;
}

@media (max-width: 991px) {
    #header .header-nav-main.header-nav-main-mobile-dark:before {
            background-color: var(--secondary);
    }
}

@media (min-width: 992px) {
    #header .header-nav.header-nav-links nav > ul li:hover > a {
            color: var(--primary) !important;
    }
}

.our-services .service-card:before {
    background-color: var(--secondary);
}

.our-services .col-our-services-bottom .col-our-services-bottom-img .square-3 {
    border-color: var(--secondary);
}

.custom-list li:before {
    background-color: var(--primary);
}

.custom-accordion .custom-card-body-collapse {
    border-bottom-color: var(--tertiary);
}

.side-menu-our-work .sort-source li a:before {
    background-color: var(--primary);
}

#footer {
    background-color: var(--secondary) !important;
}

#footer .custom-newsletter {
    border-bottom: 1px solid var(--quaternary);
}

/* ========================================================
   MODULE THEME OVERRIDES — Dark Digital Agency Theme
   --------------------------------------------------------
   skin-digital-agency-2 defines:
     --primary: #3fc2c2 (teal)
     --secondary: #060928 (very dark blue) → usable as dark section bg
     --tertiary: #0227ae (blue)
     --quaternary: #777 (grey)
     --dark: #292929

   Modules use inline styles with var(--secondary) for section bg,
   var(--dark) for cards, var(--light) for text, var(--quaternary)
   for muted text. These rules unify the dark blue aesthetic.
   ======================================================== */

/* === 1. Section Backgrounds → Deep blue instead of raw secondary ===
   Modules use style="background-color: var(--secondary)" */
html.demo-digital-agency-2 .main section[style*="--secondary"]:not(.page-header) {
	background-color: #0a0d30 !important;
}

/* === 2. Card/Panel Backgrounds → Blue-tinted dark with subtle border === */
html.demo-digital-agency-2 .main section div[style*="background-color: var(--dark)"],
html.demo-digital-agency-2 .main section aside [style*="background-color: var(--dark)"] {
	background-color: #121540 !important;
	border: 1px solid var(--primary-rgba-10) !important;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* === 3. Cards por clase → Dark card with teal accent border === */
html.demo-digital-agency-2 .main section[style*="--secondary"] .blog-card,
html.demo-digital-agency-2 .main section[style*="--secondary"] .service-card,
html.demo-digital-agency-2 .main section[style*="--secondary"] .project-card {
	background-color: #121540 !important;
	border: 1px solid var(--primary-rgba-10) !important;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

html.demo-digital-agency-2 .main section[style*="--secondary"] .blog-card:hover,
html.demo-digital-agency-2 .main section[style*="--secondary"] .service-card:hover,
html.demo-digital-agency-2 .main section[style*="--secondary"] .project-card:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
	border-color: var(--primary-rgba-20) !important;
}

/* === 4. Text colors: keep light on dark === */
html.demo-digital-agency-2 .main section[style*="--secondary"] [style*="color: var(--light)"] {
	color: #FFF !important;
}

html.demo-digital-agency-2 .main section[style*="--secondary"] strong[style*="--light"] {
	color: #FFF !important;
}

/* === 5. Muted text → visible grey on dark bg === */
html.demo-digital-agency-2 .main section[style*="--secondary"] [style*="color: var(--quaternary)"] {
	color: #999 !important;
}

/* === 6. Cyan borders (hardcoded rgba) → Teal subtle === */
html.demo-digital-agency-2 .main [style*="rgba(0, 240, 255"] {
	border-color: var(--primary-rgba-10) !important;
}

html.demo-digital-agency-2 .main [style*="border: 1px solid rgba(0, 240, 255"] {
	border: 1px solid var(--primary-rgba-10) !important;
}

html.demo-digital-agency-2 .main [style*="background-color: rgba(0, 240, 255"] {
	background-color: var(--primary-rgba-10) !important;
	border-color: var(--primary-rgba-10) !important;
}

/* === 7. Gallery module — filter pills + tags === */
html.demo-digital-agency-2 .main .btn-outline-light {
	color: #ccc !important;
	border-color: #1e2150 !important;
	background: #121540 !important;
}

html.demo-digital-agency-2 .main .btn-outline-light:hover {
	color: var(--primary) !important;
	border-color: var(--primary) !important;
	background: var(--primary-rgba-10) !important;
}

html.demo-digital-agency-2 .main .text-muted {
	color: #888 !important;
}

html.demo-digital-agency-2 .main .portfolio-grid-item {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* === 8. FAQs MODULE — Dark Theme === */

html.demo-digital-agency-2 .faq-category-section {
	background: #121540 !important;
	border: 1px solid var(--primary-rgba-10) !important;
}

html.demo-digital-agency-2 .faq-item {
	background: #121540 !important;
	border: 1px solid var(--primary-rgba-10) !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

html.demo-digital-agency-2 .faq-item:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
	border-color: var(--primary-rgba-20) !important;
}

html.demo-digital-agency-2 .faq-question {
	background: #161950 !important;
	border-bottom: 1px solid var(--primary-rgba-10) !important;
}

html.demo-digital-agency-2 .faq-question h5 {
	color: #FFF !important;
}

html.demo-digital-agency-2 .faq-question:hover h5 {
	color: var(--primary) !important;
}

html.demo-digital-agency-2 .faq-answer {
	background: #121540 !important;
	border-top: 1px solid var(--primary-rgba-10) !important;
}

html.demo-digital-agency-2 .faq-content {
	color: #aaa !important;
}

html.demo-digital-agency-2 .category-header h4 {
	color: #FFF !important;
}

/* === 9. Sidebar card === */
html.demo-digital-agency-2 .main aside.card {
	background-color: #121540 !important;
	border: 1px solid var(--primary-rgba-10) !important;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

html.demo-digital-agency-2 .main aside .card-header {
	background-color: #161950 !important;
	border-bottom: 1px solid var(--primary-rgba-10) !important;
}

html.demo-digital-agency-2 .main aside .card-header h5 {
	color: #FFF !important;
}

/* === 10. Category navigation === */
html.demo-digital-agency-2 .category-nav-item {
	color: #ccc !important;
	border: 1px solid #1e2150 !important;
}

html.demo-digital-agency-2 .category-nav-item:hover {
	background: var(--primary-rgba-10) !important;
	color: var(--primary) !important;
	border-color: var(--primary-rgba-20) !important;
}

html.demo-digital-agency-2 .category-nav-item.active {
	background: var(--primary) !important;
	color: #060928 !important;
	border-color: var(--primary) !important;
}

html.demo-digital-agency-2 .category-nav-item.active .badge-count {
	background: rgba(6, 9, 40, 0.3) !important;
	color: #060928 !important;
}

html.demo-digital-agency-2 .badge-count {
	background: #161950 !important;
	color: #888 !important;
}

/* === 11. Quick actions === */
html.demo-digital-agency-2 .quick-actions {
	background: #161950 !important;
	border: 1px solid var(--primary-rgba-10) !important;
}

html.demo-digital-agency-2 .quick-actions h6 {
	color: #FFF !important;
}

/* === 12. Hero Gradient — CSS-only hero when no carousel image === */
.hero-gradient {
	background: linear-gradient(160deg, var(--secondary) 0%, var(--secondary-200) 35%, var(--secondary-100) 65%, var(--secondary) 100%) !important;
	position: relative;
	overflow: hidden;
}

.hero-gradient::before {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	background:
		radial-gradient(ellipse at 15% 50%, var(--primary-rgba-10) 0%, transparent 45%),
		radial-gradient(ellipse at 75% 15%, var(--tertiary-rgba-10) 0%, transparent 35%),
		radial-gradient(ellipse at 85% 70%, var(--primary-rgba-10) 0%, transparent 30%);
	z-index: 0;
	pointer-events: none;
	animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
	0% { opacity: 0.7; transform: translate(0, 0) scale(1); }
	100% { opacity: 1; transform: translate(2%, -1%) scale(1.03); }
}

.hero-gradient > div,
.hero-gradient .custom-circle {
	position: relative;
	z-index: 1;
}

/* Subtle dot pattern overlay */
.hero-gradient::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 24px 24px;
	z-index: 0;
	pointer-events: none;
}

/* === 13. Hero Illustration — Image as side element, not background === */
.hero-illustration {
	position: relative;
	z-index: 2;
	max-width: 520px;
}

.hero-illustration-img {
	max-height: 420px;
	width: auto;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1199px) {
	.hero-illustration {
		max-width: 400px;
	}
	.hero-illustration-img {
		max-height: 320px;
	}
}

/* === 14. CTA Gradient — Replaces bg-2.jpg placeholder === */
.cta-gradient {
	background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-200) 50%, var(--secondary) 100%) !important;
}

.cta-gradient::before {
	background: linear-gradient(135deg, var(--primary-rgba-70) 0%, var(--secondary-rgba-80) 60%, var(--tertiary-rgba-40) 100%) !important;
}

/* Product card hover */
.product-card-home .card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.product-card-home:hover .card { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

/* === 15. Pagination — Styled for dark theme === */
.pagination {
	gap: 4px;
}

.pagination .page-item .page-link {
	background-color: var(--secondary);
	border: 1px solid var(--primary-rgba-10);
	color: var(--light);
	border-radius: 0 !important;
	min-width: 40px;
	text-align: center;
	transition: all 0.2s ease;
}

.pagination .page-item .page-link:hover {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--secondary);
}

.pagination .page-item.active .page-link {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--secondary);
	font-weight: 600;
}

.pagination .page-item.disabled .page-link {
	background-color: var(--secondary-100);
	border-color: var(--primary-rgba-10);
	color: var(--quaternary);
	opacity: 0.5;
}

/* SVG arrows in Laravel pagination */
.pagination .page-link svg {
	width: 16px !important;
	height: 16px !important;
	max-width: 16px !important;
	max-height: 16px !important;
	fill: currentColor;
	display: inline-block;
	vertical-align: middle;
}

/* Constrain prev/next link containers */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 40px;
	max-height: 40px;
	overflow: hidden;
}
