/* =========================================================
   Association ADLV
   STYLE.CSS
   PART 1 / 8
   Reset • Variables • Typography • Layout • Header
=========================================================*/

/* ===========================
   RESET
=========================== */

*,
*::before,
*::after{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:
"Segoe UI",
Arial,
Helvetica,
sans-serif;

font-size:16px;
line-height:1.7;

background:#f7f9f8;
color:#333;

overflow-x:hidden;

-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
}

img{
display:block;
max-width:100%;
height:auto;
border:0;
}

a{
text-decoration:none;
color:inherit;
transition:.30s ease;
}

button,
input,
textarea,
select{
font-family:inherit;
font-size:inherit;
outline:none;
}

button{
cursor:pointer;
border:none;
background:none;
}

ul{
list-style:none;
}

section{
padding:70px 0;
}

/* ===========================
   VARIABLES
=========================== */

:root{

--primary:#2E7D32;

--primary-dark:#1f5f24;

--primary-light:#4CAF50;

--secondary:#66BB6A;

--accent:#FFD54F;

--white:#ffffff;

--black:#111111;

--text:#333333;

--text-light:#666666;

--border:#e6e6e6;

--background:#f7f9f8;

--card:#ffffff;

--success:#2E7D32;

--danger:#d32f2f;

--radius-xs:6px;

--radius-sm:10px;

--radius:18px;

--radius-lg:30px;

--shadow-sm:
0 2px 8px rgba(0,0,0,.05);

--shadow:
0 8px 30px rgba(0,0,0,.08);

--shadow-lg:
0 20px 45px rgba(0,0,0,.12);

--transition:.30s ease;

--container:1200px;

}

/* ===========================
   TYPOGRAPHY
=========================== */

h1,
h2,
h3,
h4,
h5{
font-weight:700;
line-height:1.25;
color:var(--primary);
}

h1{

font-size:clamp(2.2rem,5vw,4rem);

margin-bottom:20px;

}

h2{

font-size:clamp(1.8rem,3vw,2.7rem);

margin-bottom:18px;

}

h3{

font-size:1.35rem;

margin-bottom:15px;

}

p{

margin-bottom:18px;

color:var(--text);

}

strong{

font-weight:700;

}

/* ===========================
   CONTAINER
=========================== */

.container{

width:min(var(--container),92%);

margin:auto;

}

/* ===========================
   UTILITIES
=========================== */

.text-center{

text-align:center;

}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:60px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:60px;}

.hidden{

display:none;

}

/* ===========================
   HEADER
=========================== */

.header{

position:sticky;

top:0;

left:0;

width:100%;

background:#fff;

z-index:9999;

box-shadow:var(--shadow-sm);

transition:var(--transition);

}

.navbar{

display:flex;

align-items:center;

justify-content:space-between;

gap:30px;

padding:18px 0;

}

.logo{

display:flex;

align-items:center;

gap:12px;

}

.logo img{

height:60px;

width:auto;

transition:.30s;

}

.logo:hover img{

transform:scale(1.04);

}

nav{

display:flex;

align-items:center;

gap:22px;

}

nav>a{

font-weight:600;

color:#333;

position:relative;

padding:8px 0;

transition:.30s;

}

nav>a:hover{

color:var(--primary);

}

nav>a.active{

color:var(--primary);

}

nav>a.active::after,

nav>a:hover::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:100%;

height:3px;

border-radius:20px;

background:var(--primary);

}
/* =========================================================
   Association ADLV
   STYLE.CSS
   PART 2 / 8
   Navigation • Dropdown • Mobile Menu • Hero • Buttons
=========================================================*/

/* ===========================
   MENU TOGGLE
=========================== */

.menu-toggle{

display:none;

width:48px;

height:48px;

border-radius:12px;

background:var(--primary);

color:#fff;

font-size:24px;

align-items:center;

justify-content:center;

transition:var(--transition);

box-shadow:var(--shadow-sm);

}

.menu-toggle:hover{

background:var(--primary-dark);

transform:scale(1.05);

}

/* ===========================
   DROPDOWN
=========================== */

.dropdown{

position:relative;

display:flex;

align-items:center;

}

.dropdown-btn{

display:flex;

align-items:center;

gap:8px;

padding:8px 0;

font-size:16px;

font-weight:600;

color:#333;

transition:var(--transition);

}

.dropdown-btn:hover{

color:var(--primary);

}

.dropdown-content{

position:absolute;

top:100%;

left:0;

min-width:240px;

background:#fff;

border-radius:18px;

padding:12px 0;

box-shadow:var(--shadow);

opacity:0;

visibility:hidden;

transform:translateY(15px);

transition:.30s;

z-index:1000;

}

.dropdown:hover .dropdown-content{

opacity:1;

visibility:visible;

transform:translateY(0);

}

.dropdown-content a{

display:block;

padding:14px 20px;

font-size:15px;

font-weight:500;

transition:.30s;

white-space:nowrap;

}

.dropdown-content a:hover{

background:#f6f6f6;

color:var(--primary);

padding-left:28px;

}

/* ===========================
   HERO
=========================== */

.hero{

position:relative;

padding:110px 0;

background:

linear-gradient(

135deg,

#edf8ef,

#ffffff

);

overflow:hidden;

text-align:center;

}

.hero::before{

content:"";

position:absolute;

top:-120px;

right:-120px;

width:350px;

height:350px;

background:

rgba(76,175,80,.08);

border-radius:50%;

}

.hero::after{

content:"";

position:absolute;

bottom:-160px;

left:-120px;

width:420px;

height:420px;

background:

rgba(46,125,50,.05);

border-radius:50%;

}

.hero .container{

position:relative;

z-index:2;

}

.hero img{

margin:auto;

margin-bottom:40px;

border-radius:30px;

box-shadow:var(--shadow-lg);

}

.hero h1{

margin-bottom:25px;

}

.hero p{

max-width:850px;

margin-left:auto;

margin-right:auto;

font-size:18px;

color:#555;

}

.hero p:last-of-type{

margin-bottom:40px;

}

/* ===========================
   HERO BUTTONS
=========================== */

.hero-buttons{

display:flex;

justify-content:center;

align-items:center;

flex-wrap:wrap;

gap:18px;

margin-top:35px;

}

/* ===========================
   BUTTONS
=========================== */

.btn,
.primary-btn,
.secondary-btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

padding:16px 34px;

border-radius:999px;

font-weight:700;

transition:var(--transition);

cursor:pointer;

}

.btn,
.primary-btn{

background:var(--primary);

color:#fff;

box-shadow:

0 10px 30px

rgba(46,125,50,.22);

}

.btn:hover,
.primary-btn:hover{

background:var(--primary-dark);

transform:translateY(-4px);

box-shadow:

0 20px 40px

rgba(46,125,50,.28);

}

.btn-outline,
.secondary-btn{

background:#fff;

border:2px solid var(--primary);

color:var(--primary);

}

.btn-outline:hover,
.secondary-btn:hover{

background:var(--primary);

color:#fff;

transform:translateY(-4px);

}

/* ===========================
   LINKS
=========================== */

.link{

color:var(--primary);

font-weight:700;

}

.link:hover{

text-decoration:underline;

}

/* ===========================
   SMALL BADGE
=========================== */

.badge{

display:inline-block;

padding:8px 16px;

background:#e8f5e9;

color:var(--primary);

border-radius:999px;

font-size:14px;

font-weight:700;

}

/* ===========================
   ANIMATIONS
=========================== */

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

.hero h1{

animation:fadeUp .7s ease;

}

.hero p{

animation:fadeUp .9s ease;

}

.hero-buttons{

animation:fadeUp 1.1s ease;

}
/* =========================================================
   Association ADLV
   STYLE.CSS
   PART 3 / 8
   Sections • Cards • Shop • Products • Product Details
=========================================================*/

/* ===========================
   SECTIONS
=========================== */

section{

position:relative;

}

section:nth-child(even){

background:#ffffff;

}

section:nth-child(odd){

background:#f8faf9;

}

/* ===========================
   CARDS
=========================== */

.cards{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(260px,1fr));

gap:30px;

margin-top:40px;

}

.card{

background:#fff;

padding:35px;

border-radius:24px;

border:1px solid #ececec;

box-shadow:var(--shadow-sm);

transition:.35s;

overflow:hidden;

position:relative;

}

.card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:var(--primary);

transform:scaleX(0);

transition:.35s;

transform-origin:left;

}

.card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-lg);

}

.card:hover::before{

transform:scaleX(1);

}

.card h2{

margin-bottom:18px;

}

.card h3{

margin-bottom:15px;

}

.card p:last-child{

margin-bottom:0;

}

.card ul{

margin-top:15px;

padding-left:20px;

}

.card li{

margin-bottom:12px;

list-style:disc;

}

/* ===========================
   PRODUCT GRID
=========================== */

.products{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:35px;

margin-top:45px;

}

/* ===========================
   PRODUCT CARD
=========================== */

.product-card{

padding:0;

overflow:hidden;

display:flex;

flex-direction:column;

}

.product-card img{

width:100%;

height:280px;

object-fit:cover;

transition:.45s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-card h3{

padding:25px 25px 10px;

font-size:1.35rem;

}

.product-card p{

padding:0 25px;

font-weight:700;

font-size:18px;

color:var(--primary);

}

.product-card .primary-btn{

margin:

20px
25px
30px;

}

/* ===========================
   SHOP SEARCH
=========================== */

#shopSearch{

width:100%;

padding:18px 22px;

border-radius:50px;

border:2px solid #ddd;

background:#fff;

margin-bottom:45px;

transition:.30s;

font-size:16px;

}

#shopSearch:focus{

border-color:var(--primary);

box-shadow:

0 0 0 5px

rgba(46,125,50,.10);

}

/* ===========================
   PRODUCT DETAILS
=========================== */

.product-details{

display:grid;

grid-template-columns:

1fr
1fr;

gap:60px;

align-items:start;

}

.product-image{

background:#fff;

padding:25px;

border-radius:24px;

box-shadow:var(--shadow);

}

.product-image img{

width:100%;

border-radius:18px;

transition:.35s;

}

.product-image:hover img{

transform:scale(1.03);

}

.product-info{

display:flex;

flex-direction:column;

}

.product-info h1{

margin-bottom:20px;

}

.product-info p{

margin-bottom:18px;

}

.product-info ul{

margin:

20px
0;

padding-left:22px;

}

.product-info li{

margin-bottom:12px;

list-style:disc;

}

.product-info .primary-btn,

.product-info .secondary-btn{

margin-top:15px;

}

/* ===========================
   PRICE
=========================== */

.price{

font-size:2rem;

font-weight:700;

color:var(--primary);

margin:20px 0;

}

/* ===========================
   PRODUCT FEATURES
=========================== */

.features{

display:grid;

grid-template-columns:

repeat(2,1fr);

gap:15px;

margin-top:25px;

}

.feature{

background:#fff;

padding:18px;

border-radius:16px;

box-shadow:var(--shadow-sm);

}

/* ===========================
   SHOP INFO BOX
=========================== */

.shop-info{

margin-top:50px;

padding:35px;

background:#fff;

border-radius:24px;

box-shadow:var(--shadow-sm);

text-align:center;

}

.shop-info h2{

margin-bottom:20px;

}

.shop-info p{

max-width:800px;

margin:auto;

}

/* ===========================
   PRODUCT BADGE
=========================== */

.product-badge{

position:absolute;

top:18px;

left:18px;

background:var(--primary);

color:#fff;

padding:

8px
15px;

border-radius:999px;

font-size:14px;

font-weight:700;

z-index:5;

}

/* ===========================
   IMAGE HOVER
=========================== */

.zoom{

overflow:hidden;

border-radius:20px;

}

.zoom img{

transition:.5s;

}

.zoom:hover img{

transform:scale(1.08);

}
/* =========================================================
   Association ADLV
   STYLE.CSS
   PART 4 / 8
   Forms • Contact • Adoption • Donation • Success Pages
=========================================================*/

/* ===========================
   FORMS
=========================== */

form{

display:flex;

flex-direction:column;

gap:20px;

margin-top:30px;

}

label{

font-weight:600;

color:#333;

margin-bottom:5px;

display:block;

}

input,
textarea,
select{

width:100%;

padding:16px 18px;

border:2px solid #dddddd;

border-radius:16px;

background:#ffffff;

font-size:16px;

transition:.30s;

}

textarea{

resize:vertical;

min-height:170px;

}

input:focus,
textarea:focus,
select:focus{

border-color:var(--primary);

box-shadow:

0 0 0 5px

rgba(46,125,50,.12);

}

/* ===========================
   PLACEHOLDER
=========================== */

input::placeholder,
textarea::placeholder{

color:#888;

}

/* ===========================
   SUBMIT BUTTON
=========================== */

form button{

margin-top:15px;

align-self:flex-start;

}

/* ===========================
   CONTACT
=========================== */

.contact-grid{

display:grid;

grid-template-columns:

2fr
1fr;

gap:40px;

align-items:start;

}

.contact-info{

display:flex;

flex-direction:column;

gap:20px;

}

.contact-item{

display:flex;

align-items:center;

gap:18px;

padding:18px;

background:#fff;

border-radius:18px;

box-shadow:var(--shadow-sm);

}

.contact-item strong{

display:block;

margin-bottom:5px;

}

/* ===========================
   ADOPTION
=========================== */

#adoption-form{

max-width:900px;

margin:auto;

}

#adoption-form .card{

padding:45px;

}

#adoption-form select{

cursor:pointer;

}

/* ===========================
   DONATION
=========================== */

.donation-box{

text-align:center;

padding:55px;

background:#fff;

border-radius:30px;

box-shadow:var(--shadow);

}

.donation-box h2{

margin-bottom:25px;

}

.donation-box p{

max-width:720px;

margin:auto;

margin-bottom:25px;

}

.donation-box .primary-btn{

font-size:20px;

padding:

18px
40px;

}

/* ===========================
   SUCCESS PAGES
=========================== */

.success-box{

max-width:900px;

margin:auto;

padding:55px;

text-align:center;

background:#fff;

border-radius:28px;

box-shadow:var(--shadow);

}

.success-box h1{

font-size:3rem;

color:var(--success);

margin-bottom:25px;

}

.success-box p{

font-size:18px;

max-width:720px;

margin:auto;

margin-bottom:20px;

}

.success-box .card{

margin-top:35px;

text-align:left;

}

/* ===========================
   SUCCESS LIST
=========================== */

.success-box ul{

padding-left:22px;

margin-top:15px;

}

.success-box li{

margin-bottom:14px;

list-style:disc;

}

/* ===========================
   THANK YOU BUTTONS
=========================== */

.success-buttons{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:18px;

margin-top:35px;

}

/* ===========================
   PAYPAL BUTTON
=========================== */

.paypal-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:

20px
45px;

background:#0070ba;

color:#fff;

border-radius:18px;

font-size:20px;

font-weight:700;

transition:.30s;

box-shadow:

0 15px 35px

rgba(0,112,186,.25);

}

.paypal-btn:hover{

background:#005ea6;

transform:translateY(-5px);

}

/* ===========================
   ALERTS
=========================== */

.alert{

padding:18px 22px;

border-radius:18px;

margin:25px 0;

font-weight:600;

}

.alert-success{

background:#e8f5e9;

color:#2E7D32;

border-left:6px solid #2E7D32;

}

.alert-warning{

background:#fff8e1;

color:#8a6d00;

border-left:6px solid #FFD54F;

}

.alert-danger{

background:#ffebee;

color:#c62828;

border-left:6px solid #d32f2f;

}

/* ===========================
   DIVIDERS
=========================== */

hr{

border:none;

height:1px;

background:#e6e6e6;

margin:

35px
0;

}

/* ===========================
   ICON CIRCLE
=========================== */

.icon-circle{

width:70px;

height:70px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#e8f5e9;

color:var(--primary);

font-size:30px;

margin:auto;

margin-bottom:20px;

}

/* ===========================
   SPACING HELPERS
=========================== */

.py-5{

padding-top:80px;

padding-bottom:80px;

}

.py-3{

padding-top:45px;

padding-bottom:45px;

}

.mx-auto{

margin-left:auto;

margin-right:auto;

}

.w-100{

width:100%;

}
/* =========================================================
   Association ADLV
   STYLE.CSS
   PART 5 / 8
   Footer • 404 • Animations • Utilities • Effects
=========================================================*/

/* ===========================
   FOOTER
=========================== */

footer{

background:#1f1f1f;

color:#ffffff;

margin-top:80px;

padding:70px 0 30px;

}

.footer-container{

display:grid;

grid-template-columns:

2fr
1fr;

gap:50px;

align-items:start;

}

.footer-logo img{

height:70px;

margin-bottom:20px;

}

.footer-logo h3{

color:#ffffff;

margin-bottom:18px;

}

.footer-logo p{

color:#cccccc;

max-width:420px;

}

.footer-links{

display:flex;

flex-direction:column;

gap:14px;

}

.footer-links h4{

color:#ffffff;

margin-bottom:12px;

}

.footer-links a{

color:#d8d8d8;

transition:.30s;

}

.footer-links a:hover{

color:#FFD54F;

padding-left:8px;

}

.copyright{

grid-column:1/-1;

margin-top:45px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.10);

text-align:center;

font-size:15px;

color:#bcbcbc;

}

/* ===========================
   404 PAGE
=========================== */

.error404{

text-align:center;

padding:90px 20px;

}

.error404 h1{

font-size:8rem;

color:var(--primary);

margin-bottom:20px;

}

.error404 p{

font-size:20px;

max-width:650px;

margin:auto;

margin-bottom:35px;

}

/* ===========================
   SHADOWS
=========================== */

.shadow-sm{

box-shadow:var(--shadow-sm);

}

.shadow{

box-shadow:var(--shadow);

}

.shadow-lg{

box-shadow:var(--shadow-lg);

}

/* ===========================
   BORDER RADIUS
=========================== */

.rounded{

border-radius:var(--radius);

}

.rounded-lg{

border-radius:var(--radius-lg);

}

/* ===========================
   BACKGROUNDS
=========================== */

.bg-primary{

background:var(--primary);

color:#fff;

}

.bg-light{

background:#ffffff;

}

.bg-grey{

background:#f6f6f6;

}

/* ===========================
   TEXT COLORS
=========================== */

.text-primary{

color:var(--primary);

}

.text-light{

color:#777;

}

.text-white{

color:#fff;

}

/* ===========================
   FLEX HELPERS
=========================== */

.flex{

display:flex;

}

.flex-center{

display:flex;

align-items:center;

justify-content:center;

}

.flex-between{

display:flex;

justify-content:space-between;

align-items:center;

}

.flex-column{

display:flex;

flex-direction:column;

}

/* ===========================
   GRID HELPERS
=========================== */

.grid-2{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

}

.grid-3{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.grid-4{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

/* ===========================
   TRANSITIONS
=========================== */

.transition{

transition:.30s ease;

}

.hover-up{

transition:.30s;

}

.hover-up:hover{

transform:translateY(-8px);

}

/* ===========================
   FADE IN
=========================== */

.fade-in{

animation:fadeIn .8s ease forwards;

opacity:0;

}

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}

/* ===========================
   SLIDE UP
=========================== */

.slide-up{

animation:slideUp .7s ease forwards;

opacity:0;

}

@keyframes slideUp{

from{

opacity:0;

transform:translateY(50px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* ===========================
   SCALE
=========================== */

.scale{

transition:.35s;

}

.scale:hover{

transform:scale(1.05);

}

/* ===========================
   IMAGE EFFECT
=========================== */

.img-hover{

overflow:hidden;

border-radius:20px;

}

.img-hover img{

transition:.5s;

}

.img-hover:hover img{

transform:scale(1.08);

}

/* ===========================
   LOADER
=========================== */

.loader{

width:45px;

height:45px;

border-radius:50%;

border:4px solid #ddd;

border-top:4px solid var(--primary);

animation:spin 1s linear infinite;

margin:auto;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#eeeeee;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:var(--primary-dark);

}

/* ===========================
   SELECTION
=========================== */

::selection{

background:var(--primary);

color:#ffffff;

}

/* ===========================
   FOCUS
=========================== */

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus{

outline:none;

}

/* ===========================
   END PART 5
=========================== */
/* =========================================================
   Association ADLV
   STYLE.CSS
   PART 6 / 8
   RESPONSIVE TABLET & MOBILE
=========================================================*/

/* ===========================
   LARGE TABLETS
=========================== */

@media (max-width:1100px){

.container{

width:94%;

}

.cards{

grid-template-columns:
repeat(2,1fr);

}

.products{

grid-template-columns:
repeat(2,1fr);

}

.product-details{

grid-template-columns:1fr;

gap:40px;

}

.footer-container{

grid-template-columns:1fr;

gap:40px;

}

}

/* ===========================
   TABLETS
=========================== */

@media (max-width:992px){

.hero{

padding:80px 0;

}

.hero h1{

font-size:2.8rem;

}

.hero p{

font-size:17px;

}

.grid-4{

grid-template-columns:
repeat(2,1fr);

}

.grid-3{

grid-template-columns:
repeat(2,1fr);

}

.contact-grid{

grid-template-columns:1fr;

}

.success-buttons{

flex-direction:column;

}

.success-buttons a{

width:100%;

}

}

/* ===========================
   MOBILE MENU
=========================== */

@media (max-width:768px){

.menu-toggle{

display:flex;

}

.navbar{

position:relative;

}

nav{

position:absolute;

top:100%;

left:0;

width:100%;

background:#ffffff;

display:none;

flex-direction:column;

align-items:flex-start;

padding:25px;

gap:18px;

border-radius:0 0 20px 20px;

box-shadow:0 20px 35px rgba(0,0,0,.08);

}

nav.active{

display:flex;

}

nav>a{

width:100%;

padding:10px 0;

}

.dropdown{

width:100%;

display:block;

}

.dropdown-btn{

width:100%;

display:flex;

justify-content:space-between;

padding:10px 0;

}

.dropdown-content{

position:static;

display:none;

opacity:1;

visibility:visible;

transform:none;

box-shadow:none;

background:#f8f8f8;

margin-top:10px;

border-radius:15px;

padding:10px;

}

.dropdown.open .dropdown-content{

display:block;

}

.dropdown-content a{

padding:12px 15px;

}

.hero{

padding:70px 0;

}

.hero img{

border-radius:20px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

}

.btn,
.primary-btn,
.secondary-btn{

width:100%;

}

.cards{

grid-template-columns:1fr;

}

.products{

grid-template-columns:1fr;

}

.grid-2,
.grid-3,
.grid-4{

grid-template-columns:1fr;

}

.card{

padding:25px;

}

.footer-container{

text-align:center;

}

.footer-logo img{

margin:auto;

margin-bottom:20px;

}

.footer-links{

align-items:center;

}

}

/* ===========================
   SMALL MOBILES
=========================== */

@media (max-width:576px){

body{

font-size:15px;

}

.hero h1{

font-size:2.2rem;

}

.hero p{

font-size:16px;

}

h2{

font-size:1.8rem;

}

.card{

padding:20px;

border-radius:18px;

}

.product-image{

padding:15px;

}

.product-card img{

height:240px;

}

.product-info h1{

font-size:2rem;

}

.price{

font-size:1.7rem;

}

.donation-box{

padding:35px 20px;

}

.success-box{

padding:35px 20px;

}

.error404 h1{

font-size:5rem;

}

.menu-toggle{

width:45px;

height:45px;

font-size:22px;

}

.logo img{

height:52px;

}

}

/* ===========================
   EXTRA SMALL
=========================== */

@media (max-width:380px){

.container{

width:95%;

}

.hero{

padding:55px 0;

}

.hero h1{

font-size:1.9rem;

}

.btn,
.primary-btn,
.secondary-btn{

padding:14px 20px;

font-size:15px;

}

.card{

padding:18px;

}

.product-card img{

height:200px;

}

}

/* ===========================
   LANDSCAPE PHONE
=========================== */

@media (max-height:500px) and (orientation:landscape){

.hero{

padding:40px 0;

}

nav{

max-height:80vh;

overflow-y:auto;

}

}

/* ===========================
   PRINT
=========================== */

@media print{

.header,
footer,
.menu-toggle,
.primary-btn,
.secondary-btn{

display:none !important;

}

body{

background:#fff;

color:#000;

}

.card{

box-shadow:none;

border:1px solid #ddd;

}

}

/* ===========================
   END PART 6
=========================== */
/* =========================================================
   Association ADLV
   STYLE.CSS
   PART 7 / 8
   Sticky Header • Toast • Badges • Loader • Pagination
   Tables • Breadcrumb • Modal • Scroll Top • Utilities
=========================================================*/


/*==========================================================
STICKY HEADER
==========================================================*/

.header.scrolled{

padding:0;

background:rgba(255,255,255,.98);

backdrop-filter:blur(12px);

box-shadow:
0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.header.scrolled .logo img{

height:54px;

}

/*==========================================================
ACTIVE NAV
==========================================================*/

nav a.active{

color:var(--primary);

font-weight:700;

}

nav a.active::after{

content:"";

display:block;

width:100%;

height:3px;

margin-top:6px;

background:var(--primary);

border-radius:20px;

}

/*==========================================================
BADGES
==========================================================*/

.badge{

display:inline-flex;

align-items:center;

justify-content:center;

padding:8px 14px;

border-radius:999px;

font-size:13px;

font-weight:700;

}

.badge-success{

background:#E8F5E9;

color:#2E7D32;

}

.badge-warning{

background:#FFF8E1;

color:#D48806;

}

.badge-danger{

background:#FDECEC;

color:#D32F2F;

}

.badge-primary{

background:var(--primary);

color:#fff;

}

/*==========================================================
TOAST
==========================================================*/

.toast{

position:fixed;

right:25px;

bottom:25px;

background:#fff;

padding:18px 24px;

border-radius:18px;

box-shadow:var(--shadow-lg);

display:flex;

align-items:center;

gap:15px;

z-index:99999;

transform:translateY(40px);

opacity:0;

pointer-events:none;

transition:.35s;

}

.toast.show{

opacity:1;

transform:translateY(0);

pointer-events:auto;

}

.toast.success{

border-left:6px solid #2E7D32;

}

.toast.error{

border-left:6px solid #D32F2F;

}

.toast.warning{

border-left:6px solid #FFD54F;

}

/*==========================================================
LOADING OVERLAY
==========================================================*/

.loading{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(255,255,255,.92);

display:flex;

align-items:center;

justify-content:center;

z-index:999999;

visibility:hidden;

opacity:0;

transition:.30s;

}

.loading.show{

visibility:visible;

opacity:1;

}

.loading-spinner{

width:70px;

height:70px;

border-radius:50%;

border:6px solid #e5e5e5;

border-top:6px solid var(--primary);

animation:rotateLoader .8s linear infinite;

}

@keyframes rotateLoader{

100%{

transform:rotate(360deg);

}

}

/*==========================================================
TABLES
==========================================================*/

table{

width:100%;

border-collapse:collapse;

margin:30px 0;

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:var(--shadow-sm);

}

thead{

background:var(--primary);

color:#fff;

}

th{

padding:18px;

text-align:left;

}

td{

padding:18px;

border-bottom:1px solid #eee;

}

tbody tr:hover{

background:#f9f9f9;

}

/*==========================================================
PAGINATION
==========================================================*/

.pagination{

display:flex;

justify-content:center;

align-items:center;

gap:12px;

margin-top:45px;

}

.pagination a{

width:46px;

height:46px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#fff;

box-shadow:var(--shadow-sm);

font-weight:700;

transition:.30s;

}

.pagination a:hover{

background:var(--primary);

color:#fff;

}

.pagination .current{

background:var(--primary);

color:#fff;

}

/*==========================================================
BREADCRUMB
==========================================================*/

.breadcrumb{

display:flex;

flex-wrap:wrap;

gap:10px;

margin-bottom:30px;

font-size:15px;

}

.breadcrumb a{

color:var(--primary);

font-weight:600;

}

.breadcrumb span{

color:#888;

}

/*==========================================================
MODAL
==========================================================*/

.modal{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.45);

display:flex;

align-items:center;

justify-content:center;

visibility:hidden;

opacity:0;

transition:.35s;

z-index:999999;

}

.modal.show{

visibility:visible;

opacity:1;

}

.modal-content{

background:#fff;

padding:40px;

border-radius:25px;

max-width:700px;

width:92%;

box-shadow:var(--shadow-lg);

position:relative;

}

.modal-close{

position:absolute;

top:18px;

right:18px;

width:42px;

height:42px;

border-radius:50%;

background:#f3f3f3;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

cursor:pointer;

transition:.25s;

}

.modal-close:hover{

background:#e5e5e5;

}

/*==========================================================
BACK TO TOP
==========================================================*/

.scroll-top{

position:fixed;

right:25px;

bottom:25px;

width:56px;

height:56px;

border-radius:50%;

background:var(--primary);

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

box-shadow:var(--shadow);

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.30s;

z-index:9999;

}

.scroll-top.show{

opacity:1;

visibility:visible;

}

.scroll-top:hover{

background:var(--primary-dark);

transform:translateY(-4px);

}

/*==========================================================
IMAGE PLACEHOLDER
==========================================================*/

.image-placeholder{

background:#f5f5f5;

display:flex;

align-items:center;

justify-content:center;

color:#999;

font-size:15px;

border-radius:18px;

min-height:220px;

}

/*==========================================================
CURSOR
==========================================================*/

.pointer{

cursor:pointer;

}

/*==========================================================
DISPLAY HELPERS
==========================================================*/

.d-none{

display:none!important;

}

.d-block{

display:block!important;

}

.d-flex{

display:flex!important;

}

.justify-center{

justify-content:center;

}

.align-center{

align-items:center;

}

/*==========================================================
END PART 7
==========================================================*/
/* =========================================================
   Association ADLV
   STYLE.CSS
   PART 8 / 8
   Final Utilities • Accessibility • Animations • Print
   END OF FILE
=========================================================*/


/*==========================================================
SECTION TITLES
==========================================================*/

.section-title{

text-align:center;

margin-bottom:20px;

}

.section-title p{

max-width:750px;

margin:auto;

color:#666;

}

/*==========================================================
IMAGE RATIO
==========================================================*/

.ratio-1x1{

aspect-ratio:1/1;

overflow:hidden;

}

.ratio-4x3{

aspect-ratio:4/3;

overflow:hidden;

}

.ratio-16x9{

aspect-ratio:16/9;

overflow:hidden;

}

.ratio-1x1 img,
.ratio-4x3 img,
.ratio-16x9 img{

width:100%;

height:100%;

object-fit:cover;

}

/*==========================================================
LIST STYLE
==========================================================*/

.list-check{

padding-left:0;

}

.list-check li{

display:flex;

align-items:flex-start;

gap:12px;

margin-bottom:14px;

}

.list-check li::before{

content:"✔";

color:var(--primary);

font-weight:bold;

}

/*==========================================================
TEXT HELPERS
==========================================================*/

.text-center{

text-align:center;

}

.text-left{

text-align:left;

}

.text-right{

text-align:right;

}

.fw-bold{

font-weight:700;

}

.small{

font-size:.9rem;

}

.lead{

font-size:1.15rem;

color:#555;

}

/*==========================================================
SPACING HELPERS
==========================================================*/

.m-0{margin:0;}
.mt-10{margin-top:10px;}
.mt-20{margin-top:20px;}
.mt-30{margin-top:30px;}
.mt-40{margin-top:40px;}
.mt-50{margin-top:50px;}
.mt-60{margin-top:60px;}

.mb-10{margin-bottom:10px;}
.mb-20{margin-bottom:20px;}
.mb-30{margin-bottom:30px;}
.mb-40{margin-bottom:40px;}
.mb-50{margin-bottom:50px;}
.mb-60{margin-bottom:60px;}

.p-10{padding:10px;}
.p-20{padding:20px;}
.p-30{padding:30px;}
.p-40{padding:40px;}

/*==========================================================
HOVER EFFECTS
==========================================================*/

.hover-shadow{

transition:.3s;

}

.hover-shadow:hover{

box-shadow:var(--shadow-lg);

}

.hover-scale{

transition:.35s;

}

.hover-scale:hover{

transform:scale(1.04);

}

/*==========================================================
SMOOTH FADE
==========================================================*/

.fade{

animation:fade .7s ease;

}

@keyframes fade{

from{

opacity:0;

}

to{

opacity:1;

}

}

/*==========================================================
FLOAT
==========================================================*/

.float{

animation:floating 3s ease-in-out infinite;

}

@keyframes floating{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}

/*==========================================================
PULSE
==========================================================*/

.pulse{

animation:pulse 2s infinite;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.05);

}

100%{

transform:scale(1);

}

}

/*==========================================================
LAZY IMAGES
==========================================================*/

img{

transition:opacity .3s;

}

img[loading="lazy"]{

opacity:.99;

}

/*==========================================================
ACCESSIBILITY
==========================================================*/

:focus-visible{

outline:3px solid var(--primary);

outline-offset:4px;

border-radius:8px;

}

button:disabled{

opacity:.6;

cursor:not-allowed;

}

/*==========================================================
SELECTION
==========================================================*/

::selection{

background:var(--primary);

color:#fff;

}

/*==========================================================
SCROLL OFFSET
==========================================================*/

html{

scroll-padding-top:100px;

}

/*==========================================================
PRINT
==========================================================*/

@media print{

.header,
footer,
.menu-toggle,
.primary-btn,
.secondary-btn,
.scroll-top{

display:none !important;

}

body{

background:#fff;

color:#000;

}

.card{

box-shadow:none;

border:1px solid #ccc;

}

}

/*==========================================================
END
==========================================================*/
.shop-button{
    margin-top:30px;
}

.shop-button .btn{
    display:inline-flex;
}
@media (max-width:768px){

.dropdown-content{

display:none;

}

.dropdown.open .dropdown-content{

display:block;

}

}