/*
Theme Name: twentytwenty Child
Theme URI:  
Author:     WPServeur
Author URI: 
Template:   twentytwenty
Version:    1.0
License:    GNU General Public License v2 or later
*/

body,.entry-content,p{
  font-family: "Lato", sans-serif!important;
  font-weight:400!important;
  }
  
  h1,h2,h3,h4,h5,h6{
    font-family: "Lato", sans-serif!important;

  }

:root {
    --ghf-primary: #FF6B6B;     /* Coral Red for primary actions */
    --ghf-secondary: #4ECDC4;   /* Teal for secondary elements */
    --ghf-dark: #1A535C;        /* Dark teal for backgrounds */
    --ghf-light: #F7FFF7;       /* Light background */
    --ghf-accent: #FFD166;      /* Yellow for accents */
    --ghf-whatsapp: #25D366;    /* WhatsApp green */
    --ghf-email: #EA4335;       /* Gmail red */
}
/* Archive Layout Container */
.ghf-archive-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Entry Header with Background */
.ghf-entry-header {
    background:#000;
    padding: 120px 0;
    margin-bottom: 60px;
    text-align: center;
}

.ghf-entry-header-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.ghf-archive-title {
    color: white;
    font-size: 3.2rem;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
}

.ghf-archive-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0 auto;
}

/* Category Top Section */
.ghf-category-top {
    background: transparent;
    padding: 20px;
    margin-bottom: 50px;
	margin-top:-140px;
}

.ghf-category-top-title {
    color: var(--ghf-dark);
    font-size: 2rem;
    margin: 0 0 30px 0;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.ghf-category-top-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--ghf-primary);
}

/* Categories Grid */
.ghf-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.ghf-category-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

.ghf-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.ghf-category-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ghf-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 83, 92, 0.9) 100%);
}

.ghf-category-name {
    position: relative;
    color: white;
    font-size: 1.8rem;
    margin: 0;
    padding: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 1;
}

/* Products Section */
.ghf-products-section {
    margin: 0px 0;
	padding-top:0px!important;
}

.ghf-section-title {
    color: var(--ghf-dark);
    font-size: 2.2rem;
    margin: 0 0 40px 0;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.ghf-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--ghf-primary), var(--ghf-secondary));
}

/* Improved Product Cards */
.ghf-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    margin: 40px 0;
}

.ghf-product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    transition: all 0.4s ease;
    margin-bottom: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ghf-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.ghf-product-price-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 107, 107, 0.95);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.ghf-product-price-overlay:before {
    content: '$';
    font-size: 0.9em;
    margin-right: 2px;
}

.ghf-product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.ghf-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ghf-product-card:hover .ghf-product-image img {
    transform: scale(1.1);
}

.ghf-product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ghf-product-title {
    margin: 0 0 15px 0;
    font-size: 2rem;
    color: var(--ghf-dark);
    line-height: 1.4;
    flex-grow: 1;
}

.ghf-product-title a {
    color: var(--ghf-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ghf-product-title a:hover {
    color: var(--ghf-primary);
}

.ghf-product-excerpt {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Improved Order Buttons */
.ghf-order-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    margin-top: auto;
}

.ghf-whatsapp-btn,
.ghf-email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.95rem;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
}

.ghf-whatsapp-btn {
    background-color: var(--ghf-whatsapp);
    color: white;
}

.ghf-whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.ghf-email-btn {
    background-color: var(--ghf-email);
    color: white;
}

.ghf-email-btn:hover {
    background-color: #D14836;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(234, 67, 53, 0.3);
}

/* Category Header (for individual category pages) */
.ghf-category-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.ghf-category-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.ghf-category-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ghf-category-title {
    color: white;
    font-size: 3.5rem;
    margin: 0 0 20px 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    font-weight: 700;
}

.ghf-category-description {
    color: white;
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ghf-archive-wrapper {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .ghf-categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .ghf-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .ghf-archive-title {
        font-size: 2.5rem;
    }
    
    .ghf-category-title {
        font-size: 2.8rem;
    }
    
    .ghf-categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .ghf-products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ghf-product-image {
        height: 240px;
    }
    
    .ghf-order-buttons {
        flex-direction: column;
    }
    
    .ghf-whatsapp-btn,
    .ghf-email-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ghf-entry-header {
        padding: 40px 0;
    }
    
    .ghf-archive-title {
        font-size: 2rem;
    }
    
    .ghf-category-top {
        padding: 25px 15px;
    }
    
    .ghf-category-top-title {
        font-size: 1.6rem;
    }
    
    .ghf-section-title {
        font-size: 1.8rem;
    }
    
    .ghf-product-price-overlay {
        font-size: 1.1rem;
        padding: 8px 15px;
        top: 15px;
        right: 15px;
    }
}