/*
Theme Name: Blocksy Child
Template: blocksy
Text Domain:  blocksy-child
Version: 1.0
Author: Your Name
*/
@import url("../your-parent-theme-folder/style.css");
/* ======================================================
   3D MAFIA FULL PAGE STYLE
   Elegant Dark + Minimal Natural Theme
   ====================================================== */



/* -------- GLOBAL -------- */
/* ----------------------------------
   GLOBAL BRAND VARIABLES
---------------------------------- */
:root {
  --primary: #ff3a7f;           /* Pink */
  --secondary: #ff8a00;         /* Orange */
  --gradient: linear-gradient(135deg, #ff3a7f, #ff8a00);

  --dark-bg: #0d0d16;
  --light-bg: #ffffff;

  --text-main: #222222;
  --text-white: #ffffff;
  --text-muted: #999999;

  --radius: 12px;
  --transition: 0.3s ease;
}

/* ----------------------------------
   GLOBAL ELEMENTS
---------------------------------- */
body {
  background: var(--light-bg);
  color: var(--text-main);
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--dark-bg);
}

section {
  padding: 70px 0;
}

/* ----------------------------------
   BUTTONS
---------------------------------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  background: var(--gradient);
  color: var(--text-white);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #fff !important;
}

.btn.alt {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn.alt:hover {
  background: var(--primary);
  color: #fff;
}

a.wp-block-button__link.add_to_cart_button.ajax_add_to_cart{
 background: var(--gradient) !important;
}

.wc-block-grid__product-title {
    color: black !important;
}


/* ----------------------------------
   HERO SECTION
---------------------------------- */
.hero {
  background: var(--dark-bg);
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 52px;
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  color: #dddddd;
  font-size: 18px;
}

.eyebrow {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* ALL PRODUCTS SLIDER */
.all-products-slider {
  padding: 80px 0;
  background: #f8f9fc;
}

.all-products-slider h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.all-products-slider .subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.product-slider .product-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin: 0 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.product-slider .product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 16px;
  margin: 10px 0;
}

.product-card .price {
  display: block;
  font-weight: 600;
  color: #ff4d6d;
  margin-bottom: 12px;
}

.product-card .view-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  background: linear-gradient(90deg,#ff416c,#ff7a18);
  color: #fff;
  font-size: 14px;
}


/* -------- COLLECTIONS -------- */
/* Improve overall spacing */
.collections {
  padding: 40px 0;
}

.collections .heading {
  margin-bottom: 30px;
      text-align: center;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 24px; /* better spacing */
  padding: 40px;
}

/* ---- BIG CARDS ---- */
.collections-grid .collection-card:nth-child(1) {
  grid-column: span 8;
  grid-row: span 2;
}

.collections-grid .collection-card:nth-child(2) {
  grid-column: span 4;
  grid-row: span 2;
}

/* ---- SMALL CARDS ---- */
.collections-grid .collection-card:nth-child(3),
.collections-grid .collection-card:nth-child(4),
.collections-grid .collection-card:nth-child(5),
.collections-grid .collection-card:nth-child(6) {
  grid-column: span 4;
  grid-row: span 1;
}

/* ---- Card Styling ---- */
.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #f5f5f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ---- Image ---- */
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

.collection-card:hover img {
  transform: scale(1.05);
}

/* ---- Title Mask ---- */
.collection-mask {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.7) 100%);
  border-radius: 0 0 18px 18px;
}

.collection-title {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .collections-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
  }

  .collection-card:nth-child(1),
  .collection-card:nth-child(2) {
    grid-column: span 6;
    grid-row: span 2;
  }

  .collection-card:nth-child(n+3) {
    grid-column: span 3;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 16px;
  }

  .collection-card {
    grid-column: span 2 !important;
    grid-row: span 1 !important;
  }
}



/* ----------------------------------
   CTA BAND
---------------------------------- */
.cta-band {
  background: var(--gradient);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}

.cta-band h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* -------- FEATURED PRODUCTS -------- */
.featured {
  padding: 60px 0;
  text-align: center;
}

.featured h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.featured .grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  text-align: left;
}

.product-card {
  border-radius: var(--radius);
  background: var(--bg-light);
  padding: 15px;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card .img img {
  width: 100%;
  border-radius: var(--radius);
}

.product-card h4 {
  margin: 12px 0 5px;
  font-size: 18px;
}
.product-card h4 a {
  color: #222!important ;
}

.product-card .price {
  font-weight: bold;
  display: inline-block;
  margin-top: 8px;
}

/* ----------------------------------
   TESTIMONIALS (Premium Modern Style)
---------------------------------- */

.testimonials {
  background: #f4f6ff; /* subtle light bluish like your site */
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
  color: #0d1b2a;
}

/* Grid Layout */
.testimonials-row {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding: 0 20px;
}

/* Cards */
.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

/* Hover Effect */
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

/* Headline */
.testimonial-card .title {
  font-weight: 650;
  font-size: 20px;
  margin-bottom: 14px;
  color: #0d1b2a;
}

/* Text */
.testimonial-card .content {
  color: #4f5d75;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 22px;
}

/* Name */
.testimonial-card .name {
  font-weight: 700;
  font-size: 18px;
  margin-top: 6px;
  color: #0d1b2a;
}

/* Profile Image */
.testimonial-card img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  border: 2px solid #ff8a00;
}

/* Stars */
.testimonial-card .stars {
  color: #ff8a00; /* Your site accent color */
  font-size: 18px;
  margin-top: 12px;
}



/* ----------------------------------
   FOOTER
---------------------------------- */
footer {
  background: var(--dark-bg);
  color: #fff;
  padding: 50px 0;
}

footer a {
  color: var(--secondary);
  text-decoration: none;
}

footer a:hover {
  color: var(--primary);
}



/*CUSTOM CSS*/
nav ul li a:hover {
    color: #ff3a7f; 
}

.ct-woo-card-actions a
 {
 background: var(--gradient) !important;
 color: #fff !important;
 }

a:hover{
color: #ff3a7f !important;
}
span.woocommerce-Price-amount.amount{
  color: #ff3a7f !important;
}








/* ---------- FOOTER ---------- */

.site-footer {
  background: #f6f8fb;
  padding: 60px 0 30px;
  border-top: 1px solid #e5e5e5;
  font-family: "Inter", sans-serif;
}

.footer-grid {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Headings */
.site-footer h3 {
  color: #ff3a7f; 
  font-size: 24px;
  margin-bottom: 12px;
}

.site-footer h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #111;
}

/* Text */
.site-footer p {
  color: #555;
  line-height: 1.6;
}

/* Quick Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff3a7f; 
  padding-left: 3px;
}

/* Contact links */
.footer-contact a {
  color: #ff3a7f; 
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Social icons */
.footer-social .icons {
  display: flex;
  gap: 15px;
}

.footer-social img {
  width: 26px;
  opacity: 0.8;
  transition: 0.3s;
}

.footer-social img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #666;
  padding-top: 10px;
}




.hero-section {
    display: none !important;
}














/* --------------------------------------------------
   CONTACT PAGE – Premium Modern Styling
-------------------------------------------------- */

.contact-section {
  padding: 80px 20px;
  background: #f3f4f6;
}

.contact-section .container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  animation: fadeIn 0.6s ease-in-out;
}

/* Page Title */
.contact-section h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #0d0d16;
}

/* Subtitle */
.contact-subtitle {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  color: #444;
}

/* Form layout */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 30px;
}

/* Full-width inputs */
.contact-form .form-group:nth-child(5),
.contact-form .form-group:nth-child(6),
.contact-form .form-group:nth-child(7),
.contact-form .form-group.checkbox-group {
  grid-column: 1 / 3;
}

/* Labels */
.contact-form label {
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  display: block;
}

/* Inputs, selects, textareas */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  transition: 0.3s ease;
  background: #fafafa;
}

/* Focus effects */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ff8a00;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,138,0,0.15);
  outline: none;
}

/* Textarea height */
.contact-form textarea {
  height: 150px;
  resize: none;
}

/* Checkbox row */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkbox-group input {
  width: auto;
}

/* Submit Button */
.contact-btn {
  grid-column: 1 / 3;
  padding: 16px;
  background: linear-gradient(135deg, #ff8a00, #ff3a7f);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,58,127,0.4);
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .form-group:nth-child(5),
  .contact-form .form-group:nth-child(6),
  .contact-form .form-group:nth-child(7),
  .contact-form .form-group.checkbox-group,
  .contact-btn {
    grid-column: 1 / 2;
  }

  .contact-section .container {
    padding: 35px 25px;
  }

  .contact-section h2 {
    font-size: 32px;
  }
}
