/*
Theme Name: Ptogun - Premium Cannabis Shisha
Theme URI: https://ptogun.de
Author: Ptogun Design Studio
Author URI: https://ptogun.de
Description: Ein elegantes, minimalistisches WordPress Theme für Ptogun - die Premium Shisha in Gewehrform. Vollständig editierbar über den WordPress Customizer.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ptogun
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, full-width-template, theme-options, e-commerce
*/

/* ========================================
   PTOGUN - PREMIUM THEME
   Clean, Minimalistisch, Elegant
   ======================================== */

/* CSS Variables - Vollständig editierbar via Customizer */
:root {
    /* Primary Colors */
    --pt-primary: #1B4332;
    --pt-primary-dark: #081C15;
    --pt-primary-light: #2D6A4F;
    
    /* Accent Colors */
    --pt-accent: #D4AF37;
    --pt-accent-light: #F4D03F;
    --pt-accent-dark: #B8860B;
    
    /* Neutral Colors */
    --pt-white: #FFFFFF;
    --pt-cream: #F8F9FA;
    --pt-gray-100: #E9ECEF;
    --pt-gray-200: #DEE2E6;
    --pt-gray-300: #CED4DA;
    --pt-gray-400: #ADB5BD;
    --pt-gray-500: #6C757D;
    --pt-gray-600: #495057;
    --pt-gray-700: #343A40;
    --pt-gray-800: #212529;
    --pt-gray-900: #121212;
    --pt-black: #000000;
    
    /* Typography */
    --pt-font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --pt-font-body: 'Inter', 'Source Sans Pro', sans-serif;
    --pt-font-accent: 'Montserrat', sans-serif;
    
    /* Spacing */
    --pt-section-padding: 120px;
    --pt-section-padding-mobile: 80px;
    --pt-container-max: 1280px;
    --pt-container-narrow: 800px;
    
    /* Transitions */
    --pt-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --pt-transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --pt-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --pt-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --pt-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --pt-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --pt-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --pt-shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* Border Radius */
    --pt-radius-sm: 4px;
    --pt-radius-md: 8px;
    --pt-radius-lg: 16px;
    --pt-radius-xl: 24px;
    --pt-radius-full: 9999px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--pt-font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--pt-gray-700);
    background-color: var(--pt-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--pt-primary);
    text-decoration: none;
    transition: var(--pt-transition-fast);
}

a:hover {
    color: var(--pt-accent);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--pt-font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--pt-gray-900);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--pt-gray-600);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ========================================
   LAYOUT
   ======================================== */
.pt-container {
    width: 100%;
    max-width: var(--pt-container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.pt-container-narrow {
    max-width: var(--pt-container-narrow);
}

.pt-section {
    padding: var(--pt-section-padding) 0;
    position: relative;
}

.pt-section-alt {
    background-color: var(--pt-cream);
}

.pt-section-dark {
    background-color: var(--pt-primary-dark);
    color: var(--pt-white);
}

.pt-section-dark h1,
.pt-section-dark h2,
.pt-section-dark h3,
.pt-section-dark h4,
.pt-section-dark h5,
.pt-section-dark h6 {
    color: var(--pt-white);
}

.pt-section-dark p {
    color: var(--pt-gray-300);
}

/* ========================================
   HEADER
   ======================================== */
.pt-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--pt-gray-100);
    transition: var(--pt-transition-normal);
}

.pt-header.scrolled {
    box-shadow: var(--pt-shadow-md);
}

.pt-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: var(--pt-container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo */
.pt-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pt-logo img {
    height: 45px;
    width: auto;
}

.pt-logo-text {
    font-family: var(--pt-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pt-primary);
    letter-spacing: 2px;
}

.pt-logo-text span {
    color: var(--pt-accent);
}

/* Navigation */
.pt-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.pt-nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.pt-nav-menu a {
    font-family: var(--pt-font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--pt-gray-700);
    position: relative;
    padding: 0.5rem 0;
}

.pt-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pt-accent);
    transition: var(--pt-transition-normal);
}

.pt-nav-menu a:hover {
    color: var(--pt-primary);
}

.pt-nav-menu a:hover::after,
.pt-nav-menu .current-menu-item a::after {
    width: 100%;
}

/* CTA Button */
.pt-btn-nav {
    font-family: var(--pt-font-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.875rem 1.75rem;
    background: var(--pt-primary);
    color: var(--pt-white);
    border: none;
    border-radius: var(--pt-radius-full);
    cursor: pointer;
    transition: var(--pt-transition-normal);
}

.pt-btn-nav:hover {
    background: var(--pt-accent);
    color: var(--pt-white);
    transform: translateY(-2px);
    box-shadow: var(--pt-shadow-gold);
}

/* Mobile Menu Toggle */
.pt-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.pt-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pt-gray-800);
    transition: var(--pt-transition-fast);
}

/* ========================================
   HERO SECTION
   ======================================== */
.pt-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--pt-cream) 0%, var(--pt-white) 50%, var(--pt-gray-100) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.pt-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.pt-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.pt-hero-label {
    display: inline-block;
    font-family: var(--pt-font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--pt-accent);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--pt-accent);
    border-radius: var(--pt-radius-full);
}

.pt-hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--pt-primary-dark);
    letter-spacing: 8px;
}

.pt-hero-subtitle {
    font-family: var(--pt-font-body);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--pt-gray-500);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pt-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pt-hero-product {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 450px;
    z-index: 1;
}

.pt-hero-product img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========================================
   BUTTONS
   ======================================== */
.pt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--pt-font-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 2.5rem;
    border-radius: var(--pt-radius-full);
    cursor: pointer;
    transition: var(--pt-transition-normal);
    border: none;
}

.pt-btn-primary {
    background: var(--pt-primary);
    color: var(--pt-white);
}

.pt-btn-primary:hover {
    background: var(--pt-accent);
    color: var(--pt-white);
    transform: translateY(-3px);
    box-shadow: var(--pt-shadow-gold);
}

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

.pt-btn-secondary:hover {
    background: var(--pt-primary);
    color: var(--pt-white);
    transform: translateY(-3px);
}

.pt-btn-outline {
    background: transparent;
    color: var(--pt-accent);
    border: 2px solid var(--pt-accent);
}

.pt-btn-outline:hover {
    background: var(--pt-accent);
    color: var(--pt-white);
}

.pt-btn-light {
    background: var(--pt-white);
    color: var(--pt-primary);
}

.pt-btn-light:hover {
    background: var(--pt-accent);
    color: var(--pt-white);
    transform: translateY(-3px);
}

/* ========================================
   SECTION HEADER
   ======================================== */
.pt-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.pt-section-label {
    display: inline-block;
    font-family: var(--pt-font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--pt-accent);
    margin-bottom: 1rem;
}

.pt-section-title {
    margin-bottom: 1.5rem;
}

.pt-section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--pt-gray-500);
    font-size: 1.125rem;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.pt-features {
    background: var(--pt-white);
}

.pt-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.pt-feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    border: 1px solid var(--pt-gray-100);
    transition: var(--pt-transition-normal);
}

.pt-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--pt-shadow-xl);
    border-color: var(--pt-accent);
}

.pt-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pt-primary) 0%, var(--pt-primary-light) 100%);
    border-radius: var(--pt-radius-full);
}

.pt-feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--pt-white);
}

.pt-feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--pt-gray-900);
}

.pt-feature-desc {
    color: var(--pt-gray-500);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ========================================
   PRODUCT SECTION
   ======================================== */
.pt-product {
    background: var(--pt-cream);
}

.pt-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.pt-product-image {
    position: relative;
}

.pt-product-image img {
    width: 100%;
    height: auto;
    border-radius: var(--pt-radius-xl);
    box-shadow: var(--pt-shadow-xl);
}

.pt-product-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--pt-accent);
    color: var(--pt-white);
    font-family: var(--pt-font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.75rem 1.5rem;
    border-radius: var(--pt-radius-full);
    box-shadow: var(--pt-shadow-gold);
}

.pt-product-content {
    padding: 2rem 0;
}

.pt-product-specs {
    margin: 2.5rem 0;
}

.pt-spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--pt-gray-200);
}

.pt-spec-item:last-child {
    border-bottom: none;
}

.pt-spec-icon {
    width: 24px;
    height: 24px;
    color: var(--pt-accent);
    flex-shrink: 0;
}

.pt-spec-text {
    font-size: 1rem;
    color: var(--pt-gray-700);
}

.pt-product-price {
    margin: 2.5rem 0;
}

.pt-price {
    font-family: var(--pt-font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--pt-primary);
}

.pt-price span {
    font-size: 1rem;
    color: var(--pt-gray-400);
    font-weight: 400;
    margin-left: 0.5rem;
}

.pt-price-note {
    font-size: 0.875rem;
    color: var(--pt-gray-400);
    margin-top: 0.5rem;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.pt-gallery {
    background: var(--pt-white);
}

.pt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pt-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--pt-radius-lg);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.pt-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--pt-transition-slow);
}

.pt-gallery-item:hover img {
    transform: scale(1.1);
}

.pt-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(27, 67, 50, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--pt-transition-normal);
}

.pt-gallery-item:hover .pt-gallery-overlay {
    opacity: 1;
}

.pt-gallery-title {
    font-size: 1.125rem;
    color: var(--pt-white);
    margin-bottom: 0.25rem;
}

.pt-gallery-desc {
    font-size: 0.875rem;
    color: var(--pt-gray-300);
    margin-bottom: 0;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.pt-testimonials {
    background: var(--pt-primary-dark);
}

.pt-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.pt-testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--pt-radius-lg);
    padding: 2.5rem;
    position: relative;
}

.pt-testimonial-quote {
    font-size: 3rem;
    color: var(--pt-accent);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.pt-testimonial-text {
    font-style: italic;
    color: var(--pt-gray-300);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.pt-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pt-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--pt-radius-full);
    object-fit: cover;
    border: 2px solid var(--pt-accent);
}

.pt-testimonial-name {
    font-family: var(--pt-font-accent);
    font-weight: 600;
    color: var(--pt-white);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.pt-testimonial-role {
    font-size: 0.8125rem;
    color: var(--pt-gray-400);
    margin-bottom: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.pt-cta {
    background: linear-gradient(135deg, var(--pt-primary) 0%, var(--pt-primary-light) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pt-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 40px 40px;
}

.pt-cta-content {
    position: relative;
    z-index: 2;
}

.pt-cta-title {
    color: var(--pt-white);
    margin-bottom: 1rem;
}

.pt-cta-desc {
    color: var(--pt-gray-300);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.pt-footer {
    background: var(--pt-gray-900);
    padding: 5rem 0 2rem;
}

.pt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.pt-footer-brand {
    max-width: 300px;
}

.pt-footer-logo {
    font-family: var(--pt-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pt-white);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.pt-footer-logo span {
    color: var(--pt-accent);
}

.pt-footer-desc {
    color: var(--pt-gray-400);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.pt-footer-social {
    display: flex;
    gap: 1rem;
}

.pt-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--pt-radius-full);
    color: var(--pt-gray-400);
    transition: var(--pt-transition-fast);
}

.pt-social-link:hover {
    background: var(--pt-accent);
    border-color: var(--pt-accent);
    color: var(--pt-white);
    transform: translateY(-3px);
}

.pt-footer-title {
    font-family: var(--pt-font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pt-white);
    margin-bottom: 1.5rem;
}

.pt-footer-menu {
    list-style: none;
}

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

.pt-footer-menu a {
    color: var(--pt-gray-400);
    font-size: 0.9375rem;
    transition: var(--pt-transition-fast);
}

.pt-footer-menu a:hover {
    color: var(--pt-accent);
    padding-left: 5px;
}

.pt-footer-contact p {
    color: var(--pt-gray-400);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.pt-footer-contact strong {
    color: var(--pt-white);
}

.pt-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pt-footer-copy {
    color: var(--pt-gray-500);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.pt-footer-legal {
    display: flex;
    gap: 2rem;
}

.pt-footer-legal a {
    color: var(--pt-gray-500);
    font-size: 0.875rem;
}

.pt-footer-legal a:hover {
    color: var(--pt-accent);
}

/* ========================================
   PAGE CONTENT
   ======================================== */
.pt-page-content {
    padding-top: 120px;
    min-height: 60vh;
}

.pt-page-header {
    background: var(--pt-cream);
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 4rem;
}

.pt-page-title {
    margin-bottom: 1rem;
}

.pt-breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: var(--pt-gray-400);
    font-size: 0.875rem;
}

.pt-breadcrumbs a {
    color: var(--pt-gray-500);
}

.pt-breadcrumbs a:hover {
    color: var(--pt-accent);
}

.pt-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.pt-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.pt-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.pt-content li {
    margin-bottom: 0.5rem;
    color: var(--pt-gray-600);
}

.pt-content blockquote {
    border-left: 3px solid var(--pt-accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--pt-gray-600);
}

/* ========================================
   BLOG/POST STYLES
   ======================================== */
.pt-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.pt-post-card {
    background: var(--pt-white);
    border: 1px solid var(--pt-gray-100);
    border-radius: var(--pt-radius-lg);
    overflow: hidden;
    transition: var(--pt-transition-normal);
}

.pt-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pt-shadow-xl);
    border-color: var(--pt-accent);
}

.pt-post-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.pt-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--pt-transition-slow);
}

.pt-post-card:hover .pt-post-image img {
    transform: scale(1.05);
}

.pt-post-content {
    padding: 1.75rem;
}

.pt-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    color: var(--pt-gray-400);
    font-family: var(--pt-font-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pt-post-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.pt-post-title a {
    color: var(--pt-gray-900);
}

.pt-post-title a:hover {
    color: var(--pt-accent);
}

.pt-post-excerpt {
    color: var(--pt-gray-500);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.pt-read-more {
    font-family: var(--pt-font-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pt-primary);
}

.pt-read-more:hover {
    color: var(--pt-accent);
}

/* Single Post */
.pt-single-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

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

.pt-single-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--pt-gray-400);
    font-size: 0.875rem;
}

.pt-single-image {
    width: 100%;
    border-radius: var(--pt-radius-lg);
    margin-bottom: 3rem;
    box-shadow: var(--pt-shadow-lg);
}

.pt-single-content {
    font-size: 1.0625rem;
    line-height: 1.9;
}

/* ========================================
   FORMS
   ======================================== */
.pt-form-group {
    margin-bottom: 1.5rem;
}

.pt-form-label {
    display: block;
    font-family: var(--pt-font-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pt-gray-700);
    margin-bottom: 0.5rem;
}

.pt-form-input,
.pt-form-textarea,
.pt-form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--pt-white);
    border: 1px solid var(--pt-gray-200);
    border-radius: var(--pt-radius-md);
    color: var(--pt-gray-700);
    font-family: var(--pt-font-body);
    font-size: 1rem;
    transition: var(--pt-transition-fast);
}

.pt-form-input:focus,
.pt-form-textarea:focus,
.pt-form-select:focus {
    outline: none;
    border-color: var(--pt-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.pt-form-input::placeholder,
.pt-form-textarea::placeholder {
    color: var(--pt-gray-400);
}

.pt-form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.pt-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pt-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.pt-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pt-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.pt-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pt-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .pt-hero-product {
        display: none;
    }
    
    .pt-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pt-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .pt-product-grid,
    .pt-about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    :root {
        --pt-section-padding: 80px;
    }
}

@media (max-width: 768px) {
    .pt-menu-toggle {
        display: flex;
    }
    
    .pt-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: var(--pt-transition-normal);
        border-bottom: 1px solid var(--pt-gray-100);
    }
    
    .pt-nav.active {
        transform: translateX(0);
    }
    
    .pt-nav-menu {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .pt-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .pt-footer-brand {
        max-width: 100%;
    }
    
    .pt-footer-social {
        justify-content: center;
    }
    
    .pt-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .pt-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pt-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .pt-gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pt-container {
        padding: 0 1.25rem;
    }
    
    .pt-features-grid,
    .pt-testimonials-grid,
    .pt-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   WORDPRESS SPECIFIC
   ======================================== */
body.admin-bar .pt-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .pt-header {
        top: 46px;
    }
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto 1.5rem;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--pt-gray-400);
    text-align: center;
    padding: 0.5rem;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.pt-pagination a,
.pt-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--pt-white);
    border: 1px solid var(--pt-gray-200);
    border-radius: var(--pt-radius-md);
    color: var(--pt-gray-600);
    font-family: var(--pt-font-accent);
    font-weight: 600;
    transition: var(--pt-transition-fast);
}

.pt-pagination a:hover,
.pt-pagination .current {
    background: var(--pt-primary);
    border-color: var(--pt-primary);
    color: var(--pt-white);
}

/* Comments */
.pt-comments {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.pt-comments-title {
    margin-bottom: 2rem;
}

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

.comment {
    background: var(--pt-white);
    border: 1px solid var(--pt-gray-100);
    border-radius: var(--pt-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.comment-author {
    font-family: var(--pt-font-accent);
    font-weight: 600;
    color: var(--pt-gray-900);
}

.comment-date {
    font-size: 0.8125rem;
    color: var(--pt-gray-400);
}

.comment-content {
    color: var(--pt-gray-600);
}

.comment-reply-link {
    font-family: var(--pt-font-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.pt-mb-0 { margin-bottom: 0; }
.pt-mb-1 { margin-bottom: 1rem; }
.pt-mb-2 { margin-bottom: 2rem; }
.pt-mb-3 { margin-bottom: 3rem; }

.pt-mt-0 { margin-top: 0; }
.pt-mt-1 { margin-top: 1rem; }
.pt-mt-2 { margin-top: 2rem; }
.pt-mt-3 { margin-top: 3rem; }

.pt-hidden { display: none; }
.pt-visible { display: block; }
