/*=================================================
All Creative Designs Theme
Main CSS
==================================================*/

/* RESET */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#FFF8FC;
    color:#4B3F72;
    line-height:1.6;
    overflow-x:hidden;
}

/* VARIABLES */

:root{

    --primary:#C084FC;
    --primary-hover:#A855F7;

    --pink:#FCE7F3;
    --purple:#EDE9FE;

    --white:#ffffff;

    --text:#4B3F72;

    --gray:#777;

    --border:#ececec;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

    --container:1320px;

}

/* LINKS */

a{
    text-decoration:none;
    transition:var(--transition);
    color:inherit;
}

/* IMAGES */

img{
    max-width:100%;
    display:block;
}

/* LIST */

ul{
    list-style:none;
}

/* CONTAINER */

.acd-container{

    width:92%;
    max-width:1320px;

    margin:auto;

}

/* SECTION */

section{

    padding:80px 0;

}

/* TITLE */

.section-title{

    font-size:42px;

    font-weight:700;

    text-align:center;

    margin-bottom:15px;

    color:var(--text);

}

.section-desc{

    text-align:center;

    color:var(--gray);

    max-width:700px;

    margin:0 auto 60px;

}

/* BUTTONS */

.acd-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 35px;

border-radius:50px;

background:linear-gradient(45deg,#EC4899,#C084FC);

color:#fff;

font-weight:600;

transition:.35s;

box-shadow:0 15px 35px rgba(192,132,252,.25);

}

.acd-btn:hover{

transform:translateY(-4px);

box-shadow:0 20px 45px rgba(192,132,252,.35);

}

/* OUTLINE BUTTON */

.acd-btn-outline{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 35px;

border-radius:50px;

border:2px solid var(--primary);

color:var(--primary);

background:#fff;

transition:.35s;

}

.acd-btn-outline:hover{

background:var(--primary);

color:#fff;

}

/* HEADER */

.acd-header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

background:rgba(255,255,255,.82);

backdrop-filter:blur(18px);

box-shadow:0 5px 30px rgba(0,0,0,.05);

}

.acd-header .acd-container{

display:flex;

align-items:center;

justify-content:space-between;

height:82px;

}

.acd-logo img{

max-height:58px;

}

.acd-logo a{

font-size:28px;

font-weight:700;

color:var(--primary);

}

.acd-menu{

display:flex;

align-items:center;

gap:28px;

}

.acd-menu li{

position:relative;

}

.acd-menu li a{

font-weight:500;

color:var(--text);

padding:8px 0;

}

.acd-menu li a:hover{

color:var(--primary);

}

.acd-header-right{

display:flex;

align-items:center;

gap:16px;

}

.acd-search{

display:flex;

align-items:center;

background:#fff;

border-radius:40px;

padding:5px;

box-shadow:var(--shadow);

}

.acd-search input{

border:none;

outline:none;

padding:12px 15px;

width:220px;

background:transparent;

}

.acd-search button{

width:45px;

height:45px;

border:none;

border-radius:50%;

background:var(--primary);

color:#fff;

cursor:pointer;

}

.acd-icon{

width:46px;

height:46px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#fff;

box-shadow:var(--shadow);

font-size:18px;

}

.acd-account{

padding:12px 22px;

border-radius:40px;

background:linear-gradient(45deg,#EC4899,#C084FC);

color:#fff;

font-weight:600;

}
/*==================================
Hero Section
==================================*/

.acd-hero{

padding-top:170px;

padding-bottom:100px;

background:

linear-gradient(135deg,#FFF8FC,#F3E8FF);

overflow:hidden;

}

.acd-hero .acd-container{

display:grid;

grid-template-columns:1.1fr .9fr;

align-items:center;

gap:60px;

}

.acd-badge{

display:inline-block;

padding:10px 20px;

background:#fff;

border-radius:50px;

box-shadow:var(--shadow);

margin-bottom:25px;

font-weight:600;

color:var(--primary);

}

.acd-hero h1{

font-size:58px;

line-height:1.15;

margin-bottom:25px;

}

.acd-hero p{

font-size:18px;

color:var(--gray);

margin-bottom:35px;

max-width:600px;

}

.acd-hero-search{

display:flex;

background:#fff;

border-radius:60px;

overflow:hidden;

box-shadow:var(--shadow);

margin-bottom:35px;

max-width:650px;

}

.acd-hero-search input{

flex:1;

border:none;

padding:20px;

font-size:16px;

outline:none;

}

.acd-hero-search button{

width:180px;

background:linear-gradient(45deg,#EC4899,#C084FC);

border:none;

color:#fff;

font-size:16px;

cursor:pointer;

}

.acd-hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.acd-hero-image{

text-align:center;

}

.acd-hero-image img{

max-width:100%;

animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0px);

}

}
/*==================================
Categories
==================================*/

.acd-categories{

padding:90px 0;

background:#fff;

}

.acd-section-heading{

text-align:center;

margin-bottom:60px;

}

.acd-section-heading span{

display:inline-block;

padding:8px 18px;

background:#FCE7F3;

border-radius:50px;

color:#C084FC;

font-weight:600;

margin-bottom:18px;

}

.acd-section-heading h2{

font-size:42px;

margin-bottom:15px;

color:#4B3F72;

}

.acd-section-heading p{

max-width:700px;

margin:auto;

color:#777;

}

.acd-category-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.acd-category-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.07);

transition:.35s;

display:block;

}

.acd-category-card:hover{

transform:translateY(-10px);

}

.acd-category-image{

height:250px;

overflow:hidden;

}

.acd-category-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.4s;

}

.acd-category-card:hover img{

transform:scale(1.08);

}

.acd-category-content{

padding:25px;

text-align:center;

}

.acd-category-content h3{

font-size:22px;

margin-bottom:8px;

color:#4B3F72;

}

.acd-category-content span{

color:#C084FC;

font-weight:600;

}
/*======================================
Book Card
======================================*/

.acd-book-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 20px 45px rgba(0,0,0,.08);

transition:.35s;

}

.acd-book-card:hover{

transform:translateY(-10px);

}

.acd-book-thumb{

position:relative;

overflow:hidden;

}

.acd-book-thumb img{

width:100%;

height:420px;

object-fit:cover;

transition:.4s;

display:block;

}

.acd-book-card:hover img{

transform:scale(1.06);

}

.acd-book-badge{

position:absolute;

top:18px;

left:18px;

background:#EC4899;

color:#fff;

padding:8px 16px;

border-radius:50px;

font-size:13px;

font-weight:600;

}

.acd-book-content{

padding:25px;

}

.acd-book-category{

font-size:14px;

color:#C084FC;

margin-bottom:10px;

font-weight:600;

}

.acd-book-title{

font-size:22px;

line-height:1.4;

margin-bottom:12px;

}

.acd-book-title a{

color:#4B3F72;

}

.acd-book-rating{

color:#FDBA12;

font-size:18px;

margin-bottom:18px;

}

.acd-book-price{

font-size:28px;

font-weight:700;

color:#EC4899;

margin-bottom:25px;

}

.acd-book-buttons{

display:flex;

gap:12px;

}

.acd-preview-btn{

flex:1;

text-align:center;

padding:14px;

border-radius:50px;

background:#FCE7F3;

color:#EC4899;

font-weight:600;

}

.acd-buy-btn{

flex:1;

display:flex;

justify-content:center;

align-items:center;

padding:14px;

border-radius:50px;

background:linear-gradient(45deg,#EC4899,#C084FC);

color:#fff !important;

font-weight:600;

text-decoration:none;

}

.acd-buy-btn:hover{

opacity:.9;

}
/*=========================================
Featured Books
=========================================*/

.acd-featured-books{

padding:100px 0;

background:#FFF8FC;

}

.acd-books-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:50px;

}

.acd-view-all{

text-align:center;

margin-top:60px;

}

.acd-view-all .acd-btn{

padding:18px 45px;

font-size:17px;

}
/*=============================
Trending
=============================*/

.acd-trending{

padding:100px 0;

background:#ffffff;

}

.acd-trending-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr;

grid-template-rows:260px 260px;

gap:25px;

}

.acd-trending-card{

position:relative;

overflow:hidden;

border-radius:25px;

display:block;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.acd-trending-card.large{

grid-row:span 2;

}

.acd-trending-card img{

width:100%;

height:100%;

object-fit:cover;

transition:.4s;

}

.acd-trending-card:hover img{

transform:scale(1.08);

}

.acd-overlay{

position:absolute;

left:0;

right:0;

bottom:0;

padding:35px;

background:linear-gradient(transparent,rgba(0,0,0,.85));

color:#fff;

}

.acd-overlay h3{

font-size:28px;

margin-bottom:10px;

}

.acd-overlay p{

font-size:15px;

margin-bottom:15px;

opacity:.9;

}

.acd-overlay span{

display:inline-block;

padding:12px 25px;

background:#ffffff;

color:#EC4899;

border-radius:50px;

font-weight:600;

}
/*=========================================
Trending Books
=========================================*/

.acd-trending-books{

padding:100px 0;

background:#FDF8FF;

}

.acd-trending-books .acd-books-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:50px;

}
/*=========================================
Latest Books
=========================================*/

.acd-latest-books{

padding:100px 0;

background:#ffffff;

}

.acd-latest-books .acd-books-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:50px;

}
/*==================================
Videos
==================================*/

.acd-videos{

padding:100px 0;

background:#FFF8FC;

}

.acd-video-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}

.acd-video-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

}

.acd-video-card:hover{

transform:translateY(-10px);

}

.acd-video-image{

position:relative;

height:250px;

overflow:hidden;

}

.acd-video-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.35s;

}

.acd-video-card:hover img{

transform:scale(1.08);

}

.acd-play-btn{

position:absolute;

top:50%;

left:50%;

transform:translate(-50%,-50%);

width:70px;

height:70px;

background:#EC4899;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:24px;

}

.acd-video-content{

padding:25px;

text-align:center;

}

.acd-video-content h3{

font-size:22px;

color:#4B3F72;

}
/*=====================================
Newsletter
======================================*/

.acd-newsletter{

padding:100px 0;

background:#ffffff;

}

.acd-newsletter-box{

background:linear-gradient(135deg,#EC4899,#C084FC);

border-radius:30px;

padding:70px;

display:flex;

justify-content:space-between;

align-items:center;

gap:50px;

color:#fff;

overflow:hidden;

position:relative;

}

.acd-newsletter-box::before{

content:"";

position:absolute;

width:220px;

height:220px;

background:rgba(255,255,255,.12);

border-radius:50%;

top:-70px;

right:-70px;

}

.acd-newsletter-box::after{

content:"";

position:absolute;

width:180px;

height:180px;

background:rgba(255,255,255,.08);

border-radius:50%;

left:-60px;

bottom:-60px;

}

.acd-newsletter-content{

position:relative;

z-index:2;

max-width:600px;

}

.acd-newsletter-badge{

display:inline-block;

padding:10px 18px;

background:rgba(255,255,255,.2);

border-radius:50px;

margin-bottom:20px;

font-weight:600;

}

.acd-newsletter-content h2{

font-size:42px;

margin-bottom:20px;

}

.acd-newsletter-content p{

font-size:17px;

line-height:1.8;

}

.acd-newsletter-form{

position:relative;

z-index:2;

width:100%;

max-width:520px;

}

.acd-newsletter-form form{

display:flex;

background:#fff;

border-radius:60px;

overflow:hidden;

}

.acd-newsletter-form input{

flex:1;

border:none;

padding:20px;

font-size:16px;

outline:none;

}

.acd-newsletter-form button{

border:none;

padding:20px 35px;

background:#4B3F72;

color:#fff;

cursor:pointer;

font-weight:600;

transition:.35s;

}

.acd-newsletter-form button:hover{

background:#332454;

}
/*=====================================
Shop Page
=====================================*/

.acd-shop-page{

padding:140px 0 100px;

background:#FFF8FC;

min-height:100vh;

}

.acd-pagination{

margin-top:70px;

display:flex;

justify-content:center;

}

.acd-pagination .nav-links{

display:flex;

gap:12px;

flex-wrap:wrap;

}

.acd-pagination a,
.acd-pagination span{

width:48px;

height:48px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#ffffff;

box-shadow:0 10px 25px rgba(0,0,0,.08);

font-weight:600;

color:#4B3F72;

}

.acd-pagination .current{

background:#EC4899;

color:#fff;

}

.acd-no-books{

text-align:center;

padding:120px 20px;

}

.acd-no-books h2{

font-size:42px;

margin-bottom:20px;

color:#4B3F72;

}

.acd-no-books p{

font-size:18px;

margin-bottom:35px;

color:#777;

}
/*====================================
Single Download
====================================*/

.acd-single-book{

padding:140px 0 100px;

background:#FFF8FC;

}

.acd-single-grid{

display:grid;

grid-template-columns:520px 1fr;

gap:70px;

align-items:center;

}

.acd-book-image img{

width:100%;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.acd-single-badge{

display:inline-block;

padding:10px 20px;

background:#FCE7F3;

color:#EC4899;

border-radius:50px;

font-weight:600;

margin-bottom:20px;

}

.acd-book-info h1{

font-size:48px;

line-height:1.2;

margin-bottom:20px;

color:#4B3F72;

}

.acd-single-rating{

font-size:20px;

color:#FDBA12;

margin-bottom:20px;

}

.acd-single-rating span{

color:#777;

font-size:15px;

margin-left:10px;

}

.acd-single-price{

font-size:48px;

font-weight:700;

color:#EC4899;

margin-bottom:25px;

}

.acd-short-description{

font-size:17px;

line-height:1.9;

margin-bottom:35px;

color:#666;

}

.acd-book-meta{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-bottom:35px;

}

.acd-book-meta div{

background:#fff;

padding:18px;

border-radius:15px;

}

.acd-single-buttons{

display:flex;

gap:20px;

margin-bottom:30px;

}

.acd-single-buttons .acd-buy-btn{

padding:18px 35px;

background:linear-gradient(135deg,#EC4899,#C084FC);

border-radius:50px;

color:#fff;

font-weight:600;

text-decoration:none;

}

.acd-single-buttons .acd-preview-btn{

padding:18px 35px;

background:#FCE7F3;

border-radius:50px;

color:#EC4899;

font-weight:600;

text-decoration:none;

}

.acd-secure-box{

padding:20px;

background:#fff;

border-radius:18px;

font-weight:600;

display:flex;

gap:25px;

flex-wrap:wrap;

}
/*======================================
Preview Section
======================================*/

.acd-preview-section{

padding:100px 0;

background:#ffffff;

}

.acd-preview-wrapper{

max-width:900px;

margin:auto;

position:relative;

}

.acd-preview-image{

position:relative;

overflow:hidden;

border-radius:25px;

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.acd-preview-image img{

width:100%;

display:block;

filter:blur(1px);

}

.acd-preview-overlay{

position:absolute;

left:0;

right:0;

top:0;

bottom:0;

background:rgba(0,0,0,.45);

display:flex;

align-items:center;

justify-content:center;

padding:40px;

}

.acd-lock-box{

background:#ffffff;

padding:45px;

border-radius:25px;

max-width:480px;

text-align:center;

}

.acd-lock-icon{

font-size:60px;

display:block;

margin-bottom:20px;

}

.acd-lock-box h3{

font-size:34px;

margin-bottom:20px;

color:#4B3F72;

}

.acd-lock-box p{

line-height:1.8;

margin-bottom:30px;

color:#666;

}

.acd-description-section{

padding:100px 0;

background:#FFF8FC;

}

.acd-description-section .acd-container{

max-width:900px;

}

.acd-description-section h2{

margin-top:40px;

margin-bottom:20px;

color:#4B3F72;

}

.acd-description-section p{

line-height:2;

margin-bottom:20px;

font-size:17px;

color:#666;

}
/*============================
Related Books
============================*/

.acd-related-books{

padding:100px 0;

background:#ffffff;

}
/*=========================================
Book Card Badges
=========================================*/

.acd-book-card{

position:relative;

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.3s;

}

.acd-book-card:hover{

transform:translateY(-8px);

}

.acd-book-image{

position:relative;

}

.acd-book-image img{

width:100%;

display:block;

}

.acd-badge{

position:absolute;

left:15px;

top:15px;

padding:8px 14px;

border-radius:30px;

font-size:12px;

font-weight:600;

color:#fff;

z-index:10;

}

.acd-badge.featured{

background:#EC4899;

}

.acd-badge.trending{

background:#F97316;

top:55px;

}

.acd-badge.bestseller{

background:#16A34A;

top:95px;

}

.acd-badge.new{

background:#8B5CF6;

top:135px;

}

.acd-book-content{

padding:25px;

}

.acd-book-content h3{

font-size:22px;

margin-bottom:15px;

}

.acd-book-content h3 a{

color:#4B3F72;

text-decoration:none;

}

.acd-book-price{

font-size:28px;

font-weight:700;

color:#EC4899;

margin-bottom:20px;

}

.acd-book-buttons{

display:flex;

gap:12px;

}

.acd-view-btn{

flex:1;

text-align:center;

padding:14px;

background:#FCE7F3;

color:#EC4899;

border-radius:40px;

text-decoration:none;

font-weight:600;

}

.acd-buy-btn{

flex:1;

text-align:center;

padding:14px;

background:linear-gradient(135deg,#EC4899,#C084FC);

color:#fff;

border-radius:40px;

text-decoration:none;

font-weight:600;

}
/*=================================
Header
=================================*/

.acd-header{

position:sticky;

top:0;

z-index:9999;

background:#ffffff;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.acd-header-wrapper{

display:flex;

align-items:center;

justify-content:space-between;

gap:30px;

padding:18px 0;

}

.acd-logo img{

max-height:60px;

width:auto;

}

.acd-logo h2{

font-size:28px;

color:#EC4899;

margin:0;

}

.acd-navigation{

flex:1;

display:flex;

justify-content:center;

}

.acd-menu{

display:flex;

gap:35px;

list-style:none;

margin:0;

padding:0;

}

.acd-menu li a{

text-decoration:none;

font-weight:600;

color:#4B3F72;

transition:.3s;

}

.acd-menu li a:hover{

color:#EC4899;

}

.acd-search{

width:280px;

}

.acd-search form{

display:flex;

background:#FFF8FC;

border-radius:50px;

overflow:hidden;

}

.acd-search input{

flex:1;

border:none;

background:none;

padding:12px 18px;

outline:none;

}

.acd-search button{

border:none;

background:#EC4899;

color:#fff;

padding:0 18px;

cursor:pointer;

}

.acd-header-icons{

display:flex;

align-items:center;

gap:18px;

}

.acd-header-icons a{

position:relative;

font-size:22px;

text-decoration:none;

color:#4B3F72;

}

.acd-cart-count{

position:absolute;

top:-8px;

right:-10px;

width:20px;

height:20px;

border-radius:50%;

background:#EC4899;

color:#fff;

font-size:11px;

display:flex;

align-items:center;

justify-content:center;

}
/*=========================================
Footer
=========================================*/

.acd-footer{

background:#4B3F72;

padding:80px 0 30px;

color:#fff;

}

.acd-footer-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:40px;

margin-bottom:50px;

}

.acd-footer-widget h3,
.acd-footer-widget h4{

margin-bottom:20px;

color:#fff;

}

.acd-footer-widget p{

line-height:1.8;

opacity:.9;

}

.acd-footer-widget ul{

list-style:none;

padding:0;

margin:0;

}

.acd-footer-widget li{

margin-bottom:12px;

}

.acd-footer-widget a{

color:#fff;

text-decoration:none;

opacity:.85;

transition:.3s;

}

.acd-footer-widget a:hover{

color:#EC4899;

}

.acd-footer-widget input{

width:100%;

padding:15px;

border:none;

border-radius:10px;

margin-bottom:15px;

}

.acd-footer-widget button{

width:100%;

padding:15px;

border:none;

background:#EC4899;

color:#fff;

border-radius:10px;

cursor:pointer;

font-weight:600;

}

.acd-footer-bottom{

border-top:1px solid rgba(255,255,255,.15);

padding-top:30px;

display:flex;

justify-content:space-between;

align-items:center;

gap:20px;

flex-wrap:wrap;

}

.acd-payment-icons{

display:flex;

gap:20px;

font-weight:600;

}

.acd-scroll-top{

position:fixed;

right:30px;

bottom:30px;

width:50px;

height:50px;

border:none;

border-radius:50%;

background:#EC4899;

color:#fff;

font-size:20px;

cursor:pointer;

display:flex;

align-items:center;

justify-content:center;

box-shadow:0 10px 25px rgba(0,0,0,.2);

z-index:999;

}
.acd-header.acd-sticky{

box-shadow:0 15px 40px rgba(0,0,0,.12);

transition:.3s;

}
/*====================================================
BOOK CARD PREMIUM DESIGN
All Creative Designs
====================================================*/

.acd-book-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #f1f1f1;
}

.acd-book-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.acd-book-image{
    position:relative;
    overflow:hidden;
    background:#fafafa;
}

.acd-book-image img{
    width:100%;
    display:block;
    aspect-ratio:3/4;
    object-fit:cover;
    transition:.5s;
}

.acd-book-card:hover .acd-book-image img{
    transform:scale(1.08);
}

.acd-book-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.35s;
}

.acd-book-card:hover .acd-book-overlay{

    opacity:1;

}

.acd-preview-btn{

    background:#fff;

    color:#8a2be2;

    padding:12px 24px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.acd-preview-btn:hover{

    background:#8a2be2;

    color:#fff;

}

.acd-book-content{

    padding:22px;

}

.acd-book-category{

    display:inline-block;

    background:#f3e8ff;

    color:#7b2cbf;

    padding:5px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:12px;

}

.acd-book-content h3{

    font-size:22px;

    margin-bottom:12px;

    line-height:1.4;

}

.acd-book-content h3 a{

    text-decoration:none;

    color:#222;

}

.acd-book-author,

.acd-book-pages{

    color:#777;

    margin-bottom:8px;

    font-size:15px;

}

.acd-book-price{

    font-size:28px;

    font-weight:700;

    color:#c2185b;

    margin:18px 0;

}

.acd-book-buttons{

    display:flex;

    gap:12px;

}

.acd-view-btn,

.acd-buy-btn{

    flex:1;

    text-align:center;

    padding:13px;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.acd-view-btn{

    background:#f6f6f6;

    color:#444;

}

.acd-view-btn:hover{

    background:#ececec;

}

.acd-buy-btn{

    background:linear-gradient(135deg,#ff5ea8,#8b5cf6);

    color:#fff !important;

}

.acd-buy-btn:hover{

    transform:translateY(-2px);

}
/*====================================================
PREMIUM BADGES
====================================================*/

.acd-badge{
    position:absolute;
    left:15px;
    padding:7px 14px;
    border-radius:50px;
    color:#fff;
    font-size:12px;
    font-weight:700;
    z-index:10;
    letter-spacing:.3px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.acd-badge.featured{
    top:15px;
    background:linear-gradient(135deg,#8b5cf6,#6d28d9);
}

.acd-badge.trending{
    top:55px;
    background:linear-gradient(135deg,#ff6b6b,#ff3d68);
}

.acd-badge.bestseller{
    top:95px;
    background:linear-gradient(135deg,#ffb703,#fb8500);
}

.acd-badge.new{
    top:135px;
    background:linear-gradient(135deg,#22c55e,#16a34a);
}


/*====================================================
SHOP HERO
====================================================*/

.acd-shop-hero{

    background:linear-gradient(135deg,#fff6fb,#f5efff);

    padding:90px 0;

    margin-bottom:60px;

    border-bottom:1px solid #ececec;

}

.acd-shop-topbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:40px;

    gap:30px;

    flex-wrap:wrap;

}

.acd-shop-count{

    font-size:18px;

    color:#666;

}

.acd-shop-count strong{

    color:#8b5cf6;

    font-size:34px;

}


/*====================================================
SEARCH BAR
====================================================*/

.acd-shop-search form{

    display:flex;

    background:#fff;

    border-radius:60px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.acd-shop-search input{

    border:none;

    padding:16px 25px;

    width:360px;

    outline:none;

    font-size:15px;

}

.acd-shop-search button{

    border:none;

    padding:16px 32px;

    background:linear-gradient(135deg,#ff5ea8,#8b5cf6);

    color:#fff;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}

.acd-shop-search button:hover{

    opacity:.92;

}


/*====================================================
EMPTY STATE
====================================================*/

.acd-no-books{

    text-align:center;

    padding:90px 20px;

}

.acd-no-books img{

    width:240px;

    margin-bottom:30px;

}

.acd-no-books h2{

    font-size:34px;

    margin-bottom:15px;

}

.acd-no-books p{

    color:#777;

    margin-bottom:25px;

}
/*====================================================
PREMIUM HERO SECTION
All Creative Designs
====================================================*/

.acd-hero{
    position:relative;
    overflow:hidden;
    padding:100px 0;
    background:linear-gradient(135deg,#fff8fc 0%,#f7f2ff 100%);
}

.acd-hero::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:rgba(139,92,246,.08);
    top:-220px;
    right:-180px;
    filter:blur(10px);
}

.acd-hero::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,94,168,.10);
    bottom:-180px;
    left:-120px;
}

.acd-hero .acd-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    position:relative;
    z-index:2;
}

.acd-hero-left{
    flex:1;
}

.acd-hero-right{
    flex:1;
    position:relative;
    text-align:center;
}

.acd-hero-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#ffffff;
    color:#8b5cf6;
    font-size:14px;
    font-weight:700;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.acd-hero h1{
    font-size:58px;
    line-height:1.15;
    color:#1f2937;
    margin-bottom:25px;
}

.acd-hero h1 span{
    color:#8b5cf6;
}

.acd-hero p{
    color:#6b7280;
    font-size:18px;
    line-height:1.9;
    max-width:620px;
    margin-bottom:35px;
}

.acd-hero-search{
    display:flex;
    background:#fff;
    border-radius:60px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    margin-bottom:35px;
}

.acd-hero-search input{
    flex:1;
    border:none;
    outline:none;
    padding:18px 25px;
    font-size:16px;
}

.acd-hero-search button{
    border:none;
    cursor:pointer;
    padding:18px 35px;
    background:linear-gradient(135deg,#ff5ea8,#8b5cf6);
    color:#fff;
    font-weight:700;
    transition:.3s;
}

.acd-hero-search button:hover{
    transform:scale(1.03);
}

.acd-hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.acd-btn,
.acd-btn-outline{
    padding:16px 32px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:.35s;
}

.acd-btn{
    background:linear-gradient(135deg,#ff5ea8,#8b5cf6);
    color:#fff;
}

.acd-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(139,92,246,.25);
}

.acd-btn-outline{
    border:2px solid #8b5cf6;
    color:#8b5cf6;
    background:#fff;
}

.acd-btn-outline:hover{
    background:#8b5cf6;
    color:#fff;
}

.acd-hero-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.acd-stat{
    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:25px 15px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.acd-stat h3{
    font-size:30px;
    color:#8b5cf6;
    margin-bottom:8px;
}

.acd-stat span{
    color:#777;
    font-size:14px;
}

.acd-hero-book img{
    width:430px;
    max-width:100%;
    animation:acdFloat 5s ease-in-out infinite;
    filter:drop-shadow(0 35px 60px rgba(0,0,0,.25));
}

.acd-floating-card{
    position:absolute;
    background:#fff;
    padding:14px 22px;
    border-radius:16px;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
    font-weight:700;
    animation:acdFloatSmall 4s ease-in-out infinite;
}

.card-1{
    top:30px;
    left:10px;
}

.card-2{
    top:190px;
    right:-10px;
}

.card-3{
    bottom:40px;
    left:30px;
}

.acd-floating-circle{
    position:absolute;
    border-radius:50%;
    opacity:.25;
}

.circle-1{
    width:80px;
    height:80px;
    background:#8b5cf6;
    top:20px;
    right:90px;
}

.circle-2{
    width:55px;
    height:55px;
    background:#ff5ea8;
    bottom:120px;
    right:30px;
}

.circle-3{
    width:30px;
    height:30px;
    background:#ffd166;
    top:170px;
    left:80px;
}

@keyframes acdFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes acdFloatSmall{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }

}

@media(max-width:991px){

    .acd-hero .acd-container{
        flex-direction:column;
    }

    .acd-hero h1{
        font-size:42px;
    }

    .acd-hero-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .acd-hero-right{
        margin-top:50px;
    }

}

@media(max-width:576px){

    .acd-hero{
        padding:70px 0;
    }

    .acd-hero h1{
        font-size:32px;
    }

    .acd-hero-search{
        flex-direction:column;
        border-radius:18px;
    }

    .acd-hero-search button{
        width:100%;
    }

    .acd-hero-stats{
        grid-template-columns:1fr;
    }

    .acd-hero-buttons{
        flex-direction:column;
    }

}
/*====================================================
FEATURED BOOKS SLIDER
====================================================*/

.acd-featured-slider{

    padding:15px 5px 70px;

}

.acd-featured-slider .swiper-slide{

    height:auto;

}

.acd-featured-slider .swiper-button-next,
.acd-featured-slider .swiper-button-prev{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.10);

    color:#8b5cf6;

}

.acd-featured-slider .swiper-button-next::after,
.acd-featured-slider .swiper-button-prev::after{

    font-size:18px;

    font-weight:700;

}

.acd-featured-slider .swiper-pagination{

    bottom:0;

}

.acd-featured-slider .swiper-pagination-bullet{

    width:12px;

    height:12px;

    opacity:1;

    background:#d8c7ff;

}

.acd-featured-slider .swiper-pagination-bullet-active{

    background:#8b5cf6;

    transform:scale(1.2);

}
/*====================================================
TRENDING BOOKS
====================================================*/

.acd-trending-books{

    padding:90px 0;

    background:#faf8ff;

}

.acd-trending-slider{

    padding:20px 5px 70px;

}

.acd-trending-slider .swiper-slide{

    position:relative;

    height:auto;

}

.acd-trending-rank{

    position:absolute;

    top:12px;

    right:12px;

    width:48px;

    height:48px;

    border-radius:50%;

    background:linear-gradient(135deg,#ff5ea8,#8b5cf6);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    z-index:20;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.acd-trending-slider .swiper-button-next,
.acd-trending-slider .swiper-button-prev{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#fff;

    color:#8b5cf6;

    box-shadow:0 12px 30px rgba(0,0,0,.10);

}

.acd-trending-slider .swiper-button-next::after,
.acd-trending-slider .swiper-button-prev::after{

    font-size:18px;

    font-weight:700;

}

.acd-trending-slider .swiper-pagination-bullet{

    width:12px;

    height:12px;

    opacity:1;

    background:#d7c6ff;

}

.acd-trending-slider .swiper-pagination-bullet-active{

    background:#8b5cf6;

}
/*=========================================================
SINGLE DOWNLOAD PAGE
=========================================================*/

.acd-single-book{

    padding:90px 0;

    background:#f8f9fc;

}

.acd-single-grid{

    display:grid;

    grid-template-columns:480px 1fr;

    gap:60px;

    align-items:start;

}

.acd-book-image{

    position:sticky;

    top:100px;

}

.acd-book-image img{

    width:100%;

    display:block;

    border-radius:20px;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

    transition:.45s;

    background:#fff;

}

.acd-book-image img:hover{

    transform:translateY(-10px) scale(1.03);

    box-shadow:0 40px 80px rgba(0,0,0,.22);

}

.acd-book-info{

    background:#fff;

    padding:40px;

    border-radius:22px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.acd-single-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:linear-gradient(90deg,#8b5cf6,#ec4899);

    color:#fff;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.acd-book-info h1{

    font-size:42px;

    line-height:1.3;

    margin-bottom:20px;

}

.acd-single-rating{

    font-size:22px;

    color:#ffb400;

    margin-bottom:18px;

}

.acd-single-rating span{

    color:#666;

    font-size:15px;

    margin-left:10px;

}

.acd-single-price{

    font-size:42px;

    color:#8b5cf6;

    font-weight:700;

    margin-bottom:25px;

}

.acd-short-description{

    color:#555;

    line-height:1.9;

    font-size:16px;

    margin-bottom:35px;

}

.acd-book-meta{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:35px;

}

.acd-book-meta div{

    background:#f6f7fb;

    padding:18px;

    border-radius:12px;

    font-size:15px;

}

.acd-book-meta strong{

    display:block;

    color:#111;

    margin-bottom:8px;

}

.acd-single-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:30px;

}

.acd-buy-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:10px;

    background:#8b5cf6;

    color:#fff !important;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.acd-buy-btn:hover{

    background:#6d28d9;

    transform:translateY(-3px);

}

.acd-preview-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:10px;

    background:#f2f3f7;

    color:#222;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.acd-preview-btn:hover{

    background:#8b5cf6;

    color:#fff;

}

.acd-secure-box{

    background:#eefaf0;

    border-left:4px solid #16a34a;

    padding:22px;

    border-radius:12px;

    line-height:2;

    font-size:15px;

}
/*=========================================================
PDF PREVIEW
=========================================================*/

.acd-preview-section{

    padding:90px 0;

    background:#ffffff;

}

.acd-preview-wrapper{

    max-width:900px;

    margin:0 auto;

}

.acd-preview-image{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.acd-preview-image img{

    width:100%;

    display:block;

}

.acd-preview-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

}

.acd-lock-box{

    background:rgba(255,255,255,.96);

    padding:40px;

    border-radius:20px;

    max-width:500px;

}

.acd-lock-icon{

    font-size:50px;

    display:block;

    margin-bottom:15px;

}

.acd-lock-box h3{

    font-size:30px;

    margin-bottom:15px;

}

.acd-lock-box p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

/*=========================================================
DESCRIPTION
=========================================================*/

.acd-description-section{

    padding:90px 0;

    background:#f8f9fc;

}

.acd-description-section .acd-container{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 40px rgba(0,0,0,.08);

}

.acd-description-section h2,
.acd-description-section h3{

    margin-top:35px;

    margin-bottom:18px;

}

.acd-description-section p{

    line-height:1.9;

    color:#555;

    margin-bottom:20px;

}

/*=========================================================
VIDEO SECTION
=========================================================*/

.acd-video-section{

    padding:90px 0;

    background:#fff;

}

.acd-video-wrapper{

    max-width:900px;

    margin:auto;

    overflow:hidden;

    border-radius:18px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.acd-video-wrapper iframe{

    width:100%;

    height:520px;

    display:block;

    border:0;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:992px){

.acd-single-grid{

grid-template-columns:1fr;

gap:40px;

}

.acd-book-image{

position:static;

}

.acd-book-info h1{

font-size:34px;

}

.acd-book-meta{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.acd-single-book{

padding:60px 0;

}

.acd-book-info{

padding:25px;

}

.acd-single-price{

font-size:34px;

}

.acd-single-buttons{

flex-direction:column;

}

.acd-buy-btn,
.acd-preview-btn{

width:100%;

}

.acd-video-wrapper iframe{

height:300px;

}

}

@media(max-width:576px){

.acd-book-info h1{

font-size:28px;

}

.acd-single-rating{

font-size:18px;

}

.acd-single-price{

font-size:30px;

}

.acd-lock-box{

padding:25px;

}

.acd-lock-box h3{

font-size:24px;

}

}
/*==================================================
WISHLIST
==================================================*/

.acd-book-image{

    position:relative;

}

.acd-add-wishlist{

    position:absolute;

    top:15px;

    right:15px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#ffffff;

    color:#ff3366;

    cursor:pointer;

    font-size:20px;

    box-shadow:0 10px 20px rgba(0,0,0,.15);

    transition:.35s;

    z-index:20;

}

.acd-add-wishlist:hover{

    transform:scale(1.12);

    background:#ff3366;

    color:#fff;

}

.acd-wishlist-icon{

    position:relative;

}

.acd-wishlist-count{

    position:absolute;

    top:-8px;

    right:-10px;

    width:20px;

    height:20px;

    border-radius:50%;

    background:red;

    color:#fff;

    font-size:11px;

    display:flex;

    align-items:center;

    justify-content:center;

}
/*==================================================
QUICK VIEW
==================================================*/

.acd-quick-view{

    position:absolute;

    top:15px;

    left:15px;

    width:42px;

    height:42px;

    border-radius:50%;

    background:#ffffff;

    color:#222;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:18px;

    box-shadow:0 10px 20px rgba(0,0,0,.15);

    transition:.35s;

    z-index:20;

}

.acd-quick-view:hover{

    background:#8b5cf6;

    color:#fff;

    transform:scale(1.1);

}

/*==================================================
BOOK RATING
==================================================*/

.acd-book-rating{

    color:#ffb400;

    font-size:15px;

    margin:12px 0;

}

.acd-book-rating span{

    color:#777;

    margin-left:5px;

    font-size:13px;

}
/*==================================================
NEW ARRIVAL / FREE / BEST SELLER
==================================================*/

.acd-new-arrivals,
.acd-free-books,
.acd-bestseller-books,
.acd-testimonials,
.acd-statistics,
.acd-faq{

    padding:90px 0;

}

.acd-new-arrivals{

    background:#ffffff;

}

.acd-free-books{

    background:#fafafa;

}

.acd-bestseller-books{

    background:#fffdf7;

}

/*==================================================
TESTIMONIALS
==================================================*/

.acd-testimonials{

    background:#f8f9fc;

}

.acd-testimonial-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.acd-testimonial-card:hover{

    transform:translateY(-8px);

}

.acd-stars{

    color:#ffb400;

    font-size:22px;

    margin-bottom:20px;

}

.acd-testimonial-card p{

    line-height:1.8;

    color:#666;

    margin-bottom:25px;

}

.acd-user{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

}

.acd-user img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

}

.acd-user h4{

    margin:0;

    font-size:18px;

}

.acd-user span{

    color:#888;

    font-size:14px;

}

/*==================================================
STATISTICS
==================================================*/

.acd-statistics{

    background:linear-gradient(135deg,#EFA00F,#ffbf33);

}

.acd-stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.acd-stat-box{

    text-align:center;

    color:#fff;

}

.acd-stat-box h2{

    font-size:54px;

    margin-bottom:12px;

    font-weight:700;

}

.acd-stat-box p{

    font-size:18px;

    opacity:.95;

}

/*==================================================
FAQ
==================================================*/

.acd-faq{

    background:#fff;

}

.acd-faq-wrapper{

    max-width:900px;

    margin:auto;

}

.acd-faq-item{

    border:1px solid #eee;

    border-radius:12px;

    overflow:hidden;

    margin-bottom:18px;

    background:#fff;

}

.acd-faq-question{

    width:100%;

    border:none;

    background:#fff;

    padding:22px 28px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

}

.acd-faq-icon{

    font-size:28px;

    color:#EFA00F;

}

.acd-faq-answer{

    display:none;

    padding:0 28px 25px;

    color:#666;

    line-height:1.8;

}

.acd-faq-item.active{

    border-color:#EFA00F;

}

.acd-faq-item.active .acd-faq-question{

    color:#EFA00F;

}

/*==================================================
SWIPER PAGINATION
==================================================*/

.swiper-pagination{

    position:relative;

    margin-top:35px;

}

.swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#ddd;

    opacity:1;

}

.swiper-pagination-bullet-active{

    background:#EFA00F;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.acd-stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.acd-stats-grid{

grid-template-columns:1fr;

}

.acd-stat-box h2{

font-size:42px;

}

.acd-testimonial-card{

padding:25px;

}

.acd-faq-question{

font-size:16px;

padding:18px;

}

}
