/*
Theme Name: Pride Shoppen
Author: Your Name
Description: A custom pride theme.
Version: 1.0
*/

/* === GLOBAL STYLES === */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: #fcfcfc; color: #333; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === HEADER === */
.top-bar { background-color: #111; color: #fff; display: flex; justify-content: space-between; padding: 8px 40px; font-size: 11px; }
.top-center { display: flex; gap: 10px; }
.main-header { background-color: #fff; display: flex; justify-content: space-between; align-items: center; padding: 15px 40px; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
.logo-section { display: flex; align-items: center; gap: 10px; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .title { font-size: 20px; font-weight: 800; line-height: 1; color: #000; }
.logo-text .subtitle { font-size: 8px; font-weight: 600; letter-spacing: 3px; }
.nav-menu { display: flex; gap: 25px; }
.nav-menu a { font-size: 12px; font-weight: 700; }
.nav-menu a.active, .nav-menu a:hover { color: #e91e63; }
.header-icons { display: flex; gap: 20px; font-size: 18px; }
.cart-badge { background-color: #e91e63; color: white; font-size: 10px; font-weight: bold; height: 16px; width: 16px; border-radius: 50%; display: flex; justify-content: center; align-items: center; position: absolute; top: -6px; right: -8px; }

/* === HERO SECTION === */
.hero { background-color: #111; color: #fff; padding: 60px 40px; display: flex; align-items: center; justify-content: space-between; position: relative; overflow: hidden; }
.hero-content { max-width: 50%; z-index: 2; }
.hero-subtitle { font-size: 14px; font-weight: 700; margin-bottom: 15px; }
.hero-title { font-size: 48px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.gradient-text { background: linear-gradient(to right, #ff7b00, #e91e63, #00d4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-desc { font-size: 16px; margin-bottom: 30px; line-height: 1.5; color: #ccc; }
.btn { padding: 12px 25px; border-radius: 30px; font-weight: 700; font-size: 12px; cursor: pointer; border: none; transition: 0.3s; }
.btn-primary { background-color: #e91e63; color: #fff; }
.btn-primary:hover { background-color: #d81557; }
.btn-outline { background-color: transparent; color: #fff; border: 1px solid #fff; margin-left: 10px; }
.btn-outline:hover { background-color: #fff; color: #111; }
.hero-trust { margin-top: 40px; display: flex; gap: 20px; font-size: 12px; color: #aaa; }
.hero-image-placeholder { width: 45%; height: 350px; background: linear-gradient(45deg, #222, #333); border-radius: 20px; border: 2px solid #e91e63; display: flex; align-items: center; justify-content: center; color: #666; }

/* === CATEGORIES === */
.categories { display: flex; gap: 20px; padding: 40px 0; }
.cat-card { flex: 1; border-radius: 12px; padding: 25px 20px; position: relative; overflow: hidden; min-height: 160px; display: flex; flex-direction: column; justify-content: center; }
.cat-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 5px; z-index: 2; color: #111; }
.cat-card p { font-size: 11px; margin-bottom: 15px; z-index: 2; font-weight: 600; color: #333; }
.cat-card .btn-small { color: white; border: none; padding: 8px 18px; border-radius: 20px; font-size: 10px; font-weight: 800; width: fit-content; z-index: 2; cursor: pointer; }

.bg-pink { background-color: #ffe6eb; }
.btn-pink { background-color: #f53b76; }
.bg-yellow { background-color: #fff1dc; }
.btn-yellow { background-color: #fb923c; }
.bg-green { background-color: #e4f5ed; }
.btn-green { background-color: #34d399; }
.bg-purple { background-color: #ede7f6; }
.btn-purple { background-color: #9333ea; }

/* === BEST SELLERS === */
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.section-header h2 { font-size: 18px; font-weight: 800; }
.section-header a { font-size: 11px; font-weight: 700; color: #e91e63; }
.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
.product-card { background: #fff; padding: 15px; border-radius: 12px; text-align: left; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.product-img { width: 100%; height: 160px; background-color: #f5f5f5; border-radius: 8px; margin-bottom: 12px; }
.product-title { font-size: 12px; font-weight: 700; margin-bottom: 5px; color: #111; }
.product-price { font-size: 11px; color: #444; margin-bottom: 8px; font-weight: 600; }
.product-stars { color: #facc15; font-size: 10px; }

/* === FEATURES BAR === */
.features-bar { display: flex; justify-content: space-between; background: #fff; padding: 25px 40px; margin: 40px 0; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.feature-item { display: flex; align-items: center; gap: 12px; font-size: 11px; color: #666; }
.feature-item strong { display: block; font-size: 12px; color: #111; margin-bottom: 3px; }

/* === TESTIMONIALS === */
.testimonials { background-color: #1a1a1a; color: white; padding: 60px 0; }
.testi-header h2 { font-size: 16px; margin-bottom: 15px; font-weight: 800; }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; }
.review-card { background-color: #262626; padding: 25px; border-radius: 12px; }
.review-card p { font-size: 12px; line-height: 1.6; margin: 15px 0; color: #e5e5e5; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }

.tp-green { color: #00b67a; } 
.tp-star-box { background-color: #00b67a; color: white; padding: 2px 4px; border-radius: 2px; font-size: 14px; margin-right: 2px; display: inline-block; }
.tp-star-icon { color: #00b67a; font-size: 16px; margin-right: 2px;}

/* === NEWSLETTER === */
.newsletter { background: linear-gradient(90deg, #ec4899 0%, #f59e0b 40%, #0ea5e9 70%, #8b5cf6 100%); padding: 40px 50px; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; color: white; margin: 60px 0; }
.news-text { display: flex; align-items: center; gap: 20px; }
.news-text i { font-size: 45px; opacity: 0.9; }
.news-form { display: flex; background: #fff; padding: 6px; border-radius: 30px; width: 450px; }
.news-form input { flex: 1; border: none; outline: none; padding: 10px 20px; border-radius: 30px; font-size: 12px; color: #333; }
.news-form button { background: #000; color: white; border: none; padding: 12px 30px; border-radius: 30px; font-weight: 800; font-size: 11px; cursor: pointer; }

/* === FOOTER === */
.footer { background-color: #111; color: #fff; padding: 60px 0 20px; font-size: 11px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr 1.2fr 1fr 1.5fr; gap: 20px; margin-bottom: 20px; }
.footer-col h4 { margin-bottom: 20px; font-size: 10px; color: #fff; font-weight: 800; }
.footer-col li { margin-bottom: 12px; color: #999; cursor: pointer; transition: 0.3s; }
.footer-col li:hover { color: #fff; }
.payment-icons { display: flex; gap: 12px; font-size: 24px; margin-top: 15px; color: #fff; }
.social-icons { display: flex; gap: 15px; font-size: 18px; color: #999; }
.social-icons i:hover { color: #fff; cursor: pointer; }

.footer-logo-section { display: flex; flex-direction: column; justify-content: flex-start; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.footer-logo-text { display: flex; flex-direction: column; }
.footer-logo-text .title { font-size: 18px; font-weight: 800; line-height: 1; color: #fff; }
.footer-logo-text .subtitle { font-size: 7px; font-weight: 600; letter-spacing: 3px; color: #fff; margin-top: 2px; }
/* === CATEGORY IMAGES === */
.cat-card { position: relative; }
.cat-content { position: relative; z-index: 2; width: 60%; }
.cat-img { position: absolute; right: 5px; bottom: 5px; width: 100px; height: 100px; object-fit: contain; z-index: 1; }

/* === INSTAGRAM GALLERY (FOLLOW US) === */
.follow-gallery { margin: 60px 0; }
.follow-gallery h2 { font-size: 16px; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; border-bottom: 2px solid #111; display: inline-block; padding-bottom: 5px; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.insta-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; transition: transform 0.3s ease; }
.insta-grid img:hover { transform: scale(1.05); }