/*
Theme Name: Super Ofertas Theme
Description: Um tema moderno e responsivo focado em exibir super ofertas e promoções de produtos.
Author: Super Ofertas Team
Version: 1.0.0
License: GPL v2 or later
Text Domain: superofertas-theme
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Matching the image design */
.site-header {
    background: #ff6699; /* Dark blue background */
    color: white;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.header-branding .site-title {
    margin: 0;
}

.header-branding .site-title a {
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff; /* Light green */
}

.brand-sub {
    font-size: 0.8rem;
    font-weight: 400;
    color: white;
    text-transform: lowercase;
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 350px;
}

.main-search-form {
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 2;
    font-size: 0.9rem;
}

.search-input-wrapper input {
    width: 100%;
    padding: 8px 8px 8px 35px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
}

.search-input-wrapper input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #00bfa5;
}

/* Header Actions */
.enviar-promocao-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 8px 16px;
    background: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.enviar-promocao-btn:hover {
    background: white;
    color: #1e3a8a;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #00bfa5 0%, #008ba3 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.hero-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Main Content */
.site-main {
    padding: 2rem 0;
}

.site-main .entry-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
    margin-top: 2rem;
}


/* Posts Grid - Using same styling as Super Ofertas */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.post-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.post-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.entry-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.entry-title a {
    text-decoration: none;
    color: #333;
}

.entry-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.entry-meta span {
    margin-right: 1rem;
}

.entry-summary {
    margin-bottom: 1rem;
    color: #555;
    flex: 1;
}

.read-more {
    color: #00bfa5;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
}

/* Super Ofertas Styles - Matching the image exactly */
.superofertas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.superofertas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.header-content p {
    color: #666;
    font-size: 1.1rem;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.superofertas-search {
    display: flex;
    gap: 0.5rem;
}

.superofertas-search input {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    min-width: 250px;
    transition: border-color 0.3s ease;
}

.superofertas-search input:focus {
    outline: none;
    border-color: #00bfa5;
}

.superofertas-search button {
    padding: 0.75rem 1.5rem;
    background: #00bfa5;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.superofertas-search button:hover {
    background: #008ba3;
}

.enviar-promocao {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: #00bfa5;
    border: 2px solid #00bfa5;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.enviar-promocao:hover {
    background: #00bfa5;
    color: #fff;
}

/* Filters */
.superofertas-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.filter-group select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    min-width: 150px;
}

/* Super Ofertas Grid - Matching the image exactly */
.superofertas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.superoferta-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.superoferta-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    background: #f7fffe;
}

/* Store Tag (like "FAST SHOP" in the image) */
.store-tag {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #dae4ff;
    color: #282828;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgb(255 255 255 / 30%);
}

/* Product Image Container */
.product-image-container {
    text-align: center;
    margin-top: 0.5rem;
}

.product-image {
    text-align: center;   
    max-width: 100%;
    max-height: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: block;
}

.no-image {
    width: 100%;
    height: 150px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ccc;
    font-size: 3rem;
}

/* Product Title */
.product-title {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-title a {
    text-decoration: none;
}
.product-title a:hover {
    text-decoration: underline;
}


/* Prices Section */
.prices-section {
    margin-bottom: 10px;
    margin-top: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #ff3d3d;
    font-size: 0.9rem;
    font-weight: 400;
}

.promotional-price {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00bfa5;
}

.payment-terms {
    font-size: 0.8rem;
    color: #333;
    font-weight: 400;
    text-align: right;
}

.savings-text {
    font-size: 0.9rem;
    color: #00bfa5;
    font-weight: 600;
    margin-top: 10px;
}

/* Call to Action Button */
.cta-button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: #00bfa5;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: #008ba3;
    color: white;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.author {
    font-weight: 500;
}

.date {
    color: #999;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .current {
    background: #00bfa5;
    color: #fff;
    border-color: #00bfa5;
}

/* No Results */
.no-ofertas {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-ofertas i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.no-ofertas h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-posts i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.no-posts h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Footer */
.site-footer {
    background: #333;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #00bfa5;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00bfa5;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #00bfa5;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h2 {
        font-size: 2rem;
    }
    
    .superofertas-header {
        flex-direction: column;
        text-align: center;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .superofertas-search {
        width: 100%;
    }
    
    .superofertas-search input {
        min-width: auto;
        flex: 1;
    }
    
    .superofertas-filters {
        flex-direction: column;
    }
    
    .superofertas-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .superofertas-container {
        padding: 1rem 15px;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
}

/* Responsive Design for Header */
@media (max-width: 1024px) {
    .header-content {
        gap: 0.75rem;
    }
    
    .brand-main {
        font-size: 1.2rem;
    }
    
    .brand-sub {
        font-size: 0.75rem;
    }
    
    .header-search {
        max-width: 300px;
    }
    
    .search-input-wrapper input {
        padding: 7px 7px 7px 32px;
        font-size: 0.85rem;
    }
    
    .enviar-promocao-btn {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.5rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .header-branding {
        order: 1;
    }
    
    .header-search {
        order: 2;
        max-width: 100%;
        width: 100%;
    }
    
    .header-actions {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .brand-main {
        font-size: 1.1rem;
    }
    
    .brand-sub {
        font-size: 0.7rem;
    }
    
    .search-input-wrapper input {
        padding: 10px 10px 10px 35px;
        font-size: 0.9rem;
    }
    
    .enviar-promocao-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 0.4rem 0;
    }
    
    .header-content {
        gap: 0.5rem;
    }
    
    .brand-main {
        font-size: 1rem;
    }
    
    .brand-sub {
        font-size: 0.65rem;
    }
    
    .search-input-wrapper input {
        padding: 8px 8px 8px 32px;
        font-size: 0.85rem;
    }
    
    .search-icon {
        font-size: 0.8rem;
        left: 8px;
    }
    
    .enviar-promocao-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .enviar-promocao-btn i {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .site-header {
        padding: 0.3rem 0;
    }
    
    .header-content {
        gap: 0.4rem;
    }
    
    .brand-main {
        font-size: 0.9rem;
    }
    
    .brand-sub {
        font-size: 0.6rem;
    }
    
    .search-input-wrapper input {
        padding: 7px 7px 7px 30px;
        font-size: 0.8rem;
    }
    
    .enviar-promocao-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
}

/* Accessibility */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.skip-link:focus {
    clip: auto !important;
    display: block;
    height: auto;
    left: 6px;
    position: absolute;
    top: 7px;
    width: auto;
    z-index: 100000;
    background: #fff;
    padding: 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

/* Contact Form Styles */
.contact-container {
    padding: 3rem 0;
    background: #f8f9fa;
    min-height: 80vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00bfa5;
}

.form-help {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #00bfa5;
}

.form-actions {
    margin-top: 1rem;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #00bfa5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    background: #008ba3;
}

/* Contact Info Sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #00bfa5;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #00bfa5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon i {
    color: white;
    font-size: 1.2rem;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    color: #666;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.info-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00bfa5;
    font-weight: bold;
}

/* Success Message */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.success-message i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #155724;
}

.success-message p {
    color: #155724;
    font-size: 1.1rem;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 2rem 0;
    }
    
    .contact-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper {
        padding: 1rem;
    }
    
    .info-card {
        padding: 1rem;
    }
}
  
/* Single Product Styles */
.single-product {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.single-product .entry-header {
    margin-bottom: 2rem;
    text-align: center;
}

.single-product .entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.single-product .entry-meta {
    color: #666;
    font-size: 1rem;
}

.single-product .entry-meta span {
    margin: 0 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.product-image .no-image {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    color: #ccc;
}

.product-image .no-image i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #00bfa5;
}

.product-store {
    margin-bottom: 1rem;
}

.store-label {
    font-weight: 600;
    color: #333;
    margin-right: 0.5rem;
}

.store-name {
    color: #00bfa5;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-prices {
    margin-bottom: 1rem;
}

.price-original,
.price-promotional,
.price-savings {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label,
.savings-label {
    font-weight: 600;
    color: #333;
}

.price-original .price-value {
    text-decoration: line-through;
    color: #ff4757;
    font-size: 1.2rem;
}

.price-promotional .price-value {
    color: #00bfa5;
    font-size: 2.2rem;
}

.price-savings .price-value {
    color: #ff4757;
    font-weight: 700;
}

.product-payment {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.payment-label {
    font-weight: 600;
    color: #333;
    margin-right: 0.5rem;
}

.payment-value {
    color: #666;
    font-style: italic;
}

.product-action {
    margin-top: auto;
}

.product-action .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #00bfa5;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
}

.product-action .cta-button:hover {
    background: #008ba3;
}

.entry-content {
    padding: 2rem;
    line-height: 1.8;
    color: #555;
}

.product-meta {
    display: flex;
    justify-content: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
}

.meta-item a {
    color: #00bfa5;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.meta-item a:hover {
    color: #008ba3;
}

/* Responsive Design for Single Product */
@media (max-width: 768px) {
    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .single-product {
        padding: 1.5rem;
    }
    
    .single-product .entry-title {
        font-size: 2rem;
    }
    
    .price-original,
    .price-promotional,
    .price-savings {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .single-product {
        padding: 1rem;
    }
    
    .single-product .entry-title {
        font-size: 1.8rem;
    }
    
    .product-info {
        padding: 1rem;
    }
}
  
/* Normal Post Layout Styles */
.single-post {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.single-post .entry-header {
    margin-bottom: 2rem;
    text-align: center;
}

.single-post .entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.single-post .entry-meta {
    color: #666;
    font-size: 1rem;
}

.single-post .entry-meta span {
    margin: 0 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.single-post .entry-meta a {
    color: #00bfa5;
    text-decoration: none;
}

.single-post .entry-meta a:hover {
    text-decoration: underline;
}

.single-post .post-thumbnail {
    margin-bottom: 2rem;
    text-align: center;
}

.single-post .post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.single-post .entry-content {
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.single-post .entry-content p {
    margin-bottom: 1.5rem;
}

.single-post .entry-content ul,
.single-post .entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.single-post .entry-content blockquote {
    border-left: 4px solid #00bfa5;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

.single-post .entry-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.single-post .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.single-post .tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.single-post .tags a {
    color: #00bfa5;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    background: #f0f8ff;
    border-radius: 4px;
    font-size: 0.9rem;
}

.single-post .tags a:hover {
    background: #00bfa5;
    color: white;
}

.single-post .share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
}

.single-post .share-buttons a {
    color: #00bfa5;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.single-post .share-buttons a:hover {
    color: #008ba3;
}

/* Responsive Design for Normal Posts */
@media (max-width: 768px) {
    .single-post {
        padding: 1.5rem;
    }
    
    .single-post .entry-title {
        font-size: 2rem;
    }
    
    .single-post .entry-meta span {
        margin: 0 0.5rem;
        font-size: 0.9rem;
    }
    
    .single-post .post-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .single-post {
        padding: 0;
    }
    
    .single-post .entry-title {
        font-size: 1.8rem;
    }
    
    .single-post .entry-meta span {
        display: block;
        margin: 0.5rem 0;
    }
}
  
/* Comments Styles - Matching Site Identity */
.comments-area {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.comments-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.comments-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #00bfa5;
    border-radius: 2px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #00bfa5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #00bfa5;
}

.comment-author .fn {
    font-weight: 600;
    color: #333;
    font-style: normal;
    text-decoration: none;
}

.comment-author .fn:hover {
    color: #00bfa5;
}

.comment-meta {
    font-size: 0.9rem;
    color: #666;
    margin-left: auto;
}

.comment-meta a {
    color: #00bfa5;
    text-decoration: none;
}

.comment-meta a:hover {
    text-decoration: underline;
}

.comment-content {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comment-content p {
    margin-bottom: 0.5rem;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.comment-respond {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    border: 2px solid #e0e0e0;
}

.comment-reply-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-form-comment {
    margin-bottom: 1rem;
}

.comment-form-comment label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.comment-form-comment textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.comment-form-comment textarea:focus {
    outline: none;
    border-color: #00bfa5;
    box-shadow: 0 0 0 3px rgba(0,191,165,0.1);
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    outline: none;
    border-color: #00bfa5;
    box-shadow: 0 0 0 3px rgba(0,191,165,0.1);
}

.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #00bfa5;
    margin-top: 0.25rem;
}

.comment-form-cookies-consent label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
}

.form-submit {
    text-align: center;
}

.submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #00bfa5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.submit:hover {
    background: #008ba3;
    transform: translateY(-2px);
}

.submit:before {
    content: '\f075';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Comment Navigation */
.comment-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.nav-previous,
.nav-next {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-previous a,
.nav-next a {
    color: #00bfa5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: #008ba3;
}

.nav-previous a:before {
    content: '\f104';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.nav-next a:after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Reply Link */
.reply {
    text-align: right;
}

.reply a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #00bfa5;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.reply a:hover {
    background: #008ba3;
}

.reply a:before {
    content: '\f075';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Comment Depth */
.comment.depth-1 {
    margin-left: 0;
}

.comment.depth-2,
.comment.depth-3,
.comment.depth-4,
.comment.depth-5 {
    margin-left: 2rem;
    border-left-color: #008ba3;
}

.comment.depth-3,
.comment.depth-4,
.comment.depth-5 {
    border-left-color: #006d8a;
}

/* No Comments */
.no-comments {
    text-align: center;
    padding: 2rem;
    color: #666;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #e0e0e0;
}

.no-comments:before {
    content: '\f075';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2rem;
    color: #ccc;
    display: block;
    margin-bottom: 1rem;
}

/* Responsive Design for Comments */
@media (max-width: 768px) {
    .comments-area {
        padding: 1.5rem;
    }
    
    .comment-form-author,
    .comment-form-email,
    .comment-form-url {
        grid-template-columns: 1fr;
    }
    
    .comment-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .comment-meta {
        margin-left: 0;
    }
    
    .comment.depth-2,
    .comment.depth-3,
    .comment.depth-4,
    .comment.depth-5 {
        margin-left: 1rem;
    }
    
    .comment-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .comments-area {
        padding: 1rem;
    }
    
    .comment {
        padding: 1rem;
    }
    
    .comment-respond {
        padding: 1.5rem;
    }
    
    .comments-title {
        font-size: 1.5rem;
    }
    
    .comment-reply-title {
        font-size: 1.3rem;
    }
}
  
/* Cupom Modal Styles */
.cupom-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.cupom-modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.cupom-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10001;
}

.cupom-modal-close:hover {
    background: #666;
}

.cupom-modal-header {
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.cupom-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.cupom-modal-body {
    padding: 1.5rem 2rem 2rem 2rem;
    text-align: center;
}

.cupom-code-field {
    margin-bottom: 1.5rem;
}

.cupom-code-field input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    background: #f8f9fa;
    color: #333;
    letter-spacing: 1px;
    transition: border-color 0.3s ease;
}

.cupom-code-field input:focus {
    outline: none;
    border-color: #00bfa5;
}

.copy-cupom-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #00bfa5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    width: 100%;
    justify-content: center;
}

.copy-cupom-btn:hover {
    background: #008ba3;
    transform: translateY(-2px);
}

.copy-cupom-btn:active {
    transform: translateY(0);
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .cupom-modal-content {
        margin: 20% auto;
        width: 95%;
        max-width: 350px;
    }
    
    .cupom-modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .cupom-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .cupom-modal-body {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .cupom-code-field input {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    .copy-cupom-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cupom-modal-content {
        margin: 25% auto;
        width: 98%;
        max-width: 320px;
    }
    
    .cupom-modal-header {
        padding: 1.2rem 1.2rem 0.8rem 1.2rem;
    }
    
    .cupom-modal-header h3 {
        font-size: 1rem;
    }
    
    .cupom-modal-body {
        padding: 0.8rem 1.2rem 1.2rem 1.2rem;
    }
    
    .cupom-code-field input {
        font-size: 0.9rem;
        padding: 0.7rem;
    }
    
    .copy-cupom-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}
  
/* Modal Open State */
body.modal-open {
    overflow: hidden;
}

body.modal-open .site-header {
    z-index: 9999;
}

/* Loading Animation for Buttons */
.cta-button.loading,
.submit-btn.loading {
    position: relative;
    pointer-events: none;
}

.cta-button.loading:after,
.submit-btn.loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
  