/*
Theme Name: Premium
Version: 1.0.0
*/
.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.9em;
    color: #666;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
}
:root {
    --primary-color: #ff4e50;
    --primary-dark: #d63031;
    --secondary-color: #f9cb28;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --danger-color: #dc3545;
    --success-color: #28a745;
    --font-family: 'Geomanist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

@font-face {
    font-family: 'Geomanist';
    src: url('assets/fonts/geomanist-regular.woff2') format('woff2'),
         url('assets/fonts/geomanist-regular.woff') format('woff'),
         url('assets/fonts/geomanist-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Geomanist-Fallback';
    src: local('Arial'), local('Helvetica'), local('sans-serif');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    min-width: 320px;
    overflow-x: hidden;
}

main {
    flex: 1;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    overflow: visible;
}

.header {
    background-color: #fff;
    border-bottom: 2px solid var(--primary-color);
    z-index: 1000;
    min-height: 60px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 15px;
    overflow: visible;
    min-height: 60px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 120px;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ff4e50;
    margin: 0;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.phone-icon {
    width: 40px;
    height: 40px;
    background: #ff4e50;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.phone-icon .fa {
    font-style: normal !important;
}

.phone-details {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 12px;
    color: #666;
    line-height: 1.2;
}

.phone-number {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.phone-link {
    color: inherit;
    text-decoration: none;
}


.product-card .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}

.product-card .current-price {
    color: var(--primary-color);
    font-weight: 600;
}

.product-card .clickable {
    cursor: pointer;
}
.fa, .fas, .far, .fab, .fal, .fad, 
i[class*="fa-"], 
span[class*="fa-"],
.fa::before, .fas::before, .far::before, .fab::before {
    font-style: normal !important;
    font-weight: 900 !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Font Awesome 6 Free" !important;
}
.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.entry-meta span:hover {
    background: #e9ecef;
}

.entry-meta .fa {
    color: var(--primary-color);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.entry-meta a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-meta a:hover {
    color: var(--primary-color);
}

.entry-header {
    margin-bottom: 30px;
}

.entry-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}
.comments-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.comment-list ol {
    list-style: none;
}

.comment {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author .avatar {
    border-radius: 50%;
    margin-right: 15px;
}

.comment-author .fn {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.comment-metadata {
    font-size: 14px;
    margin-bottom: 15px;
}

.comment-metadata a {
    color: #666;
    text-decoration: none;
}

.comment-metadata a:hover {
    color: var(--primary-color);
}

.comment-content {
    color: #444;
    line-height: 1.6;
}

.comment-content p {
    margin-bottom: 15px;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.reply {
    margin-top: 10px;
}

.comment-reply-link {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
}

.comment-reply-link:hover {
    background: var(--primary-dark);
}

.children {
    margin-left: 30px;
    margin-top: 20px;
}
.comment-respond {
    margin-top: 40px;
}

.comment-reply-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.comment-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.comment-form p {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form .required {
    color: #dc3545;
}

.comment-form .submit {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.comment-form .submit:hover {
    background: var(--primary-dark);
}

.no-comments {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.comment-notes {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.logged-in-as {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.logged-in-as a {
    color: var(--primary-color);
    text-decoration: none;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .children {
        margin-left: 15px;
    }

    .comment-form {
        padding: 20px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-size: 28px;
}

.whatsapp-svg-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn:focus {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 76px;
        right: 20px;
        font-size: 24px;
    }
    
    .whatsapp-svg-icon {
        width: 28px;
        height: 28px;
    }
}
