.dgf-search-form {
margin: 30px 0;
}
.dgf-search-input-wrapper {
position: relative;
max-width: 600px;
margin: 0 auto;
}
.home .dgf-search-input-wrapper {margin-left:0}
.home .dgf-search-input-wrapper input[type=search]  {width:100%; max-width:100%;border-radius:25px;background-color: #ffffff;border: 1px solid #ccc;}
#dgf-search-field {
width: 100%;
padding: 15px 120px 15px 20px;
font-size: 16px;
border: 2px solid #eaedef;
border-radius: 25px;
transition: border-color 0.3s;
}
#dgf-search-field:focus {
outline: none;
border-color: #f36805;
}
.dgf-search-input-wrapper button[type="submit"] {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
padding: 8px 20px;
background: #f36805;
color: white;
border: none;
cursor: pointer;
font-size: 14px;
transition: background 0.3s;
border-top-right-radius: 25px;
border-bottom-right-radius: 25px;	
}
.dgf-search-input-wrapper button[type="submit"]:hover {
background: #000000c2
} .dgf-live-dropdown {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
border: 2px solid #f36805; border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
max-height: 500px;
overflow-y: auto;
z-index: 1000;
margin-top: -2px;
}
.dgf-live-loading {
padding: 20px;
text-align: center;
color: #666;
}
.dgf-live-section {
border-bottom: 1px solid #eee;
}
.dgf-live-section:last-child {
border-bottom: none;
}
.dgf-live-header {
padding: 12px 15px;
background: #f5f5f5;
font-weight: bold;
font-size: 13px;
color: #333;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.dgf-live-item {
display: flex;
align-items: center;
padding: 12px 15px;
text-decoration: none;
color: #333;
transition: background 0.2s;
}
.dgf-live-item:hover {
background: #f9f9f9;
}
.dgf-live-image {
width: 50px;
height: 50px;
object-fit: cover;
border-radius: 4px;
margin-right: 12px;
}
.dgf-live-title {
flex: 1;
font-size: 14px;
}
.dgf-live-meta {
font-size: 12px;
color: #999;
margin-left: 10px;
}
.dgf-live-show-all {
display: block;
padding: 12px 15px;
text-align: center;
color: #0073aa;
text-decoration: none;
font-size: 13px;
font-weight: 600;
transition: background 0.2s;
}
.dgf-live-show-all:hover {
background: #f0f7fb;
}
.dgf-live-empty {
padding: 30px;
text-align: center;
color: #999;
} @media (max-width: 768px) {
.dgf-mobile .dgf-live-dropdown {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
max-height: none;
border-radius: 0;
border: none;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.dgf-mobile .dgf-live-item {
padding: 16px 20px;
min-height: 60px;
}
.dgf-mobile .dgf-live-image {
width: 60px;
height: 60px;
}
} .dgf-filter-chips {
margin: 20px 0;
min-height: 40px;
}
.dgf-chips-wrapper {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.dgf-chips-loading {
color: #999;
font-size: 14px;
}
.dgf-chip {
display: inline-block;
padding: 8px 16px;
background: #f9f9f9;
color: #333;
border-radius: 20px;
text-decoration: none;
font-size: 14px;
transition: all 0.3s;
border: 1px solid #d0e7f2;
font-weight:600
}
.dgf-chip:hover {
background: #000000c2;
color: #cccccc;
border-color: #cccccc;
}
.dgf-chip.hidden {
display: none;
}
.dgf-chip-more {
background: #e8e8e8;
color: #666;
cursor: pointer;
border: 1px solid #ddd;
}
.dgf-chip-more:hover {
background: #d0d0d0;
color: #333;
} .dgf-tabs {
display: flex;
gap: 10px;
margin: 30px 0 20px;
border-bottom: 2px solid #eee;
}
.dgf-tab {
padding: 12px 24px;
background: transparent;
border: none;
border-bottom: 3px solid transparent;
font-size: 16px;
font-weight: 600;
color: #666;
cursor: pointer;
transition: all 0.3s;
position: relative;
margin-bottom: -2px;
}
.dgf-tab:hover {
color: #2d2d2d;
background-color:#ffffff
}
.dgf-tab.active {
color: #2d2d2d;
border-bottom-color: #f36805;
background-color:#ffffff
}
.dgf-tab-count {
font-weight: 600;
font-size: 14px;
color: #999;
}
.dgf-tab.active .dgf-tab-count {
color: #2d2d2d;
}
@media (max-width: 600px) {
.dgf-tabs {
flex-direction: column;
gap: 0;
border-bottom: none;
}
.dgf-tab {
border-bottom: 1px solid #eee;
text-align: left;
}
} .dgf-results-container {
min-height: 400px;
margin: 30px 0;
}
.dgf-loading {
text-align: center;
padding: 60px 20px;
}
.dgf-spinner {
border: 4px solid #f3f3f3;
border-top: 4px solid #0073aa;
border-radius: 50%;
width: 50px;
height: 50px;
animation: dgf-spin 1s linear infinite;
margin: 0 auto 20px;
}
@keyframes dgf-spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.dgf-empty,
.dgf-error {
text-align: center;
padding: 60px 20px;
color: #999;
font-size: 16px;
}
.dgf-error {
color: #d63638;
} .dgf-grid {
display: grid;
gap: 30px;
}
.dgf-grid-geschenke,
.dgf-grid-posts {
grid-template-columns: repeat(3, 1fr); }
.dgf-grid-filters {
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
@media (max-width: 768px) {
.dgf-grid-geschenke,
.dgf-grid-posts {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
.dgf-grid-filters {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
}
@media (max-width: 480px) {
.dgf-grid-geschenke,
.dgf-grid-posts,
.dgf-grid-filters { grid-template-columns: repeat(2, 1fr);
}
} .dgf-geschenk-item {
display: block;
text-decoration: none;
background: white; overflow: hidden; } .dgf-geschenk-image {
width: 100%;
aspect-ratio: 1 / 1;
overflow: hidden;
background: #f5f5f5;
border-radius:8px
}
.dgf-geschenk-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s;
border-radius:8px
}
.dgf-geschenk-price {
text-align: center;
color: #0a0808
}
.dgf-geschenk-item:hover .dgf-geschenk-image img {
transform: scale(1.05);
}
.dgf-geschenk-title {
font-size: 24px;
margin: 0 0 10px 0;
color: #333333;
font-weight: 700;
padding:20px 20px 0 20px;
text-align:center
} .dgf-post-item {
display: block;
text-decoration: none;
background: white;
border-radius: 8px;
overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
} .dgf-post-image {
width: 100%;
aspect-ratio: 16 / 9;
overflow: hidden;
background: #f5f5f5;
}
.dgf-post-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s;
}
.dgf-post-item:hover .dgf-post-image img {
transform: scale(1.05);
}
.dgf-post-title {
padding: 15px 4px;
font-size: 18px;
font-weight: 600;
color: #333;
line-height: 1.4;
} .dgf-filter-item {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px 20px;
text-decoration: none;
background: #f0f7fb;
border-radius: 8px;
border: 2px solid #d0e7f2;
transition: all 0.3s;
min-height: 120px;
}
.dgf-filter-item:hover {
background: #0073aa;
border-color: #0073aa;
transform: translateY(-3px);
box-shadow: 0 4px 12px rgba(0,115,170,0.3);
}
.dgf-filter-name {
font-size: 18px;
font-weight: bold;
color: #0073aa;
text-align: center;
margin-bottom: 5px;
transition: color 0.3s;
}
.dgf-filter-item:hover .dgf-filter-name {
color: white;
}
.dgf-filter-taxonomy {
font-size: 13px;
color: #666;
text-transform: uppercase;
letter-spacing: 0.5px;
transition: color 0.3s;
}
.dgf-filter-item:hover .dgf-filter-taxonomy {
color: rgba(255,255,255,0.8);
} .dgf-pagination {
margin: 40px 0;
text-align: center;
}
.dgf-load-more {
padding: 15px 40px;
background: #0073aa;
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}
.dgf-load-more:hover {
background: #005177;
} .dgf-search-header {
text-align: center;
margin: 40px 0;
}
.dgf-search-header h1 {
font-size: 32px;
margin-bottom: 10px;
}
.dgf-search-header h1 span {
color: #f36805;
}
@media (max-width: 768px) {
.dgf-search-header h1 {
font-size: 24px;
}
} .dgf-search-results .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
} .dgf-shortcode-geschenke {
margin: 30px 0;
}
.dgf-geschenke-grid {
display: grid;
gap: 20px;
}
.dgf-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.dgf-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.dgf-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.dgf-grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.dgf-geschenk-card {
text-decoration: none;
display: flex;
flex-direction: column;
background: #fff;
border-radius: 8px;
overflow: hidden;  } .dgf-geschenk-image img {
width: 100%;
aspect-ratio: 1;
object-fit: cover;
}
.dgf-geschenk-title {
padding: 12px 12px 4px 12px;
font-size: 16px;
line-height: 1.4;
color: #333;
margin: 0;
}
.dgf-geschenk-price {
padding: 0 12px 12px;
font-weight: 500;
color: #333333;
font-size: 15px;
} .dgf-einzelgeschenk {
display: flex;
gap: 20px;
background: #fff;
border-radius: 12px;
overflow: hidden;
border: 1px solid #e2e8f0;
margin: 30px 0;
padding: 20px;
}
.dgf-einzelgeschenk.dgf-layout-vertical {
flex-direction: column;
}
.dgf-einzelgeschenk.dgf-layout-horizontal {
flex-direction: row;
align-items: center;
}
.dgf-einzelgeschenk-image {
flex-shrink: 0;
}
.dgf-layout-horizontal .dgf-einzelgeschenk-image {
width: 300px;
}
.dgf-layout-vertical .dgf-einzelgeschenk-image {
width: 100%;
}
.dgf-einzelgeschenk-image img {
width: 100%;
height: auto;
border-radius: 8px;
display: block;
}
.dgf-einzelgeschenk-content {
flex: 1;
display: flex;
flex-direction: column;
gap: 15px;
}
.dgf-einzelgeschenk-title {
margin: 0;
font-size: 24px;
line-height: 1.3;
}
.dgf-einzelgeschenk-title a {
color: #1a202c;
text-decoration: none;
}
.dgf-einzelgeschenk-title a:hover {
color: #2c5282;
}
.dgf-einzelgeschenk-kurzbeschreibung {
color: #4a5568;
line-height: 1.6;
font-size: 15px;
}
.dgf-einzelgeschenk-footer {
display: flex;
align-items: center;
gap: 20px;
margin-top: auto;
}
.dgf-einzelgeschenk-price {
font-size: 24px;
font-weight: 700;
color: #2c5282;
}
.dgf-einzelgeschenk-button {
display: inline-block;
padding: 12px 24px;
background: #2c5282;
color: #fff;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
transition: background 0.2s;
}
.dgf-einzelgeschenk-button:hover {
background: #1a365d;
} @media (max-width: 768px) {
.dgf-geschenke-grid {
grid-template-columns: repeat(2, 1fr) !important;
gap: 15px;
}
.dgf-einzelgeschenk.dgf-layout-horizontal {
flex-direction: column;
}
.dgf-layout-horizontal .dgf-einzelgeschenk-image {
width: 100%;
}
.dgf-einzelgeschenk-footer {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
}
.dgf-no-results,
.dgf-error {
padding: 20px;
background: #fff3cd;
border: 1px solid #ffc107;
border-radius: 6px;
color: #856404;
margin: 20px 0;
}